@charset "UTF-8";
/******************************************************************

Stylesheet: Main Stylesheet

Here's where the magic happens. Here is where you import
all of your Sass files so they can compile into one
CSS file.

******************************************************************/

.history-counter-wrap {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 40px;
  width: 100%;
}
.history-headline {
  margin-bottom: 52px;
}
.history-sub {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.28em;
  color: #415c2c;
  margin-bottom: 12px;
  text-transform: uppercase;
}
.history-title {
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(32px, 5vw, 62px);
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
  letter-spacing: 0.02em;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.6);
}
.history-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
  max-width: 900px;
  margin: 0 auto;
}
.history-stat {
  flex: 1;
  min-width: 140px;
  padding: 20px 32px;
  text-align: center;
}
.history-stat-divider {
  width: 1px;
  height: 60px;
  background: rgba(255, 255, 255, 0.15);
  flex-shrink: 0;
}
.stat-number {
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(48px, 8vw, 88px);
  font-weight: 800;
  color: #fff;
  line-height: 1;
  margin-bottom: 8px;
  text-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}
.stat-label {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: rgba(255, 255, 255, 0.55);
  text-transform: uppercase;
}
@media (max-width: 700px) {
  .history-stats {
    gap: 0;
  }
  .history-stat {
    min-width: 120px;
    padding: 16px 20px;
  }
  .history-stat-divider {
    display: none;
  }
  .stat-number {
    font-size: 52px;
  }
}

/*  FILTER TABS  */
.filter-bar {
  background: #1a1a1a;
  padding: 24px 40px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  border-bottom: 1px solid #222;
}
.filter-btn {
  background: #252525;
  border: 1px solid #333;
  color: #888;
  padding: 10px 24px;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.15em;
  cursor: pointer;
  border-radius: 2px;
  transition: all 0.2s;
  text-transform: uppercase;
}
.filter-btn:hover {
  color: #fff;
  border-color: #555;
}
.filter-btn.active {
  background: #415c2c;
  border-color: #415c2c;
  color: #fff;
}

/*  EVENT GRID  */
.event-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 2px;
  background: #111;
  padding: 2px;
  max-width: 100%;
}
.event-card {
  background: #1a1a1a;
  display: flex;
  flex-direction: column;
  transition: background 0.3s;
  cursor: pointer;
}
.event-card:hover {
  background: #202020;
}
.event-card.hidden {
  display: none;
}
.event-card-img {
  height: 220px;
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
}
.event-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}
.event-card:hover .event-card-img img {
  transform: scale(1.04);
}
.event-tag {
  position: absolute;
  top: 16px;
  left: 16px;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  padding: 5px 12px;
  border-radius: 2px;
  text-transform: uppercase;
}
.tag-weekly {
  background: #2b4a59;
  color: #fff;
}
.tag-promo {
  background: #415c2c;
  color: #fff;
}
.tag-all {
  background: #333;
  color: #fff;
}
.event-date-badge {
  position: absolute;
  bottom: 16px;
  right: 16px;
  background: rgba(20, 20, 20, 0.85);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #ccc;
  padding: 5px 10px;
  border-radius: 2px;
}
.event-body {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.event-body h3 {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
  line-height: 1.2;
}
.event-body p {
  font-size: 14px;
  color: var(--text);
  line-height: 1.6;
  flex: 1;
  margin-bottom: 16px;
}
.more-info-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: #415c2c;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  transition: color 0.2s;
  text-transform: uppercase;
}
.more-info-btn:hover {
  color: #fff;
}
.more-info-btn svg {
  transition: transform 0.2s;
}
.more-info-btn:hover svg {
  transform: translateX(4px);
}

