@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800;900&family=Poppins:wght@400;500;600;700;800;900&display=swap');

/* ════════════════════════════════════════
   ROOT TOKENS  (matches admin palette)
════════════════════════════════════════ */
:root {
  --orange: #C06C3C;
  --orange-dk: #a0562d;
  --orange-lt: #d99c71;
  --olive: #8A8636;
  --olive-dk: #6b682a;
  --olive-lt: #b8b46e;
  --green: #3d7a52;
  --green-lt: #d4edda;
  --cream: #FAF5ED;
  --cream-lt: #FDFBF7;
  --dark: #34312D;
  --dark-card: #3D3D3D;
  --white: #ffffff;
  --text: #34312D;
  --text-md: #595550;
  --text-sm: #94a3b8;
  --border: #e2e8f0;
  --bg: #F9F4EB;
  --shadow: 0 4px 20px rgba(61, 50, 40, 0.06);
  --shadow-md: 0 8px 28px rgba(61, 50, 40, 0.1);
  --shadow-lg: 0 16px 40px rgba(61, 50, 40, 0.15);
  --radius: 14px;
  --radius-sm: 8px;
  --radius-lg: 30px;
  --transition: 0.3s ease;
  --nav-h: 70px;
}

/* ════════════════════════════════════════
   RESET & BASE
════════════════════════════════════════ */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav-h);
  background-color: var(--dark);
}

body {
  font-family: 'Montserrat', sans-serif;
  color: var(--text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

input, button, select, textarea {
  font-family: inherit;
}

h1,
h2,
h3,
h4,
h5 {
  font-family: 'Poppins', sans-serif;
}

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

ul {
  list-style: none;
}

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

/* ════════════════════════════════════════
   NAVBAR
════════════════════════════════════════ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nav-h);
  background: var(--dark);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 48px;
  z-index: 1000;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.25);
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-brand img {
  height: 42px;
  width: auto;
}

.nav-brand-text {
  display: flex;
  flex-direction: column;
}

.nav-brand-name {
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: 0.02em;
}

.nav-brand-name .brand-first {
  color: var(--olive);
  font-weight: inherit;
}

.nav-brand-name em {
  color: var(--orange);
  font-style: normal;
}

.nav-brand-sub {
  font-size: 0.65rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.45);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-links a {
  padding: 8px 16px;
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
  border-radius: 8px;
  transition: var(--transition);
}

.nav-links a:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
}

.nav-links .nav-item-new {
  position: relative;
}

.nav-links .badge-new {
  position: absolute;
  top: -2px;
  right: -8px;
  background: var(--orange);
  color: #fff;
  font-size: 0.55rem;
  font-weight: 800;
  padding: 1px 4px;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  pointer-events: none;
  box-shadow: 0 2px 5px rgba(207, 99, 34, 0.4);
}

.nav-links .nav-signin {
  background: var(--orange);
  color: #fff;
  padding: 8px 20px;
  border-radius: 20px;
  font-weight: 700;
  margin-left: 12px;
  border: 1px solid var(--orange);
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-links .nav-signin:hover {
  background: var(--orange-dk);
  border-color: var(--orange-dk);
  transform: translateY(-1px);
}

.nav-links .nav-terms {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.85);
  border-radius: 20px;
  padding: 8px 16px;
}

.nav-links .nav-terms:hover {
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
}

/* Mobile hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
  z-index: 1001;
}

.hamburger span {
  width: 24px;
  height: 2.5px;
  background: #fff;
  border-radius: 2px;
  transition: var(--transition);
}

/* ════════════════════════════════════════
   HERO
════════════════════════════════════════ */
.hero {
  margin-top: var(--nav-h);
  padding: 40px 48px 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  min-height: auto;
  background: linear-gradient(135deg, var(--cream-lt) 0%, var(--white) 60%, rgba(207, 99, 34, 0.04) 100%);
  position: relative;
  overflow: hidden;
}

.hero::after {
  content: '';
  position: absolute;
  top: -120px;
  right: -120px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(207, 99, 34, 0.06) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero-content {
  flex: 1;
  max-width: 600px;
  z-index: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(207, 99, 34, 0.08);
  border: 1.5px solid rgba(207, 99, 34, 0.2);
  padding: 6px 16px;
  border-radius: 30px;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--orange);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.hero-badge::before {
  content: '\f3c5';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
}

.hero-title {
  font-size: 3.8rem;
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
}

.hero-title .highlight-orange {
  color: var(--orange);
}

.hero-title .highlight-olive {
  color: var(--olive);
}

.hero-desc {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-md);
  margin-bottom: 32px;
  max-width: 480px;
}

.hero-desc strong {
  color: var(--text);
}

.hero-btns {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border: none;
  border-radius: 30px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn:active {
  transform: translateY(0);
}

.btn-primary {
  background: var(--orange);
  color: #fff;
}

.btn-primary:hover {
  background: var(--orange-dk);
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--dark);
  color: var(--dark);
}

.btn-outline:hover {
  background: var(--dark);
  color: #fff;
}

.btn-olive {
  background: var(--olive);
  color: #fff;
}

.btn-olive:hover {
  background: var(--olive-dk);
}

/* Hero visual (logo card) */
.hero-visual {
  flex: 0 0 420px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  z-index: 1;
}

.hero-logo-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  border: 1px solid rgba(226, 232, 240, 0.6);
  width: 100%;
  max-width: 460px;
  position: relative;
  overflow: hidden;
}

/* Line above removed */

.hero-logo-card img {
  width: 320px;
  height: auto;
}

.hero-logo-card .brand-label {
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: 1.4rem;
  color: var(--text);
  text-align: center;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.hero-logo-card .brand-sub {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-sm);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

/* Stats strip */
.stats-strip {
  display: flex;
  gap: 12px;
  width: 100%;
  max-width: 460px;
}

.stat-box {
  flex: 1;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid rgba(226, 232, 240, 0.6);
  text-align: center;
  padding: 16px 8px;
  transition: var(--transition);
}

.stat-box:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.stat-number {
  font-family: 'Poppins', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--orange);
}

.stat-label {
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-sm);
  margin-top: 2px;
}

