/* ============================================================
   2Puff Vape — dark neon theme
   ============================================================ */
:root {
  --bg: #0a0b12;
  --bg-2: #0f1120;
  --card: rgba(255, 255, 255, 0.045);
  --card-border: rgba(255, 255, 255, 0.09);
  --text: #eef0f6;
  --text-dim: #9aa0b4;
  --accent: #7b8cff;
  --accent-2: #38d6ff;
  --accent-3: #b98cff;
  --grad: linear-gradient(105deg, #45d4ff 0%, #7b9bff 50%, #b98cff 100%);
  --radius: 18px;
  --nav-h: 68px;
  --font-en: "Outfit", "Noto Sans SC", sans-serif;
  --font-display: "Space Grotesk", "Noto Sans SC", sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; -webkit-tap-highlight-color: transparent; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--nav-h) + 12px); }
body {
  font-family: var(--font-en);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}
html[lang="zh"] body { font-family: "Noto Sans SC", var(--font-en); }

/* noise + glow backdrop */
body::before {
  content: "";
  position: fixed; inset: 0; z-index: -2;
  background:
    radial-gradient(900px 600px at 85% -5%, rgba(123, 140, 255, 0.16), transparent 60%),
    radial-gradient(700px 500px at -10% 30%, rgba(56, 214, 255, 0.10), transparent 60%),
    radial-gradient(800px 600px at 70% 90%, rgba(185, 140, 255, 0.09), transparent 60%),
    var(--bg);
}
body::after {
  content: "";
  position: fixed; inset: 0; z-index: -1; pointer-events: none; opacity: 0.5;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3CfeColorMatrix values='0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0.035 0'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23n)'/%3E%3C/svg%3E");
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3 { font-family: var(--font-display); line-height: 1.15; letter-spacing: -0.02em; }
.grad {
  background: var(--grad);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}