/*  MODAL  */
.modal-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  z-index: 2000;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.modal-backdrop.open {
  display: flex;
}
.modal {
  background: #1a1a1a;
  max-width: 680px;
  width: 100%;
  max-height: 85vh;
  overflow-y: auto;
  border-radius: 2px;
  position: relative;
  border-top: 3px solid #415c2c;
}
.modal-img {
  height: 280px;
  overflow: hidden;
  position: relative;
}
.modal-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.modal-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26, 26, 26, 0.8), transparent);
}
.modal-body {
  padding: 32px 36px 40px;
}
.modal-tag {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: #415c2c;
  margin-bottom: 8px;
  text-transform: uppercase;
}
.modal-body h2 {
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(28px, 5vw, 44px);
  font-weight: 800;
  color: #fff;
  margin-bottom: 16px;
  line-height: 1.1;
}
.modal-body .modal-meta {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid #2a2a2a;
}
.modal-meta-item {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 14px;
  color: var(--text);
  letter-spacing: 0.05em;
}
.modal-meta-item strong {
  color: #ccc;
  display: block;
  font-size: 11px;
  letter-spacing: 0.15em;
  margin-bottom: 2px;
}
.modal-body p {
  font-size: 15px;
  color: var(--text);
  line-height: 1.8;
  margin-bottom: 14px;
}
.modal-body ul {
  padding-left: 20px;
  margin-bottom: 14px;
}
.modal-body ul li {
  font-size: 14px;
  color: var(--text);
  line-height: 1.8;
}
.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: rgba(0, 0, 0, 0.6);
  border: 1px solid #333;
  color: #fff;
  width: 36px;
  height: 36px;
  border-radius: 2px;
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
  z-index: 10;
}
.modal-close:hover {
  background: #415c2c;
}

@media (max-width: 600px) {
  .filter-bar {
    padding: 16px 20px;
  }
  .modal-body {
    padding: 24px 20px 32px;
  }
}

/*  AREAS GRID  */
.areas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2px;
  background: #111;
  max-width: 1300px;
  margin: 0 auto 2px;
  padding: 0 2px;
}
.area-card {
  background: #1a1a1a;
  overflow: hidden;
  transition: background 0.3s;
}
.area-card:hover {
  background: #202020;
}
.area-card-img {
  height: 240px;
  overflow: hidden;
  position: relative;
}
.area-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}
.area-card:hover .area-card-img img {
  transform: scale(1.04);
}
.area-card-body {
  padding: 24px 28px 28px;
}
.area-card-tag {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: #415c2c;
  margin-bottom: 8px;
  text-transform: uppercase;
}
.area-card-body h3 {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 24px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 8px;
  letter-spacing: 0.04em;
}
.area-card-body p {
  font-size: 14px;
  color: #777;
  line-height: 1.7;
  margin-bottom: 16px;
}

/*  MORE INFO BTN  */
.more-info-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: #415c2c;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  transition: color 0.2s;
  text-transform: uppercase;
}
.more-info-btn:hover {
  color: #fff;
}
.more-info-btn svg {
  transition: transform 0.2s;
}
.more-info-btn:hover svg {
  transform: translateX(4px);
}

/*  KIDS PARTY SECTION  */
.kids-party-section {
  background: #0a1628;
  padding: 60px 40px 70px;
  max-width: 1300px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}
