/* ============================================
   LINTANG — Premium Bottle Shop
   ============================================ */

:root {
  --bg: #0a0a0b;
  --bg-2: #111114;
  --bg-3: #17171c;
  --line: rgba(255, 255, 255, 0.08);
  --line-2: rgba(255, 255, 255, 0.14);
  --text: #ededee;
  --text-dim: #9a9aa3;
  --text-mute: #5f5f68;
  --gold: #c8a96a;
  --gold-2: #e8c98a;
  --gold-dark: #8a7344;
  --accent: #d4b27a;
  --danger: #e25b5b;
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans: 'Inter', system-ui, sans-serif;
  --ease: cubic-bezier(0.7, 0, 0.2, 1);
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

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

body.no-scroll { overflow: hidden; }

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }

em { font-style: italic; font-family: var(--serif); color: var(--gold-2); font-weight: 500; }

.container { max-width: 1280px; margin: 0 auto; padding: 0 32px; }

/* ============ LOGO ============ */
.logo-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px; height: 32px;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-family: var(--serif);
  font-weight: 600;
  font-size: 18px;
  letter-spacing: 0.02em;
}
.logo-word {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.32em;
  color: var(--text);
}
.nav__logo { display: inline-flex; align-items: center; gap: 12px; }

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 26px;
  font-family: var(--sans);
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-radius: 999px;
  transition: all 0.4s var(--ease);
  cursor: pointer;
  border: 1px solid transparent;
  position: relative;
  overflow: hidden;
}
.btn svg { width: 16px; height: 16px; transition: transform 0.4s var(--ease); }
.btn:hover svg { transform: translateX(4px); }

.btn--primary {
  background: var(--gold);
  color: #15110a;
  border-color: var(--gold);
}
.btn--primary:hover { background: var(--gold-2); box-shadow: 0 8px 30px rgba(200, 169, 106, 0.3); }

.btn--ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--line-2);
}
.btn--ghost:hover { border-color: var(--gold); color: var(--gold-2); }

.btn--block { width: 100%; justify-content: center; }

.icon-btn {
  width: 42px; height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  transition: all 0.3s var(--ease);
  position: relative;
  color: var(--text);
}
.icon-btn:hover { background: var(--bg-3); color: var(--gold); }
.icon-btn svg { width: 20px; height: 20px; }

.icon-btn--cart .cart-count {
  position: absolute;
  top: 2px; right: 2px;
  min-width: 18px; height: 18px;
  background: var(--gold);
  color: #15110a;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 5px;
  transform: scale(0);
  transition: transform 0.3s var(--ease-out);
}
.icon-btn--cart.has-items .cart-count { transform: scale(1); }
.icon-btn--cart.bump { animation: bump 0.4s var(--ease); }
@keyframes bump {
  0% { transform: scale(1); }
  40% { transform: scale(1.18); }
  100% { transform: scale(1); }
}

