:root {
  --bg: #050505;
  --bg-2: #0a0a0a;
  --card: #0c0c0c;
  --white: #ffffff;
  --muted: #cfcfcf;
  --green: #9be400;
  --green-2: #70c400;
  --line: rgba(155, 228, 0, 0.45);
  --orange: #ff8c00;
  --shadow-green: 0 0 25px rgba(155, 228, 0, 0.22);
  --radius: 24px;
  --radius-sm: 16px;
}

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

html { scroll-behavior: smooth; }

body {
  background: #000;
  color: var(--white);
  font-family: "Barlow", sans-serif;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
button, input, textarea, select { font: inherit; }

.container {
  width: min(1200px, calc(100% - 32px));
  margin: 0 auto;
}

/* HEADER */
.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(0, 0, 0, 0.86);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.header-inner {
  min-height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

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

.brand-logo {
  width: 68px;
  height: 68px;
  object-fit: contain;
  filter: drop-shadow(0 0 16px rgba(155, 228, 0, 0.25));
  border-radius: 50%;
}

.brand-title {
  font-weight: 800;
  font-size: 1.15rem;
  white-space: nowrap;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.main-nav a {
  color: #f1f1f1;
  font-weight: 700;
  font-size: 0.98rem;
  transition: 0.25s ease;
}

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

.menu-toggle {
  display: none;
  width: 58px;
  height: 58px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.03);
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
}

.menu-toggle span {
  width: 26px;
  height: 3px;
  background: #fff;
  border-radius: 999px;
}

/* HERO */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background:#000;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url("assets/background2.png?v=310");
  background-size: cover;
  background-position: center center;
  transform: scale(1.02);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0,0,0,0.80) 0%, rgba(0,0,0,0.55) 40%, rgba(0,0,0,0.25) 100%),
    linear-gradient(180deg, rgba(0,0,0,0.25) 0%, rgba(0,0,0,0.6) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 60px 0 80px;
}

.hero-copy { max-width: 650px; }

.eyebrow,
.section-kicker {
  color: var(--green);
  font-weight: 800;
  letter-spacing: 0.22em;
  font-size: 0.9rem;
  margin-bottom: 18px;
}

.hero h1 {
  font-family: "Anton", sans-serif;
  font-size: clamp(3rem, 8vw, 7rem);
  line-height: 0.95;
  letter-spacing: 0.02em;
  margin-bottom: 24px;
  max-width: 700px;
}

.hero-desc {
  font-size: clamp(1rem, 2vw, 1.35rem);
  line-height: 1.65;
  color: #f1f1f1;
  max-width: 760px;
  margin-bottom: 32px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 0 26px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 1rem;
  border: 1px solid transparent;
  transition: 0.25s ease;
  cursor: pointer;
}

.btn-primary {
  background: var(--green);
  color: #111;
  box-shadow: var(--shadow-green);
}

.btn-primary:hover {
  background: #b4ff1b;
  transform: translateY(-1px);
}

.btn-secondary {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.12);
  color: #fff;
}

.btn-secondary:hover {
  border-color: var(--green);
  color: var(--green);
}

.btn.full { width: 100%; }

/* MENU */
.cosmic-menu-section {
  position: relative;
  padding: 90px 0 70px;
  background:
    radial-gradient(circle at top left, rgba(155,228,0,0.10), transparent 28%),
    radial-gradient(circle at top right, rgba(155,228,0,0.08), transparent 30%),
    #000;
}

.menu-heading { margin-bottom: 30px; }

.menu-heading-top {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-bottom: 20px;
}

.menu-logo {
  width: 110px;
  height: 110px;
  object-fit: contain;
  filter: drop-shadow(0 0 18px rgba(155,228,0,0.25));
  flex-shrink: 0;
}

.menu-heading-copy {
  flex: 1;
  min-width: 0;
}

.menu-heading h2,
.simple-heading h2 {
  font-family: "Anton", sans-serif;
  font-size: clamp(2.5rem, 6vw, 5.5rem);
  line-height: 0.95;
  letter-spacing: 0.02em;
  margin-bottom: 12px;
}

.menu-heading h2 span { color: var(--green); }

.section-subtitle {
  color: #ededed;
  font-size: 1.15rem;
  line-height: 1.6;
  max-width: 780px;
}

.open-menu-btn {
  background: transparent;
  border: none;
  color: var(--green);
  font-weight: 800;
  letter-spacing: 0.02em;
  cursor: pointer;
}

.open-menu-btn:hover { text-decoration: underline; }

.menu-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.menu-card {
  background: linear-gradient(180deg, rgba(13,13,13,0.95), rgba(6,6,6,0.98));
  border: 1px solid var(--line);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 0 0 1px rgba(155,228,0,0.12), 0 16px 30px rgba(0,0,0,0.25);
  display: flex;
  flex-direction: column;
  min-height: 100%;
  cursor:pointer;
}

.menu-card-image-wrap {
  aspect-ratio: 1 / 0.82;
  overflow: hidden;
  background: #050505;
}

.menu-card-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.menu-card-body {
  padding: 16px 16px 14px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.menu-card-title-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 12px;
  margin-bottom: 14px;
  border-bottom: 2px solid rgba(255,140,0,0.85);
}

.ufo-dot {
  width: 22px;
  height: 22px;
  border-radius: 999px;
  border: 2px solid var(--green);
  display: inline-flex;
  position: relative;
  flex-shrink: 0;
}

.ufo-dot::before,
.ufo-dot::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 4px;
  height: 4px;
  border-radius: 999px;
  background: var(--green);
  transform: translateY(-50%);
}

.ufo-dot::before { left: 4px; }
.ufo-dot::after { right: 4px; }

.menu-card h3 {
  font-family: "Anton", sans-serif;
  font-size: 2rem;
  line-height: 1;
  letter-spacing: 0.01em;
}

.menu-item-block { margin-bottom: 18px; }

.menu-item-block h4 {
  color: var(--green);
  font-weight: 800;
  font-size: 1.15rem;
  margin-bottom: 8px;
}

.menu-item-block p {
  color: #f0f0f0;
  font-weight: 600;
  line-height: 1.5;
  font-size: 1rem;
}

.menu-card-footer {
  margin-top: auto;
  padding-top: 10px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 14px;
}

.tap-note {
  color: #a8a8a8;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
}

.price-tag {
  padding: 8px 14px;
  border: 2px solid var(--green);
  border-radius: 12px;
  color: var(--green);
  font-family: "Anton", sans-serif;
  font-size: 2rem;
  line-height: 1;
  flex-shrink: 0;
}

.addons-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 18px;
}

.addon-card {
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(9,9,9,0.95);
  padding: 16px 18px;
  display: flex;
  align-items: center;
  gap: 14px;
  cursor:pointer;
}

.addon-card img {
  width: 68px;
  height: 68px;
  object-fit: contain;
  flex-shrink: 0;
}

.addon-card h4 {
  font-family: "Anton", sans-serif;
  font-size: 1.35rem;
  line-height: 1;
}

.addon-card p {
  margin-top: 6px;
  color: var(--green);
  font-weight: 800;
}

.menu-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 22px;
}

/* OTHER SECTIONS */
.info-section,
.gallery-section,
.contact-section {
  padding: 80px 0;
  background: #020202;
}