.kids-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 56px;
}
.kids-intro-img {
  height: 380px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.5);
}
.kids-intro-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.kids-intro-text .kids-rule {
  width: 60px;
  height: 5px;
  background: linear-gradient(to right, #f7c948, #e8553a, #7b5ea7, #4ecdc4);
  margin-bottom: 20px;
  border-radius: 4px;
}
.kids-intro-text h2 {
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(32px, 5vw, 54px);
  font-weight: 800;
  color: #fff;
  margin-bottom: 16px;
  line-height: 1.05;
}
.kids-intro-text p {
  font-size: 15px;
  color: #aab8c2;
  line-height: 1.8;
  margin-bottom: 12px;
}
.kids-package-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3px;
  margin-bottom: 3px;
}
.kids-package-col {
  background: #0f2035;
  padding: 36px;
}
.kids-package-col h3 {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 20px;
  font-weight: 800;
  color: #fff;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 2px solid rgba(255, 255, 255, 0.07);
}
.kids-package-col ul {
  list-style: none;
  padding: 0;
}
.kids-package-col ul li {
  font-size: 14px;
  color: #aab8c2;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: baseline;
  gap: 10px;
}
.kids-package-col ul li::before {
  content: "";
  color: #4ecdc4;
  flex-shrink: 0;
  font-weight: 700;
}
.themes-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 16px;
}
.theme-tag {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 8px 20px;
  border-radius: 20px;
}
.theme-superhero {
  background: #e8553a;
  color: #fff;
}
.theme-princess {
  background: #c2609e;
  color: #fff;
}
.theme-sea {
  background: #2196a8;
  color: #fff;
}
.food-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 3px;
  margin-top: 3px;
}
.food-col {
  padding: 28px;
}
.food-col.snacks {
  background: #0f2035;
}
.food-col.hot {
  background: #1a1028;
}
.food-col.adults {
  background: #0a1f1a;
}
.food-col h4 {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.2em;
  margin-bottom: 14px;
  text-transform: uppercase;
}
.food-col.snacks h4 {
  color: #f7c948;
}
.food-col.hot h4 {
  color: #e8553a;
}
.food-col.adults h4 {
  color: #4ecdc4;
}
.food-col ul {
  list-style: none;
  padding: 0;
}
.food-col ul li {
  font-size: 13px;
  color: #aab8c2;
  padding: 6px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.platter-item {
  padding: 20px 24px;
  margin-bottom: 3px;
}
.platter-item.asian {
  background: linear-gradient(135deg, #0f2a40, #1a3a5c);
}
.platter-item.grazing {
  background: linear-gradient(135deg, #0f2a1a, #1a3a2a);
}
.platter-item.sandwich {
  background: linear-gradient(135deg, #2a0f20, #3d1530);
}
.platter-item h5 {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 18px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 4px;
}
.platter-item .price {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 28px;
  font-weight: 800;
  color: #f7c948;
  margin-bottom: 6px;
}
.platter-item p {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.6;
  margin: 0;
}

/*  CONTACT BAND  */
.contact-band {
  max-width: 900px;
  margin: 60px auto 80px;
  padding: 52px 60px;
  text-align: center;
  background: #1a1a1a;
  border: 1px solid #222;
  border-radius: 2px;
}
.contact-band h2 {
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  color: #fff;
  margin-bottom: 16px;
}
.contact-band p {
  font-size: 16px;
  color: #888;
  line-height: 1.8;
  margin-bottom: 8px;
}
.contact-band a.hl {
  color: #415c2c;
  font-weight: 600;
  transition: color 0.2s;
}
.contact-band a.hl:hover {
  color: #fff;
}
.contact-band .sub-note {
  font-size: 13px;
  color: #555;
  margin-top: 12px;
}
.pdf-btns {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 28px;
}

/*  MODAL  */
.modal-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.88);
  z-index: 2000;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.modal-backdrop.open {
  display: flex;
}
.modal {
  background: #1a1a1a;
  max-width: 720px;
  width: 100%;
  max-height: 88vh;
  overflow-y: auto;
  border-radius: 2px;
  position: relative;
  border-top: 3px solid #415c2c;
}
.modal-img {
  height: 260px;
  overflow: hidden;
  position: relative;
}
.modal-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.modal-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26, 26, 26, 0.85), transparent);
}
.modal-body {
  padding: 32px 36px 40px;
}
.modal-tag {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: #415c2c;
  margin-bottom: 8px;
  text-transform: uppercase;
}
.modal-body h2 {
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(26px, 5vw, 42px);
  font-weight: 800;
  color: #fff;
  margin-bottom: 20px;
  line-height: 1.1;
}
.modal-body p {
  font-size: 14px;
  color: var(--text);
  line-height: 1.8;
  margin-bottom: 14px;
}
.modal-capacity {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin: 20px 0;
}
.cap-badge {
  background: #111;
  border: 1px solid #2a2a2a;
  padding: 12px 18px;
  text-align: center;
  border-radius: 2px;
  flex: 1;
  min-width: 100px;
}
.cap-badge .cap-style {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 11px;
  letter-spacing: 0.15em;
  color: #415c2c;
  margin-bottom: 4px;
}
.cap-badge .cap-num {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 22px;
  font-weight: 800;
  color: #fff;
}
.modal-inclusions {
  margin-top: 20px;
}
.modal-inclusions h4 {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: #415c2c;
  margin-bottom: 12px;
  text-transform: uppercase;
}
.modal-inclusions ul {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
}
.modal-inclusions ul li {
  font-size: 13px;
  color: var(--text);
  padding: 7px 0;
  border-bottom: 1px solid #1e1e1e;
  display: flex;
  gap: 8px;
  align-items: baseline;
}
.modal-inclusions ul li::before {
  content: "";
  color: #415c2c;
  flex-shrink: 0;
  font-size: 11px;
}
.modal-rate {
  display: inline-block;
  background: #415c2c;
  color: #fff;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.15em;
  padding: 8px 20px;
  border-radius: 2px;
  margin-bottom: 20px;
}
.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: rgba(0, 0, 0, 0.6);
  border: 1px solid #333;
  color: #fff;
  width: 36px;
  height: 36px;
  border-radius: 2px;
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
  z-index: 10;
}
.modal-close:hover {
  background: #415c2c;
}
.modal-tabs {
  display: flex;
  gap: 0;
  margin-bottom: 24px;
}
.modal-tab {
  flex: 1;
  padding: 12px;
  text-align: center;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: #666;
  border-bottom: 2px solid #2a2a2a;
  cursor: pointer;
  transition: all 0.2s;
  background: none;
  border-top: none;
  border-left: none;
  border-right: none;
  outline: none;
}
.modal-tab.active {
  color: #fff;
  border-bottom-color: #415c2c;
}
.modal-panel {
  display: none;
}
.modal-panel.active {
  display: block;
}