/* ════════════════════════════════════════
   SECTION SHARED
════════════════════════════════════════ */
.section {
  padding: 80px 48px;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.section-tag.tag-orange {
  color: var(--orange);
}

.section-tag.tag-white {
  color: rgba(255, 255, 255, 0.7);
}

.section-tag.tag-cream {
  color: var(--orange-lt);
}

.section-heading {
  font-size: 2.6rem;
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
}

.section-subtitle {
  font-size: 0.95rem;
  color: var(--text-md);
  line-height: 1.7;
  max-width: 540px;
}

/* ════════════════════════════════════════
   MUSTBERRYFI SECTION (Refined Light)
════════════════════════════════════════ */
.mustberryfi {
  background: var(--cream-lt);
  padding: 100px 48px;
  color: var(--text);
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 5;
}

.mustberry-title {
  font-family: 'Poppins', sans-serif;
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--text);
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: -0.02em;
}

.mustberry-subtitle {
  color: var(--text-md);
  max-width: 800px;
  margin: 0 auto 60px;
  font-size: 1.1rem;
  line-height: 1.6;
}

.mustberry-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  width: 100%;
  max-width: 1200px;
}

.mustberry-card {
  background: var(--white);
  border: 1px solid rgba(192, 108, 60, 0.1);
  border-radius: 20px;
  padding: 40px 30px;
  display: flex;
  flex-direction: column;
  transition: var(--transition);
  box-shadow: var(--shadow);
}

.mustberry-card:hover {
  background: var(--white);
  transform: translateY(-5px);
  border-color: var(--orange);
  box-shadow: var(--shadow-md);
}

.mb-icon {
  width: 60px;
  height: 60px;
  background: rgba(192, 108, 60, 0.1);
  color: var(--orange);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin-bottom: 24px;
}

.mustberry-card h4 {
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  font-weight: 800;
  color: var(--orange);
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  line-height: 1.3;
}

.mustberry-card p {
  font-size: 0.88rem;
  color: var(--text-md);
  line-height: 1.6;
}

