/* ============================================
   CANARD FOU — POC Brand Presence Site
   ============================================ */

:root {
  --color-bg: #0a0a0a;
  --color-surface: #141414;
  --color-surface-2: #1e1e1e;
  --color-text: #f5f0e8;
  --color-text-muted: #a09888;
  --color-accent: #c8a96e;
  --color-accent-light: #e0c98a;
  --color-accent-dark: #a8894e;
  --color-classique: #8b6e4e;
  --color-atelier: #6e4e6e;
  --color-alchimie: #4e6e6e;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, sans-serif;
  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-luxury: cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background: var(--color-bg);
  color: var(--color-text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* Film grain overlay */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 256px;
}

a { color: var(--color-accent); text-decoration: none; transition: color 0.3s var(--ease); }
a:hover { color: var(--color-accent-light); }

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

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---- Gold Divider ---- */
.gold-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 0 24px;
  max-width: 400px;
  margin: 0 auto;
}

.gold-divider__line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--color-accent), transparent);
  opacity: 0.4;
}

.gold-divider__diamond {
  width: 6px;
  height: 6px;
  background: var(--color-accent);
  transform: rotate(45deg);
  opacity: 0.6;
}

/* ---- Section Labels ---- */
.section-label {
  display: block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 16px;
  position: relative;
}

.section-label--center { text-align: center; }

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 24px;
  background: linear-gradient(135deg, var(--color-text) 0%, var(--color-accent-light) 50%, var(--color-text) 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-title--center { text-align: center; }

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 40px;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border: none;
  border-radius: 0;
  cursor: pointer;
  transition: all 0.4s var(--ease-luxury);
  position: relative;
  overflow: hidden;
}

.btn--primary {
  background: transparent;
  color: var(--color-accent);
  border: 1px solid var(--color-accent);
}

.btn--primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--color-accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease-luxury);
  z-index: -1;
}

.btn--primary:hover {
  color: var(--color-bg);
}

.btn--primary:hover::before {
  transform: scaleX(1);
}

.btn--outline {
  background: transparent;
  color: var(--color-text);
  border: 1px solid rgba(200, 169, 110, 0.3);
}

.btn--outline:hover {
  border-color: var(--color-text);
  color: var(--color-text);
  background: rgba(245, 240, 232, 0.05);
}

.btn--full { width: 100%; }

/* ============================================
   NAVIGATION
   ============================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 24px 0;
  transition: all 0.5s var(--ease-luxury);
}

.nav--scrolled {
  background: rgba(10, 10, 10, 0.92);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  padding: 12px 0;
  border-bottom: 1px solid rgba(200, 169, 110, 0.08);
}

.nav__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav__logo {
  display: flex;
  align-items: center;
}

.nav__logo-img {
  height: 50px;
  width: auto;
  transition: all 0.5s var(--ease-luxury);
}

.nav--scrolled .nav__logo-img {
  height: 40px;
}

.nav__logo:hover .nav__logo-img {
  filter: drop-shadow(0 0 12px rgba(200, 169, 110, 0.3));
}

.nav__links {
  display: flex;
  list-style: none;
  gap: 40px;
}

.nav__links a {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  position: relative;
  transition: color 0.3s var(--ease);
}

.nav__links a::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 50%;
  width: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--color-accent), transparent);
  transition: all 0.4s var(--ease-luxury);
  transform: translateX(-50%);
}

.nav__links a:hover { color: var(--color-text); }
.nav__links a:hover::after { width: 100%; }

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav__toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-text);
  transition: all 0.3s var(--ease);
}

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

.hero__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 50% 30%, rgba(200, 169, 110, 0.1) 0%, transparent 50%),
    radial-gradient(ellipse at 20% 80%, rgba(200, 169, 110, 0.04) 0%, transparent 40%),
    radial-gradient(ellipse at 80% 70%, rgba(200, 169, 110, 0.04) 0%, transparent 40%),
    var(--color-bg);
}

/* Animated gold light sweep */
.hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    transparent 40%,
    rgba(200, 169, 110, 0.03) 45%,
    rgba(200, 169, 110, 0.06) 50%,
    rgba(200, 169, 110, 0.03) 55%,
    transparent 60%
  );
  background-size: 200% 100%;
  animation: heroSweep 8s ease-in-out infinite;
}

.hero__content {
  position: relative;
  z-index: 1;
  padding: 120px 24px 80px;
}

.hero__logo {
  margin: 0 auto 48px;
  opacity: 0;
  animation: fadeUp 1.2s var(--ease-out) 0.2s forwards;
  position: relative;
}