.info-section.alt { background: #070707; }

.simple-heading { margin-bottom: 30px; }
.simple-heading.center { text-align: center; }

.info-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.info-box,
.location-box,
.event-card,
.contact-info,
.contact-form {
  background: rgba(12,12,12,0.96);
  border: 1px solid rgba(155,228,0,0.22);
  border-radius: 24px;
  padding: 24px;
}

.info-box h3,
.contact-info h3 {
  font-family: "Anton", sans-serif;
  font-size: 2rem;
  margin-bottom: 12px;
}

.info-box p,
.location-box p,
.contact-info p {
  color: #ededed;
  line-height: 1.7;
  font-size: 1.05rem;
}

.event-card {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.event-meta span {
  display: block;
  color: var(--green);
  font-weight: 800;
  margin-bottom: 8px;
  text-transform: uppercase;
  font-size: 0.9rem;
}

.event-meta strong {
  font-size: 1.1rem;
  line-height: 1.5;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}

.gallery-grid img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 18px;
  border: 1px solid rgba(155,228,0,0.25);
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.2fr;
  gap: 20px;
  align-items: start;
}

.contact-info a { color: var(--green); }

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

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  background: #060606;
  border: 1px solid rgba(255,255,255,0.12);
  color: #fff;
  border-radius: 16px;
  padding: 16px 18px;
  outline: none;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(155,228,0,0.12);
}

.site-footer {
  padding: 24px 0 30px;
  border-top: 1px solid rgba(255,255,255,0.08);
  background: #000;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: #d8d8d8;
}

.floating-call {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 120;
  background: var(--green);
  color: #111;
  font-weight: 800;
  border-radius: 999px;
  padding: 16px 22px;
  box-shadow: var(--shadow-green);
}

.menu-modal {
  position: fixed;
  inset: 0;
  z-index: 500;
  display: none;
}

.menu-modal.active { display: block; }

.menu-modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.72);
  backdrop-filter: blur(5px);
}

.menu-modal-box {
  position: relative;
  z-index: 2;
  width: min(92vw, 980px);
  max-height: 90vh;
  margin: 4vh auto;
  border-radius: 22px;
  overflow: auto;
  background: #050505;
  border: 1px solid rgba(155,228,0,0.35);
  box-shadow: 0 16px 80px rgba(0,0,0,0.55);
}

.menu-modal-image {
  width: 100%;
  height: auto;
  display: block;
}

.menu-modal-close {
  position: sticky;
  top: 10px;
  left: calc(100% - 54px);
  margin: 12px 12px -56px auto;
  z-index: 4;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: none;
  background: rgba(0,0,0,0.75);
  color: #fff;
  font-size: 2rem;
  cursor: pointer;
}

/* LARGE TABLET */
@media (max-width: 1100px) {
  .menu-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .event-card { grid-template-columns: repeat(2, 1fr); }
}

/* TABLET */
@media (max-width: 900px) {
  .main-nav {
    position: absolute;
    top: calc(100% + 1px);
    right: 16px;
    left: 16px;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    padding: 18px;
    background: rgba(7,7,7,0.98);
    border: 1px solid rgba(155,228,0,0.15);
    border-radius: 18px;
    box-shadow: 0 14px 40px rgba(0,0,0,0.4);
  }

  .main-nav.active { display: flex; }

  .menu-toggle { display: flex; }

  .hero { min-height: 78vh; }

  .hero-copy { max-width: 540px; }

  .menu-heading-top { align-items: flex-start; }

  .menu-logo {
    width: 90px;
    height: 90px;
  }

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

/* MOBILE */
@media (max-width: 640px) {
  .container {
    width: min(100% - 24px, 100%);
  }

  .header-inner {
    min-height: 82px;
  }

  .brand-logo {
    width: 58px;
    height: 58px;
  }

  .brand-title {
    font-size: 1rem;
  }

  .hero {
    min-height: 100svh;
    align-items: flex-end;
    background: #000;
  }

  .hero-bg {
    background-image: url("assets/background2.png?v=310");
    background-size: 116% auto;
    background-position: 64% 92px;
    background-repeat: no-repeat;
    transform: none;
  }

  .hero-overlay {
    background:
      linear-gradient(
        180deg,
        rgba(0,0,0,0.10) 0%,
        rgba(0,0,0,0.25) 28%,
        rgba(0,0,0,0.82) 62%,
        rgba(0,0,0,0.98) 100%
      );
  }

  .hero-content {
    padding: 355px 0 38px;
  }

  .eyebrow {
    font-size: 0.78rem;
    letter-spacing: 0.18em;
    margin-bottom: 12px;
  }

  .hero h1 {
    font-size: clamp(2.8rem, 13vw, 4.1rem);
    line-height: 0.95;
    margin-bottom: 16px;
  }

  .hero-desc {
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: 20px;
    max-width: 100%;
  }

  .hero-actions {
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:10px;
  }

  .hero-actions .btn {
    width: 100%;
    min-height:54px;
    padding: 0 12px;
    white-space:nowrap;
  }

  .cosmic-menu-section,
  .info-section,
  .gallery-section,
  .contact-section {
    padding: 56px 0;
  }

  .menu-heading-top {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 14px;
  }

  .menu-logo {
    width: 82px;
    height: 82px;
  }

  .menu-heading h2,
  .simple-heading h2 {
    font-size: clamp(2.2rem, 13vw, 3.5rem);
  }

  .section-subtitle {
    font-size: 1rem;
  }

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

  .menu-card h3 {
    font-size: 1.7rem;
  }

  .menu-card-image-wrap {
    aspect-ratio: 1 / 0.8;
  }

  .price-tag {
    font-size: 1.8rem;
  }

  .addons-grid {
    grid-template-columns:1fr;
    gap: 12px;
  }

  .addon-card {
    padding: 14px;
  }

  .addon-card img {
    width: 56px;
    height: 56px;
  }

  .event-card {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-inner {
    flex-direction: column;
    text-align: center;
  }

  .floating-call {
    right: 12px;
    bottom: 12px;
    padding: 14px 18px;
    font-size: 0.95rem;
  }

  .menu-modal-box {
    width: calc(100vw - 18px);
    margin: 2vh auto;
    max-height: 94vh;
  }
}

/* SMALL MOBILE */
@media (max-width: 420px) {
  .hero-bg {
    background-size: 108% auto;
    background-position: 62% 88px;
  }

  .hero-content {
    padding-top: 330px;
  }

  .hero h1 {
    font-size: clamp(2.55rem, 12.5vw, 3.65rem);
  }
}

/* VERY SMALL MOBILE */
@media (max-width: 370px) {
  .hero-bg {
    background-size: 104% auto;
    background-position: 60% 84px;
  }

  .hero-content {
    padding-top: 305px;
  }

  .hero-actions {
    grid-template-columns: 1fr;
  }
}


/* ===== V251 DESKTOP RESTORE + KEEP MOBILE FIX ===== */

/* Desktop / laptop hero: wide cinematic layout */
@media (min-width: 901px) {
  .hero {
    min-height: calc(100vh - 0px);
    align-items: center;
  }

  .hero-bg {
    background-image: url("assets/background2.png?v=310");
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    transform: scale(1.01);
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(0,0,0,0.84) 0%, rgba(0,0,0,0.60) 36%, rgba(0,0,0,0.18) 100%),
      linear-gradient(180deg, rgba(0,0,0,0.18) 0%, rgba(0,0,0,0.54) 100%);
  }

  .hero-content {
    padding: 85px 0 90px;
  }

  .hero-copy {
    max-width: 720px;
  }

  .hero h1 {
    font-size: clamp(4.7rem, 7vw, 7.7rem);
    line-height: 0.92;
    max-width: 820px;
  }

  .hero-desc {
    font-size: clamp(1.18rem, 1.45vw, 1.55rem);
    max-width: 820px;
  }
}

/* Tablet: balanced between desktop and phone */
@media (min-width: 641px) and (max-width: 900px) {
  .hero {
    min-height: 78vh;
    align-items: center;
  }

  .hero-bg {
    background-image: url("assets/background2.png?v=310");
    background-size: cover;
    background-position: 58% center;
    background-repeat: no-repeat;
    transform: scale(1.01);
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(0,0,0,0.82) 0%, rgba(0,0,0,0.62) 45%, rgba(0,0,0,0.28) 100%),
      linear-gradient(180deg, rgba(0,0,0,0.18) 0%, rgba(0,0,0,0.60) 100%);
  }

  .hero-content {
    padding: 64px 0 72px;
  }

  .hero-copy {
    max-width: 560px;
  }
}

