/* ============================================================
   THE EXSERVOS – GLOBAL STYLESHEET
   Colour palette: Navy #2b4a59, Steel #2b4a59, Olive #415c2c,
   Charcoal #1a1a1a, Off-white #f5f2ed
   ============================================================ */

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

:root {
  --navy: #2b4a59;
  --steel: #2b4a59;
  --olive: #415c2c;
  --olive-d: #2f4420;
  --char: #1a1a1a;
  --cream: #f5f2ed;
  --white: #ffffff;
  --text: #e8e4df;
  --font-h: "Barlow Condensed", sans-serif;
  --font-b: "Barlow", sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--char);
  color: var(--white);
  font-family: var(--font-b);
  font-size: 16px;
  line-height: 1.6;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
a {
  text-decoration: none;
  color: inherit;
}

/* ── TOPBAR ─────────────────────────────────────────────── */
.topbar {
  background: var(--navy);
  padding: 8px 0;
  font-family: var(--font-h);
  font-size: 13px;
  letter-spacing: 0.08em;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
}
.topbar-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.topbar-left {
  display: flex;
  align-items: center;
  gap: 12px;
}
.topbar-left a {
  color: var(--text);
  transition: color 0.2s;
}
.topbar-left a:hover {
  color: var(--white);
}
.sep {
  color: #3a5e6e;
}
.btn-member-sm {
  background: var(--olive);
  color: var(--white);
  padding: 5px 16px;
  font-family: var(--font-h);
  font-size: 12px;
  letter-spacing: 0.12em;
  font-weight: 700;
  border-radius: 2px;
  transition: background 0.2s;
}
.btn-member-sm:hover {
  background: var(--olive-d);
}

/* ── NAVBAR ─────────────────────────────────────────────── */
.navbar {
  background: rgba(26, 26, 26, 0.75);
  position: fixed;
  top: 33px;
  left: 0;
  right: 0;
  z-index: 999;
  border-bottom: 1px solid #2a2a2a;
  transition:
    background 0.3s,
    box-shadow 0.3s;
}
.navbar.scrolled {
  background: rgba(26, 26, 26, 0.88);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
}
/* ── WP ADMIN BAR OFFSET ─────────────────────────────── */
.admin-bar .topbar {
  top: 32px;
}
.admin-bar .navbar {
  top: 65px;
}
.admin-bar .mobile-menu {
  top: 133px;
}
@media screen and (max-width: 900px) {
  .admin-bar .navbar {
    top: 32px;
  }
  .admin-bar .mobile-menu {
    top: 100px;
  }
}
@media screen and (max-width: 782px) {
  .admin-bar .topbar {
    top: 46px;
  }
  .admin-bar .navbar {
    top: 46px;
  }
  .admin-bar .mobile-menu {
    top: 114px;
  }
}
.nav-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}
.nav-left,
.nav-right {
  display: flex;
  gap: 0;
  align-items: center;
  flex: 1;
  justify-content: space-evenly;
}
.nav-right {
  justify-content: space-evenly;
}
.nav-link {
  font-family: var(--font-h);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--text);
  position: relative;
  transition: color 0.2s;
  text-transform: uppercase;
}
.nav-link::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--olive);
  transform: scaleX(0);
  transition: transform 0.25s;
}
.nav-link:hover {
  color: var(--white);
}
.nav-link:hover::after {
  transform: scaleX(1);
}

.nav-logo {
  flex-shrink: 0;
}
.logo-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1;
}
.logo-the {
  font-family: var(--font-h);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.3em;
  color: var(--text);
}
.logo-ex {
  font-family: var(--font-h);
  font-size: 34px;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: var(--white);
  line-height: 1;
}
.logo-servos {
  font-family: var(--font-h);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.3em;
  color: var(--olive);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: all 0.3s;
}
.hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.hamburger.open span:nth-child(2) {
  opacity: 0;
}
.hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ── MOBILE MENU ─────────────────────────────────────────── */
.mobile-menu {
  display: none;
  position: fixed;
  top: 101px;
  left: 0;
  right: 0;
  background: var(--char);
  z-index: 998;
  flex-direction: column;
  padding: 16px 0 24px;
  border-bottom: 1px solid #2a2a2a;
}
.mobile-menu a {
  padding: 14px 32px;
  font-family: var(--font-h);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--text);
  border-bottom: 1px solid #222;
  transition:
    color 0.2s,
    background 0.2s;
  text-transform: uppercase;
}
.mobile-menu a:hover {
  color: var(--white);
  background: #252525;
}
.mobile-menu .mobile-cta {
  margin: 16px 32px 0;
  background: var(--olive);
  color: var(--white);
  text-align: center;
  border-radius: 2px;
  border-bottom: none;
}
.mobile-menu.open {
  display: flex;
}

/* ── HERO ────────────────────────────────────────────────── */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 101px;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(26, 26, 26, 0.45) 0%,
    rgba(26, 26, 26, 0.25) 40%,
    rgba(26, 26, 26, 0.65) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 24px;
}
.hero-logo {
  margin-bottom: 36px;
}
.hl-the {
  display: block;
  font-family: var(--font-h);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.4em;
  color: var(--text);
  margin-bottom: 4px;
}
.hl-ex {
  display: block;
  font-family: var(--font-h);
  font-size: clamp(72px, 12vw, 140px);
  font-weight: 800;
  letter-spacing: 0.04em;
  color: var(--white);
  line-height: 0.9;
  text-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}
