/* ══════════════════════════════════════════════════════
   MAEHONGSON CANNABIS SHOP — เมืองสามหมอก
   Desert Punk × Dark Luxury · GSAP Neon Sign
   Mobile-first · 8pt grid · WCAG AA
══════════════════════════════════════════════════════ */

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

:root {
  /* Palette */
  --c-base:          #090e09;
  --c-surface:       #0f1a0f;
  --c-surface-2:     #162116;
  --c-border:        #1e2e1e;
  --c-border-light:  #263326;
  --c-text:          #e4ddd0;
  --c-text-muted:    #8a7e72;
  --c-text-subtle:   #55504a;
  --c-gold:          #c9a227;
  --c-gold-hover:    #b8911f;
  --c-gold-dim:      rgba(201,162,39,0.12);
  --c-green:         #4a7c3f;
  --c-green-light:   #6aac5f;
  --c-green-pale:    rgba(74,124,63,0.15);
  --c-white:         #faf8f3;
  --c-overlay:       rgba(9,14,9,0.85);

  /* Strains */
  --c-sativa:        #e8a020;
  --c-indica:        #7c5cbf;
  --c-hybrid:        #3a9e6a;
  --c-cbd:           #2e9e9e;

  /* Typography */
  --font-display:    'Fraunces', Georgia, serif;
  --font-body:       'Plus Jakarta Sans', system-ui, sans-serif;

  /* Type scale */
  --text-display:    clamp(3rem, 10vw, 8rem);
  --text-h1:         clamp(2.25rem, 5vw, 4rem);
  --text-h2:         clamp(1.75rem, 3.5vw, 3rem);
  --text-h3:         clamp(1.25rem, 2vw, 1.75rem);
  --text-body:       1rem;
  --text-sm:         0.875rem;
  --text-xs:         0.75rem;

  /* Spacing (8pt grid) */
  --sp-1: 4px;   --sp-2: 8px;   --sp-3: 12px;  --sp-4: 16px;
  --sp-5: 24px;  --sp-6: 32px;  --sp-7: 48px;  --sp-8: 64px;
  --sp-9: 96px;  --sp-10: 128px;

  /* Layout */
  --container:       1280px;
  --container-pad:   clamp(16px, 5vw, 64px);

  /* Motion */
  --ease-out:        cubic-bezier(0.22, 1, 0.36, 1);
  --ease-in-out:     cubic-bezier(0.65, 0, 0.35, 1);
  --dur-fast:        150ms;
  --dur-med:         300ms;
  --dur-slow:        600ms;

  /* Radius */
  --r-sm: 6px;
  --r-md: 12px;
  --r-lg: 20px;
  --r-pill: 999px;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  background-color: var(--c-base);
  color: var(--c-text);
  font-family: var(--font-body);
  font-size: var(--text-body);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

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

.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--container-pad);
}

/* ── Typography ── */
.section-eyebrow {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-gold);
  margin-bottom: var(--sp-3);
}

.section-heading {
  font-family: var(--font-display);
  font-size: var(--text-h2);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--c-white);
  margin-bottom: var(--sp-5);
}
.section-heading em {
  font-style: italic;
  color: var(--c-gold);
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  padding: 14px 28px;
  border-radius: var(--r-pill);
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 600;
  letter-spacing: 0.04em;
  transition: all var(--dur-fast) var(--ease-out);
  white-space: nowrap;
  min-height: 48px;
}
.btn:focus-visible {
  outline: 2px solid var(--c-gold);
  outline-offset: 3px;
}
.btn--primary {
  background: var(--c-gold);
  color: var(--c-base);
}
.btn--primary:hover {
  background: var(--c-gold-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201,162,39,0.3);
}
.btn--primary:active { transform: translateY(0) scale(0.98); }

.btn--ghost {
  background: transparent;
  color: var(--c-text);
  border: 1.5px solid var(--c-border-light);
}
.btn--ghost:hover {
  border-color: var(--c-gold);
  color: var(--c-gold);
  transform: translateY(-2px);
}

.btn--small {
  padding: 8px 18px;
  font-size: var(--text-xs);
  min-height: 36px;
  border-radius: var(--r-pill);
  background: var(--c-gold-dim);
  color: var(--c-gold);
  border: 1px solid rgba(201,162,39,0.25);
}
.btn--small:hover {
  background: var(--c-gold);
  color: var(--c-base);
}