@media (max-width: 700px) {
  .kids-intro {
    grid-template-columns: 1fr;
  }
  .kids-intro-img {
    height: 240px;
  }
  .kids-package-grid {
    grid-template-columns: 1fr;
  }
  .modal-inclusions ul {
    grid-template-columns: 1fr;
  }
  .contact-band {
    padding: 36px 24px;
    margin: 40px 20px 60px;
  }
  .modal-body {
    padding: 24px 20px 32px;
  }
}

.menu-tabs-wrap {
  background: #2b4a59;
}
.menu-tabs {
  display: flex;
  flex-wrap: wrap;
  background: #2b4a59;
  border-bottom: 2px solid #222;
}
.menu-tab {
  flex: 1;
  min-width: 100px;
  padding: 18px 12px;
  text-align: center;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: #aaa;
  cursor: pointer;
  border-bottom: 3px solid transparent;
  transition: all 0.2s;
  /* background: #1a1a1a; */
  background: #2b4a59;
  border: none;
  outline: none;
}
.menu-tab:hover {
  color: #fff;
  background: #415c2c;
}
.menu-tab.active {
  color: #fff;
  border-bottom: 3px solid #415c2c;
}
.menu-panel {
  display: none;
  background: #2b4a59;
}
.menu-panel.active {
  display: block;
}
.menu-wrap {
  max-width: 1000px;
  margin: 0 auto;
  padding: 56px 40px 64px;
}
.menu-pricing-note {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 12px;
  letter-spacing: 0.18em;
  /* color: #415c2c; */
  color: #ffff;
  margin-bottom: 36px;
  text-transform: uppercase;
}
.menu-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 60px;
}
.menu-cols.single {
  grid-template-columns: 1fr;
  max-width: 560px;
}
.menu-category {
  margin-bottom: 40px;
}
.menu-cat-title {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.28em;
  /* color: #415c2c; */
  color: #ffff;
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 1px solid #2a2a2a;
  text-transform: uppercase;
}
.menu-item {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 11px 0;
  border-bottom: 1px solid #1e1e1e;
  gap: 16px;
  position: relative;
}
.menu-item.has-popover {
  cursor: help;
  outline: none;
}
.menu-item.has-popover:hover,
.menu-item.has-popover:focus {
  background: #181818;
}
.menu-item.has-popover:focus-visible {
  outline: 1px solid #415c2c;
  outline-offset: 2px;
}
.menu-item-popover {
  position: absolute;
  left: 0;
  bottom: calc(100% + 10px);
  z-index: 5;
  width: max-content;
  max-width: 300px;
  padding: 10px 12px;
  background: #f5f2ed;
  color: #1a1a1a;
  border-radius: 3px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.28);
  font-size: 12px;
  line-height: 1.45;
  pointer-events: none;
  opacity: 0;
  transform: translateY(4px);
  transition:
    opacity 0.16s ease,
    transform 0.16s ease;
}
.menu-item-popover::after {
  content: "";
  position: absolute;
  left: 18px;
  top: 100%;
  border: 6px solid transparent;
  border-top-color: #f5f2ed;
}
.menu-item.has-popover:hover .menu-item-popover,
.menu-item.has-popover:focus .menu-item-popover {
  opacity: 1;
  transform: translateY(0);
}
.menu-kids-item:not(:last-child) .menu-kids-item-popover {
  top: calc(100% + 10px);
  bottom: auto;
}
.menu-kids-item:not(:last-child) .menu-kids-item-popover::after {
  top: auto;
  bottom: 100%;
  border-top-color: transparent;
  border-bottom-color: #f5f2ed;
}
.menu-item-info {
  flex: 1;
}
.menu-item-info h4 {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 2px;
  line-height: 1.2;
}
.menu-item-info p {
  font-size: 12px;
  /* color: #666; */
  color: #aaa;
  line-height: 1.4;
  margin: 0;
}
.menu-item-price {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  white-space: nowrap;
  flex-shrink: 0;
}
.menu-item-price .member {
  color: #aaa;
}