.hl-tag {
  display: block;
  font-family: var(--font-b);
  font-size: clamp(14px, 2vw, 18px);
  font-weight: 300;
  color: var(--text);
  letter-spacing: 0.05em;
  margin-top: 12px;
}
.hero-ctas {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── BUTTONS ─────────────────────────────────────────────── */
.btn-outline-white {
  border: 2px solid var(--white);
  color: var(--white);
  padding: 13px 32px;
  font-family: var(--font-h);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.12em;
  border-radius: 2px;
  transition:
    background 0.25s,
    color 0.25s;
  display: inline-block;
}
.btn-outline-white:hover {
  background: var(--white);
  color: var(--char);
}

.btn-solid-green {
  background: var(--olive);
  color: var(--white);
  padding: 13px 32px;
  font-family: var(--font-h);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.12em;
  border-radius: 2px;
  border: none;
  cursor: pointer;
  transition: background 0.25s;
  display: inline-block;
}
.btn-solid-green:hover {
  background: var(--olive-d);
}

.btn-outline-white-lg {
  border: 2px solid var(--white);
  color: var(--white);
  padding: 14px 40px;
  font-family: var(--font-h);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.15em;
  border-radius: 2px;
  transition:
    background 0.25s,
    color 0.25s;
  display: inline-block;
}
.btn-outline-white-lg:hover {
  background: var(--white);
  color: var(--char);
}

.btn-solid-navy {
  background: var(--navy);
  color: var(--white);
  padding: 13px 32px;
  font-family: var(--font-h);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.12em;
  border-radius: 2px;
  transition: background 0.25s;
  display: inline-block;
}
.btn-solid-navy:hover {
  background: var(--steel);
}

/* ── SCROLL ARROW ────────────────────────────────────────── */
.scroll-arrow {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  animation: bounce 2s infinite;
}
@keyframes bounce {
  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }
  50% {
    transform: translateX(-50%) translateY(8px);
  }
}

/* ── BAND ────────────────────────────────────────────────── */
.band {
  background: var(--steel);
  padding: 32px 24px;
  text-align: center;
}
.band-inner h2 {
  font-family: var(--font-h);
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--white);
  margin-bottom: 6px;
}
.band-link {
  font-family: var(--font-h);
  font-size: 12px;
  letter-spacing: 0.2em;
  color: rgba(255, 255, 255, 0.7);
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
  padding-bottom: 2px;
  transition: color 0.2s;
}
.band-link:hover {
  color: var(--white);
}

/* ── MEMBER BANNER ───────────────────────────────────────── */
.member-banner {
  position: relative;
  height: 420px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  overflow: hidden;
}
.member-bg {
  position: absolute;
  inset: 0;
}
.member-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    transparent 30%,
    rgba(26, 26, 26, 0.85) 70%
  );
}
.member-content {
  position: relative;
  z-index: 2;
  text-align: right;
  padding: 0 80px;
  max-width: 500px;
}
.member-content h2 {
  font-family: var(--font-h);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 700;
  margin-bottom: 6px;
}
.member-content p {
  font-size: 16px;
  font-weight: 300;
  color: var(--text);
  margin-bottom: 24px;
  letter-spacing: 0.05em;
}

/* ── QUAD GRID ───────────────────────────────────────────── */
.quad-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 5px;
  background-color: #ffff;
  /* grid-template-columns: 1fr 1fr; */
  /* grid-template-rows: 320px 320px; */
}
.quad-cell {
  /* Adjust this single value to change the black image overlay strength. */
  --quad-image-overlay-opacity: 0.35;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  height: 320px;
}
.quad-cell__background {
  position: absolute;
  inset: 0;
  transition: transform 0.6s ease;
  width: 100%;
  height: 320px;
  object-fit: cover;
}
.quad-cell:hover .quad-cell__background {
  transform: scale(1.05);
}
.quad-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgb(0 0 0 / var(--quad-image-overlay-opacity));
  pointer-events: none;
}
.quad-label {
  position: relative;
  z-index: 2;
  font-family: var(--font-h);
  font-size: clamp(24px, 3vw, 38px);
  font-weight: 800;
  letter-spacing: 0.08em;
  color: var(--white);
  padding: 24px 28px 28px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}
.quad-title-image {
  position: relative;
  z-index: 2;
  width: min(240px, 60%);
  height: auto;
  max-height: 245px;
  object-fit: contain;
}
.quad-arrow {
  position: absolute;
  bottom: 28px;
  right: 28px;
  z-index: 2;
  font-size: 28px;
  color: var(--white);
  opacity: 0;
  transform: translateX(-8px);
  transition:
    opacity 0.3s,
    transform 0.3s;
}
.quad-cell:hover .quad-arrow {
  opacity: 1;
  transform: translateX(0);
}