/* ════════════════════════════════════════
   NAVIGATION
════════════════════════════════════════ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: var(--sp-4) 0;
  transition: background var(--dur-med) var(--ease-out),
              padding var(--dur-med) var(--ease-out),
              box-shadow var(--dur-med) var(--ease-out);
}
.nav.nav--scrolled {
  background: rgba(9,14,9,0.92);
  backdrop-filter: blur(16px) saturate(1.4);
  -webkit-backdrop-filter: blur(16px) saturate(1.4);
  padding: var(--sp-3) 0;
  box-shadow: 0 1px 0 var(--c-border);
}

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

/* Push lang toggle to the right on mobile, next to hamburger */
@media (max-width: 767px) {
  .nav__inner { gap: var(--sp-3); }
  .lang-toggle { margin-left: auto; }
}
@media (min-width: 768px) {
  .lang-toggle { order: 3; } /* sits between nav links and cta */
}

.nav__logo {
  display: flex;
  flex-direction: column;
  gap: 1px;
  text-decoration: none;
}
.nav__logo-en {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--c-white);
  line-height: 1;
}
.nav__logo-th {
  font-size: var(--text-xs);
  color: var(--c-gold);
  letter-spacing: 0.04em;
  line-height: 1;
}

.nav__menu {
  display: none;
  gap: var(--sp-6);
  align-items: center;
}
@media (min-width: 768px) {
  .nav__menu { display: flex; }
}

.nav__link {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1px;
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--c-text-muted);
  transition: color var(--dur-fast);
  position: relative;
}
.nav__link span {
  font-size: 10px;
  color: var(--c-text-subtle);
  letter-spacing: 0.06em;
  font-weight: 400;
  transition: color var(--dur-fast);
}
.nav__link::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 50%; right: 50%;
  height: 1px;
  background: var(--c-gold);
  transition: left var(--dur-med) var(--ease-out), right var(--dur-med) var(--ease-out);
}
.nav__link:hover,
.nav__link:hover span { color: var(--c-white); }
.nav__link:hover::after { left: 0; right: 0; }

.nav__link--cta {
  padding: 8px 20px;
  border-radius: var(--r-pill);
  background: var(--c-gold-dim);
  border: 1px solid rgba(201,162,39,0.3);
  color: var(--c-gold);
}
.nav__link--cta span { color: var(--c-gold); opacity: 0.7; }
.nav__link--cta::after { display: none; }
.nav__link--cta:hover {
  background: var(--c-gold);
  color: var(--c-base);
}
.nav__link--cta:hover span { color: var(--c-base); }

/* ── Line Nav Button ── */
.nav__line-btn {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  padding: 8px 16px;
  border-radius: var(--r-pill);
  background: #06c755;
  color: #fff;
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 600;
  letter-spacing: 0.02em;
  white-space: nowrap;
  transition: background var(--dur-fast) var(--ease-out),
              transform var(--dur-fast) var(--ease-out),
              box-shadow var(--dur-fast) var(--ease-out);
  box-shadow: 0 2px 12px rgba(6,199,85,0.35);
  text-decoration: none;
  flex-shrink: 0;
}
.nav__line-btn:hover {
  background: #05b04b;
  transform: translateY(-1px);
  box-shadow: 0 4px 18px rgba(6,199,85,0.5);
}
.nav__line-btn:active { transform: translateY(0); }
.nav__line-btn svg { flex-shrink: 0; }

/* hide text label on very small screens, show icon only */
@media (max-width: 380px) {
  .nav__line-btn span { display: none; }
  .nav__line-btn { padding: 8px 10px; }
}

/* Mobile hamburger */
.nav__toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: var(--sp-2);
  z-index: 1001;
}
@media (min-width: 768px) { .nav__toggle { display: none; } }

.nav__toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--c-text);
  border-radius: 2px;
  transition: all var(--dur-med) var(--ease-out);
  transform-origin: center;
}
.nav__toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle.is-open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav__toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Language Toggle ── */
.lang-toggle {
  display: flex;
  align-items: center;
  position: relative;
  padding: 3px;
  border-radius: var(--r-pill);
  background: rgba(0,0,0,0.35);
  border: 1px solid rgba(0,255,100,0.22);
  backdrop-filter: blur(8px);
  gap: 0;
  flex-shrink: 0;
}

