:root {
  --navy-950: #070f1a;
  --navy-900: #0c1a2b;
  --navy-800: #122439;
  --navy-700: #1a3049;
  --navy-600: #24405f;
  --gold-500: #d9a45b;
  --gold-400: #e6b976;
  --gold-300: #f0d3a0;
  --teal-500: #3f7a76;
  --teal-400: #5a9d97;
  --cream-100: #f5ecd9;
  --cream-200: #ece0c6;
  --ink-muted: #a9b7c6;
  --danger: #c0553f;

  --font-display: 'Cinzel', serif;
  --font-body: 'Kanit', sans-serif;

  --container-w: 1180px;
  --radius: 14px;
  --shadow-lg: 0 20px 50px rgba(0,0,0,0.45);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--navy-950);
  color: var(--cream-100);
  font-family: var(--font-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

.hidden { display: none !important; }

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

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

.container {
  width: 100%;
  max-width: var(--container-w);
  margin: 0 auto;
  padding: 0 24px;
}

.eyebrow {
  font-family: var(--font-display);
  letter-spacing: 0.25em;
  font-size: 12px;
  color: var(--gold-400);
  text-transform: uppercase;
  margin: 0 0 10px;
}
.eyebrow--center { text-align: center; }

.section-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(26px, 4vw, 38px);
  margin: 0 0 28px;
  color: var(--cream-100);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 999px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  border: 1px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.btn--primary {
  background: linear-gradient(135deg, var(--gold-400), var(--gold-500));
  color: var(--navy-950);
  box-shadow: 0 10px 24px rgba(217, 164, 91, 0.25);
}
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 14px 30px rgba(217, 164, 91, 0.35); }
.btn--ghost {
  background: transparent;
  color: var(--cream-100);
  border-color: rgba(245, 236, 217, 0.35);
}
.btn--ghost:hover { background: rgba(245, 236, 217, 0.08); transform: translateY(-2px); }

/* ===== Age Gate ===== */
.age-gate, .age-block {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle at top, var(--navy-800), var(--navy-950) 70%);
  padding: 20px;
}
.age-gate__card {
  max-width: 420px;
  width: 100%;
  text-align: center;
  background: var(--navy-900);
  border: 1px solid rgba(217, 164, 91, 0.25);
  border-radius: var(--radius);
  padding: 40px 32px;
  box-shadow: var(--shadow-lg);
}
.age-gate__logo { width: 110px; margin: 0 auto 18px; }
.age-gate__card h2 {
  font-family: var(--font-display);
  font-size: 22px;
  margin: 0 0 12px;
}
.age-gate__card p { color: var(--ink-muted); font-size: 14px; margin: 0 0 22px; }
.age-gate__actions { display: flex; flex-direction: column; gap: 12px; }
.age-gate__legal { margin-top: 20px !important; font-size: 12px !important; letter-spacing: 0.05em; color: var(--gold-400) !important; }
.age-gate__th { display: block; font-size: 0.82em; color: var(--ink-muted); margin-top: 4px; font-weight: 400; }

/* ===== Header ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(7, 15, 26, 0.85);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(217, 164, 91, 0.15);
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand__logo { width: 46px; height: 46px; border-radius: 50%; }
.brand__text { display: flex; flex-direction: column; line-height: 1.1; }
.brand__th { font-family: var(--font-display); font-size: 18px; color: var(--gold-300); }
.brand__en { font-size: 10px; letter-spacing: 0.18em; color: var(--ink-muted); }
.nav { display: flex; gap: 32px; }
.nav a {
  font-size: 15px;
  font-weight: 500;
  color: var(--cream-200);
  position: relative;
  padding: 4px 0;
}
.nav a:hover { color: var(--gold-400); }
.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--cream-100);
  font-size: 24px;
  cursor: pointer;
}
.lang-switch {
  display: flex;
  align-items: center;
  background: rgba(245, 236, 217, 0.06);
  border: 1px solid rgba(217, 164, 91, 0.25);
  border-radius: 999px;
  padding: 3px;
  cursor: pointer;
  gap: 2px;
}
.lang-switch__opt {
  padding: 5px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--ink-muted);
  transition: all 0.2s ease;
}
.lang-switch__opt.active {
  background: var(--gold-400);
  color: var(--navy-950);
}

/* ===== Hero ===== */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 20%, rgba(63, 122, 118, 0.25), transparent 45%),
    radial-gradient(circle at 80% 30%, rgba(217, 164, 91, 0.18), transparent 50%),
    radial-gradient(circle at 50% 100%, rgba(217, 164, 91, 0.12), transparent 60%),
    linear-gradient(180deg, var(--navy-950), var(--navy-900) 60%, var(--navy-950));
}
.hero__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(245,236,217,0.06) 1px, transparent 1px);
  background-size: 22px 22px;
  opacity: 0.5;
}
.hero__inner { position: relative; z-index: 1; }
.hero__title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(48px, 10vw, 108px);
  line-height: 0.95;
  margin: 0 0 20px;
  color: var(--cream-100);
  text-shadow: 0 4px 30px rgba(217, 164, 91, 0.25);
}
.hero__title span {
  display: block;
  font-size: 0.32em;
  letter-spacing: 0.35em;
  color: var(--gold-400);
  font-weight: 700;
  margin-top: 10px;
}
.hero__tagline {
  max-width: 560px;
  margin: 0 auto 36px;
  color: var(--ink-muted);
  font-size: 17px;
}
.hero__actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.hero__scroll {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 12px;
  letter-spacing: 0.1em;
  color: var(--ink-muted);
  animation: bob 2.4s ease-in-out infinite;
}
@keyframes bob {
  0%, 100% { transform: translate(-50%, 0); }
  50% { transform: translate(-50%, 8px); }
}