/* ── HISTORY ─────────────────────────────────────────────── */
.history-section {
  position: relative;
  min-height: 480px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.history-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.history-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
}
/* Overlay tint per style modifier */
.history-section--olive .history-overlay {
  background: linear-gradient(
    to left,
    rgba(26, 26, 26, 0.3) 0%,
    rgba(65, 92, 44, 0.55) 60%,
    rgba(65, 92, 44, 0.7) 100%
  );
}
.history-section--navy .history-overlay {
  background: linear-gradient(
    135deg,
    rgba(18, 19, 54, 0.8) 0%,
    rgba(18, 19, 54, 0.6) 100%
  );
}
.history-section--charcoal .history-overlay {
  background: rgba(30, 30, 30, 0.75);
}
.history-section--dark .history-overlay {
  background: rgba(0, 0, 0, 0.72);
}
.history-counter-wrap .btn-outline-white {
  margin-top: 40px;
  display: inline-block;
}

/* ── FOOTER ──────────────────────────────────────────────── */
.footer {
  background: var(--navy);
  padding: 48px 32px 24px;
}
.footer-nav {
  max-width: 1000px;
  margin: 0 auto 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}
.footer-nav a {
  font-family: var(--font-h);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.15em;
  color: var(--text);
  transition: color 0.2s;
  text-transform: uppercase;
}
.footer-nav a:hover {
  color: var(--white);
}
.footer-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1;
}
.footer-bottom {
  text-align: center;
  padding: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  font-family: var(--font-h);
  font-size: 13px;
  letter-spacing: 0.1em;
  color: var(--text);
}
.footer-bottom a {
  transition: color 0.2s;
}
.footer-bottom a:hover {
  color: var(--white);
}
.footer-copy {
  text-align: center;
  margin-top: 16px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.35);
  letter-spacing: 0.05em;
}

/* ── PAGE HERO (inner pages) ─────────────────────────────── */
.page-hero {
  position: relative;
  height: 380px;
  display: flex;
  align-items: flex-end;
  margin-top: 101px;
  overflow: hidden;
}
.page-hero--compact {
  height: 280px;
}
.page-hero img {
  position: absolute;
  inset: 0;
}
.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(26, 26, 26, 0.85) 0%,
    rgba(26, 26, 26, 0.3) 100%
  );
}
.page-hero-content {
  position: relative;
  z-index: 2;
  padding: 0 80px 48px;
}
.page-hero-content .breadcrumb {
  font-family: var(--font-h);
  font-size: 12px;
  letter-spacing: 0.2em;
  color: var(--white);
  margin-bottom: 8px;
  text-transform: uppercase;
}
.page-hero-content h1 {
  font-family: var(--font-h);
  font-size: clamp(40px, 7vw, 80px);
  font-weight: 800;
  letter-spacing: 0.04em;
  line-height: 1;
}

/* ── PAGE CONTENT ────────────────────────────────────────── */
.page-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 40px;
}
.page-section h2 {
  font-family: var(--font-h);
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 800;
  letter-spacing: 0.04em;
  margin-bottom: 20px;
  color: var(--white);
}
.page-section h3 {
  font-family: var(--font-h);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.06em;
  margin-bottom: 12px;
  color: var(--olive);
}
.page-section p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--text);
  max-width: 720px;
  margin-bottom: 16px;
}
.page-section .lead {
  font-size: 19px;
  line-height: 1.7;
  color: var(--cream);
  font-weight: 300;
  margin-bottom: 32px;
}

/* ── CARD GRID ───────────────────────────────────────────── */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2px;
  background: #111;
}
.card {
  background: #1f1f1f;
  overflow: hidden;
  transition: background 0.3s;
}
.card:hover {
  background: #252525;
}
.card-img {
  height: 220px;
  overflow: hidden;
  position: relative;
}
.card-img img {
  transition: transform 0.5s;
  height: 100%;
}
.card:hover .card-img img {
  transform: scale(1.05);
}
.card-body {
  padding: 24px;
}
.card-tag {
  font-family: var(--font-h);
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--olive);
  margin-bottom: 8px;
  text-transform: uppercase;
}
.card-body h3 {
  font-family: var(--font-h);
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--white);
}
.card-body p {
  font-size: 14px;
  color: var(--text);
  line-height: 1.7;
  margin-bottom: 0;
}

/* ── EVENT GRID ──────────────────────────────────────────── */
.events-grid-section {
  background: #111;
}
.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: var(--font-h);
  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: var(--font-h);
  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: var(--font-h);
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
  line-height: 1.2;
}
.event-body p {
  font-size: 14px;
  color: #777;
  line-height: 1.7;
  flex: 1;
  margin-bottom: 16px;
}
.more-info-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-h);
  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);
}
.fade-in {
  animation: fadeIn 0.4s ease both;
}
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

/* ── FILTER BAR ──────────────────────────────────────────── */
.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: var(--font-h);
  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;
}