.lang-toggle__btn {
  position: relative;
  z-index: 2;
  padding: 5px 13px;
  border-radius: var(--r-pill);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--c-text-muted);
  min-height: 30px;
  min-width: 38px;
  transition: color var(--dur-med) var(--ease-out);
  white-space: nowrap;
}
.lang-toggle__btn.is-active {
  color: #00ff66;
  text-shadow: 0 0 8px rgba(0,255,100,0.6);
}
.lang-toggle__btn:focus-visible {
  outline: 2px solid var(--c-gold);
  outline-offset: 2px;
}

/* Sliding pill indicator — GSAP moves this */
.lang-toggle__pill {
  position: absolute;
  top: 3px;
  left: 3px;
  height: calc(100% - 6px);
  border-radius: var(--r-pill);
  background: rgba(0,255,100,0.12);
  border: 1px solid rgba(0,255,100,0.35);
  box-shadow: 0 0 10px rgba(0,255,100,0.15), inset 0 0 6px rgba(0,255,100,0.05);
  pointer-events: none;
  z-index: 1;
}

/* ── Language visibility ── */
/* Default = English */
.t-th { display: none; }

body.lang-th .t-th { display: inline; }
body.lang-th .t-en { display: none; }

/* Block-level language switching (p, div, li, h2 must use block not inline) */
p.t-en, div.t-en, li.t-en, h2.t-en { display: block; }
p.t-th, div.t-th, li.t-th, h2.t-th { display: none; }
body.lang-th p.t-th, body.lang-th div.t-th, body.lang-th li.t-th, body.lang-th h2.t-th { display: block; }
body.lang-th p.t-en, body.lang-th div.t-en, body.lang-th li.t-en, body.lang-th h2.t-en { display: none; }

/* Hero H1 language lines */
.hero__h1 .line-th { display: none; }
body.lang-th .hero__h1 .line-en { display: none; }
body.lang-th .hero__h1 .line-th { display: block; }

/* Mobile menu overlay */
@media (max-width: 767px) {
  .nav__menu {
    display: flex;
    flex-direction: column;
    position: fixed;
    inset: 0;
    background: rgba(9,14,9,0.97);
    backdrop-filter: blur(20px);
    justify-content: center;
    align-items: center;
    gap: var(--sp-7);
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--dur-med) var(--ease-out);
  }
  .nav__menu.is-open {
    opacity: 1;
    pointer-events: all;
  }
  .nav__link {
    font-size: 1.5rem;
    letter-spacing: 0.06em;
  }
  .nav__link span { font-size: 0.875rem; }
  .nav__link--cta { padding: 12px 32px; }
}

/* ════════════════════════════════════════
   HERO
════════════════════════════════════════ */
.hero {
  position: relative;
  height: 100svh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

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

/* Hero photo — save the uploaded image to images/hero.jpg */
.hero__img {
  position: absolute;
  inset: 0;
  background-image: url('../images/hero.png');
  background-size: cover;
  background-position: center 15%;
  background-repeat: no-repeat;
  background-color: #1a2e0a;
  transform-origin: center bottom;
  will-change: transform;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  /* Light dark strip at top for nav, mostly transparent so graphic shows through */
  background:
    linear-gradient(180deg,
      rgba(5,8,4,0.60)  0%,
      rgba(5,8,4,0.10) 18%,
      rgba(5,8,4,0.00) 40%,
      rgba(5,8,4,0.00) 70%,
      rgba(5,8,4,0.55) 90%,
      rgba(5,8,4,0.75) 100%
    );
}

.hero__content {
  position: relative;
  z-index: 1;
  text-align: center;
  width: 100%;
  /* Anchor buttons to the bottom of the hero */
  position: absolute;
  bottom: clamp(40px, 8vh, 80px);
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
}

.hero__actions {
  display: flex;
  gap: var(--sp-4);
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
}

.hero__scroll-hint {
  position: absolute;
  bottom: var(--sp-7);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-2);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(0,255,100,0.4);
  opacity: 0;
  z-index: 1;
}
.hero__scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, #00ff66, transparent);
  box-shadow: 0 0 6px rgba(0,255,100,0.5);
  animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine {
  0%   { transform: scaleY(0); transform-origin: top; }
  50%  { transform: scaleY(1); transform-origin: top; }
  51%  { transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ════════════════════════════════════════
   ABOUT
════════════════════════════════════════ */
.about {
  padding: var(--sp-10) 0;
  position: relative;
}
.about::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--c-border-light), transparent);
}