.mustberry-footer-text {
  margin-top: 60px;
  color: var(--text-md);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

@media (max-width: 1024px) {
  .mustberry-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

@media (max-width: 600px) {
  .mustberry-grid {
    grid-template-columns: 1fr;
  }

  .mustberry-title {
    font-size: 2.2rem;
  }

  .mustberryfi {
    padding: 80px 24px;
  }
}

/* ════════════════════════════════════════
   FEATURES / INCLUSIONS (Light)
════════════════════════════════════════ */
.features {
  background: var(--white);
  color: var(--text);
}

.features .section-heading {
  color: var(--text);
}

.features .section-subtitle {
  color: var(--text-md);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
}

.feature-card {
  background: var(--cream);
  border-radius: var(--radius);
  padding: 28px 24px;
  border: 1px solid rgba(0, 0, 0, 0.04);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}



.feature-card:hover {
  transform: translateY(-4px);
  border-color: rgba(207, 99, 34, 0.15);
  box-shadow: var(--shadow-md);
}



.feature-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 16px;
}

.feature-icon.icon-orange {
  background: rgba(207, 99, 34, 0.1);
  color: var(--orange);
}

.feature-icon.icon-olive {
  background: rgba(138, 134, 54, 0.1);
  color: var(--olive);
}

.feature-icon.icon-green {
  background: rgba(61, 122, 82, 0.1);
  color: var(--green);
}

.feature-icon.icon-blue {
  background: rgba(192, 108, 60, 0.1);
  color: var(--orange);
}

.feature-icon.icon-purple {
  background: rgba(135, 132, 59, 0.1);
  color: var(--olive);
}

.feature-card h4 {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text);
}

.feature-card p {
  font-size: 0.82rem;
  color: var(--text-md);
  line-height: 1.6;
}

/* Features carousel controls */
.features-carousel-wrapper {
  position: relative;
}

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

.carousel-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, 0.15);
  background: transparent;
  color: rgba(255, 255, 255, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  font-size: 0.9rem;
}

.carousel-btn:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.3);
}

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

.carousel-dot {
  width: 24px;
  height: 4px;
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.2);
  border: none;
  cursor: pointer;
  transition: var(--transition);
}

.carousel-dot.active {
  width: 32px;
  background: var(--orange);
}

/* ════════════════════════════════════════
   NIGHT OWL PROMO (Light)
════════════════════════════════════════ */
.night-owl {
  background: var(--cream);
  color: var(--text);
  position: relative;
  overflow: hidden;
}

.night-owl::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(138, 134, 54, 0.06) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.night-owl-content {
  display: flex;
  align-items: center;
  gap: 60px;
}

.night-owl-text {
  flex: 1;
  z-index: 1;
}

.night-owl-text .section-heading {
  color: var(--text);
}

.night-owl-text .section-subtitle {
  color: var(--text-md) !important;
}

.night-owl-text .owl-emoji {
  font-size: 2.5rem;
  margin-bottom: 16px;
  display: block;
}

.night-owl-features {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 24px 0 32px;
}

.night-owl-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--text-md);
}

.night-owl-features li::before {
  content: '\f00c';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  font-size: 0.8rem;
  color: var(--olive);
}

.night-owl-pricing {
  flex: 0 0 380px;
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-md);
  z-index: 1;
}

.night-owl-pricing h3 {
  font-size: 1.2rem;
  font-weight: 800;
  margin-bottom: 20px;
  color: var(--olive);
}

.night-owl-pricing .price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  font-size: 0.9rem;
}

.night-owl-pricing .price-row:last-child {
  border-bottom: none;
}

.night-owl-pricing .price-label {
  color: var(--text-md);
}

.night-owl-pricing .price-value {
  font-weight: 700;
  color: var(--orange);
}

.night-owl-pricing .price-note {
  margin-top: 20px;
  font-size: 0.78rem;
  color: var(--text-sm);
  line-height: 1.6;
  font-style: italic;
}

/* ════════════════════════════════════════
   RESERVE SECTION
════════════════════════════════════════ */
.reserve {
  background: var(--cream-lt);
}

.reserve-layout {
  display: flex;
  align-items: flex-start;
  gap: 48px;
  margin-top: 40px;
}