/* ── 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: var(--font-h);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: #415c2c;
  margin-bottom: 8px;
  text-transform: uppercase;
}
.modal-body h2 {
  font-family: var(--font-h);
  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: var(--font-h);
  font-size: 14px;
  color: #888;
  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: #888;
  line-height: 1.8;
  margin-bottom: 14px;
}
.modal-body ul {
  padding-left: 20px;
  margin-bottom: 14px;
}
.modal-body ul li {
  font-size: 14px;
  color: #777;
  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;
  }
}

/* ── CONTACT GRID ────────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}
.contact-info {
  padding: 80px;
  background: #1a1a1a;
}
.contact-info h2 {
  font-family: var(--font-h);
  font-size: 42px;
  font-weight: 800;
  margin-bottom: 32px;
}
.contact-item {
  margin-bottom: 28px;
}
.contact-item:last-child {
  margin-bottom: 0;
}
.contact-item .label {
  font-family: var(--font-h);
  font-size: 12px;
  letter-spacing: 0.2em;
  color: var(--olive);
  margin-bottom: 4px;
}
.contact-item .value {
  font-size: 17px;
  color: var(--text);
  line-height: 1.6;
}
.contact-item a {
  color: var(--text);
  transition: color 0.2s;
}
.contact-item a:hover {
  color: var(--white);
}
.contact-map {
  min-height: 500px;
  background: #111;
  position: relative;
  overflow: hidden;
}
.contact-map img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  opacity: 0.7;
}
.contact-map-cta {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ── FORM ────────────────────────────────────────────────── */
.form-section {
  padding: 80px 40px;
  background: #181818;
}
.benefits-grid-wrap + .form-section {
  margin-top: 2px;
}
.form-section h2 {
  font-family: var(--font-h);
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 32px;
  color: var(--white);
}
.form-section-inner > h2 + p {
  margin-top: -24px;
}
.form-group {
  margin-bottom: 20px;
}
.form-group label {
  display: block;
  font-family: var(--font-h);
  font-size: 12px;
  letter-spacing: 0.15em;
  color: var(--text);
  margin-bottom: 6px;
  text-transform: uppercase;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  background: #252525;
  border: 1px solid #333;
  color: var(--white);
  padding: 12px 16px;
  font-family: var(--font-b);
  font-size: 15px;
  border-radius: 2px;
  outline: none;
  transition: border-color 0.2s;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--olive);
}
.form-group textarea {
  resize: vertical;
  min-height: 120px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-section-inner {
  max-width: 680px;
  width: 100%;
}
.form-section--centered .form-section-inner {
  margin-left: auto;
  margin-right: auto;
}
.form-section-inner > p {
  color: #888;
  font-size: 15px;
  margin-bottom: 36px;
}
.exs-form .btn-full,
.form-section-inner .btn-full {
  width: 100%;
}
.form-disclaimer {
  color: #555;
  font-size: 12px;
  margin-top: 16px;
  text-align: center;
}

/* ── Gravity Forms Theme Override ──────────────────────── */
/* Override orbital theme CSS variables */
.form-section .gform_wrapper.gform-theme--framework {
  --gf-color-primary: var(--olive) !important;
  --gf-color-primary-rgb: 65, 92, 44 !important;
  --gf-color-in-ctrl: #252525 !important;
  --gf-color-in-ctrl-rgb: 37, 37, 37 !important;
  --gf-color-in-ctrl-contrast: #ffffff !important;
  --gf-color-in-ctrl-contrast-rgb: 255, 255, 255 !important;
  --gf-color-in-ctrl-darker: #1a1a1a !important;
  --gf-color-in-ctrl-lighter: #333333 !important;
  --gf-color-out-ctrl-light: rgba(255, 255, 255, 0.1) !important;
  --gf-color-out-ctrl-dark: rgba(255, 255, 255, 0.7) !important;
  --gf-color-out-ctrl-dark-darker: #ffffff !important;
  --gf-color-out-ctrl-dark-lighter: rgba(255, 255, 255, 0.5) !important;
  --gf-ctrl-border-color: #333 !important;
  --gf-ctrl-label-color-primary: rgba(255, 255, 255, 0.7) !important;
  --gf-ctrl-label-color-secondary: rgba(255, 255, 255, 0.5) !important;
  --gf-color-secondary: #252525 !important;
  --gf-color-secondary-contrast: #fff !important;
  --gf-radius: 2px !important;
}
.form-section .gform_wrapper {
  margin: 0 !important;
  padding: 0 !important;
  max-width: none !important;
}
.form-section .gform_wrapper .gform-body,
.form-section .gform_wrapper .gform_body {
  padding: 0 !important;
  margin: 0 !important;
}
.form-section .gform_wrapper .gform_fields {
  display: flex;
  flex-wrap: wrap;
  gap: 0 16px;
}
.form-section .gform_wrapper .gfield {
  margin-bottom: 20px !important;
  padding: 0 !important;
  width: 100%;
}
.form-section .gform_wrapper .gfield.gf_left_half,
.form-section .gform_wrapper .gfield.gfield--width-half:nth-child(odd) {
  width: calc(50% - 8px) !important;
}
.form-section .gform_wrapper .gfield.gf_right_half,
.form-section .gform_wrapper .gfield.gfield--width-half:nth-child(even) {
  width: calc(50% - 8px) !important;
}
.form-section .gform_wrapper .gfield_label,
.form-section .gform_wrapper .gform-field-label {
  display: block !important;
  font-family: var(--font-h) !important;
  font-size: 12px !important;
  letter-spacing: 0.15em !important;
  color: rgba(255, 255, 255, 0.7) !important;
  margin-bottom: 6px !important;
  text-transform: uppercase !important;
  font-weight: 400 !important;
}
.form-section .gform_wrapper input:not([type="submit"]):not([type="hidden"]),
.form-section .gform_wrapper textarea,
.form-section .gform_wrapper select {
  width: 100% !important;
  background: #252525 !important;
  border: 1px solid #333 !important;
  color: #fff !important;
  padding: 12px 16px !important;
  font-family: var(--font-b) !important;
  font-size: 15px !important;
  border-radius: 2px !important;
  outline: none !important;
  transition: border-color 0.2s !important;
  box-shadow: none !important;
  -webkit-appearance: none !important;
  appearance: none !important;
  height: auto !important;
  line-height: 1.4 !important;
}
.form-section .gform_wrapper input:focus,
.form-section .gform_wrapper textarea:focus,
.form-section .gform_wrapper select:focus {
  border-color: var(--olive) !important;
}
.form-section .gform_wrapper textarea {
  resize: vertical !important;
  min-height: 120px !important;
}
.form-section .gform_wrapper .gform-footer,
.form-section .gform_wrapper .gform_footer {
  padding: 0 !important;
  margin: 0 !important;
}
.form-section .gform_wrapper .gform_footer input[type="submit"],
.form-section .gform_wrapper .gform-footer input[type="submit"],
.form-section .gform_wrapper .gform_button {
  background: var(--olive) !important;
  color: #fff !important;
  padding: 14px 40px !important;
  font-family: var(--font-h) !important;
  font-size: 15px !important;
  font-weight: 700 !important;
  letter-spacing: 0.15em !important;
  border: none !important;
  cursor: pointer !important;
  border-radius: 2px !important;
  transition: background 0.2s !important;
  width: 100% !important;
  box-shadow: none !important;
  text-transform: uppercase !important;
}
.form-section .gform_wrapper .gform_footer input[type="submit"]:hover,
.form-section .gform_wrapper .gform-footer input[type="submit"]:hover,
.form-section .gform_wrapper .gform_button:hover {
  background: var(--olive-d) !important;
}
.form-section .gform_wrapper .ginput_complex .name_first,
.form-section .gform_wrapper .ginput_complex .name_last {
  padding-right: 0 !important;
}
.form-section .gform_wrapper .gfield_description,
.form-section .gform_wrapper .gfield_validation_message {
  font-size: 12px !important;
  color: #888 !important;
}
.form-section .gform_wrapper .gform_validation_errors {
  background: #2a1a1a !important;
  border-color: #8b3a3a !important;
  color: #fff !important;
}
.form-section .gform_wrapper .gfield_error input,
.form-section .gform_wrapper .gfield_error textarea,
.form-section .gform_wrapper .gfield_error select {
  border-color: #8b3a3a !important;
}

/* ── OLIVE SECTION ───────────────────────────────────────── */
.olive-band {
  background: var(--olive);
  padding: 60px 40px;
  text-align: center;
}
.olive-band h2 {
  font-family: var(--font-h);
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 800;
  letter-spacing: 0.04em;
  margin-bottom: 12px;
}
.olive-band p {
  font-size: 17px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 28px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

/* ── MEMBER BENEFITS ─────────────────────────────────────── */
.benefits-grid-wrap {
  background: #111;
}
.benefits-intro {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 40px 40px;
}
.benefits-intro--centered {
  text-align: center;
  max-width: 800px;
}
.benefits-intro h2 {
  font-family: var(--font-h);
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 800;
  letter-spacing: 0.04em;
  color: var(--white);
  margin-bottom: 20px;
}
.benefits-intro p {
  font-size: 16px;
  font-weight: 300;
  color: #888;
  /* max-width: 620px; */
  margin: 12px 0 40px;
  line-height: 1.8;
  font-style: italic;
}
.benefits-intro--centered p {
  margin: 0 auto 32px;
  font-style: normal;
  font-size: 19px;
  color: var(--cream);
  max-width: none;
}
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2px;
  background: #111;
  max-width: 1200px;
  margin: 0 auto;
}
.benefit {
  background: #1a1a1a;
  padding: 40px 28px;
  text-align: center;
  transition: background 0.3s;
}
.benefit:hover {
  background: #222;
}
.benefit-icon {
  width: 100px;
  /* height: 56px; */
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.benefit-icon svg {
  display: block;
  flex-shrink: 0;
}
.benefit h3 {
  font-family: var(--font-h);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.08em;
  margin-bottom: 10px;
  color: var(--white);
}
.benefit p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  margin: 0;
}

/* ── TWO-COL ─────────────────────────────────────────────── */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: center;
}
.two-col-img {
  height: 460px;
  overflow: hidden;
}
.two-col-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.two-col-text {
  padding: 60px;
}
.two-col-text h2 {
  font-family: var(--font-h);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  margin-bottom: 16px;
  line-height: 1.1;
}
.two-col-text p {
  font-size: 16px;
  color: var(--text);
  line-height: 1.8;
  margin-bottom: 14px;
}
.two-col-text .lead {
  font-size: 18px;
  font-weight: 300;
  color: var(--text);
  line-height: 1.7;
  margin-bottom: 20px;
}
.two-col-text .olive-rule {
  width: 48px;
  height: 3px;
  background: var(--olive);
  margin-bottom: 20px;
}