/* ============ AGE GATE ============ */
.age-gate {
  position: fixed;
  inset: 0;
  background: radial-gradient(ellipse at center, #131315 0%, #050505 100%);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 1;
  transition: opacity 0.6s var(--ease), visibility 0.6s var(--ease);
}
.age-gate.hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.age-gate__inner {
  max-width: 480px;
  text-align: center;
  border: 1px solid var(--line);
  padding: 56px 40px;
  background: rgba(20, 20, 22, 0.6);
  backdrop-filter: blur(20px);
  position: relative;
}
.age-gate__inner::before, .age-gate__inner::after {
  content: '';
  position: absolute;
  width: 24px; height: 24px;
  border: 1px solid var(--gold);
}
.age-gate__inner::before { top: -1px; left: -1px; border-right: 0; border-bottom: 0; }
.age-gate__inner::after { bottom: -1px; right: -1px; border-left: 0; border-top: 0; }

.age-gate__logo { display: inline-flex; align-items: center; gap: 12px; margin-bottom: 36px; }
.age-gate__title {
  font-family: var(--serif);
  font-size: 38px;
  font-weight: 500;
  margin-bottom: 14px;
  letter-spacing: 0.02em;
}
.age-gate__sub { color: var(--text-dim); margin-bottom: 32px; }
.age-gate__buttons { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-bottom: 24px; }
.age-gate__legal {
  font-size: 11px;
  color: var(--text-mute);
  letter-spacing: 0.04em;
  line-height: 1.7;
  border-top: 1px solid var(--line);
  padding-top: 20px;
}

/* ============ LOADER ============ */
.loader {
  position: fixed;
  inset: 0;
  background: var(--bg);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 50px;
  transition: opacity 0.8s var(--ease), visibility 0.8s var(--ease);
}
.loader.done { opacity: 0; visibility: hidden; }

.loader__bottle {
  position: relative;
  width: 60px;
  animation: bottleFloat 3s ease-in-out infinite;
}
@keyframes bottleFloat {
  0%, 100% { transform: translateY(0) rotate(-2deg); }
  50% { transform: translateY(-8px) rotate(2deg); }
}
.loader__neck {
  width: 18px;
  height: 38px;
  background: linear-gradient(180deg, #1a1a1d 0%, #2a2a2e 100%);
  margin: 0 auto;
  border-radius: 3px 3px 0 0;
  border: 1px solid var(--line-2);
  border-bottom: none;
  position: relative;
}
.loader__neck::before {
  content: '';
  position: absolute;
  top: 8px; left: -2px; right: -2px;
  height: 6px;
  background: var(--gold);
  border-radius: 1px;
}
.loader__body {
  width: 60px;
  height: 110px;
  background: linear-gradient(180deg, rgba(20,20,24,0.4) 0%, rgba(40,40,46,0.3) 100%);
  border: 1.5px solid var(--line-2);
  border-radius: 6px 6px 12px 12px;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(2px);
}
.loader__liquid {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 0;
  background: linear-gradient(180deg, var(--gold-2) 0%, var(--gold) 50%, var(--gold-dark) 100%);
  animation: fillBottle 2.6s var(--ease-out) forwards;
}
.loader__liquid::before {
  content: '';
  position: absolute;
  top: -4px; left: 0; right: 0;
  height: 8px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  animation: liquidWave 1.4s ease-in-out infinite;
}
@keyframes fillBottle {
  0% { height: 0; }
  100% { height: 90%; }
}
@keyframes liquidWave {
  0%, 100% { transform: translateX(-30%); }
  50% { transform: translateX(30%); }
}

.loader__bubble {
  position: absolute;
  width: 6px; height: 6px;
  background: rgba(255,255,255,0.5);
  border-radius: 50%;
  bottom: 0;
  animation: rise 2.4s ease-in infinite;
}
.loader__bubble--1 { left: 12px; animation-delay: 0.2s; width: 4px; height: 4px; }
.loader__bubble--2 { left: 28px; animation-delay: 0.8s; width: 7px; height: 7px; }
.loader__bubble--3 { left: 42px; animation-delay: 1.4s; width: 5px; height: 5px; }
.loader__bubble--4 { left: 20px; animation-delay: 1.9s; width: 6px; height: 6px; }
@keyframes rise {
  0% { bottom: 0; opacity: 0; transform: translateX(0); }
  20% { opacity: 1; }
  100% { bottom: 95%; opacity: 0; transform: translateX(8px); }
}

.loader__label {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 36px; height: 36px;
  border: 1px solid rgba(255,255,255,0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
  z-index: 2;
  background: rgba(0,0,0,0.15);
  backdrop-filter: blur(2px);
}

.loader__text {
  display: flex;
  gap: 8px;
}
.loader__text span {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 500;
  letter-spacing: 0.4em;
  color: var(--gold-2);
  opacity: 0;
  animation: letterFade 1.4s var(--ease-out) forwards;
}
.loader__text span:nth-child(1) { animation-delay: 0.1s; }
.loader__text span:nth-child(2) { animation-delay: 0.2s; }
.loader__text span:nth-child(3) { animation-delay: 0.3s; }
.loader__text span:nth-child(4) { animation-delay: 0.4s; }
.loader__text span:nth-child(5) { animation-delay: 0.5s; }
.loader__text span:nth-child(6) { animation-delay: 0.6s; }
.loader__text span:nth-child(7) { animation-delay: 0.7s; }
.loader__text span:nth-child(8) { animation-delay: 0.8s; }
@keyframes letterFade {
  0% { opacity: 0; transform: translateY(20px); filter: blur(8px); }
  100% { opacity: 1; transform: translateY(0); filter: blur(0); }
}

.loader__progress {
  width: 200px;
  height: 1px;
  background: var(--line);
  position: relative;
  overflow: hidden;
}
.loader__progress-bar {
  position: absolute;
  top: 0; left: 0;
  height: 100%;
  background: var(--gold);
  width: 0%;
  transition: width 0.2s linear;
}

/* ============ NAV ============ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 18px 0;
  transition: all 0.4s var(--ease);
}
.nav.scrolled {
  padding: 12px 0;
  background: rgba(10, 10, 11, 0.85);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
}
.nav__inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; }

.nav__links { display: flex; gap: 36px; }
.nav__link {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-dim);
  transition: color 0.3s var(--ease);
  position: relative;
}
.nav__link:hover { color: var(--text); }
.nav__link::after {
  content: '';
  position: absolute;
  bottom: -6px; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.4s var(--ease);
}
.nav__link:hover::after { width: 100%; }

.nav__actions { display: flex; gap: 8px; align-items: center; }

@media (max-width: 768px) {
  .nav__links { display: none; }
}

/* ============ HERO ============ */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 30%, rgba(200, 169, 106, 0.15) 0%, transparent 60%),
    radial-gradient(ellipse 60% 50% at 20% 80%, rgba(120, 80, 40, 0.12) 0%, transparent 60%),
    linear-gradient(180deg, #0a0a0b 0%, #0d0d10 100%);
  z-index: 0;
}
.hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
}
.hero__grain {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0.5;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3'/%3E%3CfeColorMatrix values='0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0.06 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.hero__inner { position: relative; z-index: 2; max-width: 980px; }

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold-2);
  margin-bottom: 28px;
  padding: 8px 16px;
  border: 1px solid var(--line-2);
  border-radius: 999px;
}
.dot { width: 6px; height: 6px; background: var(--gold); border-radius: 999px; box-shadow: 0 0 10px var(--gold); animation: pulse 2s ease-in-out infinite; }
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.85); }
}