/* Phone: keep the fixed smaller image from V250 */
@media (max-width: 640px) {
  .hero-bg {
    background-image: url("assets/background2.png?v=310");
    background-size: 116% auto;
    background-position: 64% 92px;
    background-repeat: no-repeat;
    transform: none;
  }
}

@media (max-width: 420px) {
  .hero-bg {
    background-size: 108% auto;
    background-position: 62% 88px;
  }
}

@media (max-width: 370px) {
  .hero-bg {
    background-size: 104% auto;
    background-position: 60% 84px;
  }
}


/* ===== V252 LOGO CLEANUP ===== */
.brand-logo,
.menu-logo {
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  border-radius: 50%;
  mix-blend-mode: screen;
  image-rendering: -webkit-optimize-contrast;
}

.brand-logo {
  filter: drop-shadow(0 0 16px rgba(155, 228, 0, 0.28)) brightness(1.05) contrast(1.05);
}

.menu-heading-top {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 16px;
}

.menu-logo {
  width: 92px;
  height: 92px;
  filter: drop-shadow(0 0 18px rgba(155,228,0,0.24)) brightness(1.08) contrast(1.06);
}

.menu-heading-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

@media (max-width: 900px) {
  .menu-heading-top {
    grid-template-columns: auto 1fr;
    gap: 14px;
    align-items: center;
  }

  .menu-logo {
    width: 78px;
    height: 78px;
  }
}

@media (max-width: 640px) {
  .menu-heading-top {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 12px;
  }

  .menu-logo {
    width: 76px;
    height: 76px;
    margin: 0 auto;
  }

  .menu-heading-copy {
    align-items: center;
  }
}


/* ===== V253 DESKTOP SPACING + LOGO SQUARE FIX ===== */

/* Crop the uploaded square logo into a real circle so the black box corners disappear */
.brand-logo,
.menu-logo{
  border-radius:50% !important;
  clip-path:circle(49% at 50% 50%) !important;
  object-fit:cover !important;
  background:#000 !important;
  box-shadow:0 0 18px rgba(155,228,0,.20) !important;
  mix-blend-mode:normal !important;
}

/* Cleaner desktop header */
@media (min-width: 901px){
  .site-header{
    position:sticky;
  }

  .header-inner{
    min-height:74px;
  }

  .brand-logo{
    width:58px;
    height:58px;
  }

  .brand-title{
    font-size:1rem;
  }

  .main-nav{
    gap:26px;
  }

  .main-nav a{
    font-size:.92rem;
  }

  /* Reduce the huge empty spaces between sections on desktop */
  .cosmic-menu-section{
    padding:54px 0 50px;
  }

  .info-section,
  .gallery-section,
  .contact-section{
    padding:58px 0;
  }

  .info-section.alt{
    padding:58px 0;
  }

  .simple-heading{
    margin-bottom:22px;
  }

  /* Menu title/logo integration */
  .menu-heading{
    margin-bottom:24px;
  }

  .menu-heading-top{
    display:grid !important;
    grid-template-columns:76px minmax(0,1fr) !important;
    align-items:center !important;
    gap:18px !important;
    margin-bottom:12px !important;
  }

  .menu-logo{
    width:76px !important;
    height:76px !important;
    align-self:center;
  }

  .menu-heading h2{
    font-size:clamp(3.8rem,5.7vw,5.2rem);
    line-height:.92;
    margin-bottom:8px;
  }

  .menu-heading .section-kicker{
    margin-bottom:10px;
  }

  .section-subtitle{
    font-size:1.05rem;
    line-height:1.45;
  }

  .open-menu-btn{
    margin-left:94px;
  }

  .menu-grid{
    gap:16px;
  }

  .menu-card-image-wrap{
    aspect-ratio:1 / .76;
  }

  .menu-card-body{
    padding:15px 16px 14px;
  }

  .menu-card h3{
    font-size:1.75rem;
  }

  .menu-item-block{
    margin-bottom:14px;
  }

  .menu-item-block h4{
    font-size:1.05rem;
    margin-bottom:6px;
  }

  .menu-item-block p{
    font-size:.92rem;
    line-height:1.45;
  }

  .price-tag{
    font-size:1.7rem;
  }

  .addons-grid{
    margin-top:16px;
  }

  .addon-card{
    padding:13px 16px;
  }

  .addon-card img{
    width:58px;
    height:58px;
  }

  .addon-card h4{
    font-size:1.18rem;
  }

  .menu-actions{
    margin-top:20px;
  }

  /* Make content sections less empty */
  .info-grid{
    gap:18px;
  }

  .info-box,
  .location-box,
  .event-card,
  .contact-info,
  .contact-form{
    padding:22px;
  }

  .simple-heading h2{
    font-size:clamp(3.2rem,5vw,4.8rem);
    line-height:.94;
  }

  .event-card{
    gap:16px;
  }

  .gallery-grid{
    gap:14px;
  }

  .gallery-grid img{
    aspect-ratio:1 / .88;
  }

  /* Contact title was too huge */
  .contact-section .simple-heading h2{
    font-size:clamp(3.2rem,5.5vw,5.4rem);
    max-width:1100px;
    margin-left:auto;
    margin-right:auto;
  }

  .contact-grid{
    max-width:1120px;
    margin:0 auto;
  }
}

/* Tablet: keep logo circular and reduce spacing */
@media (min-width: 641px) and (max-width: 900px){
  .brand-logo,
  .menu-logo{
    clip-path:circle(49% at 50% 50%) !important;
    border-radius:50% !important;
    object-fit:cover !important;
  }

  .cosmic-menu-section,
  .info-section,
  .gallery-section,
  .contact-section{
    padding:58px 0;
  }

  .menu-heading-top{
    display:grid !important;
    grid-template-columns:72px minmax(0,1fr) !important;
    align-items:center !important;
    gap:16px !important;
    text-align:left !important;
  }

  .menu-logo{
    width:72px !important;
    height:72px !important;
  }

  .menu-heading h2{
    font-size:clamp(3.1rem,7vw,4.5rem);
  }
}

/* Mobile keeps the previous good behavior, just make logo circular */
@media (max-width:640px){
  .brand-logo,
  .menu-logo{
    clip-path:circle(49% at 50% 50%) !important;
    border-radius:50% !important;
    object-fit:cover !important;
  }

  .menu-logo{
    background:#000 !important;
  }
}


/* ===== V254 HEADER + FONT + LOCATION UPGRADE ===== */

/* Better typography */
body{
  font-family:"Montserrat", sans-serif !important;
}

.hero h1,
.menu-heading h2,
.simple-heading h2,
.menu-card h3,
.info-box h3,
.contact-info h3,
.addon-card h4{
  font-family:"Bebas Neue", sans-serif !important;
  letter-spacing:.025em;
}