/* ── KIDS MENU PANEL ─────────────────────────────────────── */
.menu-kids-panel {
  /* background: #141414; */
  padding: 56px 40px 64px;
}
.menu-kids-inner {
  max-width: 680px;
  margin: 0 auto;
}
.menu-kids-header {
  text-align: center;
  margin-bottom: 40px;
}
.menu-kids-label {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 11px;
  letter-spacing: 0.28em;
  color: #aaa;
  margin-bottom: 8px;
  text-transform: uppercase;
}
.menu-kids-heading {
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(36px, 6vw, 64px);
  font-weight: 800;
  color: #fff;
  margin-bottom: 12px;
}
.menu-kids-badge {
  display: inline-block;
  background: #415c2c;
  color: #fff;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.18em;
  padding: 8px 24px;
  border-radius: 2px;
  text-transform: uppercase;
}
.menu-kids-items {
  border: 2px solid #2a2a2a;
  border-radius: 4px;
  overflow: hidden;
}
.menu-kids-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 28px;
  border-bottom: 1px solid #222;
  transition: background 0.2s;
}
.menu-kids-item:last-child {
  border-bottom: none;
}
.menu-kids-item:hover {
  background: #415c2c;
}
.menu-kids-item-info h4 {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  margin: 0;
  line-height: 1.2;
}
.menu-kids-item-info p {
  font-size: 13px;
  color: #aaa;
  /* color: #666; */
  margin: 4px 0 0;
}
.menu-kids-item-price {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 24px;
  font-weight: 800;
  /* color: #415c2c; */
  color: #fff;
  white-space: nowrap;
  flex-shrink: 0;
}
.menu-kids-footer {
  text-align: center;
  margin-top: 28px;
  padding: 20px;
  background: #1a1a1a;
  border-radius: 2px;
  border: 1px solid #2a2a2a;
}
.menu-kids-footer p {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 14px;
  color: #888;
  letter-spacing: 0.08em;
  margin: 0;
}
@media (max-width: 700px) {
  .menu-kids-panel {
    padding: 40px 24px;
  }
  .menu-kids-item {
    padding: 16px 20px;
  }
  .menu-kids-item-info h4 {
    font-size: 18px;
  }
  .menu-kids-item-price {
    font-size: 20px;
  }
}

