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

:root {
  --black: #08080f;
  --black2: #0d0d18;
  --red: #a31616;
  --red-light: #d42a2a;
  --gold: #c9a84c;
  --gold-light: #e8d5a3;
  --gold-dim: rgba(201, 168, 76, 0.15);
  --text: #f0ede8;
  --text-muted: #9a9490;
  --card: rgba(255, 255, 255, 0.03);
  --card-border: rgba(255, 255, 255, 0.06);
  --glass: rgba(8, 8, 15, 0.75);
  --transition: 0.5s cubic-bezier(0.22, 1, 0.36, 1);
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  background: var(--black);
  color: var(--text);
  overflow: hidden;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

body.scrollable {
  overflow-y: auto;
  overflow-x: hidden;
}

::selection {
  background: var(--gold);
  color: var(--black);
}

::-webkit-scrollbar {
  width: 4px;
}

::-webkit-scrollbar-track {
  background: var(--black);
}

::-webkit-scrollbar-thumb {
  background: var(--red);
  border-radius: 10px;
}

img {
  filter: saturate(0.95) contrast(1.05) brightness(0.95);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 28px;
}

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

.tag {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  position: relative;
}

.tag::after {
  content: '';
  display: inline-block;
  width: 32px;
  height: 1px;
  background: var(--gold);
  margin-left: 12px;
  vertical-align: middle;
}

.title {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}

.gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-desc {
  color: var(--text-muted);
  font-size: 0.95rem;
  max-width: 520px;
  line-height: 1.8;
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-header .tag::after {
  display: none;
}

.section-header .section-desc {
  margin: 0 auto;
}

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.9s ease, transform 0.9s var(--transition);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.main-site {
  opacity: 0;
  transition: opacity 1.5s var(--transition);
}

.main-site.visible {
  opacity: 1;
}

/* ═══ LOADER ═══ */
.loader {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.8s ease, visibility 0.8s ease;
}

.loader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader-container {
  text-align: center;
}

.loader-ring {
  width: 80px;
  height: 80px;
  margin: 0 auto 24px;
  border: 1px solid rgba(201, 168, 76, 0.1);
  border-top-color: var(--gold);
  border-radius: 50%;
  animation: spin 1.2s cubic-bezier(0.22, 1, 0.36, 1) infinite;
  position: relative;
}

.loader-ring::before {
  content: '';
  position: absolute;
  inset: 8px;
  border: 1px solid rgba(201, 168, 76, 0.06);
  border-bottom-color: var(--gold);
  border-radius: 50%;
  animation: spin 2s cubic-bezier(0.22, 1, 0.36, 1) infinite reverse;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.loader-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 1.8rem;
  animation: pulse 1.5s ease-in-out infinite;
}

@keyframes pulse {

  0%,
  100% {
    transform: translate(-50%, -50%) scale(1);
  }

  50% {
    transform: translate(-50%, -50%) scale(1.15);
  }
}

.loader-text {
  font-size: 0.7rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.loader-bar {
  width: 160px;
  height: 1px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.06);
  overflow: hidden;
}

.loader-fill {
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--red), var(--gold));
  animation: fillBar 2.5s ease forwards;
}

@keyframes fillBar {
  to {
    width: 100%;
  }
}

/* ═══ FACADE ═══ */
.facade {
  position: fixed;
  inset: 0;
  z-index: 99998;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, #060610 0%, #0d0808 40%, #120c08 100%);
  transition: opacity 1.2s ease, visibility 1.2s ease;
}

.facade.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.facade-sky {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.facade-stars {
  position: absolute;
  inset: 0;
}

#facadeParticles {
  position: absolute;
  inset: 0;
}