.menu-item-block h4,
.event-meta span,
.section-kicker,
.eyebrow,
.open-menu-btn{
  font-family:"Montserrat", sans-serif !important;
  font-weight:900 !important;
}

/* Header slightly bigger and cleaner */
.site-header{
  background:rgba(0,0,0,.92) !important;
}

.header-inner{
  min-height:92px !important;
}

.brand-logo{
  width:70px !important;
  height:70px !important;
}

.brand-title{
  font-size:1.22rem !important;
  font-weight:900 !important;
  letter-spacing:.01em;
}

.main-nav{
  gap:30px !important;
}

.main-nav a{
  font-size:1rem !important;
  font-weight:900 !important;
}

/* Because header is taller, keep hero balanced */
@media (min-width:901px){
  .hero-content{
    padding-top:78px !important;
  }

  .hero h1{
    font-size:clamp(5rem,7.2vw,8rem) !important;
  }
}

/* Location section redesign */
.location-box.location-new{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:26px;
  background:
    radial-gradient(circle at top left, rgba(155,228,0,.12), transparent 32%),
    linear-gradient(135deg, rgba(18,18,18,.98), rgba(5,5,5,.98));
}

.location-label{
  display:inline-block;
  margin-bottom:10px;
  color:var(--green);
  font-weight:900;
  letter-spacing:.16em;
  text-transform:uppercase;
  font-size:.82rem;
}

.location-main h3{
  font-family:"Bebas Neue", sans-serif;
  font-size:clamp(2.3rem,4vw,4rem);
  line-height:.95;
  margin-bottom:8px;
  color:#fff;
}

.location-main p{
  color:#f1f1f1;
  font-size:1.08rem;
  font-weight:700;
}

.location-actions{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  justify-content:flex-end;
  flex-shrink:0;
}

.map-frame{
  margin-top:18px;
  border:1px solid rgba(155,228,0,.24);
  border-radius:24px;
  overflow:hidden;
  background:#080808;
  height:320px;
  box-shadow:0 20px 55px rgba(0,0,0,.35);
}

.map-frame iframe{
  width:100%;
  height:100%;
  border:0;
  filter:grayscale(1) invert(.92) contrast(.92) brightness(.82);
}

/* Desktop: compact section spacing after location update */
@media (min-width:901px){
  .info-section#location{
    padding-top:62px !important;
    padding-bottom:62px !important;
  }
}

/* Tablet and mobile header */
@media (max-width:900px){
  .header-inner{
    min-height:92px !important;
  }

  .brand-logo{
    width:68px !important;
    height:68px !important;
  }

  .brand-title{
    font-size:1.15rem !important;
  }

  .menu-toggle{
    width:62px !important;
    height:62px !important;
  }

  .location-box.location-new{
    flex-direction:column;
    align-items:flex-start;
  }

  .location-actions{
    width:100%;
    justify-content:flex-start;
  }

  .location-actions .btn{
    flex:1 1 220px;
  }

  .map-frame{
    height:280px;
  }
}

@media (max-width:640px){
  .header-inner{
    min-height:86px !important;
  }

  .brand-logo{
    width:62px !important;
    height:62px !important;
  }

  .brand-title{
    font-size:1.08rem !important;
  }

  .menu-toggle{
    width:58px !important;
    height:58px !important;
  }

  .location-box.location-new{
    padding:22px !important;
  }

  .location-actions{
    display:grid;
    grid-template-columns:1fr;
  }

  .location-actions .btn{
    width:100%;
  }

  .map-frame{
    height:240px;
    border-radius:20px;
  }
}


/* ===== V255 GALLERY VIDEO ===== */
.gallery-grid-video{
  grid-template-columns: 1.4fr repeat(4, 1fr);
  align-items: stretch;
}

.gallery-video-card{
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  border: 1px solid rgba(155,228,0,0.25);
  background: #050505;
  min-height: 100%;
}

.gallery-video-card video{
  width: 100%;
  height: 100%;
  aspect-ratio: 1 / .88;
  object-fit: cover;
  display: block;
}

.gallery-video-card span{
  position:absolute;
  left:12px;
  bottom:12px;
  padding:7px 11px;
  border-radius:999px;
  background:rgba(0,0,0,.66);
  color:#fff;
  font-weight:900;
  font-size:.82rem;
  border:1px solid rgba(155,228,0,.35);
}

@media (max-width: 1100px){
  .gallery-grid-video{
    grid-template-columns: repeat(3, 1fr);
  }

  .gallery-video-card{
    grid-column: span 2;
  }
}

@media (max-width: 640px){
  .gallery-grid-video{
    grid-template-columns: 1fr;
  }

  .gallery-video-card{
    grid-column: auto;
  }

  .gallery-video-card video{
    aspect-ratio: 9 / 16;
    max-height: 620px;
    object-fit: cover;
  }
}


/* ===== V259 GALLERY REEL FIX + CLEAN ORGANIZATION ===== */
.gallery-showcase{
  display:grid;
  grid-template-columns: minmax(280px, 620px) minmax(420px, 1fr);
  align-items:start;
  gap:24px;
}

.gallery-videos-row{
  display:grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap:18px;
}

.gallery-video-card.reel-card{
  aspect-ratio:9 / 16;
  min-height:0;
  max-height:560px;
  border-radius:22px;
  overflow:hidden;
  background:#030303;
  border:1px solid rgba(155,228,0,.42);
  box-shadow:0 0 0 1px rgba(155,228,0,.12), 0 18px 42px rgba(0,0,0,.42);
}

.gallery-video-card.reel-card video{
  width:100%;
  height:100%;
  aspect-ratio:9 / 16;
  object-fit:cover;
  display:block;
  background:#000;
}

.gallery-photo-grid{
  display:grid;
  grid-template-columns:repeat(3, minmax(0, 1fr));
  gap:14px;
}

.gallery-photo-grid img{
  width:100%;
  aspect-ratio:1 / 1;
  object-fit:cover;
  border-radius:18px;
  border:1px solid rgba(155,228,0,.25);
  background:#050505;
}

@media (max-width:1100px){
  .gallery-showcase{
    grid-template-columns:1fr;
  }

  .gallery-videos-row{
    max-width:720px;
  }

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

@media (max-width:640px){
  .gallery-videos-row{
    grid-template-columns:1fr;
    gap:16px;
  }

  .gallery-video-card.reel-card{
    width:min(100%, 360px);
    max-height:none;
    margin:0 auto;
  }

  .gallery-photo-grid{
    grid-template-columns:repeat(2, 1fr);
  }
}

@media (max-width:420px){
  .gallery-photo-grid{
    grid-template-columns:1fr;
  }
}

/* ===== V260 PHP DASHBOARD + ORGANIZED GALLERY ===== */
.gallery-layout{
  display:grid;
  grid-template-columns: minmax(260px, .9fr) minmax(0, 1.45fr);
  gap:18px;
  align-items:start;
}
.gallery-videos{
  display:grid;
  grid-template-columns: repeat(2, minmax(170px, 1fr));
  gap:16px;
}
.gallery-image-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:14px;
}
.gallery-image-grid img{
  width:100%;
  aspect-ratio:1 / .92;
  object-fit:cover;
  border-radius:18px;
  border:1px solid rgba(155,228,0,.25);
}
.reel-card{
  aspect-ratio:9 / 16 !important;
  min-height:0 !important;
}
.reel-card video{
  width:100% !important;
  height:100% !important;
  aspect-ratio:9 / 16 !important;
  object-fit:cover !important;
  background:#000;
}
.dynamic-events{
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}
.dynamic-events .event-meta small,
.dynamic-events .event-meta em{
  display:block;
  color:#e8e8e8;
  font-style:normal;
  margin-top:6px;
  line-height:1.45;
}
.form-message{
  max-width:900px;
  margin:0 auto 18px;
  border:1px solid rgba(155,228,0,.45);
  background:rgba(155,228,0,.1);
  color:#fff;
  padding:14px 18px;
  border-radius:16px;
  font-weight:800;
  text-align:center;
}
.admin-link{ color:var(--green); font-weight:900; }
@media(max-width:1100px){
  .gallery-layout{ grid-template-columns:1fr; }
  .gallery-videos{ grid-template-columns: repeat(2, minmax(180px, 300px)); }
  .gallery-image-grid{ grid-template-columns: repeat(3, 1fr); }
}
@media(max-width:640px){
  .gallery-videos{ grid-template-columns:1fr; }
  .reel-card{ max-width:360px; margin:0 auto; width:100%; }
  .gallery-image-grid{ grid-template-columns:1fr 1fr; }
}