.hero__title {
  font-family: var(--serif);
  font-size: clamp(48px, 8vw, 110px);
  line-height: 0.96;
  font-weight: 500;
  letter-spacing: -0.01em;
  margin-bottom: 32px;
}
.hero__title .line {
  display: block;
  overflow: hidden;
}
.hero__sub {
  font-size: 18px;
  color: var(--text-dim);
  max-width: 540px;
  margin-bottom: 40px;
  line-height: 1.6;
}
.hero__cta { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 80px; }

.hero__stats { display: flex; gap: 48px; flex-wrap: wrap; }
.stat { border-left: 1px solid var(--line-2); padding-left: 18px; }
.stat__num { font-family: var(--serif); font-size: 38px; font-weight: 500; color: var(--gold-2); line-height: 1; margin-bottom: 6px; }
.stat__label { font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--text-mute); }

.hero__scroll {
  position: absolute;
  bottom: 32px; right: 32px;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--text-mute);
}
.hero__scroll-line {
  width: 60px; height: 1px;
  background: var(--line-2);
  position: relative;
  overflow: hidden;
}
.hero__scroll-line::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gold);
  animation: scrollLine 2.5s var(--ease) infinite;
}
@keyframes scrollLine {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

@media (max-width: 768px) {
  .hero__scroll { display: none; }
  .hero__sub { font-size: 16px; }
  .hero__stats { gap: 24px; }
  .stat__num { font-size: 28px; }
}

/* ============ MARQUEE ============ */
.marquee {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 18px 0;
  overflow: hidden;
  background: var(--bg-2);
}
.marquee__track {
  display: flex;
  gap: 60px;
  white-space: nowrap;
  animation: marquee 40s linear infinite;
  font-size: 13px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold-2);
}
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ============ SECTION HEAD ============ */
.section-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: end;
  margin-bottom: 56px;
}
.section-head__eyebrow {
  font-size: 12px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 16px;
}
.section-head__title {
  font-family: var(--serif);
  font-size: clamp(40px, 5vw, 72px);
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.01em;
}
.section-head__desc { color: var(--text-dim); font-size: 16px; max-width: 480px; }

@media (max-width: 768px) {
  .section-head { grid-template-columns: 1fr; gap: 24px; }
}

/* ============ SHOP / FILTERS / GRID ============ */
.shop { padding: 120px 0; }

.filters {
  display: flex;
  gap: 8px;
  margin-bottom: 48px;
  flex-wrap: wrap;
  border-bottom: 1px solid var(--line);
  padding-bottom: 16px;
}
.filter {
  padding: 10px 22px;
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-dim);
  border-radius: 999px;
  border: 1px solid transparent;
  transition: all 0.3s var(--ease);
}
.filter:hover { color: var(--text); }
.filter.active {
  background: var(--gold);
  color: #15110a;
  border-color: var(--gold);
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 32px;
}