.about__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-8);
}
@media (min-width: 1024px) {
  .about__grid { grid-template-columns: 1fr 1fr; align-items: start; }
}

.about__img-wrap {
  position: relative;
  aspect-ratio: 4 / 5;
  max-width: 480px;
  margin-inline: auto;
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--c-surface);
  border: 1px solid var(--c-border);
}

/* Placeholder artwork — replace with real photo */
.about__img-placeholder {
  width: 100%; height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(ellipse 80% 80% at 50% 100%, rgba(74,124,63,0.2) 0%, transparent 70%),
    radial-gradient(ellipse 60% 60% at 30% 50%, rgba(201,162,39,0.06) 0%, transparent 60%),
    var(--c-surface);
  position: relative;
}
.about__img-leaf {
  position: absolute;
  width: 120px; height: 200px;
  background: linear-gradient(135deg, rgba(74,124,63,0.3), rgba(106,172,95,0.15));
  border-radius: 50% 0 50% 0;
  top: 20%; left: 30%;
  transform: rotate(-20deg);
}
.about__img-leaf--2 {
  width: 80px; height: 140px;
  top: 40%; left: 55%;
  transform: rotate(30deg);
  background: linear-gradient(135deg, rgba(74,124,63,0.2), rgba(106,172,95,0.1));
}
.about__img-leaf--3 {
  width: 60px; height: 100px;
  top: 10%; left: 20%;
  transform: rotate(-40deg);
  background: linear-gradient(135deg, rgba(201,162,39,0.15), rgba(201,162,39,0.05));
}

.about__badge {
  position: absolute;
  bottom: var(--sp-5);
  right: var(--sp-5);
  background: rgba(201,162,39,0.95);
  color: var(--c-base);
  padding: var(--sp-4) var(--sp-5);
  border-radius: var(--r-md);
  text-align: center;
}
.about__badge-year {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
}
.about__badge-text {
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.about__stat-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-4);
  margin-top: var(--sp-5);
}
.about__stat {
  text-align: center;
  padding: var(--sp-5) var(--sp-3);
  background: var(--c-surface);
  border-radius: var(--r-md);
  border: 1px solid var(--c-border);
}
.about__stat-num {
  display: block;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--c-gold);
  line-height: 1.2;
}
.about__stat-label {
  display: block;
  font-size: 11px;
  color: var(--c-text-muted);
  letter-spacing: 0.04em;
  margin-top: 4px;
}

.about__copy { padding-top: var(--sp-4); }
@media (min-width: 1024px) { .about__copy { padding-top: var(--sp-8); } }

.about__body {
  color: var(--c-text-muted);
  line-height: 1.8;
  margin-bottom: var(--sp-5);
}
.about__body strong { color: var(--c-text); }

.about__pillars {
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
  margin-top: var(--sp-6);
}
.about__pillar {
  display: flex;
  gap: var(--sp-4);
  align-items: flex-start;
  padding: var(--sp-4) var(--sp-5);
  background: var(--c-surface);
  border-radius: var(--r-md);
  border: 1px solid var(--c-border);
  transition: border-color var(--dur-med), background var(--dur-med);
}
.about__pillar:hover {
  border-color: var(--c-gold);
  background: rgba(201,162,39,0.04);
}
.about__pillar-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
  width: 40px;
  text-align: center;
}
.about__pillar strong {
  display: block;
  font-weight: 600;
  color: var(--c-white);
  margin-bottom: 2px;
  font-size: var(--text-sm);
}
.about__pillar span {
  font-size: var(--text-sm);
  color: var(--c-text-muted);
}

