:root {
  --green: #29d51d;
  --green-soft: rgba(41, 213, 29, 0.42);
  --green-dim: rgba(41, 213, 29, 0.14);
  --paper: #f4f4f0;
  --muted: #b7b7b7;
  --line: rgba(255, 255, 255, 0.14);
  --black: #030504;
  --panel: #0a0d0a;
  --font-display: "Fang ExtraBold", Impact, "Arial Black", Haettenschweiler, "Franklin Gothic Heavy", sans-serif;
  --font-body: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

@font-face {
  font-family: "Fang ExtraBold";
  src: url("/assets/Fang%20ExtraBold.ttf") format("truetype");
  font-display: swap;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--paper);
  font-family: var(--font-body);
  background:
    radial-gradient(circle at 52% 3%, rgba(41, 213, 29, 0.22), transparent 25rem),
    radial-gradient(circle at 8% 100%, rgba(41, 213, 29, 0.12), transparent 18rem),
    #020403;
}

body.has-modal {
  overflow: hidden;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  content: "";
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, black, transparent 82%);
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  font: inherit;
}

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

.site-shell {
  position: relative;
  width: min(100%, 600px);
  min-height: 100vh;
  margin: 0 auto;
  padding: 24px 20px 104px;
  overflow: hidden;
  background:
    linear-gradient(to bottom, rgba(255, 255, 255, 0.035), transparent 25rem),
    linear-gradient(160deg, rgba(41, 213, 29, 0.08), transparent 30rem),
    var(--black);
  box-shadow: 0 0 90px rgba(41, 213, 29, 0.16);
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  padding: 4px 0 14px;
  background: linear-gradient(to bottom, rgba(3, 5, 4, 0.96), rgba(3, 5, 4, 0.72), transparent);
}

.brand {
  width: clamp(150px, 44vw, 230px);
}

.brand img {
  width: 100%;
  mix-blend-mode: screen;
}

.brand-group {
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
}

.top-socials {
  position: absolute;
  top: 45px;
  right: 0;
  display: flex;
  gap: 5px;
}

.top-socials .social-link {
  width: 27px;
  height: 27px;
}