/* ===== V264 GALLERY POSITION + LIGHTBOX ===== */
.gallery-image-button{
  appearance:none;
  border:0;
  padding:0;
  margin:0;
  background:transparent;
  cursor:pointer;
  display:block;
  width:100%;
  border-radius:18px;
  overflow:hidden;
}
.gallery-image-button img{
  transition:transform .25s ease, border-color .25s ease;
  transform:scale(var(--zoom,1));
}
.gallery-image-button:hover img{
  transform:scale(calc(var(--zoom,1) * 1.025));
  border-color:rgba(155,228,0,.65);
}
.gallery-video-card.gallery-lightbox-trigger{
  cursor:pointer;
}
.gallery-video-card.gallery-lightbox-trigger:hover{
  border-color:rgba(155,228,0,.72);
}
.gallery-lightbox{
  position:fixed;
  inset:0;
  z-index:9999;
  display:none;
}
.gallery-lightbox.active{display:block;}
.gallery-lightbox-backdrop{
  position:absolute;
  inset:0;
  background:rgba(0,0,0,.88);
  backdrop-filter:blur(8px);
}
.gallery-lightbox-panel{
  position:relative;
  z-index:2;
  width:min(94vw,1100px);
  height:min(92vh,820px);
  margin:4vh auto;
  display:grid;
  grid-template-columns:58px minmax(0,1fr) 58px;
  grid-template-rows:1fr auto;
  gap:12px;
  align-items:center;
}
.gallery-lightbox-media{
  grid-column:2;
  grid-row:1;
  width:100%;
  height:100%;
  min-height:0;
  display:flex;
  align-items:center;
  justify-content:center;
}
.gallery-lightbox-media img,
.gallery-lightbox-media video{
  max-width:100%;
  max-height:100%;
  width:auto;
  height:auto;
  object-fit:contain;
  border-radius:22px;
  border:1px solid rgba(155,228,0,.45);
  background:#050505;
  box-shadow:0 20px 70px rgba(0,0,0,.55);
}
.gallery-lightbox-media video{
  height:100%;
  aspect-ratio:9/16;
  object-fit:cover;
}
.gallery-lightbox-title{
  grid-column:2;
  grid-row:2;
  text-align:center;
  color:#fff;
  font-weight:900;
  letter-spacing:.02em;
}
.gallery-lightbox-close,
.gallery-lightbox-arrow{
  border:none;
  cursor:pointer;
  color:#111;
  background:var(--green);
  box-shadow:var(--shadow-green);
  font-weight:900;
}
.gallery-lightbox-close{
  position:absolute;
  right:0;
  top:0;
  width:48px;
  height:48px;
  border-radius:999px;
  font-size:32px;
  line-height:1;
  z-index:5;
}
.gallery-lightbox-arrow{
  width:54px;
  height:72px;
  border-radius:18px;
  font-size:54px;
  line-height:1;
  display:flex;
  align-items:center;
  justify-content:center;
}
.gallery-lightbox-prev{grid-column:1;grid-row:1;}
.gallery-lightbox-next{grid-column:3;grid-row:1;}
@media(max-width:640px){
  .gallery-lightbox-panel{
    width:96vw;
    height:92vh;
    margin:4vh auto;
    grid-template-columns:46px minmax(0,1fr) 46px;
    gap:6px;
  }
  .gallery-lightbox-arrow{
    width:44px;
    height:58px;
    border-radius:14px;
    font-size:42px;
  }
  .gallery-lightbox-close{
    width:44px;
    height:44px;
    font-size:30px;
  }
  .gallery-lightbox-media img,
  .gallery-lightbox-media video{
    border-radius:16px;
  }
}