.facade-moon {
  position: absolute;
  top: 6%;
  right: 20%;
  width: 50px;
  height: 50px;
  background: radial-gradient(circle at 35% 35%, #f0e6d3, #d4c4a0);
  border-radius: 50%;
  box-shadow: 0 0 60px rgba(212, 196, 160, 0.15);
  opacity: 0.4;
}

.facade-building {
  position: relative;
  z-index: 2;
}

.facade-roof {
  width: 360px;
  margin: 0 auto;
}

.roof-ridge {
  width: 100%;
  height: 24px;
  background: linear-gradient(180deg, #6a1a1a, #3a0a0a);
  border-radius: 3px 3px 0 0;
  position: relative;
}

.roof-ridge::before,
.roof-ridge::after {
  content: '';
  position: absolute;
  top: -12px;
  width: 40px;
  height: 30px;
  border: 3px solid var(--gold);
  border-color: var(--gold) transparent transparent transparent;
  border-radius: 50%;
  opacity: 0.3;
}

.roof-ridge::before {
  left: -20px;
  transform: rotate(-15deg);
}

.roof-ridge::after {
  right: -20px;
  transform: rotate(195deg);
}

.roof-tiles {
  width: 100%;
  height: 6px;
  background: repeating-linear-gradient(90deg, transparent 0, transparent 18px, rgba(201, 168, 76, 0.08) 18px, rgba(201, 168, 76, 0.08) 20px);
}

.facade-wall {
  width: 340px;
  background: linear-gradient(180deg, #120808, #1a0e0a, #120808);
  border-left: 2px solid rgba(201, 168, 76, 0.06);
  border-right: 2px solid rgba(201, 168, 76, 0.06);
  padding: 24px 0 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.facade-lanterns {
  display: flex;
  gap: 50px;
  margin-bottom: 12px;
}

.lantern {
  font-size: 1.8rem;
  animation: lanternSway 3s ease-in-out infinite;
  filter: drop-shadow(0 0 15px rgba(201, 168, 76, 0.15));
}

.lantern:nth-child(1) {
  animation-delay: 0s;
}

.lantern:nth-child(2) {
  animation-delay: 0.4s;
}

.lantern:nth-child(3) {
  animation-delay: 0.8s;
}

@keyframes lanternSway {

  0%,
  100% {
    transform: rotate(-4deg) translateY(0);
  }

  50% {
    transform: rotate(4deg) translateY(-4px);
  }
}

.facade-sign {
  text-align: center;
  margin-bottom: 20px;
  padding: 12px 20px;
  border: 1px solid rgba(201, 168, 76, 0.12);
  background: rgba(0, 0, 0, 0.3);
}

.sign-sub {
  display: block;
  font-size: 0.5rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 6px;
}

.sign-main {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  color: var(--text);
  letter-spacing: 3px;
}

.sign-chinese {
  display: block;
  font-family: 'Noto Sans SC', sans-serif;
  font-size: 1rem;
  color: var(--gold);
  margin-top: 4px;
  letter-spacing: 4px;
  opacity: 0.5;
}

.facade-doors {
  display: flex;
  align-items: center;
  gap: 2px;
  margin-bottom: 8px;
  position: relative;
}

.door {
  width: 100px;
  height: 160px;
  background: linear-gradient(135deg, #2a1008, #1a0804);
  border: 2px solid #3a1a0a;
  border-radius: 6px 6px 0 0;
  position: relative;
  transition: transform 0.9s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.5s ease;
  overflow: hidden;
}

.door-panel {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}

.door-dragon {
  font-size: 1.4rem;
  opacity: 0.3;
}

.door-light {
  width: 0;
  height: 140px;
  background: radial-gradient(ellipse at center, rgba(232, 213, 163, 0.4) 0%, rgba(201, 168, 76, 0.1) 40%, transparent 70%);
  border-radius: 4px;
  transition: all 0.6s ease;
  opacity: 0;
}

.facade-step {
  width: 200px;
  height: 4px;
  background: linear-gradient(90deg, transparent, rgba(201, 168, 76, 0.08), transparent);
  margin-bottom: 6px;
}

.facade-base {
  width: 360px;
  height: 8px;
  background: linear-gradient(180deg, #2a1a0a, #1a1008);
  border-radius: 0 0 4px 4px;
}

.facade-ground {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 20%;
  background: linear-gradient(180deg, transparent, rgba(6, 6, 16, 0.9));
  pointer-events: none;
}

.facade-enter {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--red), #5c0000);
  color: var(--text);
  border: none;
  padding: 12px 32px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 0 40px rgba(163, 22, 22, 0.2);
  transition: all 0.5s var(--transition);
  letter-spacing: 1px;
  font-family: inherit;
  backdrop-filter: blur(8px);
  border: 1px solid rgba(201, 168, 76, 0.08);
}

.facade-enter:hover {
  transform: translateX(-50%) scale(1.06);
  box-shadow: 0 0 60px rgba(163, 22, 22, 0.35);
  background: linear-gradient(135deg, var(--red-light), var(--red));
}

.enter-arrow {
  display: inline-block;
  animation: arrowBounce 1.4s ease-in-out infinite;
  font-size: 1.1rem;
}

@keyframes arrowBounce {

  0%,
  100% {
    transform: translateX(0);
  }

  50% {
    transform: translateX(6px);
  }
}

.facade-star {
  position: absolute;
  background: #fff;
  border-radius: 50%;
  animation: starTwinkle ease-in-out infinite alternate;
}

@keyframes starTwinkle {
  0% {
    opacity: 0.2;
  }

  100% {
    opacity: 1;
  }
}

/* Door glow on hover (JS adds this via ~ sibling, but let's use adjacent hover) */
.facade-enter:hover+.facade-step {
  display: none;
}

/* Entering animation stages */
.facade-vignette {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 99997;
  background: radial-gradient(ellipse at center, transparent 30%, rgba(0, 0, 0, 0) 60%);
  opacity: 0;
  transition: opacity 0.8s ease;
}

.facade.stage-approach .facade-vignette {
  opacity: 1;
  background: radial-gradient(ellipse at center, transparent 10%, rgba(0, 0, 0, 0.5) 60%, rgba(0, 0, 0, 0.85) 100%);
  transition: opacity 0.6s ease, background 0.8s ease;
}

.enter-light {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 99998;
  background: radial-gradient(circle at center, transparent 0%, transparent 100%);
  opacity: 0;
  transition: all 0.1s ease;
}

.facade.stage-light-flood .enter-light {
  opacity: 1;
  background: radial-gradient(circle at center, rgba(232, 213, 163, 0.5) 0%, rgba(201, 168, 76, 0.2) 25%, rgba(163, 22, 22, 0.05) 50%, transparent 80%);
  transition: all 1.4s ease;
}

.facade.stage-walk-in .facade-building {
  animation: walkIn 2.2s cubic-bezier(0.15, 0.85, 0.25, 1) forwards;
}

@keyframes walkIn {
  0% {
    transform: scale(1);
    opacity: 1;
    filter: blur(0);
  }

  30% {
    transform: scale(1.1);
    opacity: 0.9;
    filter: blur(0);
  }

  60% {
    transform: scale(1.5);
    opacity: 0.5;
    filter: blur(3px);
  }

  100% {
    transform: scale(4);
    opacity: 0;
    filter: blur(10px);
  }
}

.enter-flash {
  position: fixed;
  inset: 0;
  background: radial-gradient(circle at center, rgba(232, 213, 163, 0.85) 0%, rgba(201, 168, 76, 0.4) 15%, rgba(201, 168, 76, 0.1) 30%, transparent 60%);
  opacity: 0;
  pointer-events: none;
  z-index: 99999;
  transition: opacity 0.15s ease;
  transform: scale(0);
}

.enter-flash.flash {
  opacity: 1;
  transform: scale(1);
  transition: opacity 0.1s ease, transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.enter-flash.flash-out {
  opacity: 0;
  transform: scale(1.8);
  transition: opacity 0.8s ease 0.3s, transform 0.9s ease 0.3s;
}

.facade.stage-doors-open .door-light {
  animation: doorGlow 0.8s ease-out forwards;
}

@keyframes doorGlow {
  0% {
    width: 0;
    opacity: 0;
  }

  30% {
    opacity: 0.7;
  }

  100% {
    width: 60px;
    opacity: 0.5;
  }
}

.facade.stage-doors-open .lantern {
  animation: lanternFlare 0.8s ease-out infinite alternate;
}

@keyframes lanternFlare {
  0% {
    filter: drop-shadow(0 0 15px rgba(201, 168, 76, 0.15));
  }

  100% {
    filter: drop-shadow(0 0 40px rgba(201, 168, 76, 0.5)) brightness(1.2);
  }
}

.facade.stage-approach .facade-sky {
  transition: opacity 0.8s ease;
  opacity: 0.1;
}

/* ═══ PARTICLES CANVAS + CURSOR ═══ */
#particlesCanvas {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

.cursor-dot {
  position: fixed;
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
  pointer-events: none;
  z-index: 99999;
  transform: translate(-50%, -50%);
  transition: width 0.2s, height 0.2s, opacity 0.2s;
}

.cursor-ring {
  position: fixed;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(201, 168, 76, 0.3);
  border-radius: 50%;
  pointer-events: none;
  z-index: 99998;
  transform: translate(-50%, -50%);
  transition: width 0.4s var(--transition), height 0.4s var(--transition), border-color 0.4s ease, background 0.4s ease;
}

.cursor-ring.hover {
  width: 60px;
  height: 60px;
  border-color: var(--red);
  background: rgba(163, 22, 22, 0.06);
}

/* ═══ NAVBAR ═══ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 20px 0;
  transition: all 0.6s var(--transition);
}

.navbar.scrolled {
  background: var(--glass);
  backdrop-filter: blur(24px) saturate(1.4);
  -webkit-backdrop-filter: blur(24px) saturate(1.4);
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text);
  text-decoration: none;
  letter-spacing: 1px;
}

.nav-menu {
  display: flex;
  gap: 28px;
  list-style: none;
  align-items: center;
}

.nav-menu a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.8rem;
  font-weight: 500;
  transition: color 0.4s ease;
  letter-spacing: 0.5px;
  position: relative;
}

.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.5s var(--transition);
}

.nav-menu a:hover {
  color: var(--text);
}

.nav-menu a:hover::after {
  width: 100%;
}

.nav-cta {
  background: var(--red);
  color: var(--text) !important;
  padding: 8px 20px;
  border-radius: 50px;
  font-weight: 600 !important;
  letter-spacing: 1px !important;
  transition: all 0.4s var(--transition) !important;
}

.nav-cta::after {
  display: none !important;
}

.nav-cta:hover {
  background: var(--red-light) !important;
  transform: scale(1.05);
  box-shadow: 0 8px 30px rgba(163, 22, 22, 0.3);
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text);
  font-size: 1.4rem;
  cursor: pointer;
}

/* ═══ HERO ═══ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.3) saturate(1.1) contrast(1.1);
  animation: heroZoom 25s infinite alternate ease-in-out;
}

@keyframes heroZoom {
  from {
    transform: scale(1);
  }

  to {
    transform: scale(1.12);
  }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(8, 8, 15, 0.8) 0%, rgba(163, 22, 22, 0.1) 50%, rgba(8, 8, 15, 0.5) 100%);
  z-index: 1;
}

.hero-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, var(--black) 0%, transparent 50%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 680px;
  padding: 0 28px;
}

.hero-badge {
  display: inline-block;
  font-size: 0.6rem;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(201, 168, 76, 0.2);
  padding: 6px 18px;
  border-radius: 50px;
  margin-bottom: 28px;
  backdrop-filter: blur(12px);
  background: rgba(0, 0, 0, 0.2);
  opacity: 0;
  animation: fadeUp 1s 0.3s both;
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: 5rem;
  font-weight: 900;
  line-height: 1.05;
  margin-bottom: 24px;
  letter-spacing: -1px;
}

.hero-line {
  display: block;
  opacity: 0;
  animation: fadeUp 1s 0.5s both;
}

.hero-line.gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: fadeUp 1s 0.7s both;
}

.hero-subtitle {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 500px;
  line-height: 1.9;
  margin-bottom: 36px;
  opacity: 0;
  animation: fadeUp 1s 0.9s both;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 1s 1.1s both;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  font-size: 0.65rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--text-muted);
  opacity: 0;
  animation: scrollAnim 2.5s ease-in-out 2s infinite;
}

@keyframes scrollAnim {

  0%,
  100% {
    transform: translateX(-50%) translateY(0);
    opacity: 0.3;
  }

  50% {
    transform: translateX(-50%) translateY(8px);
    opacity: 0.7;
  }
}

/* ═══ BUTTONS ═══ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 34px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  text-decoration: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  transition: all 0.5s var(--transition);
  letter-spacing: 0.5px;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.06), transparent);
  transform: skewX(-25deg);
  transition: left 0.6s ease;
}

.btn:hover::before {
  left: 125%;
}

.btn-primary {
  background: linear-gradient(135deg, var(--red), var(--red-light));
  color: var(--text);
  box-shadow: 0 8px 30px rgba(163, 22, 22, 0.25);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 45px rgba(163, 22, 22, 0.4);
}

.btn-outline {
  background: transparent;
  color: var(--text);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(8px);
}

.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(201, 168, 76, 0.1);
}

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

/* ═══ ABOUT ═══ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.about-frame {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
}

.about-frame img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  display: block;
  transition: transform 1.2s var(--transition);
}

.about-frame:hover img {
  transform: scale(1.06);
}

.about-frame-border {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(201, 168, 76, 0.1);
  border-radius: 16px;
  z-index: 1;
  pointer-events: none;
}

.about-text .tag {
  margin-bottom: 12px;
}

.about-desc {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.9;
  margin: 20px 0 36px;
}

.about-stats {
  display: flex;
  gap: 40px;
}

.stat {
  text-align: center;
}

.stat-num {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}

.stat-label {
  font-size: 0.7rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-top: 6px;
  display: block;
}

/* ═══ MENU ═══ */
.menu-sec {
  background: rgba(255, 255, 255, 0.015);
}

.menu-filters {
  display: flex;
  justify-content: center;
  gap: 6px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.filter {
  padding: 8px 22px;
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: transparent;
  color: var(--text-muted);
  font-size: 0.78rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.4s var(--transition);
  font-family: inherit;
}

.filter:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.filter.active {
  background: var(--red);
  color: var(--text);
  border-color: var(--red);
  box-shadow: 0 4px 20px rgba(163, 22, 22, 0.2);
}

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

.plate {
  background: var(--card);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.6s var(--transition);
  cursor: pointer;
  border: 1px solid var(--card-border);
  transform: translateY(0);
}

.plate:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.05);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.4);
  border-color: rgba(201, 168, 76, 0.1);
}

.plate.hidden {
  display: none;
}

.plate-img {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.plate-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s var(--transition);
  filter: saturate(0.9) contrast(1.1) brightness(0.95);
}

.plate:hover .plate-img img {
  transform: scale(1.12);
}

.plate-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 50px;
  background: rgba(8, 8, 15, 0.7);
  backdrop-filter: blur(8px);
  color: var(--gold);
  border: 1px solid rgba(201, 168, 76, 0.15);
}

.plate-badge.best {
  color: var(--red-light);
  border-color: rgba(212, 42, 42, 0.2);
}

.plate-body {
  padding: 20px;
}

.plate-body h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.plate-meta {
  display: flex;
  gap: 12px;
  margin-bottom: 10px;
  flex-wrap: wrap;
}

.plate-meta span {
  font-size: 0.7rem;
  color: var(--text-muted);
  letter-spacing: 0.3px;
}

.plate-body p {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 14px;
}

.plate-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.price {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--gold);
}

.stars {
  font-size: 0.75rem;
  color: var(--gold);
  letter-spacing: 2px;
}

/* ═══ WHEEL ═══ */
.wheel-sec {
  text-align: center;
}

.wheel-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  margin-top: 36px;
}

.wheel-pointer {
  font-size: 1.6rem;
  animation: pointerBob 1.4s ease-in-out infinite;
  color: var(--gold);
  opacity: 0.6;
}

@keyframes pointerBob {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(6px);
  }
}