/* ════════════════════════════════════════
   MENU
════════════════════════════════════════ */
.menu {
  padding: var(--sp-10) 0;
  background: var(--c-surface);
  position: relative;
}
.menu::before, .menu::after {
  content: '';
  position: absolute;
  left: 0; right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--c-border-light), transparent);
}
.menu::before { top: 0; }
.menu::after { bottom: 0; }

.menu__header {
  text-align: center;
  max-width: 600px;
  margin-inline: auto;
  margin-bottom: var(--sp-7);
}
.menu__intro {
  color: var(--c-text-muted);
  font-size: var(--text-sm);
}

.menu__filters {
  display: flex;
  gap: var(--sp-2);
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: var(--sp-7);
}
.menu__filter {
  padding: 10px 20px;
  border-radius: var(--r-pill);
  font-size: var(--text-sm);
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--c-text-muted);
  border: 1.5px solid var(--c-border-light);
  background: transparent;
  transition: all var(--dur-fast) var(--ease-out);
  min-height: 44px;
}
.menu__filter:hover {
  border-color: var(--c-gold);
  color: var(--c-gold);
}
.menu__filter--active,
.menu__filter[aria-selected="true"] {
  background: var(--c-gold);
  border-color: var(--c-gold);
  color: var(--c-base);
}
.menu__filter:focus-visible {
  outline: 2px solid var(--c-gold);
  outline-offset: 3px;
}

.menu__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(280px, 100%), 1fr));
  gap: var(--sp-5);
}

/* Product card */
.product-card {
  background: var(--c-surface-2);
  border-radius: var(--r-lg);
  border: 1px solid var(--c-border);
  overflow: hidden;
  transition: transform var(--dur-med) var(--ease-out),
              border-color var(--dur-med),
              box-shadow var(--dur-med) var(--ease-out);
  position: relative;
  cursor: pointer;
  outline: none;
}
.product-card:hover,
.product-card:focus-visible {
  transform: translateY(-6px);
  border-color: rgba(201,162,39,0.4);
  box-shadow: 0 20px 48px rgba(0,0,0,0.4), 0 0 0 1px rgba(201,162,39,0.15);
}
.product-card:focus-visible { outline: 2px solid var(--c-gold); }

.product-card.is-hidden {
  display: none;
}

.product-card__badge {
  position: absolute;
  top: var(--sp-4);
  left: var(--sp-4);
  z-index: 1;
  padding: 4px 12px;
  border-radius: var(--r-pill);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.product-card__badge--sativa  { background: rgba(232,160,32,0.15);  color: var(--c-sativa);  border: 1px solid rgba(232,160,32,0.3); }
.product-card__badge--indica  { background: rgba(124,92,191,0.15); color: var(--c-indica);  border: 1px solid rgba(124,92,191,0.3); }
.product-card__badge--hybrid  { background: rgba(58,158,106,0.15); color: var(--c-hybrid);  border: 1px solid rgba(58,158,106,0.3); }
.product-card__badge--cbd     { background: rgba(46,158,158,0.15); color: var(--c-cbd);     border: 1px solid rgba(46,158,158,0.3); }

.product-card__img {
  height: 160px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.product-card__img-bg {
  position: absolute;
  inset: 0;
  opacity: 0.7;
  transition: opacity var(--dur-med), transform var(--dur-slow) var(--ease-out);
}
.product-card:hover .product-card__img-bg {
  opacity: 1;
  transform: scale(1.05);
}
.product-card__img-bg--green  { background: radial-gradient(ellipse at 50% 80%, rgba(74,124,63,0.4) 0%, rgba(15,26,15,0.8) 70%); }
.product-card__img-bg--purple { background: radial-gradient(ellipse at 50% 80%, rgba(124,92,191,0.35) 0%, rgba(15,10,25,0.8) 70%); }
.product-card__img-bg--gold   { background: radial-gradient(ellipse at 50% 80%, rgba(201,162,39,0.35) 0%, rgba(20,16,5,0.8) 70%); }
.product-card__img-bg--teal   { background: radial-gradient(ellipse at 50% 80%, rgba(46,158,158,0.35) 0%, rgba(5,20,20,0.8) 70%); }
.product-card__leaf-icon {
  font-size: 3rem;
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 4px 16px rgba(0,0,0,0.5));
  transition: transform var(--dur-med) var(--ease-out);
}
.product-card:hover .product-card__leaf-icon {
  transform: scale(1.1) translateY(-4px);
}

.product-card__body {
  padding: var(--sp-5);
}
.product-card__name {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--c-white);
  margin-bottom: 4px;
  line-height: 1.2;
}
.product-card__origin {
  font-size: var(--text-xs);
  color: var(--c-text-subtle);
  letter-spacing: 0.04em;
  margin-bottom: var(--sp-4);
}
.product-card__tags {
  display: flex;
  gap: var(--sp-2);
  flex-wrap: wrap;
  margin-bottom: var(--sp-4);
}
.product-card__tags span {
  padding: 3px 10px;
  border-radius: var(--r-pill);
  font-size: 11px;
  background: rgba(255,255,255,0.05);
  color: var(--c-text-muted);
  border: 1px solid var(--c-border);
}
.product-card__thc {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--c-green-light);
  margin-bottom: var(--sp-5);
  text-transform: uppercase;
}
.product-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-3);
  padding-top: var(--sp-4);
  border-top: 1px solid var(--c-border);
}
.product-card__price {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--c-gold);
  line-height: 1;
}
.product-card__price small {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  color: var(--c-text-subtle);
  font-weight: 400;
}