.reserve-steps {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.reserve-step {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: var(--white);
  border-radius: var(--radius);
  padding: 20px 24px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(226, 232, 240, 0.6);
  transition: var(--transition);
}

.reserve-step:hover {
  transform: translateX(4px);
  box-shadow: var(--shadow-md);
}

.step-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.step-icon.si-orange {
  background: rgba(207, 99, 34, 0.12);
  color: var(--orange);
}

.step-icon.si-olive {
  background: rgba(138, 134, 54, 0.12);
  color: var(--olive);
}

.step-icon.si-green {
  background: rgba(61, 122, 82, 0.12);
  color: var(--green);
}

.step-icon.si-blue {
  background: rgba(59, 130, 246, 0.12);
  color: #3b82f6;
}

.step-text h4 {
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 4px;
  color: var(--text);
}

.step-text p {
  font-size: 0.8rem;
  color: var(--text-md);
  line-height: 1.5;
}

/* Quick reserve card (Light) */
.quick-reserve {
  flex: 0 0 380px;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  color: var(--text);
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(0, 0, 0, 0.06);
}

.quick-reserve h3 {
  font-size: 1.3rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 6px;
  color: var(--orange);
}

.quick-reserve .qr-sub {
  font-size: 0.8rem;
  color: var(--text-md);
  margin-bottom: 24px;
}

.time-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 24px;
}

.time-slot {
  padding: 12px;
  text-align: center;
  border-radius: var(--radius-sm);
  border: 1.5px solid rgba(0, 0, 0, 0.08);
  background: var(--cream-lt);
  color: var(--text);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}

.time-slot:hover {
  background: var(--white);
  border-color: var(--orange);
  color: var(--orange);
}

.time-slot.selected {
  background: var(--orange);
  border-color: var(--orange);
  color: #fff;
}

.btn-reserve {
  width: 100%;
  padding: 14px;
  background: var(--orange);
  color: #fff;
  border: none;
  border-radius: 30px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
}

.btn-reserve:hover {
  background: var(--orange-dk);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(207, 99, 34, 0.35);
}

/* ════════════════════════════════════════
   MEMBERSHIP PLANS (Refined Layout)
════════════════════════════════════════ */
.membership-plans {
  background: var(--cream);
  padding: 80px 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.membership-container {
  display: flex;
  width: 100%;
  max-width: 1000px;
  gap: 40px;
  margin-top: 40px;
}

.membership-sidebar {
  flex: 0 0 240px;
  display: flex;
  align-items: flex-start;
}

.membership-title-vertical {
  font-family: 'Poppins', sans-serif;
  font-size: 8rem;
  font-weight: 900;
  color: var(--orange);
  line-height: 0.8;
  letter-spacing: -0.05em;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  opacity: 0.9;
  pointer-events: none;
}

.membership-list {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.plan-row {
  background: var(--white);
  border: 1.5px solid rgba(61, 50, 40, 0.1);
  border-radius: 40px;
  padding: 24px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  transition: var(--transition);
  min-height: 140px;
  cursor: pointer;
}

.plan-row:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-md);
  border-color: var(--olive);
}

.plan-info {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.plan-name {
  font-family: 'Poppins', sans-serif;
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--olive);
  line-height: 1;
}

.plan-details {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--dark);
  max-width: 400px;
}

.plan-price-group {
  text-align: right;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  margin-right: 40px;
}

.plan-price-val {
  font-family: 'Poppins', sans-serif;
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--orange);
}

.plan-save-badge {
  position: absolute;
  right: -20px;
  top: 50%;
  transform: translateY(-50%);
  width: 90px;
  height: 90px;
  background: var(--orange);
  color: #fff;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  font-weight: 800;
  text-align: center;
  line-height: 1.1;
  box-shadow: 0 4px 15px rgba(192, 108, 60, 0.3);
  z-index: 2;
  /* Scalloped edge effect placeholder - using multiple shadows or svg might be overkill, sticking to round for now */
  border: 3px solid #fff;
}

.plan-save-badge .save-small {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
}

@media (max-width: 1024px) {
  .membership-container {
    flex-direction: column;
  }

  .membership-sidebar {
    display: none;
  }

  .plan-row {
    padding: 20px 30px;
    border-radius: 30px;
  }

  .plan-name {
    font-size: 2rem;
  }

  .plan-price-val {
    font-size: 1.8rem;
  }

  .plan-save-badge {
    width: 70px;
    height: 70px;
    font-size: 0.8rem;
    right: -10px;
  }
}