/* ===== V266 LEAD OFFER POPUP ===== */
.lead-popup{
  position:fixed;
  inset:0;
  z-index:9999;
  display:none;
}
.lead-popup.active{
  display:block;
}
.lead-popup-backdrop{
  position:absolute;
  inset:0;
  background:rgba(0,0,0,.76);
  backdrop-filter:blur(8px);
}
.lead-popup-panel{
  position:relative;
  z-index:2;
  width:min(92vw,460px);
  margin:8vh auto;
  background:
    radial-gradient(circle at top left, rgba(155,228,0,.18), transparent 32%),
    linear-gradient(180deg,#101010,#050505);
  border:1px solid rgba(155,228,0,.48);
  border-radius:26px;
  padding:26px;
  box-shadow:0 30px 90px rgba(0,0,0,.72),0 0 28px rgba(155,228,0,.14);
}
.lead-popup-close{
  position:absolute;
  top:12px;
  right:12px;
  width:42px;
  height:42px;
  border-radius:50%;
  border:1px solid rgba(255,255,255,.18);
  background:#151515;
  color:#fff;
  font-size:28px;
  line-height:1;
  cursor:pointer;
}
.lead-kicker{
  color:var(--green);
  font-weight:900;
  letter-spacing:.18em;
  font-size:.78rem;
  margin:0 0 10px;
}
.lead-popup-panel h2{
  font-family:"Bebas Neue", sans-serif;
  font-size:clamp(44px,8vw,66px);
  line-height:.9;
  margin:0 40px 12px 0;
  letter-spacing:.02em;
}
.lead-copy{
  color:#e9e9e9;
  line-height:1.55;
  margin:0 0 18px;
  font-weight:600;
}
.lead-form{
  display:grid;
  gap:12px;
}
.lead-form input{
  width:100%;
  background:#060606;
  border:1px solid rgba(255,255,255,.14);
  color:#fff;
  border-radius:15px;
  padding:15px 16px;
  outline:none;
}
.lead-form input:focus{
  border-color:var(--green);
  box-shadow:0 0 0 3px rgba(155,228,0,.12);
}
.lead-status{
  margin:12px 0 0;
  color:var(--green);
  font-weight:900;
  min-height:20px;
}
.lead-no-thanks{
  margin-top:10px;
  width:100%;
  background:transparent;
  color:#bbb;
  border:0;
  cursor:pointer;
  font-weight:800;
}
@media(max-width:640px){
  .lead-popup-panel{
    width:calc(100vw - 24px);
    margin:6vh auto;
    padding:22px 18px;
    border-radius:22px;
  }
}


/* ===== V268 QR OFFER CODE ===== */
.lead-status{
  text-align:center;
}
.lead-success-title{
  display:block;
  color:#9be400;
  font-weight:900;
  margin-bottom:10px;
}
.lead-offer-code{
  display:inline-block;
  background:#9be400;
  color:#111;
  padding:9px 14px;
  border-radius:12px;
  font-size:22px;
  margin-bottom:12px;
}
.lead-qr{
  display:block;
  width:220px;
  height:220px;
  margin:8px auto 10px;
  background:#fff;
  padding:8px;
  border-radius:16px;
}
.lead-qr-note{
  display:block;
  color:#e8e8e8;
  font-size:13px;
  line-height:1.4;
}


/* ===== V269 SAVE QR BUTTON ===== */
.lead-save-qr{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  margin:4px auto 10px;
  min-height:44px;
  padding:10px 16px;
  border-radius:999px;
  background:#9be400;
  color:#111;
  font-weight:900;
  text-decoration:none;
  box-shadow:0 0 18px rgba(155,228,0,.22);
}
.lead-save-qr:hover{
  background:#b4ff1b;
}


/* ===== V270 FLOATING OFFER BUTTON ===== */
.floating-offer-btn{
  position:fixed;
  left:18px;
  bottom:18px;
  z-index:120;
  background:#ff8c00;
  color:#111;
  font-weight:900;
  border:0;
  border-radius:999px;
  padding:16px 22px;
  min-height:52px;
  box-shadow:0 0 24px rgba(255,140,0,.25);
  cursor:pointer;
}
.floating-offer-btn:hover{
  background:#ffae35;
}
@media(max-width:640px){
  .floating-offer-btn{
    left:12px;
    bottom:74px;
    padding:13px 16px;
    font-size:.9rem;
  }
}


/* ===== V272 FIXED OFFER BUTTON ALWAYS VISIBLE ===== */
.floating-offer-btn{
  position:fixed !important;
  left:18px !important;
  bottom:88px !important;
  z-index:9998 !important;
  display:inline-flex !important;
  align-items:center !important;
  justify-content:center !important;
  background:#ff8c00 !important;
  color:#111 !important;
  border:0 !important;
  border-radius:999px !important;
  padding:15px 22px !important;
  min-height:52px !important;
  font-weight:900 !important;
  font-size:1rem !important;
  box-shadow:0 0 24px rgba(255,140,0,.35) !important;
  cursor:pointer !important;
}
.floating-offer-btn:hover{
  background:#ffae35 !important;
}
@media(max-width:640px){
  .floating-offer-btn{
    left:12px !important;
    right:auto !important;
    bottom:78px !important;
    padding:13px 16px !important;
    font-size:.9rem !important;
  }
}


/* ===== V273 CALL + OFFER FIXED BUTTONS TOGETHER ===== */
.floating-call{
  position:fixed !important;
  right:18px !important;
  left:auto !important;
  bottom:18px !important;
  z-index:9997 !important;
}

.floating-offer-btn{
  position:fixed !important;
  right:150px !important;
  left:auto !important;
  bottom:18px !important;
  z-index:9998 !important;
  display:inline-flex !important;
  align-items:center !important;
  justify-content:center !important;
  background:#ff8c00 !important;
  color:#111 !important;
  border:0 !important;
  border-radius:999px !important;
  padding:16px 22px !important;
  min-height:52px !important;
  font-weight:900 !important;
  font-size:1rem !important;
  box-shadow:0 0 24px rgba(255,140,0,.35) !important;
  cursor:pointer !important;
  white-space:nowrap !important;
}

.floating-offer-btn:hover{
  background:#ffae35 !important;
}

/* Mobile: keep both buttons side by side at the bottom */
@media(max-width:640px){
  .floating-call,
  .floating-offer-btn{
    bottom:12px !important;
    min-height:48px !important;
    padding:12px 13px !important;
    font-size:.86rem !important;
    border-radius:999px !important;
  }

  .floating-call{
    right:10px !important;
    left:auto !important;
  }

  .floating-offer-btn{
    right:118px !important;
    left:auto !important;
  }
}

/* Very small phones: make buttons shorter so they do not overlap */
@media(max-width:380px){
  .floating-call,
  .floating-offer-btn{
    font-size:.78rem !important;
    padding:11px 10px !important;
  }

  .floating-offer-btn{
    right:105px !important;
  }
}


/* ===== V274 OFFER DISCOUNT BADGE ===== */
.lead-offer-badge{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  background:#ff8c00;
  color:#111;
  font-weight:900;
  border-radius:14px;
  padding:8px 13px;
  margin-bottom:12px;
  box-shadow:0 0 20px rgba(255,140,0,.22);
  letter-spacing:.04em;
}


/* ===== V276 OFFER SELECTOR ===== */
.lead-offer-select-wrap{
  display:grid;
  gap:6px;
}
.lead-offer-select-wrap label{
  color:#9be400;
  font-weight:900;
  font-size:13px;
}
.lead-offer-select-wrap select{
  width:100%;
  background:#060606;
  border:1px solid rgba(255,255,255,.14);
  color:#fff;
  border-radius:15px;
  padding:15px 16px;
  outline:none;
}
.lead-offer-select-wrap select:focus{
  border-color:#9be400;
  box-shadow:0 0 0 3px rgba(155,228,0,.12);
}


/* ===== V277 VISUAL OFFER ITEM + PRICE ===== */
.lead-offer-visual{
  display:grid;
  grid-template-columns:130px 1fr;
  gap:14px;
  align-items:center;
  background:#080808;
  border:1px solid rgba(155,228,0,.28);
  border-radius:18px;
  padding:12px;
  margin:12px 0 14px;
}
.lead-offer-visual img{
  width:130px;
  aspect-ratio:1/1;
  object-fit:cover;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.12);
  background:#050505;
}
.lead-offer-info strong{
  display:block;
  color:#fff;
  font-size:1.05rem;
  margin-bottom:7px;
}
.lead-price-row{
  display:flex;
  align-items:baseline;
  gap:10px;
  flex-wrap:wrap;
}
.lead-old-price{
  color:#aaa;
  text-decoration:line-through;
  font-weight:900;
  font-size:1.15rem;
}
.lead-new-price{
  color:#9be400;
  font-weight:900;
  font-size:2rem;
  line-height:1;
}
@media(max-width:480px){
  .lead-offer-visual{
    grid-template-columns:1fr;
    text-align:center;
  }
  .lead-offer-visual img{
    width:100%;
    max-width:220px;
    margin:0 auto;
  }
  .lead-price-row{
    justify-content:center;
  }
}


/* ===== V279 ORDER BUTTON ===== */
.floating-order-btn{
  position:fixed !important;
  right:282px !important;
  bottom:18px !important;
  z-index:9998 !important;
  display:inline-flex !important;
  align-items:center !important;
  justify-content:center !important;
  min-height:52px !important;
  padding:16px 22px !important;
  border-radius:999px !important;
  background:#9be400 !important;
  color:#111 !important;
  font-weight:900 !important;
  text-decoration:none !important;
  box-shadow:0 0 24px rgba(155,228,0,.25) !important;
  white-space:nowrap !important;
}
@media(max-width:760px){
  .floating-order-btn,
  .floating-offer-btn,
  .floating-call{
    min-height:46px !important;
    padding:11px 10px !important;
    font-size:.78rem !important;
    bottom:10px !important;
  }
  .floating-call{right:8px !important;}
  .floating-offer-btn{right:96px !important;}
  .floating-order-btn{right:185px !important;}
}
@media(max-width:430px){
  .floating-order-btn,
  .floating-offer-btn,
  .floating-call{
    padding:10px 8px !important;
    font-size:.72rem !important;
  }
  .floating-call{right:6px !important;}
  .floating-offer-btn{right:84px !important;}
  .floating-order-btn{right:165px !important;}
}