/* Gold glow behind logo */
.hero__logo::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 300px;
  height: 300px;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(200, 169, 110, 0.12) 0%, transparent 70%);
  border-radius: 50%;
  animation: glowPulse 4s ease-in-out infinite;
}

.hero__logo-img {
  height: clamp(200px, 30vw, 320px);
  width: auto;
  margin: 0 auto;
  display: block;
  position: relative;
  z-index: 1;
}

.hero__tagline {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
  font-style: italic;
  color: var(--color-text);
  margin-bottom: 12px;
  opacity: 0;
  animation: fadeUp 1s var(--ease-out) 0.6s forwards;
}

.hero__sub {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  letter-spacing: 0.08em;
  margin-bottom: 48px;
  opacity: 0;
  animation: fadeUp 1s var(--ease-out) 0.8s forwards;
}

.hero .btn {
  opacity: 0;
  animation: fadeUp 1s var(--ease-out) 1s forwards;
}

.hero__scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0;
  animation: fadeIn 1s var(--ease) 1.8s forwards;
}

.hero__scroll span {
  font-size: 0.6rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}

.hero__scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, var(--color-accent), transparent);
  animation: scrollPulse 2.5s ease-in-out infinite;
}

/* ============================================
   ABOUT
   ============================================ */
.about {
  padding: 140px 0;
  background: var(--color-surface);
  position: relative;
}

.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.about__text p {
  color: var(--color-text-muted);
  margin-bottom: 20px;
  font-size: 1.05rem;
  line-height: 1.85;
}

.about__visual {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.about__card {
  background: rgba(30, 30, 30, 0.6);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(200, 169, 110, 0.08);
  padding: 32px 28px;
  transition: all 0.5s var(--ease-luxury);
  position: relative;
  overflow: hidden;
}

.about__card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--color-accent), transparent);
  opacity: 0;
  transition: opacity 0.5s var(--ease-luxury);
}

.about__card:hover {
  border-color: rgba(200, 169, 110, 0.15);
  transform: translateY(-4px);
  background: rgba(30, 30, 30, 0.8);
}

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

.about__card-icon {
  width: 36px;
  height: 36px;
  color: var(--color-accent);
  margin-bottom: 16px;
}

.about__card h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  margin-bottom: 8px;
}

.about__card p {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  line-height: 1.65;
}

/* ============================================
   PRODUCTS
   ============================================ */
.products {
  padding: 140px 0;
  background: var(--color-bg);
  position: relative;
}

.products__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 60px;
}

.product-card {
  background: var(--color-surface);
  border: 1px solid rgba(200, 169, 110, 0.06);
  overflow: hidden;
  transition: all 0.6s var(--ease-luxury);
  position: relative;
}

.product-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid transparent;
  transition: border-color 0.6s var(--ease-luxury);
  pointer-events: none;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 32px 64px rgba(0,0,0,0.3), 0 0 0 1px rgba(200, 169, 110, 0.1);
}

.product-card:hover::after {
  border-color: rgba(200, 169, 110, 0.15);
}

.product-card__image {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  padding: 48px 20px 0;
  min-height: 320px;
  position: relative;
  overflow: hidden;
}

/* Subtle inner glow on hover */
.product-card__image::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60%;
  background: linear-gradient(to top, var(--color-surface), transparent);
  pointer-events: none;
  z-index: 1;
}

[data-line="classique"] .product-card__image {
  background: linear-gradient(180deg, rgba(139, 110, 78, 0.12) 0%, transparent 70%);
}
[data-line="atelier"] .product-card__image {
  background: linear-gradient(180deg, rgba(110, 78, 110, 0.12) 0%, transparent 70%);
}
[data-line="alchimie"] .product-card__image {
  background: linear-gradient(180deg, rgba(78, 110, 110, 0.12) 0%, transparent 70%);
}

.product-card__can-img {
  height: 280px;
  width: auto;
  object-fit: contain;
  transition: all 0.6s var(--ease-luxury);
  filter: drop-shadow(0 24px 48px rgba(0,0,0,0.5));
  position: relative;
  z-index: 2;
  animation: canFloat 4s ease-in-out infinite;
  cursor: pointer;
}

/* Stagger the float so they don't bob in sync */
[data-line="classique"] .product-card__can-img { animation-delay: 0s; }
[data-line="atelier"] .product-card__can-img { animation-delay: -1.3s; }
[data-line="alchimie"] .product-card__can-img { animation-delay: -2.6s; }

.product-card:hover .product-card__can-img {
  animation-play-state: paused;
  transform: translateY(-12px) perspective(600px) rotateY(15deg) scale(1.02);
  filter: drop-shadow(0 32px 56px rgba(0,0,0,0.5)) drop-shadow(0 0 20px rgba(200, 169, 110, 0.08));
}