@media (max-width: 600px) {
  .plan-row {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    min-height: auto;
    gap: 16px;
    padding-bottom: 40px;
  }

  .plan-price-group {
    text-align: left;
    align-items: flex-start;
    margin-right: 0;
  }

  .plan-save-badge {
    top: auto;
    bottom: -10px;
    right: 20px;
    transform: none;
    width: 60px;
    height: 60px;
    font-size: 0.7rem;
  }
}

/* ════════════════════════════════════════
   HOW IT WORKS
════════════════════════════════════════ */
.how-it-works {
  background: var(--white);
  text-align: center;
}

.how-it-works .section-heading {
  margin: 0 auto 8px;
}

.how-it-works .section-subtitle {
  margin: 0 auto 48px;
}

.steps-row {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 48px;
}

.step-item {
  flex: 0 1 200px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.step-number {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Poppins', sans-serif;
  font-size: 1.5rem;
  font-weight: 900;
  margin-bottom: 18px;
  position: relative;
}

.step-number.sn-1 {
  background: rgba(207, 99, 34, 0.1);
  color: var(--orange);
  border: 3px solid rgba(207, 99, 34, 0.2);
}

.step-number.sn-2 {
  background: rgba(138, 134, 54, 0.1);
  color: var(--olive);
  border: 3px solid rgba(138, 134, 54, 0.2);
}

.step-number.sn-3 {
  background: rgba(207, 99, 34, 0.15);
  color: var(--orange);
  border: 3px solid rgba(207, 99, 34, 0.3);
}

.step-number.sn-4 {
  background: rgba(61, 122, 82, 0.1);
  color: var(--green);
  border: 3px solid rgba(61, 122, 82, 0.2);
}

.step-item h4 {
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--text);
}

.step-item p {
  font-size: 0.8rem;
  color: var(--text-md);
  line-height: 1.5;
}

/* ════════════════════════════════════════
   PROMO / BACK-TO-SCHOOL
════════════════════════════════════════ */
.promo {
  background: linear-gradient(135deg, var(--cream) 0%, var(--cream-lt) 100%);
}

.promo-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 48px;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(226, 232, 240, 0.6);
  display: flex;
  align-items: center;
  gap: 48px;
  position: relative;
  overflow: hidden;
}

.promo-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 6px;
  height: 100%;
  background: linear-gradient(to bottom, var(--orange), var(--olive));
}

.promo-text {
  flex: 1;
}

.promo-text .promo-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(207, 99, 34, 0.08);
  border: 1.5px solid rgba(207, 99, 34, 0.15);
  padding: 5px 14px;
  border-radius: 20px;
  font-size: 0.72rem;
  font-weight: 800;
  color: var(--orange);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 16px;
}

.promo-discount {
  font-family: 'Poppins', sans-serif;
  font-size: 3rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--orange), var(--olive));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 12px;
}

.promo-text h3 {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 18px;
}

.promo-perks {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.promo-perks li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--text-md);
}

.promo-perks li::before {
  content: '✓';
  width: 24px;
  height: 24px;
  background: var(--green-lt);
  color: var(--green);
  font-weight: 800;
  font-size: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  flex-shrink: 0;
}

.promo-visual {
  flex: 0 0 260px;
  text-align: center;
}

.promo-visual .promo-emoji {
  font-size: 5rem;
  margin-bottom: 16px;
}

.promo-visual p {
  font-size: 0.85rem;
  color: var(--text-md);
  line-height: 1.6;
}

/* ════════════════════════════════════════
   FOOTER (Matches Header)
════════════════════════════════════════ */
.footer {
  background: var(--dark);
  color: rgba(255, 255, 255, 0.6);
  padding: 60px 48px 28px;
  margin-top: auto;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  gap: 48px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  margin-bottom: 28px;
}

.footer-brand {
  max-width: 340px;
}

.footer-brand img {
  height: 44px;
  width: auto;
  border-radius: 6px;
  margin-bottom: 14px;
}

.footer-brand h4 {
  font-size: 1rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 8px;
}

.footer-brand p {
  font-size: 0.82rem;
  line-height: 1.7;
}

.footer-col h5 {
  font-size: 0.8rem;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col li {
  font-size: 0.82rem;
}

.footer-col li a:hover {
  color: var(--orange-lt);
}

.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 16px;
}

.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.5);
  transition: var(--transition);
}

.footer-social a:hover {
  background: var(--orange);
  color: #fff;
  transform: translateY(-2px);
}