/* Do not change section widths. Only fix anchors, public admin, gallery distortion, and exact floating CTA buttons. */
html{scroll-behavior:smooth;scroll-padding-top:110px}
#home,#menu,#book,#events,#gallery,#location,#contact{scroll-margin-top:110px}
.public-admin-link,.admin-link,.owner-login-link,.admin-floating,.admin-button{display:none!important}

/* Public gallery should not inherit admin drag-crop transforms */
.gallery-card img.crop-img,
.gallery-card img,
.gallery-card video{
  transform:none!important;
  object-position:center!important;
}

/* Exact old floating CTA classes only */
.floating-order-btn,.floating-offer-btn,.floating-call{
  position:fixed!important;
  left:auto!important;
  right:24px!important;
  z-index:9999!important;
  display:inline-flex!important;
  align-items:center!important;
  justify-content:center!important;
  width:158px!important;
  min-width:158px!important;
  max-width:158px!important;
  min-height:50px!important;
  padding:13px 16px!important;
  border-radius:999px!important;
  font-weight:900!important;
  text-decoration:none!important;
  white-space:nowrap!important;
  margin:0!important;
  transform:none!important;
  box-shadow:0 12px 30px rgba(0,0,0,.45)!important;
}
.floating-order-btn{bottom:150px!important;background:#9be400!important;color:#111!important}
.floating-offer-btn{bottom:92px!important;background:#ff9500!important;color:#111!important;border:0!important;cursor:pointer!important}
.floating-call{bottom:34px!important;background:#9be400!important;color:#111!important}

/* normal buttons remain untouched */
.hero-actions a,.hero-actions button,.location-actions a,.location-actions button,.menu-actions a,.menu-actions button,
a[href*="wa.me"],a[href*="google.com/maps"],a[href*="maps.google.com"]{
  position:relative!important;left:auto!important;right:auto!important;top:auto!important;bottom:auto!important;z-index:auto!important;transform:none!important;
}

@media(max-width:760px){
  html{scroll-padding-top:88px}
  #home,#menu,#book,#events,#gallery,#location,#contact{scroll-margin-top:88px}
  .floating-order-btn,.floating-offer-btn,.floating-call{
    right:12px!important;width:136px!important;min-width:136px!important;max-width:136px!important;
    min-height:44px!important;padding:11px 12px!important;font-size:13px!important
  }
  .floating-order-btn{bottom:118px!important}
  .floating-offer-btn{bottom:66px!important}
  .floating-call{bottom:14px!important}
}


/* Do not change the original site layout widths. */

/* Accurate anchors are handled by JS; this is only a backup. */
html{scroll-behavior:smooth;scroll-padding-top:105px}
#home,#menu,#book,#events,#gallery,#location,#contact{scroll-margin-top:105px}

/* Hide admin link from public site if any old markup exists */
.public-admin-link,.admin-link,.owner-login-link,.admin-floating,.admin-button{display:none!important}

/* Public gallery must be simple square cards; no admin crop transforms on the public website. */
.gallery-grid{
  display:grid!important;
  grid-template-columns:repeat(5,minmax(0,1fr))!important;
  gap:18px!important;
  align-items:start!important;
}
.gallery-card{
  position:relative!important;
  aspect-ratio:1/1!important;
  overflow:hidden!important;
  border-radius:18px!important;
  border:1px solid rgba(155,228,0,.35)!important;
  background:#0b0b0b!important;
}
.gallery-card img,
.gallery-card video{
  width:100%!important;
  height:100%!important;
  min-height:0!important;
  display:block!important;
  object-fit:cover!important;
  object-position:center!important;
  transform:none!important;
  position:static!important;
  max-width:100%!important;
}
.gallery-caption{
  position:absolute!important;
  left:12px!important;
  bottom:12px!important;
  z-index:3!important;
}

/* exact 3 floating buttons only */
.floating-order-btn,.floating-offer-btn,.floating-call{
  position:fixed!important;
  left:auto!important;
  right:24px!important;
  z-index:9999!important;
  display:inline-flex!important;
  align-items:center!important;
  justify-content:center!important;
  width:158px!important;
  min-width:158px!important;
  max-width:158px!important;
  min-height:50px!important;
  padding:13px 16px!important;
  border-radius:999px!important;
  font-weight:900!important;
  text-decoration:none!important;
  white-space:nowrap!important;
  margin:0!important;
  transform:none!important;
  box-shadow:0 12px 30px rgba(0,0,0,.45)!important;
}
.floating-order-btn{bottom:150px!important;background:#9be400!important;color:#111!important}
.floating-offer-btn{bottom:92px!important;background:#ff9500!important;color:#111!important;border:0!important;cursor:pointer!important}
.floating-call{bottom:34px!important;background:#9be400!important;color:#111!important}

/* never float the normal section buttons */
.hero-actions a,.hero-actions button,.menu-actions a,.menu-actions button,.location-actions a,.location-actions button,
a[href*="wa.me"],a[href*="google.com/maps"],a[href*="maps.google.com"]{
  position:relative!important;
  left:auto!important;
  right:auto!important;
  top:auto!important;
  bottom:auto!important;
  z-index:auto!important;
  transform:none!important;
  width:auto!important;
  max-width:none!important;
}

@media(max-width:1100px){
  .gallery-grid{grid-template-columns:repeat(3,minmax(0,1fr))!important}
}
@media(max-width:700px){
  html{scroll-padding-top:88px}
  #home,#menu,#book,#events,#gallery,#location,#contact{scroll-margin-top:88px}
  .gallery-grid{grid-template-columns:repeat(2,minmax(0,1fr))!important}
  .floating-order-btn,.floating-offer-btn,.floating-call{
    right:12px!important;width:136px!important;min-width:136px!important;max-width:136px!important;
    min-height:44px!important;padding:11px 12px!important;font-size:13px!important
  }
  .floating-order-btn{bottom:118px!important}
  .floating-offer-btn{bottom:66px!important}
  .floating-call{bottom:14px!important}
}


/* V307 GALLERY LAYOUT + LIGHTBOX FIX */

/* keep navbar click JS from V306, and only backup scroll offset */
html{scroll-behavior:smooth;scroll-padding-top:105px}
#home,#menu,#book,#events,#gallery,#location,#contact{scroll-margin-top:105px}

/* Gallery content should start under the header, not cut off from left/top */
#gallery{
  padding-top:84px!important;
  padding-bottom:80px!important;
}

/* Gallery title alignment */
#gallery .section-head{
  max-width:1180px!important;
  margin:0 auto 28px auto!important;
  padding:0 24px!important;
}
#gallery .section-head h2{
  font-size:clamp(42px,5vw,72px)!important;
  line-height:.9!important;
  margin:0!important;
}
#gallery .section-head .eyebrow{
  display:block!important;
  color:#9be400!important;
  letter-spacing:.35em!important;
  font-weight:900!important;
  text-transform:uppercase!important;
  margin-bottom:10px!important;
}

/* Gallery grid: smaller, clean, centered */
#gallery .gallery-grid{
  max-width:1180px!important;
  margin:0 auto!important;
  padding:0 24px!important;
  display:grid!important;
  grid-template-columns:repeat(3,minmax(0,1fr))!important;
  gap:20px!important;
  align-items:start!important;
}

/* Cards: landscape, not huge square blocks */
#gallery .gallery-card{
  position:relative!important;
  overflow:hidden!important;
  border-radius:18px!important;
  border:1px solid rgba(155,228,0,.45)!important;
  background:#0c0c0c!important;
  aspect-ratio:16/10!important;
  cursor:pointer!important;
  min-height:0!important;
  transition:transform .18s ease, border-color .18s ease, box-shadow .18s ease!important;
}
#gallery .gallery-card:hover{
  transform:translateY(-3px)!important;
  border-color:#9be400!important;
  box-shadow:0 18px 38px rgba(0,0,0,.38),0 0 22px rgba(155,228,0,.12)!important;
}