.top-socials .social-link svg {
  width: 13px;
  height: 13px;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.language-switch {
  display: flex;
  gap: 4px;
  padding: 3px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
}

.lang-btn {
  width: 34px;
  height: 28px;
  border: 0;
  border-radius: 999px;
  color: var(--muted);
  font: 800 11px/1 var(--font-body);
  background: transparent;
  cursor: pointer;
}

.lang-btn.is-active {
  color: #031003;
  background: var(--green);
}

.menu-btn {
  display: grid;
  width: 36px;
  height: 36px;
  padding: 8px;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.menu-btn span {
  width: 24px;
  height: 2px;
  margin: auto;
  background: var(--paper);
}

.drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: auto;
  z-index: 30;
  display: flex;
  flex-direction: column;
  width: min(82vw, 360px);
  height: 100dvh;
  padding: 88px 24px 28px;
  border-left: 1px solid var(--line);
  background: rgba(6, 8, 6, 0.98);
  box-shadow: -24px 0 60px rgba(0, 0, 0, 0.58);
  transform: translateX(102%);
  pointer-events: none;
  transition: transform 260ms ease;
}

.drawer.is-open {
  transform: translateX(0);
  pointer-events: auto;
}

.drawer-backdrop {
  position: fixed;
  inset: 0;
  z-index: 29;
  background: rgba(0, 0, 0, 0.48);
  backdrop-filter: blur(7px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 240ms ease;
}

.drawer-backdrop.is-open {
  opacity: 1;
  pointer-events: auto;
}

.drawer-close {
  position: absolute;
  top: 24px;
  right: 22px;
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--paper);
  font-size: 28px;
  line-height: 1;
  background: rgba(255, 255, 255, 0.05);
  cursor: pointer;
}

.drawer a {
  padding: 14px 12px;
  border-bottom: 1px solid var(--line);
  color: var(--paper);
  font: 900 18px/1 var(--font-display);
  text-transform: uppercase;
}

.drawer a:last-child {
  border-bottom: 0;
}

.hero {
  position: relative;
  min-height: 430px;
  padding: 108px 0 34px;
}

.stage {
  position: absolute;
  inset: 12px -20px auto;
  height: 390px;
  overflow: hidden;
  background:
    linear-gradient(to bottom, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.72) 73%, #030504),
    linear-gradient(90deg, rgba(3, 5, 4, 0.82) 0 28%, rgba(3, 5, 4, 0.2) 55%, rgba(3, 5, 4, 0.92)),
    url("/assets/images/fang_cover.png") center / cover no-repeat,
    radial-gradient(circle at 62% 21%, rgba(41, 213, 29, 0.46), transparent 15rem),
    radial-gradient(circle at 88% 38%, rgba(41, 213, 29, 0.22), transparent 10rem);
}

.stage::before {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(to bottom, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.72) 73%, #030504),
    linear-gradient(90deg, rgba(3, 5, 4, 0.82) 0 28%, rgba(3, 5, 4, 0.2) 55%, rgba(3, 5, 4, 0.92)),
    linear-gradient(100deg, transparent 0 27%, rgba(41, 213, 29, 0.12) 28%, transparent 44%),
    linear-gradient(72deg, transparent 0 48%, rgba(41, 213, 29, 0.13) 50%, transparent 70%),
    linear-gradient(118deg, transparent 0 62%, rgba(41, 213, 29, 0.1) 64%, transparent 80%);
  filter: blur(4px);
  z-index: 1;
}

.stage::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 165px;
  content: "";
  background:
    radial-gradient(ellipse at 18% 100%, #040504 0 36%, transparent 37%),
    radial-gradient(ellipse at 36% 100%, #020302 0 41%, transparent 42%),
    radial-gradient(ellipse at 59% 100%, #050705 0 43%, transparent 44%),
    radial-gradient(ellipse at 78% 100%, #020302 0 35%, transparent 36%),
    linear-gradient(to bottom, transparent, #020302 70%);
  z-index: 1;
}

.hero-carousel-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0;
  transform: scale(1.035);
  transition: opacity 900ms ease, transform 6s ease;
}

.hero-carousel-slide.is-active {
  opacity: 1;
  transform: scale(1);
}

@media (prefers-reduced-motion: reduce) {
  .hero-carousel-slide {
    transition: opacity 200ms ease;
    transform: none;
  }
}

.light {
  position: absolute;
  top: 108px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #99fb8f;
  box-shadow: 0 0 28px 12px rgba(41, 213, 29, 0.36);
}

.light-1 { left: 48%; }
.light-2 { left: 58%; }
.light-3 { left: 69%; }
.light-4 { left: 81%; }

.player,
.crowd {
  position: absolute;
  bottom: 120px;
  background: #020302;
  filter: drop-shadow(0 0 7px rgba(41, 213, 29, 0.54));
}

.player {
  width: 42px;
  height: 88px;
  border-radius: 42% 42% 8px 8px;
}

.player::before,
.player::after {
  position: absolute;
  content: "";
  background: #020302;
}

.player::before {
  top: -22px;
  left: 11px;
  width: 18px;
  height: 22px;
  border-radius: 50%;
}

.player::after {
  top: 36px;
  right: -31px;
  width: 58px;
  height: 4px;
  transform: rotate(24deg);
}

.player-1 { right: 39%; transform: scale(0.92); }
.player-2 { right: 22%; }
.player-3 { right: 6%; transform: scale(0.88); }

.crowd {
  width: 34px;
  height: 78px;
  border-radius: 50% 50% 4px 4px;
}

.crowd-1 { right: 50%; bottom: 82px; transform: scale(1.5); }
.crowd-2 { right: 33%; bottom: 72px; transform: scale(1.8); }
.crowd-3 { right: 15%; bottom: 78px; transform: scale(1.58); }
.crowd-4 { right: 0; bottom: 70px; transform: scale(1.96); }

.hero-copy {
  position: relative;
  z-index: 1;
  width: min(100%, 430px);
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--green);
  font: 900 15px/1.1 var(--font-display);
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 18px;
  font: 900 clamp(52px, 15vw, 76px) / 0.91 var(--font-display);
  letter-spacing: 0;
  text-transform: uppercase;
  text-shadow: 0 2px 0 rgba(0, 0, 0, 0.35);
}

h1 span {
  display: block;
}

.headline-copy-en {
  display: none;
}

html[lang="en"] .headline-copy-en {
  display: block;
}

html[lang="en"] .hero-actions .btn-link {
  display: none;
}

html[lang="vi"] #hero-title {
  display: none;
}

.hero-actions-vi {
  display: none;
}

html[lang="vi"] .hero {
  min-height: 480px;
}

html[lang="vi"] .hero-copy {
  display: none;
}

html[lang="vi"] .hero-actions-vi {
  position: absolute;
  top: 414px;
  left: 0;
  z-index: 1;
  display: flex;
}

.accent {
  color: var(--green);
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border: 0;
  border-radius: 4px;
  color: var(--paper);
  font: 900 14px/1 var(--font-body);
  text-transform: uppercase;
  cursor: pointer;
}

.btn-primary {
  gap: 14px;
  min-width: 190px;
  padding: 0 22px;
  color: #031003;
  background: var(--green);
  box-shadow: 0 0 26px rgba(41, 213, 29, 0.26);
}

.btn svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.btn-link {
  min-width: 116px;
  border-bottom: 2px solid var(--green);
  border-radius: 0;
}

.section {
  position: relative;
  z-index: 1;
  padding: 26px 0;
}

.section-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 16px;
}

h2 {
  margin-bottom: 0;
  font: 900 22px/1 var(--font-display);
  text-transform: uppercase;
}

.section-heading a,
.text-action {
  padding: 0;
  border: 0;
  color: var(--green);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  background: transparent;
  cursor: pointer;
}

.gallery-grid {
  display: grid;
  grid-auto-columns: minmax(132px, 1fr);
  grid-auto-flow: column;
  gap: 12px;
  margin: 0 -20px;
  padding: 0 20px 5px;
  overflow-x: auto;
  scrollbar-width: none;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
}

.gallery-grid::-webkit-scrollbar {
  display: none;
}

.gallery-card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 188px;
  padding: 14px 12px 15px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  background: #080908;
  scroll-snap-align: center;
}