/* Click-to-spin class toggled by JS */
.product-card__can-img.spinning {
  animation: canSpin 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards !important;
}

.product-card__content {
  padding: 32px 28px 36px;
  position: relative;
}

.product-card__line-tag {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--color-accent);
}

.product-card__title {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 700;
  margin: 8px 0 4px;
}

.product-card__subtitle {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  margin-bottom: 16px;
  font-style: italic;
}

.product-card__desc {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  line-height: 1.75;
  margin-bottom: 24px;
}

.product-card__notes {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.product-card__notes li {
  font-size: 0.8rem;
  color: var(--color-text-muted);
  padding-left: 20px;
  position: relative;
}

.product-card__notes li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 8px;
  height: 1px;
  background: var(--color-accent);
}

/* ============================================
   LIFESTYLE
   ============================================ */
.lifestyle {
  position: relative;
  padding: 140px 0;
  overflow: hidden;
}

.lifestyle__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 80% 20%, rgba(200, 169, 110, 0.06) 0%, transparent 50%),
    var(--color-surface);
}

.lifestyle__content {
  position: relative;
  z-index: 1;
  max-width: 900px;
}

.lifestyle__lead {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  font-style: italic;
  color: var(--color-text);
  line-height: 1.8;
  margin-bottom: 64px;
}

.lifestyle__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.lifestyle__item {
  padding: 32px 0;
  border-top: 1px solid rgba(200, 169, 110, 0.1);
  transition: all 0.4s var(--ease-luxury);
}

.lifestyle__item:hover {
  border-top-color: rgba(200, 169, 110, 0.3);
}

.lifestyle__number {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  background: linear-gradient(135deg, rgba(200, 169, 110, 0.25), rgba(200, 169, 110, 0.08));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
  margin-bottom: 12px;
  transition: all 0.4s var(--ease-luxury);
}

.lifestyle__item:hover .lifestyle__number {
  background: linear-gradient(135deg, rgba(200, 169, 110, 0.5), rgba(200, 169, 110, 0.2));
  -webkit-background-clip: text;
  background-clip: text;
}

.lifestyle__item h4 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  margin-bottom: 10px;
  transition: color 0.3s var(--ease);
}

.lifestyle__item:hover h4 {
  color: var(--color-accent-light);
}

.lifestyle__item p {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  line-height: 1.65;
}

/* ============================================
   AGE GATE
   ============================================ */
.age-gate {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(6, 6, 6, 0.98);
  backdrop-filter: blur(40px);
  -webkit-backdrop-filter: blur(40px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  transition: opacity 0.6s var(--ease-luxury);
}

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

.age-gate__card {
  text-align: center;
  max-width: 420px;
  padding: 64px 48px;
  border: 1px solid rgba(200, 169, 110, 0.15);
  background: rgba(20, 20, 20, 0.8);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  position: relative;
}

/* Corner accents */
.age-gate__card::before,
.age-gate__card::after {
  content: '';
  position: absolute;
  width: 24px;
  height: 24px;
  border-color: var(--color-accent);
  border-style: solid;
  opacity: 0.4;
}

.age-gate__card::before {
  top: 12px;
  left: 12px;
  border-width: 1px 0 0 1px;
}

.age-gate__card::after {
  bottom: 12px;
  right: 12px;
  border-width: 0 1px 1px 0;
}

.age-gate__logo {
  display: flex;
  justify-content: center;
  margin-bottom: 36px;
}

.age-gate__logo-img {
  height: 120px;
  width: auto;
  filter: drop-shadow(0 0 20px rgba(200, 169, 110, 0.15));
}

.age-gate__question {
  font-family: var(--font-display);
  font-size: 1.3rem;
  margin-bottom: 32px;
  letter-spacing: 0.02em;
}

.age-gate__actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin-bottom: 28px;
}

.age-gate__actions .btn {
  min-width: 140px;
}

.age-gate__disclaimer {
  font-size: 0.7rem;
  color: var(--color-text-muted);
  line-height: 1.5;
  opacity: 0.7;
}

/* ============================================
   CONTACT
   ============================================ */
.contact {
  padding: 140px 0;
  background: var(--color-bg);
  position: relative;
}

.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
}

.contact__info p {
  font-size: 1.05rem;
  color: var(--color-text-muted);
  line-height: 1.75;
  margin-bottom: 40px;
}

.contact__details {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.contact__detail h4 {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-bottom: 8px;
}

.contact__detail a {
  font-size: 1.1rem;
  transition: all 0.3s var(--ease);
}

.contact__detail a:hover {
  text-shadow: 0 0 20px rgba(200, 169, 110, 0.3);
}

.contact__social {
  display: flex;
  gap: 16px;
}

.contact__social a {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-muted);
  border: 1px solid rgba(200, 169, 110, 0.12);
  transition: all 0.4s var(--ease-luxury);
}