#wheelCanvas {
  border-radius: 50%;
  box-shadow: 0 0 60px rgba(201, 168, 76, 0.08), 0 0 120px rgba(163, 22, 22, 0.04);
  max-width: 100%;
}

.wheel-result {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.3rem;
  font-weight: 600;
  min-height: 48px;
  padding: 10px 24px;
  background: rgba(255, 255, 255, 0.02);
  border-radius: 14px;
  border: 1px solid rgba(201, 168, 76, 0.06);
}

.wheel-result.pop {
  animation: resultPop 0.5s var(--transition);
}

@keyframes resultPop {
  0% {
    transform: scale(0.6);
    opacity: 0;
  }

  100% {
    transform: scale(1);
    opacity: 1;
  }
}

/* ═══ GALLERY ═══ */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.gallery-item {
  border-radius: 12px;
  overflow: hidden;
  height: 240px;
  cursor: pointer;
  position: relative;
}

.gallery-tall {
  grid-row: span 2;
  height: auto;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s var(--transition);
  filter: saturate(0.9) brightness(0.95);
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(8, 8, 15, 0.5), transparent);
  display: flex;
  align-items: flex-end;
  padding: 16px;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-overlay span {
  font-size: 0.75rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text);
  font-weight: 500;
}

/* ═══ FORTUNE ═══ */
.fortune-sec {
  text-align: center;
}