/* Images + videos fill the card cleanly */
#gallery .gallery-card img,
#gallery .gallery-card video{
  width:100%!important;
  height:100%!important;
  min-height:0!important;
  display:block!important;
  object-fit:cover!important;
  object-position:center!important;
  transform:none!important;
  position:absolute!important;
  inset:0!important;
  max-width:100%!important;
}

/* Stop public site from applying admin crop values */
#gallery .gallery-card img.crop-img{
  transform:none!important;
  object-position:center!important;
}

/* Video controls inside small card look messy; card opens full player instead */
#gallery .gallery-card video{
  pointer-events:none!important;
}

/* Caption */
#gallery .gallery-caption{
  position:absolute!important;
  left:12px!important;
  bottom:12px!important;
  z-index:3!important;
  max-width:calc(100% - 24px)!important;
  background:rgba(5,5,5,.84)!important;
  border:1px solid rgba(155,228,0,.5)!important;
  border-radius:999px!important;
  padding:7px 12px!important;
  color:#fff!important;
  font-weight:900!important;
  font-size:13px!important;
  line-height:1.1!important;
  text-shadow:0 2px 8px rgba(0,0,0,.7)!important;
}

/* Lightbox */
.ufo-lightbox-open{overflow:hidden!important}
.ufo-gallery-lightbox{
  position:fixed!important;
  inset:0!important;
  background:rgba(0,0,0,.92)!important;
  z-index:999999!important;
  display:none!important;
  align-items:center!important;
  justify-content:center!important;
  padding:56px 82px!important;
}
.ufo-gallery-lightbox.active{display:flex!important}
.ufo-lightbox-stage{
  width:100%!important;
  height:100%!important;
  display:flex!important;
  align-items:center!important;
  justify-content:center!important;
}
.ufo-lightbox-stage img,
.ufo-lightbox-stage video{
  max-width:100%!important;
  max-height:100%!important;
  object-fit:contain!important;
  border-radius:18px!important;
  box-shadow:0 20px 60px rgba(0,0,0,.65)!important;
}
.ufo-lightbox-close,
.ufo-lightbox-prev,
.ufo-lightbox-next{
  position:fixed!important;
  z-index:1000000!important;
  border:1px solid rgba(155,228,0,.55)!important;
  background:#111!important;
  color:#fff!important;
  width:52px!important;
  height:52px!important;
  border-radius:999px!important;
  font-size:34px!important;
  line-height:1!important;
  font-weight:900!important;
  cursor:pointer!important;
}
.ufo-lightbox-close{top:22px!important;right:24px!important}
.ufo-lightbox-prev{left:24px!important;top:50%!important;transform:translateY(-50%)!important}
.ufo-lightbox-next{right:24px!important;top:50%!important;transform:translateY(-50%)!important}

/* exact 3 floating buttons only */
.floating-order-btn,.floating-offer-btn,.floating-call{
  position:fixed!important;
  left:auto!important;
  right:24px!important;
  z-index:9999!important;
  display:inline-flex!important;
  align-items:center!important;
  justify-content:center!important;
  width:158px!important;
  min-width:158px!important;
  max-width:158px!important;
  min-height:50px!important;
  padding:13px 16px!important;
  border-radius:999px!important;
  font-weight:900!important;
  text-decoration:none!important;
  white-space:nowrap!important;
  margin:0!important;
  transform:none!important;
  box-shadow:0 12px 30px rgba(0,0,0,.45)!important;
}
.floating-order-btn{bottom:150px!important;background:#9be400!important;color:#111!important}
.floating-offer-btn{bottom:92px!important;background:#ff9500!important;color:#111!important;border:0!important;cursor:pointer!important}
.floating-call{bottom:34px!important;background:#9be400!important;color:#111!important}

/* normal section buttons never float */
.hero-actions a,.hero-actions button,.menu-actions a,.menu-actions button,.location-actions a,.location-actions button,
a[href*="wa.me"],a[href*="google.com/maps"],a[href*="maps.google.com"]{
  position:relative!important;
  left:auto!important;
  right:auto!important;
  top:auto!important;
  bottom:auto!important;
  z-index:auto!important;
  transform:none!important;
  width:auto!important;
  max-width:none!important;
}

@media(max-width:1100px){
  #gallery .gallery-grid{grid-template-columns:repeat(2,minmax(0,1fr))!important}
}
@media(max-width:700px){
  html{scroll-padding-top:88px}
  #home,#menu,#book,#events,#gallery,#location,#contact{scroll-margin-top:88px}
  #gallery{padding-top:56px!important}
  #gallery .gallery-grid{grid-template-columns:1fr!important;padding:0 16px!important}
  #gallery .section-head{padding:0 16px!important}
  .ufo-gallery-lightbox{padding:54px 14px!important}
  .ufo-lightbox-prev,.ufo-lightbox-next{display:none!important}
  .ufo-lightbox-close{top:14px!important;right:14px!important}
  .floating-order-btn,.floating-offer-btn,.floating-call{
    right:12px!important;width:136px!important;min-width:136px!important;max-width:136px!important;
    min-height:44px!important;padding:11px 12px!important;font-size:13px!important
  }
  .floating-order-btn{bottom:118px!important}
  .floating-offer-btn{bottom:66px!important}
  .floating-call{bottom:14px!important}
}


/* V308 Local SEO content sections */
.seo-local-section,
.seo-faq-section{
  background:#050805;
  padding:70px 0;
}
.seo-local-grid,
.seo-faq-grid{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:24px;
}
.seo-local-grid > div,
.seo-faq-card{
  background:linear-gradient(135deg,rgba(155,228,0,.08),rgba(255,255,255,.02));
  border:1px solid rgba(155,228,0,.28);
  border-radius:24px;
  padding:28px;
}
.seo-local-section h2,
.seo-faq-section h2{
  font-family:'Bebas Neue',sans-serif;
  color:#fff;
  font-size:clamp(34px,3.2vw,54px);
  line-height:.95;
  margin:0 0 14px;
}
.seo-faq-card h3{
  color:#9be400;
  margin:0 0 10px;
  font-weight:900;
}
.seo-local-section p,
.seo-faq-card p{
  color:#f3f3f3;
  line-height:1.65;
}
@media(max-width:760px){
  .seo-local-grid,
  .seo-faq-grid{
    grid-template-columns:1fr;
  }
  .seo-local-section,
  .seo-faq-section{
    padding:48px 0;
  }
}


/* V310 active-offer-only popup enhancements */
.ufo-offer-price-row{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  align-items:center;
  margin:14px 0 8px;
}
.ufo-was-price{
  color:#aaa;
  text-decoration:line-through;
  font-weight:900;
}
.ufo-now-price{
  color:#9be400;
  font-size:22px;
  font-weight:1000;
}
.ufo-discount-price{
  background:#ff9500;
  color:#111;
  border-radius:999px;
  padding:8px 14px;
  font-weight:1000;
}