.product {
  background: var(--bg-2);
  border: 1px solid var(--line);
  position: relative;
  overflow: hidden;
  transition: all 0.5s var(--ease);
  display: flex;
  flex-direction: column;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.7s var(--ease-out) forwards;
}
@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}
.product:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
  box-shadow: 0 30px 60px -20px rgba(0,0,0,0.6), 0 0 0 1px var(--gold);
}

.product__media {
  aspect-ratio: 1 / 1.1;
  position: relative;
  overflow: hidden;
  background: radial-gradient(ellipse at top, rgba(200,169,106,0.12), transparent 70%);
  border-bottom: 1px solid var(--line);
}
.product__bottle {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 24px 0;
  transition: transform 0.6s var(--ease);
}
.product:hover .product__bottle { transform: translateY(-6px) scale(1.04); }

.bottle-svg {
  width: 70px;
  height: 200px;
  position: relative;
  filter: drop-shadow(0 30px 25px rgba(0,0,0,0.5));
}

.product__tag {
  position: absolute;
  top: 14px; left: 14px;
  padding: 6px 12px;
  background: rgba(0,0,0,0.5);
  backdrop-filter: blur(6px);
  border: 1px solid var(--line-2);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-2);
}

.product__quick {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 14px;
  background: linear-gradient(180deg, transparent, rgba(0,0,0,0.85));
  transform: translateY(100%);
  transition: transform 0.4s var(--ease);
}
.product:hover .product__quick { transform: translateY(0); }
.product__quick .btn { width: 100%; justify-content: center; padding: 12px; font-size: 11px; }

.product__body { padding: 22px 22px 24px; flex: 1; display: flex; flex-direction: column; }
.product__cat {
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--text-mute);
  margin-bottom: 10px;
}
.product__name {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 500;
  line-height: 1.2;
  margin-bottom: 6px;
}
.product__origin { font-size: 13px; color: var(--text-dim); margin-bottom: 16px; }
.product__foot { display: flex; align-items: center; justify-content: space-between; margin-top: auto; padding-top: 14px; border-top: 1px solid var(--line); }
.product__price { font-family: var(--serif); font-size: 22px; font-weight: 600; color: var(--gold-2); }
.product__price small { font-size: 11px; color: var(--text-mute); display: block; font-family: var(--sans); letter-spacing: 0.16em; text-transform: uppercase; }