.footer-bottom {
  text-align: center;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.3);
}

/* ════════════════════════════════════════
   ANIMATIONS
════════════════════════════════════════ */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

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

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.animate-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ════════════════════════════════════════
   GALLERY / MARQUEE
════════════════════════════════════════ */
.gallery-section {
  background: var(--white);
  padding: 20px 0 40px 0;
  /* reduced top padding to minimize gap with hero */
  overflow: hidden;
}

.gallery-marquee {
  width: 100vw;
  overflow: hidden;
  position: relative;
  display: flex;
}

.gallery-track {
  display: flex;
  gap: 20px;
  width: max-content;
  animation: scrollGallery 30s linear infinite;
  padding: 0 10px;
  /* offset the outer gap */
}

.gallery-track img {
  height: 280px;
  width: auto;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  object-fit: cover;
  flex-shrink: 0;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  cursor: pointer;
}

.gallery-track img:hover {
  transform: scale(1.05);
  box-shadow: var(--shadow-lg);
  z-index: 10;
}

@keyframes scrollGallery {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(calc(-50% - 10px));
  }

  /* 50% shift because we duplicated it + half of gap */
}

/* ════════════════════════════════════════
   OFFERINGS SECTION
   ════════════════════════════════════════ */
.offerings {
  background: var(--white);
  padding-top: 40px;
}

.offerings-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.offering-card {
  background: var(--cream);
  border-radius: var(--radius);
  padding: 30px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
  transition: var(--transition);
  border: 1px solid rgba(0, 0, 0, 0.04);
}

.offering-card:hover {
  transform: translateY(-5px);
  background: var(--white);
  border-color: var(--orange-lt);
  box-shadow: var(--shadow-md);
}

.offering-icon {
  width: 58px;
  height: 58px;
  background: var(--white);
  color: var(--orange);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.offering-card:hover .offering-icon {
  background: var(--orange);
  color: var(--white);
  transform: rotate(10deg);
}

.offering-card span {
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--text);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  line-height: 1.3;
}

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

@media (max-width: 768px) {
  .offerings-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .offerings-grid {
    grid-template-columns: 1fr;
  }
}

/* ════════════════════════════════════════
   MODAL (Gallery Pop-up)
════════════════════════════════════════ */
.modal {
  display: none;
  position: fixed;
  z-index: 9999;
  padding-top: 50px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.35); /* Much lighter background */
  -webkit-backdrop-filter: blur(12px); /* Maintain premium blur */
  backdrop-filter: blur(12px); /* Maintain premium blur */
}

.modal.show {
  display: block;
}