.gallery-carousel-controls {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  margin-top: 12px;
}

.gallery-carousel-controls button {
  display: grid;
  place-items: center;
  width: 38px;
  height: 34px;
  border: 1px solid var(--line);
  border-radius: 4px;
  color: var(--paper);
  background: #090c09;
  cursor: pointer;
}

.gallery-carousel-controls button:hover {
  border-color: var(--green);
  color: var(--green);
}

.gallery-carousel-controls span {
  min-width: 48px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 900;
  text-align: center;
}

.gallery-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
}

.gallery-card::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  content: "";
}

.gallery-card::before {
  background:
    radial-gradient(circle at 50% 18%, rgba(41, 213, 29, 0.18), transparent 8rem),
    linear-gradient(to bottom, rgba(0, 0, 0, 0.05) 10%, rgba(0, 0, 0, 0.36) 47%, rgba(0, 0, 0, 0.94));
}

.gallery-card-1 {
  background: #0c0906;
}

.gallery-card-2 {
  background: #070b0c;
}

.gallery-card-3 {
  background: #07080a;
}

.date-badge,
.gallery-card h3,
.gallery-card p {
  position: relative;
  z-index: 2;
}

.date-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  display: grid;
  place-items: center;
  width: 42px;
  height: 52px;
  border: 2px solid var(--green);
  border-radius: 6px;
  color: var(--green);
  background: rgba(0, 0, 0, 0.52);
}

.date-badge span {
  font: 900 22px/0.8 var(--font-display);
}

.date-badge small {
  font: 900 10px/1 var(--font-body);
  text-transform: uppercase;
}

.gallery-card h3 {
  max-width: 118px;
  margin-bottom: 10px;
  font: 900 23px/0.92 var(--font-display);
  text-transform: uppercase;
}

.gallery-card p {
  margin-bottom: 0;
  color: var(--green);
  font-size: 11px;
  font-weight: 800;
}

.about-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-family: var(--font-display);
  text-transform: uppercase;
}

.about-copy p,
.contact-section p {
  margin: 12px 0 0;
  color: #f0f0ed;
  font-size: 14px;
  line-height: 1.7;
}

.about-content-en {
  display: none;
}

html[lang="en"] .about-content-vi {
  display: none;
}

html[lang="en"] .about-content-en {
  display: block;
}

.about-content p + p {
  margin-top: 8px;
}

.pink-word {
  color: #ff4f9a;
  font-weight: 900;
}

.about-phone {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-top: 12px;
  color: var(--green);
  font-size: 14px;
  font-weight: 900;
}

.about-phone svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.bar-photo {
  position: relative;
  min-height: 148px;
  overflow: hidden;
  border: 1px solid rgba(41, 213, 29, 0.25);
  border-radius: 8px;
  background:
    linear-gradient(to bottom, rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.72)),
    radial-gradient(circle at 70% 20%, rgba(41, 213, 29, 0.38), transparent 8rem),
    #090a08;
}

.bar-photo img {
  position: absolute;
  top: 28%;
  left: 50%;
  width: 76%;
  opacity: 0.9;
  mix-blend-mode: screen;
  transform: translate(-50%, -50%);
}