/* ── RESPONSIVE ──────────────────────────────────────────── */
@media (max-width: 900px) {
  .nav-left,
  .nav-right {
    display: none;
  }
  .hamburger {
    display: flex;
  }
  .quad-grid {
    grid-template-columns: 1fr;
    /* grid-template-rows: repeat(3, 310px); */
  }
  /* .quad-grid {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(4, 260px);
  } */
  .member-content {
    padding: 0 32px;
    text-align: center;
    max-width: 100%;
  }
  .member-overlay {
    background: rgba(0, 0, 0, 0.6);
  }
  .history-counter-wrap {
    padding: 0 32px;
  }
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .contact-map {
    min-height: 300px;
    height: auto;
  }
  .two-col {
    grid-template-columns: 1fr;
  }
  .two-col-img {
    height: 280px;
  }
  .two-col-text {
    padding: 40px 32px;
  }
  .page-hero-content {
    padding: 0 32px 40px;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .form-section .gform_wrapper .gfield.gf_left_half,
  .form-section .gform_wrapper .gfield.gf_right_half,
  .form-section .gform_wrapper .gfield.gfield--width-half {
    width: 100% !important;
  }
  .contact-info {
    padding: 48px 32px;
  }
  .form-section {
    padding: 48px 32px;
  }
  .footer-nav {
    gap: 20px;
  }
  .topbar {
    display: none;
  }
  .navbar {
    top: 0;
  }
  .hero,
  .page-hero {
    margin-top: 68px;
  }
  .mobile-menu {
    top: 68px;
  }
}

@media (max-width: 600px) {
  .event-grid {
    grid-template-columns: 1fr;
  }
  .page-section {
    padding: 60px 24px;
  }
}

/* ── PROMO SLIDESHOW ─────────────────────────────────────── */
.promo-slider {
  position: relative;
  height: 480px;
  overflow: hidden;
  background: #111;
}
.promo-slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  opacity: 0;
  transition: opacity 0.8s ease;
  pointer-events: none;
}
.promo-slide.active {
  opacity: 1;
  pointer-events: auto;
}
.promo-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.promo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    transparent 20%,
    rgba(26, 26, 26, 0.25) 65%
  );
}
.promo-content {
  position: relative;
  z-index: 2;
  text-align: left;
  padding: 36px 40px;
  max-width: 500px;
  background: rgba(20, 20, 20, 0.72);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border-left: 3px solid var(--olive);
  border-radius: 2px;
  margin-right: 80px;
}
.promo-tag {
  font-family: var(--font-h);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.25em;
  color: var(--olive);
  margin-bottom: 10px;
  text-transform: uppercase;
}
.promo-content h2 {
  font-family: var(--font-h);
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 800;
  line-height: 1.05;
  margin-bottom: 10px;
  color: var(--white);
}
.promo-content p {
  font-size: 16px;
  font-weight: 300;
  color: var(--text);
  margin-bottom: 28px;
  letter-spacing: 0.03em;
}