/* ════════════════════════════════════════
   MARQUEE BANNER
════════════════════════════════════════ */
.banner {
  padding: var(--sp-5) 0;
  background: var(--c-gold);
  overflow: hidden;
  position: relative;
}
.banner__track { overflow: hidden; }
.banner__inner {
  display: flex;
  gap: var(--sp-7);
  align-items: center;
  white-space: nowrap;
  animation: marquee 28s linear infinite;
  width: max-content;
}
.banner__inner span {
  font-size: var(--text-sm);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--c-base);
}
.banner__dot {
  font-size: 0.5rem;
  opacity: 0.5;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.banner:hover .banner__inner { animation-play-state: paused; }

/* ════════════════════════════════════════
   GALLERY
════════════════════════════════════════ */
.gallery {
  padding: var(--sp-10) 0;
}

.gallery__header {
  text-align: center;
  margin-bottom: var(--sp-7);
}

.gallery__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-auto-rows: 240px;
  gap: var(--sp-4);
}
@media (min-width: 768px) {
  .gallery__grid {
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 280px;
  }
}
@media (min-width: 1024px) {
  .gallery__grid { grid-auto-rows: 320px; }
}

.gallery__item { border-radius: var(--r-lg); overflow: hidden; }
.gallery__item--tall  { grid-row: span 2; }
.gallery__item--wide  { grid-column: span 2; }

.gallery__item-inner {
  width: 100%; height: 100%;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.gallery__placeholder {
  width: 100%; height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--sp-3);
  background:
    radial-gradient(ellipse 80% 80% at 50% 100%,
      hsl(var(--hue, 140), 40%, 12%) 0%,
      hsl(var(--hue, 140), 20%, 6%) 100%);
  transition: transform var(--dur-slow) var(--ease-out);
}
.gallery__item-inner:hover .gallery__placeholder {
  transform: scale(1.05);
}
.gallery__placeholder-icon { font-size: 3rem; opacity: 0.8; }
.gallery__placeholder span {
  font-size: var(--text-sm);
  color: var(--c-text-subtle);
  text-align: center;
  padding: 0 var(--sp-5);
}
.gallery__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(9,14,9,0.85) 0%, transparent 50%);
  display: flex;
  align-items: flex-end;
  padding: var(--sp-5);
  opacity: 0;
  transition: opacity var(--dur-med) var(--ease-out);
}
.gallery__item-inner:hover .gallery__overlay { opacity: 1; }
.gallery__overlay p {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--c-white);
  font-style: italic;
}

/* ════════════════════════════════════════
   CONTACT
════════════════════════════════════════ */
.contact {
  padding: var(--sp-10) 0;
  background: var(--c-surface);
  position: relative;
}
.contact::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--c-border-light), transparent);
}

.contact__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-8);
}
@media (min-width: 1024px) {
  .contact__grid { grid-template-columns: 1fr 1fr; align-items: start; }
}