.product__add {
  width: 38px; height: 38px;
  border-radius: 999px;
  border: 1px solid var(--line-2);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s var(--ease);
  color: var(--text);
}
.product__add:hover { background: var(--gold); color: #15110a; border-color: var(--gold); transform: rotate(90deg); }
.product__add svg { width: 16px; height: 16px; }

/* ============ FEATURE ============ */
.feature { padding: 120px 0; background: var(--bg-2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.feature__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.feature__image {
  position: relative;
  aspect-ratio: 4 / 5;
  background:
    radial-gradient(ellipse at center, rgba(200,169,106,0.2), transparent 70%),
    linear-gradient(135deg, #1a1a1f 0%, #0d0d10 100%);
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.feature__image::before {
  content: 'RESERVE';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%) rotate(-90deg);
  font-family: var(--serif);
  font-size: 200px;
  font-weight: 600;
  color: rgba(200,169,106,0.06);
  letter-spacing: 0.05em;
  white-space: nowrap;
}
.feature__bottle {
  width: 100px;
  height: 320px;
  background:
    linear-gradient(180deg, transparent 0% 12%, #1a1a1d 12% 16%, transparent 16% 20%, var(--gold) 20% 32%, #2a1a0a 32% 100%);
  border-radius: 20px 20px 8px 8px;
  position: relative;
  z-index: 2;
  filter: drop-shadow(0 40px 40px rgba(0,0,0,0.6));
  animation: bottleFloat 4s ease-in-out infinite;
}
.feature__bottle::after {
  content: 'N';
  position: absolute;
  top: 55%; left: 50%;
  transform: translate(-50%, -50%);
  width: 60px; height: 80px;
  background: rgba(20,15,10,0.6);
  border: 1px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-size: 36px;
  font-weight: 600;
  color: var(--gold-2);
}
.feature__badge {
  position: absolute;
  top: 24px; right: 24px;
  width: 90px; height: 90px;
  border-radius: 999px;
  background: var(--gold);
  color: #15110a;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-weight: 600;
  font-size: 14px;
  text-align: center;
  line-height: 1.2;
  z-index: 3;
  animation: spin 12s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

.feature__title {
  font-family: var(--serif);
  font-size: clamp(40px, 5vw, 72px);
  font-weight: 500;
  line-height: 1;
  margin: 16px 0 24px;
  letter-spacing: -0.01em;
}
.feature__desc { color: var(--text-dim); margin-bottom: 28px; font-size: 16px; }
.feature__list { list-style: none; margin-bottom: 36px; }
.feature__list li { padding: 14px 0; border-bottom: 1px solid var(--line); display: flex; align-items: center; gap: 14px; }
.check { color: var(--gold); font-weight: 600; }

@media (max-width: 768px) {
  .feature__grid { grid-template-columns: 1fr; gap: 40px; }
}

/* ============ ABOUT ============ */
.about { padding: 120px 0; }
.about__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; }
.about__title { font-family: var(--serif); font-size: clamp(36px, 4.5vw, 60px); font-weight: 500; line-height: 1.05; }
.about__cards { display: grid; gap: 14px; margin-top: 32px; }
.about__card { padding: 24px; border: 1px solid var(--line); display: flex; align-items: center; gap: 24px; transition: border-color 0.3s var(--ease); }
.about__card:hover { border-color: var(--gold); }
.about__card h4 { font-family: var(--serif); font-size: 28px; font-weight: 500; color: var(--gold-2); }

@media (max-width: 768px) { .about__grid { grid-template-columns: 1fr; gap: 32px; } }

/* ============ CTA ============ */
.cta { padding: 120px 0; background: var(--bg-2); border-top: 1px solid var(--line); position: relative; overflow: hidden; }
.cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(200,169,106,0.1), transparent 60%);
}
.cta__inner { text-align: center; max-width: 640px; margin: 0 auto; position: relative; z-index: 2; }
.cta__title { font-family: var(--serif); font-size: clamp(40px, 5vw, 72px); font-weight: 500; line-height: 1; margin-bottom: 18px; }
.cta__desc { color: var(--text-dim); margin-bottom: 36px; font-size: 17px; }
.cta__form { display: flex; gap: 8px; max-width: 480px; margin: 0 auto; flex-wrap: wrap; }
.cta__form input {
  flex: 1;
  min-width: 220px;
  padding: 16px 22px;
  background: var(--bg);
  border: 1px solid var(--line-2);
  color: var(--text);
  border-radius: 999px;
  font-family: var(--sans);
  font-size: 14px;
  outline: none;
  transition: border-color 0.3s var(--ease);
}
.cta__form input:focus { border-color: var(--gold); }

/* ============ FOOTER ============ */
.footer { padding: 80px 0 32px; border-top: 1px solid var(--line); background: var(--bg); }
.footer__inner { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 60px; border-bottom: 1px solid var(--line); }
.footer__col--brand p { color: var(--text-dim); margin-top: 18px; max-width: 280px; font-size: 14px; }
.footer__col h5 { font-size: 12px; letter-spacing: 0.24em; text-transform: uppercase; color: var(--gold); margin-bottom: 18px; }
.footer__col a { display: block; padding: 6px 0; color: var(--text-dim); font-size: 14px; transition: color 0.3s var(--ease); }
.footer__col a:hover { color: var(--gold-2); }
.footer__bottom { padding-top: 28px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; font-size: 12px; color: var(--text-mute); letter-spacing: 0.06em; }

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

/* ============ CART ============ */
.cart-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(4px);
  z-index: 200;
  opacity: 0; visibility: hidden;
  transition: opacity 0.4s var(--ease), visibility 0.4s var(--ease);
}
.cart-overlay.open { opacity: 1; visibility: visible; }

.cart {
  position: fixed;
  top: 0; right: 0; bottom: 0;
  width: 440px;
  max-width: 100vw;
  background: var(--bg-2);
  border-left: 1px solid var(--line);
  z-index: 201;
  transform: translateX(100%);
  transition: transform 0.5s var(--ease);
  display: flex;
  flex-direction: column;
}
.cart.open { transform: translateX(0); }

.cart__head {
  padding: 24px;
  border-bottom: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.cart__head h3 { font-family: var(--serif); font-size: 26px; font-weight: 500; }

.cart__body { flex: 1; overflow-y: auto; padding: 16px 24px; }

.cart__empty { text-align: center; padding: 60px 20px; color: var(--text-dim); }
.cart__empty-icon { width: 64px; height: 64px; margin: 0 auto 20px; color: var(--gold); }
.cart__empty p { margin-bottom: 20px; }

.cart__items { display: flex; flex-direction: column; gap: 16px; }
.cart__item {
  display: grid;
  grid-template-columns: 64px 1fr auto;
  gap: 16px;
  padding: 16px;
  background: var(--bg-3);
  border: 1px solid var(--line);
  align-items: center;
  animation: slideIn 0.4s var(--ease-out);
}
@keyframes slideIn {
  from { opacity: 0; transform: translateX(20px); }
  to { opacity: 1; transform: translateX(0); }
}
.cart__item-img {
  width: 64px; height: 80px;
  background: radial-gradient(ellipse at top, rgba(200,169,106,0.18), transparent);
  border: 1px solid var(--line);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 6px 0;
}
.cart__item-img .bottle-svg { width: 24px; height: 60px; }
.cart__item-name { font-family: var(--serif); font-size: 16px; font-weight: 500; margin-bottom: 4px; }
.cart__item-meta { font-size: 12px; color: var(--text-mute); margin-bottom: 8px; }
.cart__item-controls { display: flex; align-items: center; gap: 6px; }
.qty-btn {
  width: 24px; height: 24px;
  border-radius: 999px;
  border: 1px solid var(--line-2);
  display: flex; align-items: center; justify-content: center;
  font-size: 14px;
  color: var(--text);
  transition: all 0.2s var(--ease);
}
.qty-btn:hover { background: var(--gold); color: #15110a; border-color: var(--gold); }
.qty-val { font-size: 13px; min-width: 20px; text-align: center; }
.cart__item-right { text-align: right; }
.cart__item-price { font-family: var(--serif); font-size: 16px; font-weight: 600; color: var(--gold-2); margin-bottom: 8px; }
.cart__item-remove { font-size: 11px; color: var(--text-mute); letter-spacing: 0.1em; text-transform: uppercase; transition: color 0.2s; }
.cart__item-remove:hover { color: var(--danger); }

.cart__foot { padding: 24px; border-top: 1px solid var(--line); }
.cart__row { display: flex; justify-content: space-between; padding: 8px 0; font-size: 14px; color: var(--text-dim); }
.cart__row--total {
  font-size: 18px;
  color: var(--text);
  font-family: var(--serif);
  font-weight: 600;
  border-top: 1px solid var(--line);
  margin-top: 8px;
  padding-top: 14px;
  margin-bottom: 18px;
}
.cart__row--total span:last-child { color: var(--gold-2); font-size: 24px; }
.cart__note { font-size: 11px; color: var(--text-mute); text-align: center; margin-top: 14px; letter-spacing: 0.04em; }

/* ============ TOAST ============ */
.toast {
  position: fixed;
  bottom: 32px; left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: var(--gold);
  color: #15110a;
  padding: 14px 24px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 300;
  opacity: 0;
  transition: all 0.4s var(--ease);
  box-shadow: 0 20px 50px rgba(200, 169, 106, 0.3);
  font-weight: 500;
  font-size: 14px;
}
.toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }
.toast__icon {
  width: 24px; height: 24px;
  border-radius: 999px;
  background: #15110a;
  color: var(--gold);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700;
}

/* ============ REVEAL ANIMATION ============ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
}
.reveal.in-view { opacity: 1; transform: translateY(0); }

/* Title reveal stagger */
.hero__title.in-view .line {
  animation: titleReveal 1s var(--ease-out) forwards;
}
.hero__title .line:nth-child(1) { animation-delay: 0.1s; }
.hero__title .line:nth-child(2) { animation-delay: 0.25s; }
.hero__title .line:nth-child(3) { animation-delay: 0.4s; }
.hero__title .line { display: block; transform: translateY(110%); }
@keyframes titleReveal {
  to { transform: translateY(0); }
}

/* Custom scrollbar */
::-webkit-scrollbar { width: 8px; height: 8px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--bg-3); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--gold-dark); }

/* Selection */
::selection { background: var(--gold); color: #15110a; }