/* Arrows */
.promo-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--white);
  width: 48px;
  height: 48px;
  font-size: 20px;
  cursor: pointer;
  border-radius: 2px;
  transition: background 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.promo-arrow:hover {
  background: rgba(65, 92, 44, 0.7);
}
.promo-prev {
  left: 24px;
}
.promo-next {
  right: 24px;
}

/* Dots */
.promo-dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  gap: 10px;
}
.promo-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.5);
  background: transparent;
  cursor: pointer;
  transition: all 0.3s;
  padding: 0;
}
.promo-dot.active {
  background: var(--olive);
  border-color: var(--olive);
  transform: scale(1.2);
}

/* ── SECTION SEPARATOR ───────────────────────────────────── */
.section-sep {
  background: var(--char);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px 0;
  gap: 20px;
}
.section-sep::before,
.section-sep::after {
  content: "";
  flex: 1;
  max-width: 200px;
  height: 1px;
  /* background: linear-gradient(to right, transparent, #3a3a3a); */
  background: linear-gradient(to right, transparent, #fff);
}
.section-sep::after {
  /* background: linear-gradient(to left, transparent, #3a3a3a); */
  background: linear-gradient(to left, transparent, #fff);
}
.section-sep span {
  font-family: var(--font-h);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.3em;
  /* color: #444; */
  color: white !important;
  text-transform: uppercase;
}

@media (max-width: 900px) {
  .promo-slider {
    height: 380px;
  }
  .promo-content {
    padding: 28px 24px;
    text-align: left;
    max-width: 90%;
    margin: 0 auto;
  }
  .promo-overlay {
    background: rgba(0, 0, 0, 0.3);
  }
  .promo-content h2 {
    font-size: 32px;
  }
}

/* ── MEMBER SPECIALS ─────────────────────────────────────── */
.member-specials-header {
  background: #141414;
  padding: 52px 40px 32px;
  text-align: center;
}
.member-specials-eyebrow {
  font-family: var(--font-h);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: #415c2c;
  margin-bottom: 8px;
  display: block;
}
.member-specials-heading {
  font-family: var(--font-h);
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 800;
  color: var(--white);
  margin: 0 0 4px;
}
.member-specials-desc {
  font-size: 13px;
  color: #555;
  letter-spacing: 0.08em;
  margin-bottom: 36px;
  line-height: 1.7;
}
.member-specials-desc a {
  color: #415c2c;
  text-decoration: none;
}
.member-specials-desc a:hover {
  text-decoration: underline;
}
.specials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  background: #111;
  max-width: 1000px;
  margin: 0 auto 2px;
}
.special-card {
  padding: 40px 36px;
  position: relative;
  overflow: hidden;
}
/* Default card colors (nth-child) — overridden by inline style if background_color ACF field is set */
.special-card:nth-child(1) {
  background: #2b4a59;
}
.special-card:nth-child(2) {
  background: #415c2c;
}
.special-card:nth-child(3) {
  background: #1e3545;
}
.special-card:nth-child(4) {
  background: #1a2a1a;
}
.special-day {
  font-family: var(--font-h);
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  margin-bottom: 8px;
  display: block;
}
.special-dish {
  font-family: var(--font-h);
  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: var(--font-h);
  font-size: 32px;
  font-weight: 800;
  color: #415c2c;
  margin-top: 10px;
}
/* On the green card (2nd), use muted white so price is legible against the olive bg */
.special-card:nth-child(2) .special-price {
  color: rgba(255, 255, 255, 0.6);
}
.special-note {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.35);
  margin-top: 8px;
  letter-spacing: 0.05em;
  line-height: 1.4;
}
.member-specials-cta-bar {
  max-width: 1000px;
  margin: 0 auto 80px;
  padding: 20px 40px;
  background: #111;
  text-align: center;
}
.member-specials-cta-bar a {
  font-family: var(--font-h);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: #415c2c;
  text-decoration: none;
  text-transform: uppercase;
  transition: color 0.2s;
}
.member-specials-cta-bar a:hover {
  color: #fff;
}
@media (max-width: 640px) {
  .specials-grid {
    grid-template-columns: 1fr;
  }
  .member-specials-header {
    padding: 40px 24px 24px;
  }
  .member-specials-cta-bar {
    padding: 20px 24px;
  }
}