.contact__details {
  display: flex;
  flex-direction: column;
  gap: var(--sp-5);
  margin-bottom: var(--sp-7);
}
.contact__item {
  display: flex;
  gap: var(--sp-4);
  align-items: flex-start;
}
.contact__icon {
  font-size: 1.25rem;
  width: 40px;
  flex-shrink: 0;
  text-align: center;
}
.contact__item strong {
  display: block;
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--c-white);
  margin-bottom: 4px;
}
.contact__item p {
  font-size: var(--text-sm);
  color: var(--c-text-muted);
  line-height: 1.6;
}
.contact__open-now {
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.04em;
}
.contact__open-now.is-open  { color: #22c55e; }
.contact__open-now.is-closed { color: #ef4444; }

.contact__ctas {
  display: flex;
  gap: var(--sp-4);
  flex-wrap: wrap;
}
.contact__cta {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  padding: 14px 24px;
  border-radius: var(--r-pill);
  font-size: var(--text-sm);
  font-weight: 600;
  transition: all var(--dur-fast) var(--ease-out);
  min-height: 52px;
}
.contact__cta:focus-visible { outline: 2px solid var(--c-gold); outline-offset: 3px; }
.contact__cta svg { width: 20px; height: 20px; flex-shrink: 0; }
.contact__cta--line {
  background: #00b900;
  color: #fff;
}
.contact__cta--line:hover {
  background: #00a000;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,185,0,0.3);
}
.contact__cta--whatsapp {
  background: #25d366;
  color: #fff;
}
.contact__cta--whatsapp:hover {
  background: #1da851;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37,211,102,0.3);
}

.contact__map-wrap { display: flex; flex-direction: column; gap: var(--sp-4); }
.contact__map {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--c-border);
  background: var(--c-surface-2);
}
.contact__map iframe { width: 100%; height: 100%; display: block; }
.contact__map-info {
  display: flex;
  gap: var(--sp-5);
  flex-wrap: wrap;
}
.contact__map-info span {
  font-size: var(--text-sm);
  color: var(--c-text-muted);
  display: flex;
  align-items: center;
  gap: var(--sp-2);
}

/* ════════════════════════════════════════
   FOOTER
════════════════════════════════════════ */
.footer {
  padding: var(--sp-9) 0 var(--sp-7);
  border-top: 1px solid var(--c-border);
}
.footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-7);
  margin-bottom: var(--sp-8);
}
@media (min-width: 768px) {
  .footer__grid { grid-template-columns: 2fr 1fr 2fr; }
}

.footer__logo {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--c-white);
  line-height: 1;
  margin-bottom: 4px;
}
.footer__logo-th {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-style: italic;
  color: var(--c-gold);
  margin-bottom: var(--sp-4);
}
.footer__tagline {
  font-size: var(--text-sm);
  color: var(--c-text-muted);
  line-height: 1.6;
}

.footer__links strong,
.footer__legal strong {
  display: block;
  font-size: var(--text-xs);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--c-text-subtle);
  margin-bottom: var(--sp-4);
}
.footer__links nav {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
}
.footer__links a {
  font-size: var(--text-sm);
  color: var(--c-text-muted);
  transition: color var(--dur-fast);
}
.footer__links a:hover { color: var(--c-gold); }

.footer__legal p {
  font-size: var(--text-xs);
  color: var(--c-text-subtle);
  line-height: 1.7;
  margin-bottom: var(--sp-3);
}

.footer__bottom {
  padding-top: var(--sp-6);
  border-top: 1px solid var(--c-border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--sp-3);
}
.footer__bottom p {
  font-size: var(--text-xs);
  color: var(--c-text-subtle);
}
.footer__craft { color: var(--c-gold) !important; opacity: 0.6; }

/* ════════════════════════════════════════
   AGE GATE
════════════════════════════════════════ */
.age-gate {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(9,14,9,0.97);
  backdrop-filter: blur(20px);
  padding: var(--sp-5);
  transition: opacity var(--dur-slow) var(--ease-out);
}
.age-gate.is-hidden {
  opacity: 0;
  pointer-events: none;
}