.fortune-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  margin-top: 36px;
  position: relative;
}

.fortune-cookie {
  width: 120px;
  height: 120px;
  position: relative;
  cursor: pointer;
  perspective: 600px;
  transition: transform 0.4s var(--transition);
  margin: 0 auto;
}

.fortune-cookie:hover {
  transform: scale(1.08);
}

.cookie-front,
.cookie-back {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  backface-visibility: hidden;
  transition: transform 0.8s var(--transition);
  font-size: 4rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.02);
}

.cookie-back {
  transform: rotateY(180deg);
  padding: 20px;
  font-size: 0.8rem;
  border: 1px solid rgba(201, 168, 76, 0.08);
}

.fortune-cookie.open .cookie-front {
  transform: rotateY(180deg);
}

.fortune-cookie.open .cookie-back {
  transform: rotateY(360deg);
}

.fortune-text {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 600;
  line-height: 1.4;
}

.fortune-confetti {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.confetti-piece {
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 2px;
  animation: confettiFall 3s ease-out forwards;
}

@keyframes confettiFall {
  0% {
    transform: translateY(0) rotate(0deg) scale(1);
    opacity: 1;
  }

  100% {
    transform: translateY(250px) rotate(720deg) scale(0);
    opacity: 0;
  }
}

/* ═══ TESTIMONIALS ═══ */
.testimonial-sec {
  background: rgba(255, 255, 255, 0.015);
}

.carousel {
  max-width: 600px;
  margin: 0 auto;
  overflow: hidden;
}

.carousel-track {
  display: flex;
  transition: transform 0.6s var(--transition);
}

.carousel-card {
  min-width: 100%;
  text-align: center;
  padding: 20px;
  flex-shrink: 0;
}

.card-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  margin: 0 auto 16px;
  background-size: cover;
  background-position: center;
  border: 2px solid rgba(201, 168, 76, 0.15);
}