/* ── LOGO IMAGES ─────────────────────────────────────────── */
.header-logo-img {
  height: 52px;
  width: auto;
  display: block;
  object-fit: contain;
}
.hero-logo-img {
  height: clamp(80px, 14vw, 160px);
  width: auto;
  display: block;
  margin: 0 auto 16px;
  object-fit: contain;
  filter: drop-shadow(0 4px 20px rgba(0, 0, 0, 0.4));
}

/* ── TERMS & CONDITIONS ACCORDION ────────────────────────── */
.tandc-section {
  background: #141414;
  padding: 60px 40px 80px;
}
.tandc-inner {
  max-width: 860px;
  margin: 0 auto;
}
.tandc-eyebrow {
  font-family: var(--font-h);
  font-size: 11px;
  letter-spacing: 0.28em;
  color: var(--olive);
  margin-bottom: 8px;
  text-transform: uppercase;
}
.tandc-heading {
  font-family: var(--font-h);
  font-size: clamp(24px, 4vw, 40px);
  font-weight: 800;
  color: #fff;
  margin-bottom: 8px;
}
.tandc-desc {
  font-size: 14px;
  color: #555;
  margin-bottom: 36px;
  letter-spacing: 0.05em;
}
.tandc-item {
  border-bottom: 1px solid #2a2a2a;
}
.tandc-toggle {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-h);
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #ccc;
  text-align: left;
  transition: color 0.2s;
}
.tandc-toggle:hover {
  color: #fff;
}
.tandc-toggle.open {
  color: #fff;
}
.tandc-toggle.open .tandc-icon {
  transform: rotate(45deg);
  color: var(--olive);
}
.tandc-icon {
  font-size: 22px;
  transition:
    transform 0.3s,
    color 0.3s;
  color: var(--olive);
  flex-shrink: 0;
}
.tandc-body {
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.4s ease,
    padding 0.3s ease;
  padding: 0 0 0 0;
}
.tandc-body.open {
  padding: 0 0 24px 0;
  margin-bottom: 1rem;
}
.tandc-body p {
  font-size: 14px;
  color: #888;
  line-height: 1.8;
  margin-bottom: 12px;
}
.tandc-body ul {
  list-style: none;
  padding: 0;
}
.tandc-body ul li {
  font-size: 13px;
  color: #777;
  padding: 2px 0;
  /* border-bottom: 1px solid #1e1e1e; */
  padding-left: 16px;
  position: relative;
}
.tandc-body ul li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--olive);
}

/* ── KITCHEN HOURS GRID ──────────────────────────────────── */
.hours-section {
  background: #1a1a1a;
  padding: 60px 40px 80px;
}
.hours-header {
  text-align: left;
  max-width: 1200px;
  margin: 0 auto 32px;
}
.hours-header h2 {
  font-family: var(--font-h);
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 800;
  letter-spacing: 0.04em;
  margin-bottom: 20px;
  color: var(--white);
}
.hours-sub {
  /* color: #555; */
  color: white;
  font-size: 14px;
  margin-top: -8px;
  margin-bottom: 0;
}
.hours-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 2px;
  background: #111;
  max-width: 860px;
  margin: 0 auto;
}
.hours-card {
  background: #1a1a1a;
  padding: 28px 24px;
}
.hours-card .day {
  font-family: var(--font-h);
  font-size: 12px;
  letter-spacing: 0.22em;
  /* color: var(--olive); */
  color: white;
  margin-bottom: 8px;
  text-transform: uppercase;
}
.hours-card .time {
  font-family: var(--font-h);
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  line-height: 1.5;
}
.hours-card .closed {
  font-family: var(--font-h);
  font-size: 18px;
  font-weight: 700;
  /* color: #333; */
  color: white !important;
}

/* ── KIDS PARTY SECTION ──────────────────────────────────── */
.kids-party-section {
  background: #0a1628;
  padding: 60px 40px 70px;
  max-width: 1300px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}