.bar-photo::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 66px;
  content: "";
  background:
    linear-gradient(90deg, transparent 0 5%, rgba(255, 255, 255, 0.16) 5% 6%, transparent 6% 18%),
    repeating-linear-gradient(90deg, rgba(41, 213, 29, 0.2) 0 28px, transparent 28px 42px),
    linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.9));
}

.menu-list {
  display: grid;
  gap: 8px;
}

.menu-list div,
.menu-list a {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}

.menu-list span {
  color: var(--paper);
  font-weight: 800;
}

.menu-list i {
  font-style: normal;
}

.menu-label-en {
  display: none;
}

html[lang="en"] .menu-label-vi {
  display: none;
}

html[lang="en"] .menu-label-en {
  display: inline;
}

.menu-list strong {
  color: var(--green);
}

.contact-section {
  padding-bottom: 10px;
}

.contact-address-en,
.call-label-en {
  display: none;
}

html[lang="en"] .contact-address-vi,
html[lang="en"] .call-label-vi {
  display: none;
}

html[lang="en"] .contact-address-en,
html[lang="en"] .call-label-en {
  display: inline;
}

html[lang="en"] .contact-address-en {
  display: block;
}

.contact-phone-row {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 16px;
  flex-wrap: wrap;
}

.contact-phone-number {
  color: var(--paper);
  font: 900 18px/1 var(--font-display);
}

.contact-call-button {
  min-width: 148px;
  margin-top: 0 !important;
}

.contact-section .btn {
  margin-top: 18px;
}

.site-footer {
  padding: 7px 12px max(7px, env(safe-area-inset-bottom));
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-align: center;
}

.footer-navigation-stack {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 12;
  width: min(100%, 600px);
  margin: 0 auto;
  border-top: 1px solid var(--line);
  background: rgba(6, 7, 6, 0.96);
  backdrop-filter: blur(16px);
}

.footer-socials {
  display: flex;
  justify-content: center;
  gap: 10px;
  padding: 5px 12px 7px;
}

.footer-socials .social-link {
  width: 28px;
  height: 28px;
}

.footer-socials .social-link svg {
  width: 14px;
  height: 14px;
}

.booking-standalone-page {
  padding: 20px;
}

.booking-page-shell {
  width: min(100%, 560px);
  margin: 0 auto;
}

.booking-page-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}

.booking-page-card {
  padding: 22px;
  border: 1px solid rgba(41, 213, 29, 0.34);
  border-radius: 8px;
  background:
    radial-gradient(circle at 90% 0, rgba(41, 213, 29, 0.18), transparent 12rem),
    #070907;
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.5), 0 0 30px rgba(41, 213, 29, 0.12);
}

.booking-page-title {
  margin-bottom: 16px;
  font-size: clamp(36px, 8.8vw, 52px);
  line-height: 0.95;
}

.booking-home-link {
  display: inline-block;
  margin-top: 16px;
  color: var(--green);
  font-weight: 900;
  text-transform: uppercase;
}

.booking-modal {
  position: fixed;
  inset: 0;
  z-index: 30;
  display: grid;
  place-items: center;
  padding: 22px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease;
}

.booking-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}

.booking-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.74);
  backdrop-filter: blur(10px);
}

.booking-dialog {
  position: relative;
  width: min(100%, 460px);
  max-height: min(760px, calc(100vh - 44px));
  padding: 26px 22px 22px;
  overflow-y: auto;
  border: 1px solid rgba(41, 213, 29, 0.34);
  border-radius: 8px;
  background:
    radial-gradient(circle at 88% 0, rgba(41, 213, 29, 0.18), transparent 12rem),
    #070907;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.64), 0 0 38px rgba(41, 213, 29, 0.16);
}

.modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--paper);
  background: rgba(255, 255, 255, 0.05);
  cursor: pointer;
}

.modal-close svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
}

.booking-dialog h2 {
  margin-bottom: 18px;
}

.booking-form {
  display: grid;
  gap: 14px;
}