.card-stars {
  color: var(--gold);
  font-size: 1.1rem;
  margin-bottom: 16px;
  letter-spacing: 3px;
}

.carousel-card p {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text);
  max-width: 480px;
  margin: 0 auto 16px;
  font-style: italic;
}

.card-name {
  display: block;
  font-weight: 600;
  color: var(--gold);
  font-size: 0.85rem;
}

.card-location {
  display: block;
  font-size: 0.7rem;
  color: var(--text-muted);
  margin-top: 2px;
}

.carousel-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  margin-top: 28px;
}

.carousel-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: transparent;
  color: var(--text);
  font-size: 0.8rem;
  cursor: pointer;
  transition: all 0.4s var(--transition);
}

.carousel-btn:hover {
  background: var(--red);
  border-color: var(--red);
}

.carousel-dots {
  display: flex;
  gap: 6px;
}

.carousel-dots .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  border: none;
  cursor: pointer;
  transition: all 0.4s var(--transition);
  padding: 0;
}

.carousel-dots .dot.active {
  background: var(--gold);
  width: 20px;
  border-radius: 4px;
}

/* ═══ FUN ZONE ═══ */
.fun-sec {
  text-align: center;
}

.fun-controls {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.fun-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  max-width: 360px;
  margin: 0 auto;
}