.kids-party-header {
  text-align: center;
  padding: 0 40px 0;
  background: #0a1628;
}
.kids-party-header .label {
  font-family: var(--font-h);
  font-size: 11px;
  letter-spacing: 0.28em;
  color: #f7c948;
  margin-bottom: 8px;
  text-transform: uppercase;
}
.kids-party-header h2 {
  font-family: var(--font-h);
  font-size: clamp(32px, 5vw, 60px);
  font-weight: 800;
  color: #fff;
  margin-bottom: 8px;
  line-height: 1.05;
}
.kids-party-header .sub {
  font-size: 15px;
  color: #aab8c2;
}
.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: var(--font-h);
  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-price-header {
  background: linear-gradient(135deg, #1a3a5c, #2b1a4a);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 28px 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 2px;
}
.kids-price-header .price-block {
}
.kids-price-header .price-label {
  font-family: var(--font-h);
  font-size: 11px;
  letter-spacing: 0.25em;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 6px;
}
.kids-price-header .price-amount {
  font-family: var(--font-h);
  font-size: clamp(24px, 4vw, 38px);
  font-weight: 800;
  color: #fff;
  margin: 0;
}
.kids-price-header .price-amount span {
  font-size: inherit;
  font-weight: inherit;
}
.kids-price-header .meta {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}
.kids-price-header .meta > div {
  text-align: center;
}
.kids-price-header .meta .meta-label {
  display: block;
  font-family: var(--font-h);
  font-size: 11px;
  letter-spacing: 0.2em;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 4px;
}
.kids-price-header .meta strong {
  display: block;
  font-family: var(--font-h);
  font-size: 22px;
  font-weight: 700;
  color: #fff;
}
.kids-price-header .themes {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.theme-tag {
  font-family: var(--font-h);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 8px 20px;
  border-radius: 20px;
  color: #fff;
}
.theme-superhero {
  background: #e8553a;
}
.theme-princess {
  background: #c2609e;
}
.theme-sea {
  background: #2196a8;
}
.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: var(--font-h);
  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);
}
.kids-package-col .info-box {
  background: rgba(78, 205, 196, 0.08);
  border-left: 3px solid #4ecdc4;
  border-radius: 6px;
  padding: 16px;
  margin-top: 20px;
  font-size: 13px;
  font-family: var(--font-h);
  letter-spacing: 0.1em;
  color: #ccc;
  line-height: 1.5;
}
.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;
  grid-column: span 2;
}
.food-col h4 {
  font-family: var(--font-h);
  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;
  border-radius: 4px;
}
.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: var(--font-h);
  font-size: 18px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 4px;
}
.platter-item .price {
  font-family: var(--font-h);
  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;
}
.platter-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2px;
  margin-top: 4px;
}

/* ── AREAS HEADING BAND ──────────────────────────────────── */
.text-section.areas-heading-band {
  text-align: center;
}
.text-section.areas-heading-band .text-section__wrapper {
  justify-content: center;
}

/* ── CONTACT BAND PDF NOTE ───────────────────────────────── */
.contact-band .pdf-note {
  font-size: 12px;
  color: #444;
  margin-top: 16px;
}

/* ── MODAL TABS ──────────────────────────────────────────── */
.modal-tabs {
  display: flex;
  gap: 0;
  margin-bottom: 24px;
}
.modal-tab {
  flex: 1;
  padding: 12px;
  text-align: center;
  font-family: var(--font-h);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: #666;
  border: none;
  border-bottom: 2px solid #2a2a2a;
  cursor: pointer;
  transition: all 0.2s;
  background: none;
}
.modal-tab.active {
  color: #fff;
  border-bottom-color: var(--olive);
}
.modal-panel {
  display: none;
}
.modal-panel.active {
  display: block;
}
.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: var(--font-h);
  font-size: 11px;
  letter-spacing: 0.15em;
  color: var(--olive);
  margin-bottom: 4px;
}
.cap-badge .cap-num {
  font-family: var(--font-h);
  font-size: 22px;
  font-weight: 800;
  color: #fff;
}
.modal-inclusions {
  margin-top: 20px;
}
.modal-inclusions h4 {
  font-family: var(--font-h);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--olive);
  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: #888;
  padding: 7px 0;
  border-bottom: 1px solid #1e1e1e;
  padding-left: 16px;
  position: relative;
}
.modal-inclusions ul li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--olive);
  font-size: 11px;
}
.modal-rate {
  display: inline-block;
  background: var(--olive);
  color: #fff;
  font-family: var(--font-h);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.15em;
  padding: 8px 20px;
  border-radius: 2px;
  margin-bottom: 20px;
}

/* ── RESPONSIVE (new components) ─────────────────────────── */
@media (max-width: 700px) {
  .kids-intro {
    grid-template-columns: 1fr;
  }
  .kids-intro-img {
    height: 240px;
  }
  .kids-package-grid {
    grid-template-columns: 1fr;
  }
  .kids-price-header {
    flex-direction: column;
    text-align: center;
  }
  .food-col.adults {
    grid-column: span 1;
  }
  .platter-grid {
    grid-template-columns: 1fr;
  }
  .modal-inclusions ul {
    grid-template-columns: 1fr;
  }
  .contact-band {
    padding: 36px 24px;
    margin: 40px 20px 60px;
  }
  .tandc-section {
    padding: 40px 20px 60px;
  }
  .hours-section {
    padding: 40px 20px 60px;
  }
}