/* ===== Products ===== */
.products { padding: 100px 0 80px; background: var(--navy-950); }
.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 40px;
}
.filter-chip {
  padding: 8px 18px;
  border-radius: 999px;
  border: 1px solid rgba(245, 236, 217, 0.2);
  background: transparent;
  color: var(--cream-200);
  font-family: var(--font-body);
  font-size: 13px;
  cursor: pointer;
  transition: all 0.2s ease;
}
.filter-chip:hover { border-color: var(--gold-400); color: var(--gold-400); }
.filter-chip.active {
  background: var(--gold-400);
  border-color: var(--gold-400);
  color: var(--navy-950);
  font-weight: 600;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 26px;
}
.product-card {
  background: linear-gradient(180deg, var(--navy-800), var(--navy-900));
  border: 1px solid rgba(217, 164, 91, 0.12);
  border-radius: var(--radius);
  padding: 26px 22px 22px;
  text-align: center;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

/* ===== Badges ===== */
.product-card__badges {
  position: absolute;
  top: 14px;
  left: -6px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 6px;
  align-items: flex-start;
}
.modal .product-card__badges,
.modal__body .product-card__badges {
  position: static;
  flex-direction: row;
  margin-bottom: 12px;
}
.badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 5px 12px 5px 10px;
  border-radius: 0 999px 999px 0;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  box-shadow: 0 6px 14px rgba(0,0,0,0.35);
  white-space: nowrap;
}
.modal .badge,
.modal__body .badge {
  border-radius: 999px;
}
.badge svg { width: 12px; height: 12px; flex-shrink: 0; }
.badge em { font-style: normal; }
.badge--bestseller {
  background: linear-gradient(135deg, var(--gold-300), var(--gold-500));
  color: var(--navy-950);
}
.badge--signature {
  background: linear-gradient(135deg, var(--teal-400), var(--teal-500));
  color: var(--navy-950);
}
.product-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(217, 164, 91, 0.4);
}
.product-card__img-wrap {
  height: 310px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  position: relative;
}
.product-card__img-wrap::before {
  content: "";
  position: absolute;
  width: 70%;
  height: 70%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(217, 164, 91, 0.30) 0%, rgba(63, 122, 118, 0.16) 55%, transparent 75%);
  filter: blur(6px);
  z-index: 0;
}
.product-card__img-wrap img {
  position: relative;
  z-index: 1;
  max-height: 100%;
  max-width: 92%;
  object-fit: contain;
  filter: drop-shadow(0 16px 16px rgba(0,0,0,0.55));
  transition: transform 0.3s ease;
}
.product-card:hover .product-card__img-wrap img { transform: scale(1.05) translateY(-4px); }
.product-card__style {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--teal-400);
  margin-bottom: 6px;
}
.product-card__name {
  font-family: var(--font-display);
  font-size: 20px;
  color: var(--cream-100);
  margin: 0 0 4px;
}
.product-card__specs {
  margin-top: auto;
  display: flex;
  gap: 8px;
  justify-content: center;
  flex-wrap: wrap;
  padding-top: 10px;
}
.spec-chip {
  display: inline-flex;
  padding: 4px 12px;
  border-radius: 999px;
  background: rgba(217, 164, 91, 0.12);
  color: var(--gold-400);
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.03em;
  white-space: nowrap;
}

/* ===== Story ===== */
.story { padding: 80px 0; background: var(--navy-900); border-top: 1px solid rgba(217,164,91,0.1); border-bottom: 1px solid rgba(217,164,91,0.1); }
.story__inner {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 60px;
  align-items: center;
}
.story__media { display: flex; justify-content: center; }
.story__badge {
  width: 100%;
  max-width: 300px;
  filter: drop-shadow(0 20px 30px rgba(0,0,0,0.5));
}
.story__text p { color: var(--ink-muted); margin: 0 0 16px; font-size: 15.5px; }
.story__stats { display: flex; gap: 36px; margin-top: 28px; }
.story__stats strong { display: block; font-family: var(--font-display); font-size: 28px; color: var(--gold-400); }
.story__stats span { font-size: 12px; color: var(--ink-muted); letter-spacing: 0.05em; }