.fun-cell {
  aspect-ratio: 1;
  background: var(--card);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  cursor: pointer;
  transition: all 0.4s var(--transition);
  border: 1px solid var(--card-border);
  user-select: none;
}

.fun-cell:hover {
  transform: scale(1.12);
  background: rgba(201, 168, 76, 0.06);
  border-color: rgba(201, 168, 76, 0.15);
}

.fun-cell.explode {
  animation: cellExplode 0.5s ease forwards;
}

@keyframes cellExplode {
  0% {
    transform: scale(1);
    opacity: 1;
  }

  50% {
    transform: scale(1.6) rotate(180deg);
    opacity: 0.4;
  }

  100% {
    transform: scale(0) rotate(360deg);
    opacity: 0;
  }
}

.fun-cell.dance {
  animation: cellDance 0.4s ease infinite alternate;
}

@keyframes cellDance {
  0% {
    transform: rotate(-8deg) scale(1);
  }

  25% {
    transform: rotate(8deg) scale(1.08);
  }

  50% {
    transform: rotate(-12deg) scale(0.96);
  }

  75% {
    transform: rotate(12deg) scale(1.1);
  }

  100% {
    transform: rotate(-4deg) scale(1);
  }
}

/* ═══ CONTACT ═══ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
}

.contact-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 28px;
}

.contact-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 10px 14px;
  border-radius: 10px;
  transition: all 0.4s var(--transition);
}

.contact-item:hover {
  background: rgba(255, 255, 255, 0.02);
  transform: translateX(6px);
}

.ci-icon {
  font-size: 1.1rem;
  margin-top: 2px;
}

.contact-item strong {
  display: block;
  font-size: 0.78rem;
  color: var(--text);
  margin-bottom: 2px;
}

.contact-item p {
  font-size: 0.82rem;
  color: var(--text-muted);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.contact-form h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 4px;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  padding: 14px 18px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: var(--card);
  color: var(--text);
  font-size: 0.85rem;
  font-family: inherit;
  transition: all 0.4s var(--transition);
  outline: none;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.06);
}

.contact-form textarea {
  resize: vertical;
  min-height: 56px;
}

.contact-form select {
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='%239a9490'%3E%3Cpath d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

.contact-form select option {
  background: #1a1a2a;
  color: var(--text);
}

.contact-form select:invalid {
  color: var(--text-muted);
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
}

.form-group label {
  font-size: 0.7rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 500;
}

.form-row {
  display: flex;
  gap: 14px;
}

.guest-selector {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 8px 0;
}

.guest-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: transparent;
  color: var(--text);
  font-size: 1.2rem;
  cursor: pointer;
  transition: all 0.4s var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}

.guest-btn:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(201, 168, 76, 0.06);
}

.guest-btn:active {
  transform: scale(0.9);
}

.guest-count {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--gold);
  min-width: 32px;
  text-align: center;
}

.availability-panel {
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.04);
  background: rgba(255, 255, 255, 0.015);
  padding: 14px 18px;
  min-height: 48px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.avail-status {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.avail-icon {
  font-size: 1rem;
}

.avail-slots {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.avail-slot {
  padding: 6px 14px;
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: transparent;
  color: var(--text-muted);
  font-size: 0.75rem;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: inherit;
}

.avail-slot:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.avail-slot.selected {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
  font-weight: 600;
}

.avail-slot.booked {
  opacity: 0.3;
  cursor: not-allowed;
  text-decoration: line-through;
}

.avail-status.available {
  color: #69f0ae;
}

.avail-status.available .avail-icon {
  animation: none;
}

.avail-status.unavailable {
  color: #ff5252;
}

.avail-status.checking .avail-icon {
  animation: pulse 0.8s ease-in-out infinite;
}

.avail-status .avail-eta {
  font-size: 0.65rem;
  color: var(--text-muted);
  margin-left: auto;
}

.res-summary {
  display: none;
  margin-top: 12px;
  padding: 16px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(201, 168, 76, 0.06), rgba(163, 22, 22, 0.04));
  border: 1px solid rgba(201, 168, 76, 0.1);
}

.res-summary.show {
  display: block;
  animation: fadeUp 0.5s ease;
}

.res-summary h4 {
  font-family: 'Playfair Display', serif;
  font-size: 0.95rem;
  margin-bottom: 10px;
  color: var(--gold);
}

.res-summary p {
  font-size: 0.8rem;
  color: var(--text);
  margin-bottom: 4px;
  display: flex;
  gap: 8px;
}

.res-summary p span {
  color: var(--text-muted);
  min-width: 80px;
}

.btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
  transform: none !important;
}

.btn:disabled:hover {
  transform: none !important;
  box-shadow: none !important;
}

.input-error {
  border-color: #ff5252 !important;
  box-shadow: 0 0 0 3px rgba(255, 82, 82, 0.1) !important;
}

.input-valid {
  border-color: rgba(105, 240, 174, 0.3) !important;
}

/* ═══ FOOTER ═══ */
.footer {
  background: rgba(0, 0, 0, 0.3);
  border-top: 1px solid rgba(255, 255, 255, 0.03);
  margin-top: 40px;
}