.modal-content {
  margin: auto;
  display: block;
  max-width: 90%;
  max-height: 85vh;
  border-radius: var(--radius);
  box-shadow: 0 0 50px rgba(0, 0, 0, 0.8);
  animation: modalZoom 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.modal-close {
  position: absolute;
  top: 30px;
  right: 30px;
  color: #fff;
  font-size: 50px;
  font-weight: 300;
  cursor: pointer;
  transition: var(--transition);
  line-height: 1;
}

.modal-close:hover {
  color: var(--orange);
  transform: scale(1.1) rotate(90deg);
}

@keyframes modalZoom {
  from {
    transform: scale(0.8);
    opacity: 0;
  }

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

/* Text Content Modal Styling */
.modal-card {
  background: var(--white);
  margin: 50px auto;
  width: 90%;
  max-width: 700px;
  border-radius: 24px;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
  animation: modalZoom 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  display: flex;
  flex-direction: column;
  max-height: 80vh;
}

.modal-header {
  padding: 40px 40px 20px;
  background: linear-gradient(to right, var(--cream-lt), var(--white));
  border-bottom: 1px solid var(--border);
}

.modal-title {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 4px;
  line-height: 1.2;
}

.modal-subtitle {
  color: var(--text-md);
  font-size: 0.95rem;
  font-weight: 500;
}

.modal-body {
  padding: 30px 40px 40px;
  overflow-y: auto;
}

/* Custom Scrollbar for Modal Body */
.modal-body::-webkit-scrollbar {
  width: 8px;
}

.modal-body::-webkit-scrollbar-track {
  background: var(--cream-lt);
}

.modal-body::-webkit-scrollbar-thumb {
  background: var(--orange-lt);
  border-radius: 4px;
}

.rules-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.rules-list li {
  font-size: 0.95rem;
  line-height: 1.5;
  color: var(--text-md);
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.rules-list li span {
  padding-top: 1px;
}

.rules-list li::before {
  content: '\f058';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  color: var(--orange);
  margin-top: 2px;
  font-size: 1rem;
  flex-shrink: 0;
}

.emergency-section {
  margin-top: 32px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}

.emergency-section h5 {
  color: var(--orange);
  margin-bottom: 16px;
  font-size: 1.1rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  gap: 8px;
}

.emergency-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
}

.emergency-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.emergency-item span:first-child {
  font-weight: 700;
  color: var(--text);
  font-size: 0.9rem;
}

.emergency-item span:last-child {
  color: var(--text-md);
  font-size: 0.85rem;
}

.modal-close-card {
  position: absolute;
  top: 20px;
  right: 24px;
  font-size: 28px;
  color: var(--text-sm);
  cursor: pointer;
  z-index: 10;
  transition: var(--transition);
}

.modal-close-card:hover {
  color: var(--orange);
  transform: rotate(90deg);
}

/* Modal Responsive */
@media (max-width: 768px) {
  .modal-content {
    max-width: 95%;
  }

  .modal-close {
    top: 20px;
    right: 20px;
    font-size: 40px;
  }
}

/* ════════════════════════════════════════
   RESPONSIVE
════════════════════════════════════════ */
@media (max-width: 1200px) {
  .hero {
    padding: 60px 32px 40px;
    gap: 40px;
  }

  .section {
    padding: 60px 32px;
  }

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

  .hero-visual {
    flex: 0 0 340px;
  }
}

@media (max-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .night-owl-content {
    flex-direction: column;
  }

  .night-owl-pricing {
    flex: none;
    width: 100%;
    max-width: 500px;
  }

  .reserve-layout {
    flex-direction: column;
  }

  .quick-reserve {
    flex: none;
    width: 100%;
    max-width: 500px;
  }
}

@media (max-width: 768px) {
  html {
    font-size: 15px;
  }

  .navbar {
    padding: 0 20px;
  }

  .nav-links {
    display: none;
  }

  .nav-links.mobile-open {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    position: fixed;
    top: var(--nav-h);
    left: 0;
    right: 0;
    background: var(--dark);
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
    padding: 8px 20px 20px;
    gap: 2px;
    box-shadow: var(--shadow-md);
    animation: fadeIn 0.2s ease;
  }

  .nav-links.mobile-open a {
    width: 100%;
    padding: 14px 16px;
    border-radius: var(--radius-sm);
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .nav-links.mobile-open .nav-item-new {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .nav-links.mobile-open .badge-new {
    position: static;
  }

  .nav-links.mobile-open .nav-terms,
  .nav-links.mobile-open .nav-signin {
    justify-content: center;
    text-align: center;
    border-radius: var(--radius-sm);
    border-bottom: none;
    margin-top: 8px;
  }

  .nav-links.mobile-open .nav-signin {
    margin-left: 0;
    margin-top: 4px;
  }

  .hamburger {
    display: flex;
  }

  .hero {
    flex-direction: column;
    text-align: center;
    padding: 40px 20px 40px;
    min-height: auto;
  }

  .hero-content {
    max-width: 100%;
  }

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

  .hero-desc {
    margin: 0 auto 24px;
  }

  .hero-btns {
    justify-content: center;
  }

  .hero-visual {
    flex: none;
    width: 100%;
  }

  .hero-logo-card {
    max-width: 300px;
    margin: 0 auto;
  }

  .stats-strip {
    max-width: 100%;
    flex-wrap: wrap;
    margin: 0 auto;
  }

  .section {
    padding: 48px 20px;
  }

  .section-heading {
    font-size: 2rem;
  }

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

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

  .steps-row {
    flex-direction: column;
    gap: 32px;
    align-items: center;
  }

  .promo-card {
    flex-direction: column;
    padding: 32px;
    text-align: center;
  }

  .promo-card::before {
    width: 100%;
    height: 4px;
  }

  .promo-text {
    text-align: center;
  }

  .promo-perks {
    align-items: center;
  }

  .promo-visual {
    flex: none;
  }

  .footer-top {
    flex-direction: column;
    gap: 32px;
  }

  .gallery-track img {
    height: 200px;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2rem;
  }

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

  .stat-box {
    padding: 12px 6px;
  }

  .stat-number {
    font-size: 1.2rem;
  }
}
/* ═══════════════════════════════════════════
   MOBILE DENSITY — shorten the landing page
   (2-up grids + tighter cards on small screens)
   ═══════════════════════════════════════════ */
@media (max-width: 768px) {
  .features-grid {
    grid-template-columns: 1fr 1fr !important;
    gap: 12px;
  }
  .feature-card {
    padding: 16px 14px;
  }
  .feature-icon {
    width: 38px;
    height: 38px;
    font-size: 1.05rem;
    margin-bottom: 10px;
    border-radius: 10px;
  }
  .feature-card h4 {
    font-size: 0.9rem;
    margin-bottom: 5px;
  }
  .feature-card p {
    font-size: 0.76rem;
    line-height: 1.45;
  }

  .rates-seat-grid {
    grid-template-columns: 1fr 1fr !important;
    gap: 12px !important;
    margin-bottom: 32px !important;
  }
  .rates-seat-card {
    padding: 16px 14px !important;
    gap: 6px !important;
  }
  .rates-seat-icon {
    width: 36px !important;
    height: 36px !important;
    margin-bottom: 2px !important;
  }
  .rates-seat-icon i {
    font-size: 0.95rem !important;
  }
  .rates-seat-card h4 {
    font-size: 0.82rem !important;
  }
  .rates-seat-price {
    font-size: 1.15rem !important;
  }
  .rates-seat-card p {
    font-size: 0.72rem !important;
    line-height: 1.4 !important;
  }

  #rates.rates-section {
    padding: 44px 16px !important;
  }
}

@media (max-width: 480px) {
  .offerings-grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }
  .offering-card {
    padding: 18px 12px;
    gap: 10px;
  }
  .offering-icon {
    width: 44px;
    height: 44px;
    font-size: 1.2rem;
    border-radius: 14px;
  }
  .offering-card span {
    font-size: 0.74rem;
  }

  .section {
    padding: 36px 16px;
  }
}

/* ── Mobile density, part 2: MustBerryFi / How-It-Works / Membership ── */
@media (max-width: 768px) {
  .steps-row {
    display: grid !important;
    grid-template-columns: 1fr 1fr;
    gap: 22px 12px !important;
    flex-direction: row;
  }
  .step-item {
    flex: none;
  }
  .step-number {
    width: 46px;
    height: 46px;
    font-size: 1.1rem;
    margin-bottom: 10px;
  }
  .step-item h4 {
    font-size: 0.85rem;
  }
  .step-item p {
    font-size: 0.74rem;
    line-height: 1.4;
  }
}

@media (max-width: 600px) {
  .mustberry-grid {
    grid-template-columns: 1fr 1fr !important;
    gap: 12px;
  }
  .mustberry-card {
    padding: 18px 14px;
    border-radius: 14px;
  }
  .mb-icon {
    width: 40px;
    height: 40px;
    font-size: 1.15rem;
    margin-bottom: 12px;
    border-radius: 10px;
  }
  .mustberry-card h4 {
    font-size: 0.82rem;
    margin-bottom: 8px;
  }
  .mustberry-card p {
    font-size: 0.74rem;
    line-height: 1.45;
  }
  .mustberry-footer-text {
    margin-top: 32px;
    font-size: 0.82rem;
  }
  .mustberryfi {
    padding: 44px 16px !important;
  }

  .membership-plans {
    padding: 44px 16px !important;
  }
  .membership-list {
    gap: 12px !important;
  }
  .plan-row {
    padding: 16px 20px 34px !important;
    min-height: 0 !important;
    border-radius: 20px !important;
    gap: 6px !important;
  }
  .plan-name {
    font-size: 1.55rem !important;
  }
  .plan-details {
    font-size: 0.8rem !important;
  }
  .plan-price-val {
    font-size: 1.5rem !important;
  }
  .plan-save-badge {
    width: 52px !important;
    height: 52px !important;
    font-size: 0.6rem !important;
    right: 16px !important;
    bottom: -8px !important;
    border-width: 2px !important;
  }
  .plan-save-badge .save-small {
    font-size: 0.5rem !important;
  }
}