/* ============ buttons ============ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 13px 26px; border-radius: 999px;
  font-family: var(--font-en); font-size: 15px; font-weight: 600;
  border: 1px solid transparent; cursor: pointer; transition: all 0.25s ease;
  min-height: 44px;
}
.btn--primary {
  background: var(--grad); color: #fff; background-size: 150% auto;
  box-shadow: 0 8px 28px rgba(124, 92, 255, 0.35);
}
.btn--primary:hover { background-position: right center; transform: translateY(-2px); box-shadow: 0 12px 34px rgba(124, 92, 255, 0.5); }
.btn--ghost {
  background: rgba(255, 255, 255, 0.05); color: var(--text);
  border-color: rgba(255, 255, 255, 0.16); backdrop-filter: blur(8px);
}
.btn--ghost:hover { background: rgba(255, 255, 255, 0.1); border-color: rgba(255, 255, 255, 0.3); transform: translateY(-2px); }
.btn--lg { padding: 16px 32px; font-size: 16px; }
.btn--small { padding: 9px 18px; font-size: 14px; min-height: 38px; }

/* ============ age gate ============ */
.age-gate {
  position: fixed; inset: 0; z-index: 1000;
  display: flex; align-items: center; justify-content: center;
  background: rgba(7, 8, 14, 0.9); backdrop-filter: blur(18px);
  padding: 20px; opacity: 1; transition: opacity 0.4s ease;
}
.age-gate.hidden { opacity: 0; pointer-events: none; }
.age-gate__glow {
  position: absolute; width: 560px; height: 560px; border-radius: 50%;
  background: radial-gradient(circle, rgba(124, 92, 255, 0.22), transparent 65%);
  filter: blur(30px);
}
.age-gate__card {
  position: relative; max-width: 460px; width: 100%; text-align: center;
  background: rgba(18, 20, 34, 0.85); border: 1px solid var(--card-border);
  border-radius: 24px; padding: 40px 32px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6);
}
.age-gate__logo { width: 92px; margin: 0 auto 18px; }
.age-gate__card h2 { font-size: 26px; margin-bottom: 12px; }
.age-gate__card p { color: var(--text-dim); font-size: 14.5px; margin-bottom: 24px; }
.age-gate__actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-bottom: 20px; }
.age-gate__warning { font-size: 11.5px !important; color: #6a7086 !important; margin-bottom: 0 !important; line-height: 1.5; }

/* ============ nav ============ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 900;
  transition: background 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(10, 11, 18, 0.82); backdrop-filter: blur(16px);
  border-bottom-color: rgba(255, 255, 255, 0.07);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.35);
}
.nav__inner {
  max-width: 1200px; margin: 0 auto; height: var(--nav-h);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 24px;
}
.nav__brand { display: flex; align-items: center; gap: 11px; font-family: var(--font-display); font-weight: 700; font-size: 19px; }
.nav__brand img { height: 40px; }
.nav__brand em { font-style: normal; color: var(--accent-2); }
.nav__links { display: flex; align-items: center; gap: 30px; }
.nav__links a { font-size: 15px; font-weight: 500; color: var(--text-dim); transition: color 0.2s; position: relative; }
.nav__links a:hover { color: var(--text); }
.nav__links a::after {
  content: ""; position: absolute; left: 0; bottom: -6px; width: 0; height: 2px;
  background: var(--grad); border-radius: 2px; transition: width 0.25s ease;
}
.nav__links a:hover::after { width: 100%; }
.nav__links .lang-toggle { display: none; }
.nav__right { display: flex; align-items: center; gap: 12px; }
.lang-toggle {
  background: rgba(255, 255, 255, 0.06); color: var(--text);
  border: 1px solid rgba(255, 255, 255, 0.14); border-radius: 999px;
  padding: 8px 15px; font-size: 13.5px; font-weight: 600; cursor: pointer;
  font-family: var(--font-en); transition: all 0.2s; min-height: 38px;
}
.lang-toggle:hover { background: rgba(255, 255, 255, 0.12); }
.nav__burger { display: none; background: none; border: none; cursor: pointer; padding: 10px; }
.nav__burger span { display: block; width: 24px; height: 2px; background: var(--text); margin: 5px 0; border-radius: 2px; transition: all 0.3s ease; }
.nav__burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__burger.open span:nth-child(2) { opacity: 0; }
.nav__burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============ hero ============ */
.hero { position: relative; min-height: 100svh; display: flex; align-items: center; overflow: hidden; }
.hero__bg { position: absolute; inset: 0; }
.hero__bg img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.05); filter: saturate(1.12); }
.hero__bg::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(100deg, rgba(8, 9, 16, 0.82) 12%, rgba(8, 9, 16, 0.34) 55%, rgba(8, 9, 16, 0.05) 100%),
    linear-gradient(0deg, rgba(10, 11, 18, 0.8) 0%, transparent 30%);
}
.hero__content { position: relative; z-index: 2; max-width: 1200px; margin: 0 auto; padding: 130px 24px 90px; width: 100%; }
.hero__eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  font-size: 13.5px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--accent-2); margin-bottom: 22px;
  background: rgba(0, 212, 255, 0.07); border: 1px solid rgba(0, 212, 255, 0.22);
  padding: 9px 17px; border-radius: 999px;
}
.hero__eyebrow .dot { width: 8px; height: 8px; border-radius: 50%; background: #2bd97c; box-shadow: 0 0 10px #2bd97c; animation: pulse 2s infinite; }
@keyframes pulse { 50% { opacity: 0.4; } }
.hero h1 { font-size: clamp(44px, 7.5vw, 88px); font-weight: 700; margin-bottom: 22px; }
.hero__sub { max-width: 560px; color: var(--text-dim); font-size: clamp(16px, 2vw, 18.5px); margin-bottom: 34px; }
.hero__actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 54px; }
.hero__stats { display: flex; gap: clamp(24px, 5vw, 56px); flex-wrap: wrap; }
.hero__stats div { display: flex; flex-direction: column; }
.hero__stats strong { font-family: var(--font-display); font-size: clamp(24px, 3.4vw, 34px); background: var(--grad); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.hero__stats span { font-size: 13px; color: var(--text-dim); letter-spacing: 0.04em; }
.hero__fade { position: absolute; bottom: 0; left: 0; right: 0; height: 120px; background: linear-gradient(transparent, var(--bg)); z-index: 2; }

/* ============ marquee ============ */
.marquee { overflow: hidden; padding: 22px 0; border-top: 1px solid rgba(255,255,255,0.06); border-bottom: 1px solid rgba(255,255,255,0.06); background: rgba(255,255,255,0.015); }
.marquee__track { display: flex; gap: 42px; width: max-content; animation: marquee 30s linear infinite; }
.marquee__track span { font-family: var(--font-display); font-size: 17px; font-weight: 600; letter-spacing: 0.16em; color: rgba(255,255,255,0.4); white-space: nowrap; }
.marquee__track i { color: var(--accent); font-style: normal; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ============ sections ============ */
.section { padding: 96px 24px; max-width: 1240px; margin: 0 auto; }
.section--alt { position: relative; }
.section__head { text-align: center; max-width: 720px; margin: 0 auto 56px; }
.section__eyebrow { font-size: 13px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--accent-2); margin-bottom: 12px; }
.section__head h2 { font-size: clamp(32px, 5vw, 50px); margin-bottom: 16px; }
.section__sub { color: var(--text-dim); font-size: 16.5px; }

/* ============ brand blocks ============ */
.brand { margin-bottom: 72px; }
.brand:last-child { margin-bottom: 0; }
.brand__head { display: flex; align-items: flex-end; justify-content: space-between; gap: 20px 28px; margin-bottom: 8px; flex-wrap: wrap; }
.brand__title h3 { font-size: clamp(24px, 3.4vw, 32px); margin-bottom: 6px; }
.brand__title h3 em { font-style: normal; font-size: 0.6em; vertical-align: 3px; margin-left: 10px; padding: 4px 11px; border-radius: 999px; background: rgba(124, 92, 255, 0.16); border: 1px solid rgba(124, 92, 255, 0.35); color: #b9a7ff; letter-spacing: 0.06em; }
.brand__title p { color: var(--text-dim); font-size: 14.5px; max-width: 560px; }
.brand__specs { display: flex; gap: 8px; flex-wrap: wrap; }
.brand__specs { justify-content: flex-end; }
.brand__specs span {
  font-size: 12.5px; font-weight: 600; color: var(--text-dim);
  background: rgba(255, 255, 255, 0.05); border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 6px 13px; border-radius: 999px; white-space: nowrap;
}
.brand__count { color: #cbb9ff !important; background: rgba(123, 140, 255, 0.12) !important; border-color: rgba(123, 140, 255, 0.32) !important; }
@media (min-width: 769px) { .brand__head { padding-right: 108px; } }
.brand__row { position: relative; }
.brand__scroller {
  display: flex; gap: 16px; overflow-x: auto; padding: 18px 4px 22px;
  scroll-snap-type: x mandatory; scrollbar-width: none;
}
.brand__scroller::-webkit-scrollbar { display: none; }
.brand__arrows { position: absolute; top: -46px; right: 0; display: flex; gap: 8px; }
.brand__arrow {
  width: 40px; height: 40px; border-radius: 50%; cursor: pointer;
  background: rgba(255, 255, 255, 0.06); border: 1px solid rgba(255, 255, 255, 0.14);
  color: var(--text); font-size: 19px; line-height: 1; transition: all 0.2s;
  display: flex; align-items: center; justify-content: center;
}
.brand__arrow:hover { background: var(--accent); border-color: var(--accent); }

/* flavor card */
.fcard {
  flex: 0 0 218px; scroll-snap-align: start;
  background: var(--card); border: 1px solid var(--card-border);
  border-radius: var(--radius); overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.fcard:hover {
  transform: translateY(-6px);
  border-color: rgba(124, 92, 255, 0.55);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.45), 0 0 0 1px rgba(124, 92, 255, 0.25);
}
.fcard__img { aspect-ratio: 1 / 1; overflow: hidden; background: #171a2a; }
.fcard__img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.45s ease; }
.fcard:hover .fcard__img img { transform: scale(1.06); }
.fcard__body { padding: 13px 15px 15px; }
.fcard__body h4 { font-family: var(--font-en); font-size: 15px; font-weight: 600; line-height: 1.3; }
.fcard__body span { font-size: 12px; color: var(--text-dim); letter-spacing: 0.04em; }

/* coming soon */
.coming-soon {
  margin-top: 64px; text-align: center;
  border: 1px dashed rgba(255, 255, 255, 0.18); border-radius: 22px;
  padding: 44px 28px; background: rgba(255, 255, 255, 0.02);
}
.coming-soon__icon { font-size: 26px; color: var(--accent); margin-bottom: 12px; }
.coming-soon h3 { font-size: 23px; margin-bottom: 8px; }
.coming-soon p { color: var(--text-dim); max-width: 480px; margin: 0 auto; font-size: 15px; }

/* ============ gallery ============ */
.gallery { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.gallery a { position: relative; border-radius: 14px; overflow: hidden; aspect-ratio: 4 / 3; border: 1px solid var(--card-border); }
.gallery a:nth-child(1) { grid-column: span 2; grid-row: span 2; aspect-ratio: auto; }
.gallery img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.45s ease; }
.gallery a:hover img { transform: scale(1.05); }
.gallery a::after {
  content: "⤢"; position: absolute; right: 10px; bottom: 8px; font-size: 15px;
  color: #fff; opacity: 0; transition: opacity 0.25s;
  background: rgba(0, 0, 0, 0.5); border-radius: 8px; padding: 3px 8px;
}
.gallery a:hover::after { opacity: 1; }

/* ============ about ============ */
.about { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 60px; align-items: center; }
.about__text h2 { font-size: clamp(30px, 4.4vw, 44px); margin-bottom: 20px; }
.about__text p { color: var(--text-dim); margin-bottom: 16px; font-size: 15.5px; }
.about__points { list-style: none; margin-top: 26px; display: grid; grid-template-columns: 1fr 1fr; gap: 13px; }
.about__points li { display: flex; align-items: center; gap: 10px; font-size: 14.5px; font-weight: 500; }
.about__points i {
  font-style: normal; width: 24px; height: 24px; flex: 0 0 24px; border-radius: 50%;
  background: rgba(43, 217, 124, 0.14); color: #2bd97c; font-size: 12px;
  display: inline-flex; align-items: center; justify-content: center;
  border: 1px solid rgba(43, 217, 124, 0.3);
}
.about__img { position: relative; }
.about__img img { border-radius: 24px; border: 1px solid var(--card-border); box-shadow: 0 30px 70px rgba(0, 0, 0, 0.5); }
.about__badge {
  position: absolute; left: -22px; bottom: 26px;
  background: rgba(16, 18, 30, 0.92); backdrop-filter: blur(12px);
  border: 1px solid var(--card-border); border-radius: 16px;
  padding: 15px 20px; display: flex; flex-direction: column; max-width: 210px;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.5);
}
.about__badge strong { font-family: var(--font-display); font-size: 23px; color: #ffce4a; }
.about__badge span { font-size: 12.5px; color: var(--text-dim); }

/* ============ visit ============ */
.visit { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 22px; }
.visit__map { border-radius: 22px; overflow: hidden; border: 1px solid var(--card-border); min-height: 420px; filter: saturate(0.9) contrast(1.02); }
.visit__map iframe { width: 100%; height: 100%; min-height: 420px; border: 0; display: block; }
.visit__cards { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.vcard {
  background: var(--card); border: 1px solid var(--card-border); border-radius: 18px;
  padding: 22px 20px; transition: all 0.25s ease;
}
.vcard:hover { border-color: rgba(124, 92, 255, 0.45); transform: translateY(-3px); }
.vcard__icon {
  width: 42px; height: 42px; border-radius: 12px; margin-bottom: 13px;
  background: rgba(124, 92, 255, 0.13); border: 1px solid rgba(124, 92, 255, 0.3);
  display: flex; align-items: center; justify-content: center; color: #b9a7ff;
}
.vcard__icon svg { width: 21px; height: 21px; }
.vcard h3 { font-size: 16.5px; margin-bottom: 7px; }
.vcard p { font-size: 13.5px; color: var(--text-dim); line-height: 1.55; overflow-wrap: anywhere; }
.vcard a { color: var(--text); font-weight: 600; }
.vcard a:hover { color: var(--accent-2); }
.vcard--cta { display: block; background: linear-gradient(135deg, rgba(124, 92, 255, 0.16), rgba(0, 212, 255, 0.1)); border-color: rgba(124, 92, 255, 0.4); }
.vcard--cta:hover { border-color: var(--accent-2); }
.vcard--cta p { color: var(--accent-2); font-weight: 600; }

.vcard--wechat {
  grid-column: 1 / -1; display: flex; align-items: center; gap: 20px;
  background: linear-gradient(135deg, rgba(59, 214, 120, 0.16), rgba(255, 255, 255, 0.03));
  border-color: rgba(59, 214, 120, 0.42);
}
.vcard--wechat:hover { border-color: rgba(59, 214, 120, 0.7); }
.vcard--wechat .wqr { width: 118px; height: 118px; flex: 0 0 118px; background: #fff; border-radius: 14px; padding: 8px; }
.vcard--wechat .wqr img { width: 100%; height: 100%; display: block; }
.vcard--wechat h3 { font-size: 19px; margin-bottom: 7px; }
.vcard--wechat p { font-size: 14px; }
.vcard--wechat .wqr-id { color: #6fe0a0; font-weight: 600; letter-spacing: 0.03em; }

/* ============ footer ============ */
.footer { border-top: 1px solid rgba(255, 255, 255, 0.07); margin-top: 40px; background: rgba(0, 0, 0, 0.25); }
.footer__inner {
  max-width: 1240px; margin: 0 auto; padding: 56px 24px 34px;
  display: grid; grid-template-columns: 1.4fr 0.8fr 1fr; gap: 40px;
}
.footer__brand img { width: 74px; margin-bottom: 14px; }
.footer__brand p { color: var(--text-dim); font-size: 14px; max-width: 300px; }
.footer__col h4 { font-size: 14px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text); margin-bottom: 14px; font-family: var(--font-display); }
.footer__col a, .footer__col p { display: block; color: var(--text-dim); font-size: 14px; margin-bottom: 9px; }
.footer__col a:hover { color: var(--accent-2); }
.footer__warning {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  max-width: 1240px; margin: 0 auto; padding: 22px 24px calc(28px + env(safe-area-inset-bottom));
  text-align: center;
}
.footer__warning p { font-size: 12px; color: #6a7086; margin-bottom: 6px; line-height: 1.5; }
.footer__warning strong { color: #ff8b8b; }
.footer__copy { margin-top: 10px; }

/* ============ quickbar (mobile) ============ */
.quickbar {
  display: none; position: fixed; left: 12px; right: 12px;
  bottom: calc(12px + env(safe-area-inset-bottom)); z-index: 800;
  background: rgba(15, 17, 30, 0.92); backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.12); border-radius: 18px;
  padding: 8px; gap: 8px;
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.55);
}
.quickbar a {
  flex: 1; display: flex; align-items: center; justify-content: center; gap: 8px;
  padding: 12px; border-radius: 12px; font-size: 14.5px; font-weight: 600;
  color: var(--text); background: rgba(255, 255, 255, 0.05); min-height: 46px;
}
.quickbar svg { width: 17px; height: 17px; }
.quickbar__primary { background: var(--grad) !important; color: #fff; }

/* ============ lightbox ============ */
.lightbox {
  position: fixed; inset: 0; z-index: 1100; display: none;
  align-items: center; justify-content: center;
  background: rgba(5, 6, 10, 0.94); backdrop-filter: blur(10px);
}
.lightbox.open { display: flex; }
.lightbox img { max-width: 92vw; max-height: 86vh; border-radius: 12px; box-shadow: 0 30px 90px rgba(0, 0, 0, 0.8); }
.lightbox__close, .lightbox__nav {
  position: absolute; background: rgba(255, 255, 255, 0.08); color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.18); border-radius: 50%; cursor: pointer;
  width: 46px; height: 46px; font-size: 20px; display: flex; align-items: center; justify-content: center;
  transition: background 0.2s;
}
.lightbox__close:hover, .lightbox__nav:hover { background: rgba(255, 255, 255, 0.2); }
.lightbox__close { top: 18px; right: 18px; }
.lightbox__nav { top: 50%; transform: translateY(-50%); font-size: 30px; }
.lightbox__nav--prev { left: 16px; }
.lightbox__nav--next { right: 16px; }

/* ============ reveal animation ============ */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: none; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .visit { grid-template-columns: 1fr; }
  .visit__map { min-height: 340px; }
  .about { grid-template-columns: 1fr; gap: 40px; }
  .about__badge { left: 12px; }
  .gallery { grid-template-columns: repeat(3, 1fr); }
  .gallery a:nth-child(1) { grid-column: span 3; grid-row: span 1; aspect-ratio: 16/8; }
}

@media (max-width: 768px) {
  :root { --nav-h: 60px; }
  .section { padding: 68px 18px; }

  /* nav -> drawer */
  .nav__links {
    position: fixed; top: var(--nav-h); left: 0; right: 0;
    flex-direction: column; align-items: flex-start; gap: 4px;
    background: rgba(10, 11, 18, 0.97); backdrop-filter: blur(20px);
    padding: 14px 22px 24px; border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    transform: translateY(-130%); transition: transform 0.35s ease;
    box-shadow: 0 30px 60px rgba(0,0,0,0.5);
  }
  .nav__links.open { transform: translateY(0); }
  .nav__links a { font-size: 17px; padding: 13px 0; width: 100%; border-bottom: 1px solid rgba(255,255,255,0.05); }
  .nav__links a::after { display: none; }
  .nav__links .lang-toggle { display: inline-flex; margin-top: 14px; }
  .nav__right .lang-toggle { display: none; }
  .nav__cta { display: none; }
  .nav__burger { display: block; }

  .hero__content { padding: 110px 18px 70px; }
  .hero__actions .btn { flex: 1 1 100%; }
  .hero__stats { gap: 20px 28px; }

  .brand__head { flex-direction: column; align-items: flex-start; }
  .brand__arrows { display: none; }
  .fcard { flex: 0 0 172px; }
  .fcard__body h4 { font-size: 14px; }

  .gallery { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .gallery a:nth-child(1) { grid-column: span 2; }

  .about__points { grid-template-columns: 1fr; }
  .visit__cards { grid-template-columns: 1fr 1fr; gap: 10px; }
  .vcard { padding: 18px 16px; }

  .footer__inner { grid-template-columns: 1fr; gap: 30px; padding-bottom: 20px; }
  .footer__warning { padding-bottom: calc(96px + env(safe-area-inset-bottom)); }

  .quickbar { display: flex; }
}

@media (max-width: 400px) {
  .visit__cards { grid-template-columns: 1fr; }
  .fcard { flex: 0 0 156px; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
}