.footer-top {
  padding: 60px 0 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
  gap: 40px;
}

.footer-brand h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 12px;
}

.footer-brand p {
  font-size: 0.8rem;
  color: var(--text-muted);
  max-width: 260px;
  line-height: 1.7;
}

.footer-col h4 {
  font-size: 0.6rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.footer-col p {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.newsletter {
  display: flex;
  margin-bottom: 16px;
}

.newsletter input {
  flex: 1;
  padding: 10px 14px;
  border-radius: 50px 0 0 50px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: var(--card);
  color: var(--text);
  font-size: 0.78rem;
  outline: none;
  font-family: inherit;
}

.newsletter button {
  padding: 10px 16px;
  border-radius: 0 50px 50px 0;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-left: none;
  background: var(--red);
  color: var(--text);
  cursor: pointer;
  font-size: 1rem;
  transition: background 0.3s ease;
}

.newsletter button:hover {
  background: var(--red-light);
}

.social {
  display: flex;
  gap: 10px;
}

.social a {
  font-size: 1.1rem;
  text-decoration: none;
  transition: transform 0.4s var(--transition);
}

.social a:hover {
  transform: translateY(-3px);
}

.footer-bottom {
  padding: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.03);
}

.footer-bottom .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom p {
  font-size: 0.7rem;
  color: var(--text-muted);
}

.footer-emoji {
  font-size: 0.8rem;
  letter-spacing: 6px;
  opacity: 0.2;
}

/* ═══ SCROLL TOP ═══ */
.scroll-top {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(163, 22, 22, 0.9);
  backdrop-filter: blur(12px);
  color: var(--text);
  border: none;
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  transition: all 0.5s var(--transition);
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  z-index: 999;
}

.scroll-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.scroll-top:hover {
  background: var(--red);
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(163, 22, 22, 0.3);
}

/* ═══ TOAST ═══ */
.toast {
  position: fixed;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: rgba(8, 8, 15, 0.9);
  backdrop-filter: blur(20px);
  color: var(--text);
  padding: 14px 28px;
  border-radius: 12px;
  font-size: 0.85rem;
  border: 1px solid rgba(255, 255, 255, 0.04);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
  opacity: 0;
  transition: all 0.5s var(--transition);
  z-index: 9999;
  pointer-events: none;
}

.toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* ═══ CONFETTI BURST ═══ */
.confetti-burst {
  position: fixed;
  pointer-events: none;
  z-index: 9998;
}

/* ═══ EMOJI RAIN ═══ */
.emoji-rain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9997;
  overflow: hidden;
}