.age-gate__card {
  background: var(--c-surface);
  border: 1px solid var(--c-border-light);
  border-radius: var(--r-lg);
  padding: clamp(32px, 6vw, 64px);
  text-align: center;
  max-width: 440px;
  width: 100%;
  box-shadow: 0 40px 100px rgba(0,0,0,0.5);
}
.age-gate__deco { font-size: 3rem; margin-bottom: var(--sp-5); }
.age-gate__title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 4vw, 2.25rem);
  font-weight: 600;
  color: var(--c-white);
  margin-bottom: var(--sp-2);
  line-height: 1.2;
}
.age-gate__sub {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--c-gold);
  font-size: 1.1rem;
  margin-bottom: var(--sp-4);
}
.age-gate__legal {
  font-size: var(--text-xs);
  color: var(--c-text-subtle);
  margin-bottom: var(--sp-7);
  line-height: 1.6;
}
.age-gate__actions {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
}
.age-gate__no { text-align: center; }

/* ════════════════════════════════════════
   SCROLL ANIMATIONS — initial states
════════════════════════════════════════ */
.reveal-up    { opacity: 0; transform: translateY(40px); }
.reveal-left  { opacity: 0; transform: translateX(-40px); }
.reveal-right { opacity: 0; transform: translateX(40px); }
.reveal-scale { opacity: 0; transform: scale(0.92); }

/* ════════════════════════════════════════
   REDUCED MOTION
════════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
}

/* ════════════════════════════════════════
   SELECTION & SCROLLBAR
════════════════════════════════════════ */
::selection { background: rgba(201,162,39,0.25); color: var(--c-white); }

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--c-base); }
::-webkit-scrollbar-thumb { background: var(--c-border-light); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--c-gold); }

/* ════════════════════════════════════════
   HERO KINETIC UPGRADE
════════════════════════════════════════ */

/* ── Headline block — centered at 38% from top ── */
.hero__headline {
  position: absolute;
  top: 38%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  text-align: center;
  width: 100%;
  padding: 0 24px;
  pointer-events: none;
}

/* ── Eyebrow ── */
.hero__eyebrow {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color: var(--c-gold);
  margin-bottom: 18px;
  opacity: 0;
  transform: translateY(-8px);
}

/* ── Main H1 ── */
.hero__h1 {
  font-family: var(--font-display);
  font-size: clamp(52px, 10vw, 120px);
  font-weight: 300;
  color: var(--c-text);
  line-height: 1.0;
  letter-spacing: -0.02em;
  text-wrap: balance;
  margin: 0;
}

.hero__h1 .line-th {
  display: block;
  font-style: italic;
  font-size: 1em;
  color: var(--c-text);
}

.hero__h1 .line-en {
  display: block;
  font-size: 0.52em;
  font-style: normal;
  color: rgba(228,221,208,0.65);
  letter-spacing: 0.05em;
  margin-top: 0.18em;
}

/* Word/word-inner split structure — clip-path reveal */
.hero__h1 .word {
  display: inline-block;
  overflow: hidden;
  padding-bottom: 0.05em;
  vertical-align: bottom;
}
.hero__h1 .line-en .word { margin-right: 0.22em; }
.hero__h1 .line-en .word:last-child { margin-right: 0; }

.hero__h1 .word-inner {
  display: inline-block;
  clip-path: inset(0% 0% 105% 0%);
  will-change: clip-path, transform;
}

/* ── Tagline ── */
.hero__tagline {
  margin-top: 22px;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(228,221,208,0.38);
  opacity: 0;
}

/* ── Mist parallax layers ── */
.hero__mist {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.mist-puff {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

/* ── Mobile: scale down headline slightly ── */
@media (max-width: 480px) {
  .hero__h1 { font-size: clamp(40px, 12vw, 72px); }
  .hero__headline { top: 35%; }
}

/* ════════════════════════════════════════
   LEGAL COMPLIANCE NOTICE
════════════════════════════════════════ */
.legal-notice {
  background: #060a06;
  border-top: 1px solid #1e2e1e;
  padding: 32px 0;
}
.legal-notice__inner {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.legal-notice__icon {
  font-size: 20px;
  flex-shrink: 0;
  margin-top: 2px;
}
.legal-notice__text p {
  font-size: 12px;
  line-height: 1.7;
  color: #55504a;
  max-width: 900px;
}
.legal-notice__text strong {
  color: #8a7e72;
  font-weight: 600;
}