.specials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  background: #111;
  max-width: 1000px;
  margin: 0 auto 2px;
}
.special-card {
  background: #2b4a59;
  padding: 40px 36px;
  position: relative;
  overflow: hidden;
}
.special-card::before {
  content: "";
  position: absolute;
  top: -20px;
  right: -20px;
  width: 100px;
  height: 100px;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 50%;
}
.special-day {
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 800;
  letter-spacing: 0.06em;
  color: #fff;
  line-height: 1;
  margin-bottom: 8px;
}
.special-desc {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 17px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.85);
  text-transform: uppercase;
  margin-bottom: 4px;
}
.special-price {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 32px;
  font-weight: 800;
  color: #415c2c;
  margin-top: 10px;
}
.special-note {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.35);
  margin-top: 8px;
  letter-spacing: 0.05em;
}
.hours-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 2px;
  background: #111;
}
.hours-card {
  background: #1a1a1a;
  padding: 28px 24px;
}
.hours-card .day {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 12px;
  letter-spacing: 0.22em;
  color: #ffffff;
  margin-bottom: 8px;
  text-transform: uppercase;
}
.hours-card .time {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  line-height: 1.5;
}
.hours-card .closed {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #333;
}
@media (max-width: 700px) {
  .menu-cols {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .specials-grid {
    grid-template-columns: 1fr;
  }
  .menu-wrap {
    padding: 40px 24px;
  }
  .menu-item-popover {
    max-width: calc(100vw - 48px);
  }
}

.job-list {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 40px 80px;
}
.job-item {
  border-bottom: 1px solid #2a2a2a;
  padding: 28px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}
.job-info h3 {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 4px;
}
.job-info p {
  font-size: 14px;
  color: #888;
}
.job-meta {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-shrink: 0;
}
.job-type {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 12px;
  letter-spacing: 0.15em;
  color: #4e7a4e;
  background: rgba(78, 122, 78, 0.1);
  padding: 5px 12px;
  border-radius: 2px;
}

/*  ACCESSIBILITY BAND  */
.accessibility-band {
  display: flex;
  align-items: center;
  gap: 32px;
  padding: 40px;
  max-width: 1300px;
  margin: 2px auto 0;
  background: #2b4a59;
  flex-wrap: wrap;
}
.accessibility-band .icon {
  font-size: 48px;
  flex-shrink: 0;
}
.accessibility-band h3 {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 26px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 6px;
}
.accessibility-band p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.7;
  margin: 0;
}

/*  BOOKING SECTION  */
.booking-section {
  padding: 60px 40px;
  text-align: center;
  background: #141414;
}
.booking-eyebrow {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.22em;
  color: #415c2c;
  margin-bottom: 10px;
  text-transform: uppercase;
}
.booking-section h2 {
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 800;
  letter-spacing: 0.04em;
  color: #fff;
  margin-bottom: 12px;
}
.booking-desc {
  font-size: 16px;
  font-weight: 300;
  color: var(--text);
  max-width: 600px;
  margin: 0 auto 32px;
  line-height: 1.7;
  letter-spacing: 0.03em;
}

/*  FACILITIES GRID  */
.facilities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 2px;
  background: #111;
  max-width: 1300px;
  margin: 0 auto;
  padding: 2px;
}
.facility-card {
  background: #1a1a1a;
  overflow: hidden;
  transition: background 0.3s;
}
.facility-card:hover {
  background: #202020;
}
.facility-img {
  height: 260px;
  position: relative;
  overflow: hidden;
}
.facility-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}
.facility-card:hover .facility-img img {
  transform: scale(1.04);
}
.facility-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(26, 26, 26, 0.7) 0%,
    transparent 60%
  );
}
.facility-tag {
  position: absolute;
  top: 16px;
  left: 16px;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: #fff;
  background: rgba(43, 74, 89, 0.85);
  padding: 5px 12px;
  border-radius: 2px;
  text-transform: uppercase;
}
.facility-body {
  padding: 24px 28px 32px;
}
.facility-body h3 {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 24px;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: #fff;
  margin-bottom: 8px;
}
.facility-body p {
  font-size: 14px;
  color: #777;
  line-height: 1.7;
  margin: 0;
}