.emoji-drop {
  position: absolute;
  top: -40px;
  font-size: 1.4rem;
  animation: emojiDrop linear forwards;
  opacity: 0.6;
}

@keyframes emojiDrop {
  0% {
    transform: translateY(-40px) rotate(0deg) scale(0.5);
    opacity: 0;
  }

  10% {
    opacity: 0.6;
    transform: scale(1);
  }

  100% {
    transform: translateY(110vh) rotate(720deg) scale(0.3);
    opacity: 0;
  }
}

/* ═══ LIGHTBOX KEYFRAMES ═══ */
@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.92);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes shake {

  0%,
  100% {
    transform: translate(0);
  }

  20% {
    transform: translate(-5px, 3px);
  }

  40% {
    transform: translate(5px, -3px);
  }

  60% {
    transform: translate(-3px, 5px);
  }

  80% {
    transform: translate(3px, -5px);
  }
}

/* ═══ RESPONSIVE ═══ */
@media (max-width: 968px) {
  .hero-title {
    font-size: 3.6rem;
  }

  .title {
    font-size: 2.4rem;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .cursor-dot,
  .cursor-ring {
    display: none;
  }

  .facade-wall {
    width: 300px;
  }

  .facade-roof {
    width: 320px;
  }

  .facade-base {
    width: 320px;
  }

  .door {
    width: 90px;
    height: 140px;
  }
}

@media (max-width: 768px) {
  .nav-menu {
    position: fixed;
    inset: 0;
    background: rgba(8, 8, 15, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: center;
    gap: 24px;
    font-size: 1.2rem;
    transform: translateX(100%);
    transition: transform 0.6s var(--transition);
  }

  .nav-menu.open {
    transform: translateX(0);
  }

  .nav-toggle {
    display: block;
  }

  .hero-title {
    font-size: 2.8rem;
  }

  .title {
    font-size: 2rem;
  }

  .section {
    padding: 70px 0;
  }

  .menu-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .gallery-item {
    height: 200px;
  }

  .gallery-tall {
    grid-row: span 1;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-brand p {
    margin: 0 auto;
  }

  .social {
    justify-content: center;
  }

  .form-row {
    flex-direction: column;
  }

  .about-stats {
    gap: 24px;
  }

  .facade-wall {
    width: 260px;
  }

  .facade-roof {
    width: 280px;
  }

  .facade-base {
    width: 280px;
  }

  .door {
    width: 80px;
    height: 120px;
  }

  .sign-main {
    font-size: 1.2rem;
  }

  .fun-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .footer-bottom .container {
    flex-direction: column;
    gap: 8px;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2.2rem;
    letter-spacing: 0;
  }

  .hero-actions {
    flex-direction: column;
  }

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

  .facade-roof {
    width: 240px;
  }

  .facade-wall {
    width: 220px;
  }

  .facade-base {
    width: 240px;
  }

  .facade-enter {
    padding: 10px 20px;
    font-size: 0.75rem;
  }

  .fun-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  #wheelCanvas {
    width: 300px;
    height: 300px;
  }

  .about-frame img {
    height: 320px;
  }

  .stat-num {
    font-size: 1.8rem;
  }
}