/* ===== Contact ===== */
.contact { padding: 90px 0; text-align: center; }
.contact__desc { max-width: 520px; margin: 0 auto 40px; color: var(--ink-muted); }
.contact__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 18px;
}
.contact__card {
  background: var(--navy-800);
  border: 1px solid rgba(217, 164, 91, 0.15);
  border-radius: var(--radius);
  padding: 28px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  transition: transform 0.2s ease, border-color 0.2s ease;
}
.contact__card:hover { transform: translateY(-4px); border-color: var(--gold-400); }
.contact__icon { font-size: 28px; margin-bottom: 6px; }
.contact__label { font-weight: 600; color: var(--cream-100); }
.contact__value { font-size: 13px; color: var(--ink-muted); }

/* ===== Footer ===== */
.site-footer { padding: 40px 0; background: var(--navy-950); border-top: 1px solid rgba(217,164,91,0.1); }
.site-footer__inner { text-align: center; color: var(--ink-muted); font-size: 13px; }
.site-footer__logo { width: 56px; margin: 0 auto 14px; opacity: 0.85; }
.site-footer p { margin: 4px 0; }
.site-footer__warn { color: var(--gold-400); font-size: 11.5px; letter-spacing: 0.03em; }

/* ===== Modal ===== */
.modal { position: fixed; inset: 0; z-index: 300; display: flex; align-items: center; justify-content: center; padding: 20px; }
.modal__backdrop { position: absolute; inset: 0; background: rgba(4, 9, 16, 0.75); backdrop-filter: blur(4px); }
.modal__card {
  position: relative;
  z-index: 1;
  background: var(--navy-900);
  border: 1px solid rgba(217, 164, 91, 0.25);
  border-radius: var(--radius);
  max-width: 640px;
  width: 100%;
  max-height: 88vh;
  overflow-y: auto;
  padding: 34px;
  box-shadow: var(--shadow-lg);
}
.modal__close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: rgba(245,236,217,0.08);
  border: none;
  color: var(--cream-100);
  width: 34px;
  height: 34px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 18px;
}
.modal__body { display: flex; gap: 26px; }
.modal__img {
  width: 220px;
  flex-shrink: 0;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px;
}
.modal__img::before {
  content: "";
  position: absolute;
  width: 80%;
  height: 80%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(217, 164, 91, 0.28) 0%, rgba(63, 122, 118, 0.14) 55%, transparent 75%);
  filter: blur(6px);
  z-index: 0;
}
.modal__img img { position: relative; z-index: 1; max-width: 100%; filter: drop-shadow(0 12px 14px rgba(0,0,0,0.5)); }
.modal__style { font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--teal-400); margin-bottom: 8px; }
.modal__name { font-family: var(--font-display); font-size: 26px; margin: 0 0 14px; }
.modal__specs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(217, 164, 91, 0.15);
}
.modal__spec {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.modal__spec span { font-size: 10.5px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink-muted); }
.modal__spec strong { font-size: 15px; color: var(--gold-400); display: flex; align-items: center; gap: 6px; font-weight: 600; }
.swatch {
  display: inline-block;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 1px solid rgba(245, 236, 217, 0.35);
}
.modal__section-label {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal-400);
  margin: 14px 0 8px;
}
.modal__tags { display: flex; flex-wrap: wrap; gap: 8px; margin: 0 0 4px; }
.modal__tag {
  font-size: 12px;
  padding: 4px 12px;
  border-radius: 999px;
  background: rgba(63, 122, 118, 0.18);
  color: var(--teal-400);
  border: 1px solid rgba(63, 122, 118, 0.35);
}
.modal__desc { color: var(--cream-200); font-size: 14.5px; line-height: 1.7; }

/* ===== Responsive ===== */

/* Tablet (portrait & landscape) */
@media (max-width: 1024px) {
  .container { padding: 0 20px; }
  .nav { gap: 20px; }
  .story__inner { gap: 36px; }
  .product-grid { grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 20px; }
  .product-card__img-wrap { height: 280px; }
}
@media (max-width: 900px) {
  .story__inner { grid-template-columns: 1fr; text-align: center; }
  .story__text p { text-align: left; }
  .modal__body { flex-direction: column; align-items: center; text-align: center; }
  .modal__specs { justify-content: center; }
  .contact__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 840px) {
  .nav { display: none; }
  .nav-toggle { display: block; }
  .site-header__inner.nav-open .nav {
    display: flex;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--navy-900);
    flex-direction: column;
    align-items: flex-start;
    padding: 16px 24px 20px;
    gap: 16px;
    border-bottom: 1px solid rgba(217,164,91,0.15);
  }
  .site-header__inner.nav-open .lang-switch { margin-top: 4px; }
}

/* Mobile */
@media (max-width: 600px) {
  .hero { min-height: 88vh; }
  .hero__actions { flex-direction: column; width: 100%; }
  .hero__actions .btn { width: 100%; }
  .product-grid { grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 16px; }
  .product-card { padding: 18px 14px 16px; }
  .product-card__img-wrap { height: 260px; }
  .contact__grid { grid-template-columns: 1fr; }
  .story__stats { gap: 24px; flex-wrap: wrap; }
}