.contact__social a:hover {
  color: var(--color-accent);
  border-color: var(--color-accent);
  background: rgba(200, 169, 110, 0.05);
  transform: translateY(-2px);
}

.contact__social svg {
  width: 20px;
  height: 20px;
}

/* Form */
.contact__form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.form-group label {
  display: block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-bottom: 10px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 16px 18px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--color-text);
  background: rgba(20, 20, 20, 0.6);
  border: 1px solid rgba(200, 169, 110, 0.1);
  outline: none;
  transition: all 0.4s var(--ease-luxury);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--color-text-muted);
  opacity: 0.4;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--color-accent);
  background: rgba(20, 20, 20, 0.8);
  box-shadow: 0 0 0 3px rgba(200, 169, 110, 0.06);
}

.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23a09888' fill='none' stroke-width='1.5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  cursor: pointer;
}

.form-group select option {
  background: var(--color-surface);
}

.form-group textarea {
  resize: vertical;
  min-height: 110px;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  padding: 72px 0;
  border-top: 1px solid rgba(200, 169, 110, 0.08);
  background: var(--color-bg);
}

.footer__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
  text-align: center;
}

.footer__brand {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.footer__logo-img {
  height: 70px;
  width: auto;
  opacity: 0.9;
  transition: all 0.4s var(--ease-luxury);
}

.footer__logo-img:hover {
  opacity: 1;
  filter: drop-shadow(0 0 16px rgba(200, 169, 110, 0.2));
}

.footer__origin {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  color: var(--color-text-muted);
  margin-top: 8px;
  text-transform: uppercase;
}

.footer__links {
  display: flex;
  gap: 36px;
}

.footer__links a {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--color-text-muted);
  letter-spacing: 0.08em;
  transition: all 0.3s var(--ease);
}

.footer__links a:hover {
  color: var(--color-text);
}

.footer__legal {
  font-size: 0.65rem;
  color: var(--color-text-muted);
  opacity: 0.5;
  letter-spacing: 0.05em;
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

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

@keyframes glowPulse {
  0%, 100% { opacity: 0.6; transform: translate(-50%, -50%) scale(1); }
  50% { opacity: 1; transform: translate(-50%, -50%) scale(1.1); }
}

@keyframes heroSweep {
  0% { background-position: -100% 0; }
  50% { background-position: 200% 0; }
  100% { background-position: -100% 0; }
}

@keyframes shimmer {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}

@keyframes canFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

@keyframes canSpin {
  0% { transform: translateY(-12px) perspective(600px) rotateY(0deg) scale(1.02); }
  50% { transform: translateY(-16px) perspective(600px) rotateY(180deg) scale(0.95); }
  100% { transform: translateY(-12px) perspective(600px) rotateY(360deg) scale(1.02); }
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(50px);
  transition: all 1s var(--ease-out);
}

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

/* Stagger delays for cards */
.product-card.reveal:nth-child(1) { transition-delay: 0s; }
.product-card.reveal:nth-child(2) { transition-delay: 0.15s; }
.product-card.reveal:nth-child(3) { transition-delay: 0.3s; }

.about__card.reveal:nth-child(1) { transition-delay: 0s; }
.about__card.reveal:nth-child(2) { transition-delay: 0.12s; }
.about__card.reveal:nth-child(3) { transition-delay: 0.24s; }

.lifestyle__item.reveal:nth-child(1) { transition-delay: 0s; }
.lifestyle__item.reveal:nth-child(2) { transition-delay: 0.1s; }
.lifestyle__item.reveal:nth-child(3) { transition-delay: 0.2s; }
.lifestyle__item.reveal:nth-child(4) { transition-delay: 0.3s; }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .products__grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 768px) {
  .nav__toggle { display: flex; }

  .nav__links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: rgba(20, 20, 20, 0.98);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 32px;
    transition: right 0.5s var(--ease-out);
  }

  .nav__links.open { right: 0; }

  .about__grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .lifestyle__grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .contact__grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .hero__logo-img {
    height: clamp(160px, 40vw, 240px);
  }

  .about, .products, .lifestyle, .contact {
    padding: 80px 0;
  }

  .gold-divider {
    max-width: 250px;
  }
}

@media (max-width: 480px) {
  .age-gate__card {
    margin: 16px;
    padding: 40px 24px;
  }

  .age-gate__actions {
    flex-direction: column;
  }

  .footer__links {
    flex-direction: column;
    gap: 16px;
    align-items: center;
  }
}