.booking-form label {
  display: grid;
  gap: 7px;
  color: var(--paper);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.field-message {
  display: none;
  width: fit-content;
  max-width: 100%;
  margin-top: -1px;
  padding: 5px 8px;
  border: 1px solid rgba(255, 83, 83, 0.44);
  border-radius: 4px;
  color: #ffdede;
  font: 800 11px/1.25 var(--font-body);
  text-transform: none;
  background: rgba(255, 83, 83, 0.12);
}

.field-message.is-visible {
  display: inline-block;
}

.booking-form input {
  width: 100%;
  min-height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 4px;
  padding: 0 13px;
  color: var(--paper);
  font: 700 16px/1 var(--font-body);
  background: rgba(255, 255, 255, 0.06);
  outline: none;
}

.booking-form input.has-error {
  border-color: rgba(255, 83, 83, 0.78);
  background: rgba(255, 83, 83, 0.08);
}

.booking-form input:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px var(--green-dim);
}

.booking-form .btn {
  width: 100%;
  margin-top: 6px;
}

.form-message {
  margin: -2px 0 16px;
  padding: 11px 12px;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.45;
}

.form-message.is-error {
  border: 1px solid rgba(255, 83, 83, 0.5);
  color: #ffdede;
  background: rgba(255, 83, 83, 0.12);
}

.form-message.is-success {
  border: 1px solid rgba(41, 213, 29, 0.46);
  color: #dfffdc;
  background: rgba(41, 213, 29, 0.12);
}

.bottom-nav {
  position: static;
  z-index: 12;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  max-width: none;
  margin: 0;
  padding: 9px 12px 5px;
  background: transparent;
}

.bottom-nav a {
  display: grid;
  justify-items: center;
  gap: 5px;
  min-width: 0;
  color: #a9a9a9;
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
}

.bottom-nav svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.bottom-nav .is-active {
  color: var(--green);
}

@media (min-width: 700px) {
  body {
    padding: 28px 0;
  }

  .site-shell {
    width: min(100% - 48px, 1120px);
    min-height: calc(100vh - 56px);
    padding: 32px 44px 44px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 28px;
    overflow: hidden;
  }

  .topbar {
    align-items: center;
  }

  .brand {
    width: 250px;
  }

  .drawer {
    position: static;
    display: flex;
    flex-direction: row;
    width: auto;
    height: auto;
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
    transform: none;
    opacity: 1;
    pointer-events: auto;
  }

  .drawer-backdrop,
  .drawer-close {
    display: none;
  }

  .drawer a {
    padding: 0 0 5px;
    border: 0;
    color: #d7d7d4;
    font: 900 13px/1 var(--font-body);
  }

  .drawer a:hover {
    color: var(--green);
  }

  .menu-btn {
    display: none;
  }

  .topbar {
    display: grid;
    grid-template-columns: auto 1fr;
  }

  .header-actions {
    grid-column: 2;
    grid-row: 1;
    justify-self: end;
  }

  .drawer {
    grid-column: 2;
    grid-row: 1;
    justify-self: center;
    gap: 28px;
    margin-right: 112px;
  }

  .hero {
    min-height: 530px;
    padding-top: 150px;
  }

  html[lang="vi"] .hero {
    min-height: 630px;
  }

  html[lang="vi"] .hero-actions-vi {
    top: 560px;
  }

  .stage {
    top: 24px;
    right: -44px;
    left: -44px;
    width: auto;
    height: 520px;
    transform: none;
  }

  h1 {
    font-size: clamp(72px, 8vw, 110px);
  }

  .hero-copy {
    width: 560px;
  }

  .gallery-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    grid-auto-flow: row;
    margin: 0;
    padding: 0;
    overflow: visible;
  }

  .gallery-card {
    min-height: 260px;
  }

  .about-section {
    grid-template-columns: 0.85fr 1.15fr;
    align-items: center;
  }

  .bar-photo {
    min-height: 220px;
  }

  .bottom-nav {
    display: none;
  }

  .footer-navigation-stack {
    position: static;
    width: auto;
    border-top: 0;
    background: transparent;
    backdrop-filter: none;
  }

  .site-footer {
    padding-top: 28px;
  }

  .booking-standalone-page {
    padding-top: 30px;
  }

  .booking-page-card {
    padding: 28px;
  }
}

@media (max-width: 380px) {
  .site-shell {
    padding-right: 16px;
    padding-left: 16px;
  }

  .brand {
    width: 140px;
  }

  .topbar {
    gap: 6px;
  }

  .brand-group {
    gap: 0;
  }

  .top-socials {
    gap: 3px;
  }

  .top-socials .social-link {
    width: 24px;
    height: 24px;
  }

  .language-switch {
    gap: 2px;
  }

  .lang-btn {
    width: 30px;
  }

  .gallery-grid {
    margin-right: -16px;
    margin-left: -16px;
    padding-right: 16px;
    padding-left: 16px;
  }


  h1 {
    font-size: 48px;
  }
}
