/* ============================================
   THE SANDBOX RESORT — Master Stylesheet
   Colors: Teal #2A7B7B, Terracotta #C75B3A, Gold #C8963E
   Fonts: Bebas Neue (display), Montserrat (body)
   ============================================ */

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

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #2D2D2D;
  background: #FAFAF8;
}
img { max-width: 100%; height: auto; display: block; }
a { color: #C75B3A; text-decoration: none; transition: color 0.2s; }
a:hover { color: #2A7B7B; }
h1, h2, h3, h4 { font-family: 'Bebas Neue', 'Arial Black', sans-serif; letter-spacing: 2px; line-height: 1.1; }

.container { max-width: 1140px; margin: 0 auto; padding: 0 24px; }

/* --- Navigation --- */
.nav {
  background: #1A3C34;
  padding: 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 12px rgba(0,0,0,0.15);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
}
.nav-logo svg { height: 50px; width: auto; }
.nav-links { display: flex; gap: 0; list-style: none; }
.nav-links a {
  display: block;
  padding: 20px 18px;
  color: #E8E0D4;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: background 0.2s, color 0.2s;
}
.nav-links a:hover,
.nav-links a.active {
  background: #C75B3A;
  color: #fff;
}
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 12px;
  z-index: 1010;
  -webkit-tap-highlight-color: transparent;
}
.nav-toggle span {
  display: block;
  width: 26px;
  height: 3px;
  background: #E8E0D4;
  margin: 5px 0;
  border-radius: 2px;
  transition: 0.3s;
}

/* --- Hero --- */
.hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: #1A3C34;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.4;
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 40px 24px;
}
.hero h1 {
  font-size: clamp(48px, 10vw, 96px);
  color: #fff;
  letter-spacing: 8px;
  margin-bottom: 16px;
  /* no text shadow */
}
.hero .subtext {
  font-family: 'Montserrat', sans-serif;
  font-size: 18px;
  color: #C8963E;
  letter-spacing: 4px;
  font-weight: 600;
  margin-bottom: 40px;
}
.hero-ctas { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* --- Buttons --- */
.btn {
  display: inline-block;
  padding: 14px 36px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
  border-radius: 4px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.25s;
}
.btn-primary {
  background: #C75B3A;
  color: #fff;
  border-color: #C75B3A;
}
.btn-primary:hover { background: #a94828; border-color: #a94828; color: #fff; }
.btn-outline {
  background: transparent;
  color: #fff;
  border-color: #C8963E;
}
.btn-outline:hover { background: #C8963E; color: #1A3C34; }
.btn-teal { background: #2A7B7B; color: #fff; border-color: #2A7B7B; }
.btn-teal:hover { background: #1f5e5e; border-color: #1f5e5e; color: #fff; }

/* --- Section Styles --- */
.section {
  padding: 80px 0;
}
.section--dark {
  background: #1A3C34;
  color: #E8E0D4;
}
.section--alt {
  background: #F0EDE6;
}
.section-header {
  text-align: center;
  margin-bottom: 48px;
}
.section-header h2 {
  font-size: clamp(36px, 5vw, 56px);
  color: #C75B3A;
  margin-bottom: 12px;
}
.section--dark .section-header h2 { color: #C8963E; }
.section-header p {
  font-size: 16px;
  max-width: 600px;
  margin: 0 auto;
  color: #666;
}
.section--dark .section-header p { color: #b8b0a4; }
.section-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin: 12px auto 0;
  max-width: 300px;
}
.section-divider .line { flex: 1; height: 2px; background: #2A7B7B; }
.section-divider .diamond {
  width: 10px; height: 10px;
  background: #C8963E;
  transform: rotate(45deg);
}

/* --- Activity Cards --- */
.activity-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
}
.activity-card {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  transition: transform 0.3s, box-shadow 0.3s;
}
.activity-card:hover { transform: translateY(-4px); box-shadow: 0 8px 32px rgba(0,0,0,0.12); }
.activity-card-img {
  height: 220px;
  background-size: cover;
  background-position: center;
  background-color: #2A7B7B;
  position: relative;
}
.difficulty-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  padding: 4px 14px;
  border-radius: 20px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #fff;
}
.activity-card-body { padding: 24px; }
.activity-card-body h3 {
  font-size: 28px;
  color: #1A3C34;
  margin-bottom: 8px;
}
.activity-card-body p { color: #555; font-size: 15px; margin-bottom: 16px; }
.activity-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 16px;
}
.info-tag {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: #F0EDE6;
  padding: 4px 12px;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 500;
  color: #555;
}
.activity-price {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 32px;
  color: #C75B3A;
}
.activity-price span { font-size: 14px; font-family: 'Montserrat', sans-serif; color: #999; }

/* --- What to Bring --- */
.bring-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 24px;
}
.bring-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px;
  background: #fff;
  border-radius: 8px;
  border-left: 4px solid #C8963E;
}
.bring-item .icon { font-size: 24px; }
.bring-item span { font-weight: 500; }

.safety-note {
  margin-top: 40px;
  padding: 24px;
  background: rgba(199,91,58,0.08);
  border-left: 4px solid #C75B3A;
  border-radius: 4px;
}
.safety-note strong { color: #C75B3A; }

/* --- Menu Grid --- */
.menu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.menu-category h3 {
  font-size: 28px;
  color: #C8963E;
  margin-bottom: 20px;
  padding-bottom: 8px;
  border-bottom: 2px solid #2A7B7B;
}
.menu-item {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 10px 0;
  border-bottom: 1px dashed #ddd;
}
.menu-item-name { font-weight: 600; }
.menu-item-desc { font-size: 13px; color: #888; }
.menu-item-price {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22px;
  color: #C75B3A;
  white-space: nowrap;
  margin-left: 12px;
}

/* --- Booking Steps --- */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-bottom: 48px;
}
.step {
  text-align: center;
  padding: 32px 24px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}
.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #2A7B7B;
  color: #fff;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 28px;
  margin-bottom: 16px;
}
.step h3 { font-size: 24px; color: #1A3C34; margin-bottom: 8px; }
.step p { font-size: 14px; color: #666; }

/* --- FAQ Accordion --- */
.faq-list { max-width: 720px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid #ddd;
}
.faq-question {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 20px 0;
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: #1A3C34;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.faq-question::after {
  content: '+';
  font-size: 24px;
  color: #C75B3A;
  transition: transform 0.3s;
}
.faq-item.open .faq-question::after {
  content: '−';
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s;
}
.faq-item.open .faq-answer {
  max-height: 300px;
  padding-bottom: 20px;
}
.faq-answer p { color: #555; font-size: 15px; }

/* --- Waiver Form --- */
.waiver-form {
  max-width: 680px;
  margin: 0 auto;
  background: #fff;
  border-radius: 8px;
  padding: 40px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}
.waiver-form h2 {
  font-size: 36px;
  color: #1A3C34;
  margin-bottom: 8px;
}
.form-group {
  margin-bottom: 20px;
}
.form-group label {
  display: block;
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 6px;
  color: #1A3C34;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid #ddd;
  border-radius: 6px;
  font-family: 'Montserrat', sans-serif;
  font-size: 15px;
  transition: border-color 0.2s;
}
.form-group input:focus,
.form-group textarea:focus {
  border-color: #2A7B7B;
  outline: none;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

/* Activity checkboxes */
.activity-checks {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.activity-check {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  background: #F0EDE6;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
  border: 2px solid transparent;
}
.activity-check:hover { background: #e8e3d8; }
.activity-check input[type="checkbox"] {
  width: 20px;
  height: 20px;
  accent-color: #2A7B7B;
}
.activity-check.checked {
  border-color: #2A7B7B;
  background: rgba(42,123,123,0.08);
}

/* Waiver scroll box */
.waiver-scroll-box {
  max-height: 300px;
  overflow-y: auto;
  border: 2px solid #ddd;
  border-radius: 6px;
  padding: 20px;
  margin-bottom: 20px;
  background: #FAFAF8;
  font-size: 14px;
  line-height: 1.7;
  color: #555;
}
.waiver-scroll-box h4 { color: #1A3C34; margin: 16px 0 8px; font-family: 'Montserrat', sans-serif; }
.waiver-scroll-box::-webkit-scrollbar { width: 6px; }
.waiver-scroll-box::-webkit-scrollbar-track { background: #f0f0f0; }
.waiver-scroll-box::-webkit-scrollbar-thumb { background: #2A7B7B; border-radius: 3px; }

.scroll-prompt {
  text-align: center;
  padding: 10px;
  background: #C8963E;
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  border-radius: 4px;
  margin-bottom: 20px;
}
.scroll-prompt.hidden { display: none; }

/* Clause checkboxes */
.clause-checks { margin-bottom: 20px; }
.clause-check {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  padding: 12px 0;
  border-bottom: 1px solid #eee;
}
.clause-check input[type="checkbox"] {
  margin-top: 3px;
  width: 18px;
  height: 18px;
  accent-color: #C75B3A;
  flex-shrink: 0;
}
.clause-check label {
  font-size: 14px;
  color: #555;
  cursor: pointer;
}

/* Type to sign */
.type-sign-box {
  background: #F0EDE6;
  padding: 20px;
  border-radius: 6px;
  margin-bottom: 20px;
}
.type-sign-box p { font-size: 13px; color: #888; margin-bottom: 8px; }
.type-sign-box input {
  font-family: 'Dancing Script', cursive, 'Montserrat', sans-serif;
  font-size: 28px;
  color: #1A3C34;
  text-align: center;
}

/* Waiver locked state */
.waiver-locked {
  opacity: 0.5;
  pointer-events: none;
}
.waiver-unlocked {
  opacity: 1;
  pointer-events: auto;
  transition: opacity 0.3s;
}

/* --- Contact --- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}
.contact-info-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 24px;
}
.contact-info-item .icon {
  width: 44px;
  height: 44px;
  background: #2A7B7B;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 18px;
  flex-shrink: 0;
}
.contact-info-item h4 {
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #1A3C34;
  margin-bottom: 4px;
}
.contact-info-item p { color: #555; }
.contact-form .form-group input,
.contact-form .form-group textarea {
  background: #fff;
}

/* --- About --- */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 40px;
}
.value-card {
  text-align: center;
  padding: 32px 24px;
}
.value-card h3 {
  font-size: 24px;
  color: #C8963E;
  margin-bottom: 12px;
}
.value-card p { color: #b8b0a4; font-size: 15px; }

/* --- Footer --- */
.footer {
  background: #111;
  color: #888;
  padding: 48px 0 24px;
}
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 32px;
}
.footer h4 {
  font-size: 18px;
  color: #C8963E;
  margin-bottom: 16px;
}
.footer p { font-size: 14px; line-height: 1.8; }
.footer a { color: #b8b0a4; }
.footer a:hover { color: #C75B3A; }
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 8px; }
.footer-links a { font-size: 14px; }
.social-links { display: flex; gap: 16px; margin-top: 12px; }
.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #222;
  color: #C8963E;
  font-size: 16px;
  transition: background 0.2s;
}
.social-links a:hover { background: #C75B3A; color: #fff; }
.footer-bottom {
  text-align: center;
  padding-top: 24px;
  border-top: 1px solid #222;
  font-size: 13px;
}

/* --- Page Header (inner pages) --- */
.page-header {
  background: #1A3C34;
  padding: 80px 0 60px;
  text-align: center;
}
.page-header h1 {
  font-size: clamp(40px, 6vw, 64px);
  color: #fff;
  letter-spacing: 6px;
  margin-bottom: 8px;
}
.page-header p {
  color: #C8963E;
  font-size: 16px;
  letter-spacing: 3px;
  font-weight: 600;
}

/* --- Staff Dashboard --- */
.staff-login-box {
  max-width: 480px;
  margin: 0 auto;
  text-align: center;
  padding: 48px 40px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}
.dash-topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 20px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  margin-bottom: 24px;
}
.role-badge {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 12px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  margin-left: 10px;
}
.role-admin { background: #C75B3A; color: #fff; }
.role-cashier { background: #2A7B7B; color: #fff; }
.role-marketing { background: #C8963E; color: #fff; }

.revenue-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 24px;
}
.revenue-card {
  background: #fff;
  border-radius: 8px;
  padding: 24px;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  border-top: 4px solid #2A7B7B;
}
.revenue-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  color: #888;
  margin-bottom: 8px;
}
.revenue-value {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 36px;
  color: #1A3C34;
}

/* Dashboard tabs */
.dash-tabs {
  display: flex;
  gap: 0;
  margin-bottom: 24px;
  border-bottom: 2px solid #ddd;
}
.dash-tab {
  padding: 12px 24px;
  background: none;
  border: none;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 14px;
  color: #888;
  cursor: pointer;
  border-bottom: 3px solid transparent;
  margin-bottom: -2px;
  transition: color 0.2s, border-color 0.2s;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.dash-tab:hover { color: #1A3C34; }
.dash-tab.active {
  color: #2A7B7B;
  border-bottom-color: #2A7B7B;
}
.tab-content { display: none; }
.tab-content.active { display: block; }

.dash-filters {
  display: flex;
  gap: 16px;
  align-items: flex-end;
  margin-bottom: 24px;
  flex-wrap: wrap;
}
.dash-search {
  flex: 1;
  min-width: 250px;
}
.dash-search input {
  padding: 12px 16px;
  border: 2px solid #ddd;
  border-radius: 6px;
  font-family: 'Montserrat', sans-serif;
  font-size: 15px;
}
.dash-search input:focus {
  border-color: #2A7B7B;
  outline: none;
}
.dash-date-filter {
  display: flex;
  gap: 8px;
  align-items: center;
}
.dash-date-filter input[type="date"] {
  padding: 10px 12px;
  border: 2px solid #ddd;
  border-radius: 6px;
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
}
.dash-date-filter input[type="date"]:focus {
  border-color: #2A7B7B;
  outline: none;
}

.guest-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.guest-card {
  background: #fff;
  border-radius: 8px;
  padding: 24px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  border-left: 4px solid #2A7B7B;
}
.guest-card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 16px;
  flex-wrap: wrap;
  gap: 8px;
}
.guest-name {
  font-family: 'Montserrat', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #1A3C34;
  letter-spacing: 0;
  margin-bottom: 2px;
}
.guest-phone {
  font-size: 14px;
  color: #888;
}
.guest-visit-date {
  font-size: 14px;
  font-weight: 600;
  color: #2A7B7B;
}
.guest-signed-date {
  font-size: 12px;
  color: #aaa;
}
.minor-badge {
  display: inline-block;
  background: #FFF3E0;
  color: #C8963E;
  font-size: 12px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 4px;
  margin-bottom: 12px;
  letter-spacing: 1px;
}
.guest-activities {
  margin-bottom: 12px;
}
.guest-activities-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  color: #888;
  margin-bottom: 8px;
}
.guest-activities-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.activity-tag {
  display: inline-block;
  background: #F0EDE6;
  padding: 6px 14px;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 500;
  color: #1A3C34;
}
.guest-total {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 24px;
  color: #C75B3A;
  margin-top: 8px;
  padding-top: 12px;
  border-top: 1px solid #eee;
}
.medical-flag {
  margin-top: 8px;
  padding: 8px 12px;
  background: rgba(199,91,58,0.08);
  border-left: 3px solid #C75B3A;
  border-radius: 4px;
  font-size: 13px;
  color: #C75B3A;
}

/* Reconciliation */
.cashier-recon-card {
  background: #fff;
  border-radius: 8px;
  padding: 24px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  margin-bottom: 16px;
  border-left: 4px solid #C8963E;
}
.cashier-recon-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 16px;
  flex-wrap: wrap;
  gap: 12px;
}
.cashier-guest-list {
  border-top: 1px solid #eee;
  padding-top: 12px;
}
.cashier-guest-row {
  display: grid;
  grid-template-columns: 1.5fr 2fr 1fr 0.5fr;
  gap: 8px;
  padding: 8px 0;
  border-bottom: 1px solid #f5f5f5;
  font-size: 14px;
  align-items: center;
}

/* User management */
.user-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  margin-bottom: 8px;
}
.user-card-info { flex: 1; }
.user-card-role { min-width: 100px; text-align: center; }
.user-card-actions {
  display: flex;
  gap: 12px;
  align-items: center;
}
.role-select {
  padding: 6px 10px;
  border: 2px solid #ddd;
  border-radius: 4px;
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  cursor: pointer;
}
.role-select:focus {
  border-color: #2A7B7B;
  outline: none;
}

/* --- OTP Section --- */
#otpSection input[type="tel"]:focus {
  border-color: #2A7B7B;
  outline: none;
}
#otpCode {
  font-family: 'Montserrat', sans-serif;
}

/* --- Responsive --- */
@media (max-width: 768px) {
  .nav-toggle { display: block; }
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #1A3C34;
    flex-direction: column;
    box-shadow: 0 8px 24px rgba(0,0,0,0.2);
    z-index: 1005;
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 16px 24px; border-top: 1px solid rgba(255,255,255,0.05); }
  .hero h1 { letter-spacing: 4px; }
  .steps { grid-template-columns: 1fr; }
  .menu-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .activity-checks { grid-template-columns: 1fr; }
  .activity-grid { grid-template-columns: 1fr; }
  .revenue-cards { grid-template-columns: 1fr; }
  .dash-topbar { flex-direction: column; gap: 12px; text-align: center; }
  .dash-filters { flex-direction: column; }
  .dash-date-filter { flex-wrap: wrap; }
  .guest-card-header { flex-direction: column; }
  .cashier-guest-row { grid-template-columns: 1fr 1fr; }
  .user-card { flex-direction: column; text-align: center; }
  .user-card-actions { flex-direction: column; }
  .dash-tabs { overflow-x: auto; }
}
