/* ==========================================================================
   Liberty Collective — Complete Site-Wide Stylesheet
   Design system: Anton headings, Great Vibes script, Figtree body
   Colors: #0047ba primary, #3173dd accent, #f1ea5b yellow, #000/#fff
   ========================================================================== */

/* --- Custom Properties --- */
:root {
  --custom-blue: #3173dd;
  --custom-dark-blue: #0047ba;
  --custom-yellow: #f1ea5b;
  --base: #ffffff;
  --contrast: #000000;
  --shadow-light: rgba(0, 0, 0, 0.15);
  --shadow-medium: rgba(0, 0, 0, 0.2);
  --shadow-heavy: rgba(0, 0, 0, 0.35);
  --font-heading: Anton, sans-serif;
  --font-body: Figtree, system-ui, sans-serif;
  --font-script: "Great Vibes", cursive;
  --radius-btn: 10px;
  --nav-height: 70px;
  --transition-base: 0.3s ease-in-out;
}

/* --- Font Faces --- */
@font-face {
  font-family: "Great Vibes";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('https://static01.sh-websites.com/uploads/sites/208/fonts/RWmMoKWR9v4ksMfaWd_JN-XHg6UKDXlq.woff2') format('woff2');
}
@font-face {
  font-family: Anton;
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('https://static01.sh-websites.com/uploads/sites/208/fonts/1Ptgg87LROyAm0Kx8i4gS7lu.woff2') format('woff2');
}
@font-face {
  font-family: Figtree;
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url('https://static01.sh-websites.com/uploads/sites/208/fonts/Xmz-HUzqDCFdgfMsYiV_F7wfS-Bs_chQF5bwkEU4HTy.woff2') format('woff2');
}
@font-face {
  font-family: Figtree;
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('https://static01.sh-websites.com/uploads/sites/208/fonts/Xmz-HUzqDCFdgfMsYiV_F7wfS-Bs_chQF5bwkEU4HTy.woff2') format('woff2');
}
@font-face {
  font-family: Figtree;
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('https://static01.sh-websites.com/uploads/sites/208/fonts/Xmz-HUzqDCFdgfMsYiV_F7wfS-Bs_chQF5bwkEU4HTy.woff2') format('woff2');
}

/* --- Reset --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: clamp(0.875em, 0.875rem + ((1vw - 0.2em) * 0.542), 1.2em);
  font-style: normal;
  line-height: 1.5;
  color: var(--contrast);
  background: var(--base);
  overflow-x: hidden;
  text-transform: none;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
a:hover { text-decoration: none; }
ul { list-style: none; }
address { font-style: normal; }
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-style: normal;
  font-weight: 400;
  text-transform: uppercase;
}
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
.container { width: 90%; max-width: 1280px; margin: 0 auto; }
.container-narrow { width: 90%; max-width: 800px; margin: 0 auto; }
.script { font-family: var(--font-script); font-weight: 400; }
.mt { margin-top: 24px; }
.text-center { text-align: center; }
.text-white { color: #fff; }

/* --- Buttons --- */
.btn {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: clamp(0.875em, 0.875rem + ((1vw - 0.2em) * 0.708), 1.3em);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0;
  padding: 10px 30px;
  background: var(--custom-dark-blue);
  color: #fff;
  border: 2px solid var(--custom-dark-blue);
  border-radius: var(--radius-btn);
  cursor: pointer;
  transition: all var(--transition-base);
  text-align: center;
  box-shadow: none;
  line-height: 1.4;
}
.btn:hover {
  background: #fff;
  color: #010101;
  border-color: #000;
}
.btn-yellow {
  background: var(--custom-yellow);
  color: #000;
  border-color: var(--custom-yellow);
}
.btn-yellow:hover {
  background: #000;
  color: #fff;
  border-color: #fff;
}
.btn-outline {
  background: transparent;
  color: #fff;
  border-color: #fff;
}
.btn-outline:hover {
  background: #fff;
  color: #000;
}
.btn-sm {
  font-size: 0.9em;
  padding: 8px 20px;
}
.btn-block {
  display: block;
  width: 100%;
}

/* ==========================================================================
   NAVIGATION — Centered logo, split links (navigation-v8)
   ========================================================================== */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1040;
  background: var(--base);
  transition: all var(--transition-base);
  box-shadow: 0 2px 5px rgba(0,0,0,0);
  padding: 10px 0;
  overflow: visible;
}
.site-header.scrolled {
  background: var(--base);
  box-shadow: 0 2px 5px var(--shadow-medium);
  padding: 10px 0;
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 85%;
  margin: 0 auto;
  padding: 0;
  position: relative;
  min-height: 50px;
}

.nav-left, .nav-right {
  display: flex;
  align-items: center;
  flex: 1;
}
.nav-left { justify-content: flex-end; gap: 0; }
.nav-right { justify-content: flex-start; gap: 0; }

.nav-left a, .nav-right > li > a {
  display: block;
  padding: 15px 10px;
  color: var(--contrast);
  font-family: var(--font-heading);
  font-size: clamp(0.75rem, 1.4vw, 1.2rem);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0;
  white-space: nowrap;
  transition: color var(--transition-base);
  text-decoration: none;
  line-height: 1.2;
}
.nav-left a:hover, .nav-right > li > a:hover,
.nav-left a.active, .nav-right > li > a.active { color: var(--custom-blue); }
.chevron { margin-left: 3px; vertical-align: middle; stroke: #000; }

/* Logo */
.nav-logo {
  flex-shrink: 0;
  flex-basis: 200px;
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  z-index: 1041;
  align-self: flex-start;
}
.nav-logo img {
  width: 200px;
  height: auto;
  display: block;
  position: absolute;
  top: 0;
  max-height: none;
}

/* Dropdowns */
.has-dropdown { position: relative; }
.dropdown {
  display: none;
  position: absolute;
  top: 100%; left: 0;
  background: var(--base);
  min-width: 200px;
  padding: 4px 0;
  z-index: 1050;
  box-shadow: 0 2px 8px var(--shadow-light);
}
.has-dropdown:hover .dropdown,
.has-dropdown:focus-within .dropdown { display: block; }
.dropdown li a {
  display: block;
  padding: 5px 20px;
  color: var(--contrast);
  font-family: var(--font-heading);
  font-size: clamp(0.75rem, 1.45vw, 1.2rem);
  font-weight: 400;
  text-decoration: none;
  text-transform: uppercase;
}
.dropdown li a:hover { color: var(--custom-blue); }

/* Hamburger */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1060;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--contrast);
  margin: 5px 0;
  transition: all 0.3s;
}
.nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* Mobile menu */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--base);
  z-index: 1050;
  padding: 80px 30px 30px;
  overflow-y: auto;
}
.mobile-menu.active { display: block; }
.mobile-menu > ul > li > a {
  display: block;
  padding: 13px 15px;
  color: var(--contrast);
  font-family: var(--font-heading);
  font-size: 16px;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(0,0,0,0.1);
  text-decoration: none;
}
.mobile-menu > ul > li > a:hover { background: var(--custom-blue); color: #fff; }
.mobile-sub { display: none; padding-left: 20px; }
.mobile-sub.active { display: block; }
.mobile-sub a {
  display: block;
  padding: 5px 10px;
  color: var(--contrast);
  font-size: 14px;
  text-decoration: none;
}
.mobile-sub a:hover { color: var(--custom-blue); }
.mobile-dropdown-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.mobile-dropdown-toggle .chevron-mobile {
  transition: transform 0.3s;
  margin-left: 8px;
}
.mobile-dropdown-toggle.active .chevron-mobile {
  transform: rotate(180deg);
}

/* ==========================================================================
   BREADCRUMBS
   ========================================================================== */
/* Breadcrumbs — visually hidden, kept for SEO / screen readers */
.breadcrumbs {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.breadcrumbs a {
  color: var(--custom-blue);
  text-decoration: none;
  transition: color 0.2s;
}
.breadcrumbs a:hover {
  color: var(--custom-dark-blue);
  text-decoration: underline;
}
.breadcrumbs .separator {
  margin: 0 6px;
  color: #999;
}
.breadcrumbs .current {
  color: var(--contrast);
  font-weight: 400;
}

/* ==========================================================================
   HERO — Video (homepage) or Banner (subpages)
   ========================================================================== */

/* Video hero (homepage) */
.hero {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: #000;
  z-index: 98;
}
.hero-video {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  object-position: center top;
  z-index: 100;
}

/* Video controls */
.video-controls {
  position: relative;
}
.video-controls-btn,
.video-volume-btn {
  background: transparent;
  background-color: transparent;
  border: none;
  color: #fff;
  cursor: pointer;
  font-size: 3.5em;
  height: 45px;
  padding: 1px 6px;
  position: absolute;
  width: 45px;
  z-index: 100;
}
.video-controls-btn {
  bottom: 20px;
  left: 25px;
}
.video-volume-btn {
  bottom: 21px;
  left: 70px;
}
.video-controls-btn .fa,
.video-volume-btn .fa {
  cursor: pointer;
  position: absolute;
  bottom: 0;
}
.video-controls-btn .fa {
  font-size: 0.75em;
  height: 40px;
  left: 0;
  display: flex;
  align-items: center;
}
.video-volume-btn .fa {
  height: 45px;
  display: flex;
  align-items: center;
}
.video-volume-btn .fa-volume-up {
  right: -12px;
}

/* Page hero (subpages) — matches SpotHopper: 90px spacer + 300px cover */
.page-hero {
  position: relative;
  width: 100%;
  background-color: #000;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding-top: 90px;
}
.page-hero-overlay {
  display: none;
}
.page-hero-spacer {
  height: 90px;
}
.page-hero-inner {
  min-height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.page-hero h1,
.page-hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.2em, 2.2rem + ((1vw - 0.2em) * 3), 4em);
  font-weight: 400;
  text-transform: uppercase;
  color: #fff;
  margin: 0;
}

/* Banner hero (subpages — alternate class) */
.hero-banner {
  position: relative;
  width: 100%;
  min-height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  margin-top: 0;
  background-color: #1a1a1a;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.hero-banner::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
}
.hero-banner .hero-banner-content {
  position: relative;
  z-index: 2;
  padding: 80px 20px 40px;
  width: 100%;
}
.hero-banner h1 {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 2.5rem + ((1vw - 0.2rem) * 4), 5rem);
  text-transform: uppercase;
  color: #fff;
  font-weight: 400;
  line-height: 1.05;
  margin-bottom: 0;
}
.hero-banner .hero-script {
  font-family: var(--font-script);
  font-size: clamp(1.5rem, 1.5rem + ((1vw - 0.2rem) * 2), 2.5rem);
  color: #fff;
  font-weight: 400;
  text-transform: none;
  line-height: 1.2;
}
.hero-banner p {
  font-family: var(--font-body);
  font-size: 1.1rem;
  color: rgba(255,255,255,0.9);
  font-weight: 300;
  max-width: 600px;
  margin: 16px auto 0;
  line-height: 1.6;
}

/* ==========================================================================
   WELCOME — Left text + right image
   ========================================================================== */
.section-welcome {
  background-size: cover;
  background-position: center bottom;
  padding: 5% 0 0;
}
.welcome-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5%;
  align-items: center;
}
.welcome-title .script {
  display: block;
  font-family: var(--font-script);
  font-size: clamp(1.743rem, 1.743rem + ((1vw - 0.2rem) * 2.095), 3rem);
  font-weight: 400;
  font-style: normal;
  line-height: 1.2;
  text-transform: none;
  margin-bottom: -5px;
  padding-left: 5px;
  color: var(--contrast);
}
.welcome-title {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 2.2rem + ((1vw - 0.2rem) * 3), 4rem);
  text-transform: uppercase;
  line-height: 1.05;
  margin-bottom: 30px;
  color: var(--contrast);
  font-weight: 400;
}
.welcome-text p {
  font-family: var(--font-body);
  font-size: clamp(0.875rem, 0.875rem + ((1vw - 0.2rem) * 0.375), 1.1rem);
  line-height: 1.5;
  color: var(--contrast);
  margin-bottom: 0;
  font-weight: 300;
  padding-top: 10px;
  padding-bottom: 10px;
}
.welcome-text .btn { margin-top: 30px; margin-bottom: 30px; }
.welcome-image { overflow: hidden; }
.welcome-image img { width: 100%; min-height: 500px; object-fit: cover; }

/* ==========================================================================
   GALLERY — Heading + carousel with square images
   ========================================================================== */
.section-gallery {}
.gallery-heading {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 2.2rem + ((1vw - 0.2rem) * 3), 4rem);
  text-transform: uppercase;
  text-align: center;
  line-height: 1.05;
  color: var(--contrast);
  font-weight: 400;
  padding: 4% 0;
}

.gallery-carousel {
  position: relative;
  overflow: hidden;
  padding: 10px;
}
.gallery-track {
  display: flex;
  gap: 20px;
  padding: 10px;
  transition: transform 0.5s ease;
}
.gallery-slide {
  flex: 0 0 calc(33.333% - 14px);
  min-width: 0;
  padding: 10px;
}
.gallery-slide img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  display: block;
}
.gallery-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 10;
  font-size: 60px;
  color: rgba(255,255,255,0.9);
  text-shadow: 0 0 5px #000;
  opacity: 1;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.gallery-arrow:hover { color: #fff; }
.gallery-prev { left: 10px; }
.gallery-next { right: 10px; }
.gallery-pause {
  position: absolute;
  bottom: 12px;
  left: 20px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  color: #fff;
  font-size: 16px;
  text-shadow: 0 0 5px #000;
}

/* ==========================================================================
   GROUPS & PARTIES — Gallery bg with overlay, centered text
   ========================================================================== */
.section-parties {
  padding: 4% 0;
  text-align: center;
}
.parties-inner { position: relative; z-index: 1; max-width: 700px; margin: 0 auto; }
.parties-title {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 2.2rem + ((1vw - 0.2rem) * 3), 4rem);
  text-transform: uppercase;
  color: #fff;
  font-weight: 400;
  margin-bottom: 0;
}
.parties-script {
  font-family: var(--font-script);
  font-size: clamp(1.743rem, 1.743rem + ((1vw - 0.2rem) * 2.095), 3rem);
  color: #fff;
  font-weight: 400;
  text-transform: capitalize;
  line-height: 1.2;
  margin-bottom: 20px;
}
.parties-text {
  margin: 0 auto 30px;
  color: #fff;
  font-family: var(--font-body);
  font-size: clamp(0.929em, 0.929rem + ((1vw - 0.2em) * 0.785), 1.4em);
  line-height: 1.5;
}

/* ==========================================================================
   THE BEACH — Full-width bg image with centered white card
   ========================================================================== */
.section-beach {
  position: relative;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 7% 0;
}
.beach-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}
.beach-card {
  position: relative;
  z-index: 1;
  background: #fff;
  padding: 5% 6%;
  max-width: 900px;
  width: 90%;
  text-align: center;
}
.beach-title {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 2.2rem + ((1vw - 0.2rem) * 3), 4rem);
  text-transform: uppercase;
  color: var(--contrast);
  font-weight: 400;
  line-height: 1;
  margin-bottom: 0;
}
.beach-script {
  font-family: var(--font-script);
  font-size: clamp(1.743rem, 1.743rem + ((1vw - 0.2rem) * 2.095), 3rem);
  color: var(--contrast);
  font-weight: 400;
  text-transform: none;
  margin-bottom: 20px;
}
.beach-text {
  font-family: var(--font-body);
  font-size: clamp(0.875em, 0.875rem + ((1vw - 0.2em) * 0.542), 1.2em);
  line-height: 1.5;
  color: var(--contrast);
  margin-bottom: 30px;
  font-weight: 300;
}

/* ==========================================================================
   CONTENT SECTION — Parallax background for subpages
   ========================================================================== */
.section-content {
  position: relative;
  padding: 60px 0;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  background-repeat: no-repeat;
}
.section-content::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.92);
  z-index: 0;
}
.section-content > * {
  position: relative;
  z-index: 1;
}
.section-content .container,
.section-content .container-narrow {
  position: relative;
  z-index: 1;
}

/* Standard page content styling */
.page-content {
  padding: 40px 0;
}
.page-content h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 1.5rem + ((1vw - 0.2rem) * 2), 2.5rem);
  text-transform: uppercase;
  color: var(--contrast);
  font-weight: 400;
  margin-bottom: 16px;
}
.page-content h3 {
  font-family: var(--font-heading);
  font-size: clamp(1.2rem, 1.2rem + ((1vw - 0.2rem) * 1.2), 1.8rem);
  text-transform: uppercase;
  color: var(--contrast);
  font-weight: 400;
  margin-bottom: 12px;
}
.page-content p {
  font-family: var(--font-body);
  font-size: clamp(0.875rem, 0.875rem + ((1vw - 0.2rem) * 0.375), 1.1rem);
  line-height: 1.7;
  color: #333;
  font-weight: 300;
  margin-bottom: 16px;
}
.page-content p:last-child {
  margin-bottom: 0;
}
.page-content ul {
  list-style: disc;
  padding-left: 24px;
  margin-bottom: 16px;
}
.page-content ul li {
  font-family: var(--font-body);
  font-size: clamp(0.875rem, 0.875rem + ((1vw - 0.2rem) * 0.375), 1.1rem);
  line-height: 1.7;
  color: #333;
  font-weight: 300;
  margin-bottom: 6px;
}

/* ==========================================================================
   VENDOR PAGE — Matches SpotHopper vendor template exactly
   ========================================================================== */

/* Vendor hero: dark starfield bg with centered h1 */
.vendor-hero {
  position: relative;
  width: 100%;
  background-color: #000;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding-top: 90px;
}
.vendor-hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(2.2em, 2.2rem + ((1vw - 0.2em) * 3), 4em);
  font-weight: 400;
  text-transform: uppercase;
  color: #fff;
  margin: 0;
  text-align: center;
  min-height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
}

/* Vendor breadcrumbs — visually hidden, kept for SEO */
.vendor-breadcrumbs {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Vendor content section: welcome_back.jpg parallax bg, white overlay, 800px constrained */
.vendor-content {
  position: relative;
  background-image: url('https://static01.sh-websites.com/uploads/sites/208/2025/12/welcome_back.jpg');
  background-size: cover;
  background-position: center 0;
  background-attachment: fixed;
  padding: 40px 20px;
}
.vendor-content::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.6);
  z-index: 0;
}
.vendor-content-inner {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
}
.vendor-featured-img {
  display: block;
  width: 100%;
  height: auto;
  margin-bottom: 20px;
}
.vendor-content-inner p {
  font-family: var(--font-body);
  font-size: clamp(0.875em, 0.875rem + ((1vw - 0.2em) * 0.542), 1.2em);
  font-weight: 300;
  line-height: 1.5;
  color: var(--contrast);
  margin-bottom: 20px;
}
.vendor-content-inner ul {
  list-style: disc;
  padding-left: 24px;
  margin-bottom: 20px;
}
.vendor-content-inner ul li {
  font-family: var(--font-body);
  font-size: clamp(0.875em, 0.875rem + ((1vw - 0.2em) * 0.542), 1.2em);
  font-weight: 300;
  line-height: 1.5;
  color: var(--contrast);
  margin-bottom: 8px;
}

/* Vendor two-column layout — text left, image right (Clubs, etc.) */
.vendor-content .vendor-wide {
  max-width: 1200px;
}
.vendor-content .vendor-columns {
  display: flex;
  flex-wrap: nowrap;
  gap: 40px;
  align-items: flex-start;
  margin-bottom: 40px;
}
.vendor-content .vendor-col-text {
  flex: 1 1 50%;
  min-width: 0;
}
.vendor-content .vendor-col-img {
  flex: 0 0 45%;
}
.vendor-content .vendor-col-img img {
  width: 100%;
  height: auto;
  display: block;
}
@media (max-width: 768px) {
  .vendor-content .vendor-columns {
    flex-wrap: wrap;
  }
  .vendor-content .vendor-col-text,
  .vendor-content .vendor-col-img {
    flex: 1 1 100%;
  }
}

/* Vendor contact section — reuse for all vendor pages */
.vendor-contact {
  background-image: url('https://static01.sh-websites.com/uploads/sites/208/2025/12/welcome_back.jpg');
  background-size: cover;
  background-position: center 0;
  padding: 4rem 20px;
}

.vendor-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid #e5e5e5;
}
.vendor-meta .vendor-tag {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  text-transform: uppercase;
  color: var(--custom-dark-blue);
  background: rgba(0, 71, 186, 0.08);
  padding: 4px 12px;
  border-radius: 4px;
}
.vendor-hours {
  margin-top: 24px;
  padding: 24px;
  background: #f8f8f8;
  border-left: 3px solid var(--custom-dark-blue);
}
.vendor-hours h3 {
  margin-bottom: 12px;
}
.vendor-hours table {
  width: 100%;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 300;
}
.vendor-hours table td {
  padding: 4px 0;
  color: #333;
}
.vendor-hours table td:first-child {
  font-weight: 400;
  width: 140px;
}

/* ==========================================================================
   FOOD & BEVERAGE — 4-Column Grid
   ========================================================================== */
.vendor-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  padding: 40px 0;
}
.section-vendor-grid {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}
.vendor-card {
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.vendor-card-link {
  display: flex;
  flex-direction: column;
  flex: 1;
  text-decoration: none;
  color: inherit;
}
.vendor-card-img {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-radius: 4px;
}
.vendor-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.vendor-card:hover .vendor-card-img img {
  transform: scale(1.05);
}
.vendor-card-body {
  padding: 16px 0;
  display: flex;
  flex-direction: column;
  flex: 1;
  text-align: left;
}
.vendor-card-body h3 {
  font-family: var(--font-heading);
  font-size: clamp(1rem, 1rem + ((1vw - 0.2rem) * 0.8), 1.4rem);
  text-transform: uppercase;
  color: var(--contrast);
  font-weight: 400;
  margin-bottom: 8px;
}
.vendor-card-body p {
  font-family: var(--font-body);
  font-size: 0.9rem;
  line-height: 1.5;
  color: #555;
  font-weight: 300;
  margin-bottom: 16px;
  flex: 1;
}
.vendor-card-body .btn {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  text-transform: uppercase;
  padding: 10px 20px;
  background: var(--custom-blue);
  color: #fff;
  border: none;
  border-radius: 4px;
  text-decoration: none;
  cursor: pointer;
  align-self: flex-start;
  margin-top: auto;
  box-shadow: 2px 2px 6px rgba(0,0,0,0.2);
}

/* ==========================================================================
   GENERIC CONTENT PAGES — welcome_back.jpg parallax bg with cards
   ========================================================================== */
.section-page-content {
  position: relative;
  background-size: cover;
  background-position: center 0;
  background-attachment: fixed;
  padding: 40px 20px;
}
.page-content-overlay {
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.6);
  z-index: 0;
}
.page-content-inner {
  position: relative;
  z-index: 1;
  max-width: 1100px;
  margin: 0 auto;
}
.page-content-inner > h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.4rem, 1.4rem + ((1vw - 0.2rem) * 1.2), 2rem);
  text-transform: uppercase;
  color: var(--contrast);
  font-weight: 400;
  margin-bottom: 24px;
}
.page-content-inner > p {
  font-family: var(--font-body);
  font-size: clamp(0.875em, 0.875rem + ((1vw - 0.2em) * 0.542), 1.2em);
  font-weight: 300;
  line-height: 1.5;
  color: var(--contrast);
  margin-bottom: 20px;
}

/* Card grid — 3 col default */
.card-grid {
  display: grid;
  gap: 24px;
  padding: 20px 0;
}
.card-grid-2 { grid-template-columns: repeat(2, 1fr); }
.card-grid-3 { grid-template-columns: repeat(3, 1fr); }
.card-grid-4 { grid-template-columns: repeat(4, 1fr); }

.content-card {
  background: #fff;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  display: flex;
  flex-direction: column;
}
.content-card-header {
  padding: 20px 20px 0;
}
.content-card-header h3 {
  font-family: var(--font-heading);
  font-size: clamp(1rem, 1rem + ((1vw - 0.2rem) * 0.6), 1.3rem);
  text-transform: uppercase;
  color: var(--contrast);
  font-weight: 400;
  margin-bottom: 4px;
}
.content-card-header .card-meta {
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: var(--custom-blue);
  font-weight: 700;
  margin-bottom: 0;
}
.content-card-body {
  padding: 12px 20px 20px;
  flex: 1;
}
.content-card-body p {
  font-family: var(--font-body);
  font-size: 0.9rem;
  line-height: 1.5;
  color: #555;
  font-weight: 300;
}
.content-card .btn {
  display: inline-block;
  margin: 0 20px 20px;
  align-self: flex-start;
}

/* Inline signup form (Be an Insider page) */
.inline-form {
  max-width: 500px;
}
.inline-form .form-group {
  margin-bottom: 16px;
}
.inline-form label {
  display: block;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 4px;
}
.inline-form input[type="text"],
.inline-form input[type="email"],
.inline-form input[type="tel"] {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid rgba(0,0,0,0.3);
  border-radius: 4px;
  font-family: var(--font-body);
  font-size: 1rem;
  box-sizing: border-box;
}
.inline-form .form-checkbox label {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-weight: 300;
  font-size: 0.85rem;
  color: #555;
}
.inline-form .btn {
  padding: 12px 32px;
  background: var(--custom-dark-blue);
  color: #fff;
  border: none;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  text-transform: uppercase;
  cursor: pointer;
}

/* News article cards */
.article-card {
  background: #fff;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  padding: 24px;
  margin-bottom: 24px;
}
.article-card .article-date {
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: var(--custom-blue);
  font-weight: 700;
  margin-bottom: 8px;
}
.article-card h3 {
  font-family: var(--font-heading);
  font-size: clamp(1.1rem, 1.1rem + ((1vw - 0.2rem) * 0.8), 1.5rem);
  text-transform: uppercase;
  color: var(--contrast);
  font-weight: 400;
  margin-bottom: 12px;
}
.article-card p {
  font-family: var(--font-body);
  font-size: 0.9rem;
  line-height: 1.5;
  color: #555;
  font-weight: 300;
}

@media (max-width: 768px) {
  .card-grid-2,
  .card-grid-3,
  .card-grid-4 {
    grid-template-columns: 1fr;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .card-grid-3,
  .card-grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ==========================================================================
   EVENTS PAGE — Dark bg with venue photo, event feed layout
   Matches SpotHopper: about_03.jpg + 77% black gradient overlay
   ========================================================================== */
.events-page {
  position: relative;
  min-height: 100vh;
  background-image: linear-gradient(rgba(0,0,0,0.77), rgba(0,0,0,0.77)),
              url('https://static01.sh-websites.com/uploads/sites/208/2025/12/about_03.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  color: #fff;
}
.events-page-spacer {
  height: 160px;
}
.events-page-content {
  padding: 20px 0 60px;
}
.events-page-title {
  font-family: var(--font-heading);
  font-size: clamp(2.2em, 2.2rem + ((1vw - 0.2em) * 3), 4em);
  font-weight: 400;
  text-transform: uppercase;
  color: #fff;
  margin: 0 0 40px;
  text-align: center;
}

/* Event feed — vertical list of event items */
.events-feed {
  display: flex;
  flex-direction: column;
  gap: 48px;
}

/* Each event: image left, details right */
.event-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}
.event-item-image img {
  width: 100%;
  height: auto;
  display: block;
}
.event-item-details {
  text-align: center;
}
.event-item-details h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.2rem, 1.2rem + ((1vw - 0.2rem) * 1), 1.8rem);
  text-transform: uppercase;
  font-weight: 400;
  color: #fff;
  margin-bottom: 12px;
}
.event-item-date {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 400;
  color: #ccc;
  margin-bottom: 12px;
}
.event-item-details p {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 300;
  line-height: 1.6;
  color: #ddd;
  margin-bottom: 8px;
}
.event-item-time {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 400;
  color: #ccc;
  margin-top: 12px;
}

@media (max-width: 768px) {
  .event-item {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .events-page {
    background-attachment: scroll;
  }
}
@media (max-width: 1024px) {
  .events-page {
    background-attachment: scroll;
  }
}

/* Legacy event card styles (kept for compatibility) */
.event-card-image {
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
}
.event-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.event-card-body {
  padding: 20px;
}
.event-card-date {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  text-transform: uppercase;
  color: var(--custom-dark-blue);
  margin-bottom: 8px;
  letter-spacing: 0.03em;
}
.event-card-body h3 {
  font-family: var(--font-heading);
  font-size: clamp(1rem, 1rem + ((1vw - 0.2rem) * 0.6), 1.3rem);
  text-transform: uppercase;
  color: var(--contrast);
  font-weight: 400;
  margin-bottom: 8px;
  line-height: 1.2;
}
.event-card-body p {
  font-family: var(--font-body);
  font-size: 0.9rem;
  line-height: 1.5;
  color: #555;
  font-weight: 300;
  margin-bottom: 16px;
}
.event-card-time {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 400;
  color: #777;
  display: flex;
  align-items: center;
  gap: 6px;
}
.event-card-time .fa { color: var(--custom-blue); }

/* Event detail page */
.event-detail {
  max-width: 800px;
  margin: 0 auto;
}
.event-detail-image {
  width: 100%;
  margin-bottom: 24px;
}
.event-detail-image img {
  width: 100%;
  height: auto;
}
.event-detail-meta {
  display: flex;
  gap: 24px;
  margin-bottom: 24px;
  padding: 16px 0;
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
}
.event-detail-meta span {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: #555;
  display: flex;
  align-items: center;
  gap: 8px;
}
.event-detail-meta .fa { color: var(--custom-blue); }

/* ==========================================================================
   NEWS — Article Cards
   ========================================================================== */
.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  padding: 40px 0;
}
.news-card {
  background: var(--base);
  border: 1px solid #eee;
  overflow: hidden;
  transition: box-shadow 0.3s ease;
}
.news-card:hover {
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
}
.news-card-image {
  width: 100%;
  aspect-ratio: 16/10;
  overflow: hidden;
}
.news-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.news-card:hover .news-card-image img {
  transform: scale(1.03);
}
.news-card-body {
  padding: 20px;
}
.news-card-date {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 400;
  color: #999;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 8px;
}
.news-card-body h3 {
  font-family: var(--font-heading);
  font-size: clamp(1rem, 1rem + ((1vw - 0.2rem) * 0.6), 1.3rem);
  text-transform: uppercase;
  color: var(--contrast);
  font-weight: 400;
  margin-bottom: 10px;
  line-height: 1.2;
}
.news-card-body h3 a {
  color: var(--contrast);
  transition: color 0.2s;
}
.news-card-body h3 a:hover {
  color: var(--custom-blue);
}
.news-card-body p {
  font-family: var(--font-body);
  font-size: 0.9rem;
  line-height: 1.5;
  color: #555;
  font-weight: 300;
  margin-bottom: 16px;
}
.news-card-body .read-more {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  text-transform: uppercase;
  color: var(--custom-dark-blue);
  transition: color 0.2s;
}
.news-card-body .read-more:hover {
  color: var(--custom-blue);
}

/* ==========================================================================
   REVIEWS — Dark bg, carousel with quote marks
   ========================================================================== */
.section-reviews {
  position: relative;
  background-size: cover;
  background-position: center;
  padding: 5% 0;
  text-align: center;
}
.reviews-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0);
}
.reviews-inner { position: relative; z-index: 1; }
.reviews-title {
  font-family: var(--font-heading);
  font-size: clamp(2.2em, 2.2rem + ((1vw - 0.2em) * 3), 4em);
  text-transform: uppercase;
  color: #fff;
  font-weight: 400;
  margin-bottom: 20px;
}
.reviews-source {
  font-family: var(--font-script);
  font-size: 3em;
  color: #fff;
  font-weight: 400;
  text-transform: none;
  margin-bottom: 10px;
}
.reviews-carousel {
  position: relative;
  max-width: 700px;
  margin: 0 auto;
  min-height: 180px;
}
.review-slide {
  display: none;
}
.review-slide.active {
  display: block;
  animation: fadeIn 0.5s ease;
}
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

.review-author {
  color: #fff;
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 1.2em;
  text-transform: none;
  margin-bottom: 16px;
}
.stars {
  color: var(--custom-yellow);
  font-size: 0.8em;
  vertical-align: middle;
}
.stars .fa-star { margin: 0 1px; }
.review-body {
  position: relative;
  padding: 0 20px;
}
.review-body p {
  color: #fff;
  font-family: var(--font-body);
  font-size: 1.2rem;
  line-height: 1.7;
  font-style: normal;
  font-weight: 300;
  display: inline;
}
.quote-mark {
  color: var(--custom-yellow);
  opacity: 1;
  font-size: 1.2rem;
  display: inline;
}

.review-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 10;
  color: rgba(255,255,255,0.6);
  font-size: 40px;
}
.review-arrow:hover { color: #fff; }
.review-prev { left: -60px; }
.review-next { right: -60px; }

.review-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 24px;
}
.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 1px solid #fefefe;
  background: transparent;
  cursor: pointer;
  padding: 0;
  transition: background 0.2s;
}
.dot.active { background: #fff; border-color: #fff; }

.review-pause-btn {
  display: block;
  margin: 16px auto 0;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  color: #fff;
}

/* ==========================================================================
   NEWSLETTER + MAP — Side by side
   ========================================================================== */
.section-newsletter-map {
  padding: 0;
}
.newsletter-map-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.contact-newsletter {
  background: var(--base);
  padding: 40px 60px 40px 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.newsletter-heading {
  font-family: var(--font-heading);
  font-size: 4rem;
  text-transform: uppercase;
  color: var(--contrast);
  font-weight: 400;
  margin-bottom: 12px;
  text-align: left;
}
.nl-subtitle {
  font-family: var(--font-body);
  font-size: 1.2rem;
  font-weight: 300;
  color: var(--contrast);
  margin-bottom: 16px;
  text-align: left;
}
.contact-newsletter label {
  display: block;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 400;
  color: #333;
  margin-bottom: 8px;
}
.newsletter-row {
  display: flex;
  align-items: flex-end;
  gap: 15px;
}
.nl-input-wrap {
  flex: 1;
  position: relative;
}
.nl-input-wrap input {
  width: 100%;
  padding: 10px 5px 14px 5px;
  border: none;
  border-bottom: 1px solid #010101;
  background: transparent;
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--contrast);
  outline: none;
}
.nl-input-wrap input::placeholder { color: var(--contrast); }
.nl-bar {
  position: absolute;
  bottom: 0; left: 50%;
  width: 0; height: 2px;
  background: var(--custom-dark-blue);
  transition: all 0.2s ease;
  transform: translateX(-50%);
}
.nl-input-wrap input:focus ~ .nl-bar { width: 100%; }

.contact-map {
  width: 100%;
  min-height: 450px;
  background: #eee;
}

/* ==========================================================================
   CONTACT SECTION — Location / Hours / Find Us On
   ========================================================================== */
.section-contact {
  background-size: cover;
  background-position: center 0%;
  padding: 4rem 0;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
  max-width: 85%;
  margin: 0 auto;
}
.contact-col h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 1.25rem + ((1vw - 0.2rem) * 1.25), 2rem);
  text-transform: uppercase;
  color: var(--contrast);
  font-weight: 400;
  margin-bottom: 10px;
}
.contact-col h4 {
  font-family: var(--font-body);
  font-size: clamp(0.875rem, 0.875rem + ((1vw - 0.2rem) * 0.542), 1.2rem);
  font-weight: 700;
  color: var(--contrast);
  margin-top: 10px;
  margin-bottom: 0;
  text-transform: capitalize;
}
.contact-col p,
.contact-col address p {
  font-family: var(--font-body);
  font-size: clamp(0.875rem, 0.875rem + ((1vw - 0.2rem) * 0.542), 1.2rem);
  line-height: 1.6;
  color: var(--contrast);
  font-weight: 300;
}
.contact-col a { color: var(--contrast); transition: color 0.2s; }
.contact-col a:hover { color: var(--contrast); }

.contact-social {
  display: flex;
  gap: 12px;
  margin-bottom: 20px;
}
.contact-social a {
  color: var(--contrast);
  font-size: 20px;
  display: flex;
  align-items: center;
}
.contact-social a:hover { color: var(--custom-blue); }
.contact-social svg { width: 16px; height: 16px; }

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer {
  background: #000;
  color: #999;
  padding: 40px 20px;
  text-align: center;
}
.footer-copyright {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 300;
  letter-spacing: 0.02em;
  color: #999;
}
.footer-copyright strong {
  color: #fff;
  font-weight: 600;
}

/* ==========================================================================
   FLOATING WIDGETS — Birthday pill + Contact chat
   ========================================================================== */
.floating-widgets {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 1035;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-end;
}

/* Birthday pill */
.bday-pill {
  display: inline-flex;
  align-items: center;
  background: #fff;
  border-radius: 50px;
  height: 48px;
  width: 48px;
  padding: 0;
  cursor: pointer;
  box-shadow: 0 2px 8px var(--shadow-medium);
  text-decoration: none;
  color: var(--contrast);
  transition: width 0.4s ease;
  overflow: hidden;
}
.bday-pill:hover {
  width: 280px;
}
.bday-text {
  white-space: nowrap;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 400;
  line-height: 1.3;
  color: #333;
  padding: 0 4px 0 16px;
  max-width: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-width 0.4s ease, opacity 0.3s ease;
}
.bday-pill:hover .bday-text {
  max-width: 220px;
  opacity: 1;
}
.bday-text strong {
  display: block;
  font-weight: 700;
  font-size: 14px;
  color: var(--contrast);
}
.bday-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* Contact button */
.fab-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.25);
  transition: transform 0.2s, box-shadow 0.2s;
  flex-shrink: 0;
}
.fab-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 16px var(--shadow-heavy);
}
.fab-contact {
  background: #fff;
  border: 1px solid rgba(0,0,0,0.1);
}
.fab-contact svg {
  width: 28px;
  height: 28px;
}

/* ==========================================================================
   MOBILE FOOTER BAR — Parties | Order | Jobs
   ========================================================================== */
.mobile-footer-bar {
  display: none;
  position: fixed;
  bottom: -100px;
  left: 0; right: 0;
  z-index: 1030;
  background: var(--base);
  transition: all 0.4s ease-in-out;
  box-shadow: 0 -2px 8px rgba(0,0,0,0.1);
}
.mobile-footer-bar.show-bottom-nav {
  bottom: 0;
}
.mobile-footer-bar a {
  flex: 1;
  text-align: center;
  padding: 15px 3px;
  color: var(--contrast);
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 400;
  text-transform: uppercase;
  text-decoration: none;
}
.mobile-footer-bar a:hover,
.mobile-footer-bar a:focus {
  color: var(--custom-blue);
  background-color: transparent;
}

/* ==========================================================================
   MODAL SYSTEM — Contact, Newsletter, Birthday
   ========================================================================== */
/* ========== MODAL SYSTEM ========== */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  z-index: 2000;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.modal-overlay.active {
  display: flex;
}
.modal-content {
  background: #fff;
  width: 100%;
  max-width: 560px;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  padding: 32px;
  border-radius: 4px;
}
.modal-content-sm {
  max-width: 460px;
}
.modal-close {
  position: absolute;
  top: 12px;
  right: 16px;
  background: none;
  border: none;
  cursor: pointer;
  color: #333;
  font-size: 28px;
  line-height: 1;
  z-index: 1;
}
.modal-close:hover {
  color: #000;
}
.modal-title {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 1.6rem + ((1vw - 0.2rem) * 1.5), 2.4rem);
  text-transform: uppercase;
  color: var(--contrast);
  font-weight: 400;
  line-height: 1.1;
  margin: 0 0 8px;
  text-align: center;
}
.modal-subtitle {
  font-family: var(--font-body);
  font-size: 1rem;
  color: #555;
  font-weight: 300;
  text-align: center;
  margin-bottom: 24px;
}

/* Modal forms */
.modal-form .form-group {
  margin-bottom: 16px;
}
.modal-form label {
  display: block;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 4px;
}
.modal-form input[type="text"],
.modal-form input[type="email"],
.modal-form input[type="tel"],
.modal-form input[type="number"],
.modal-form input[type="time"],
.modal-form select,
.modal-form textarea {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid rgba(0, 0, 0, 0.3);
  border-radius: 4px;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 300;
  color: #333;
  box-sizing: border-box;
}
.modal-form textarea {
  resize: vertical;
}
.modal-form input:focus,
.modal-form select:focus,
.modal-form textarea:focus {
  outline: none;
  border-color: var(--custom-blue);
  box-shadow: 0 0 0 2px rgba(49, 115, 221, 0.2);
}
.modal-form .form-row {
  display: flex;
  gap: 12px;
}
.modal-form .form-row .form-group {
  flex: 1;
}
.modal-form .form-checkbox label {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-weight: 300;
  font-size: 0.85rem;
  color: #555;
  line-height: 1.4;
}
.modal-form .form-checkbox input[type="checkbox"] {
  margin-top: 3px;
  flex-shrink: 0;
}
.modal-form .btn,
.modal-form button[type="submit"] {
  width: 100%;
  display: block;
  margin-top: 20px;
  padding: 14px 24px;
  background: var(--custom-dark-blue);
  color: #fff;
  border: none;
  border-radius: 0;
  font-family: var(--font-heading);
  font-size: 1.2rem;
  text-transform: uppercase;
  cursor: pointer;
  text-align: center;
}
.modal-form .btn:hover,
.modal-form button[type="submit"]:hover {
  background: var(--custom-blue);
}

/* Contact modal radio group */
.modal-radio-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 16px 0 24px;
  padding: 0 8px;
}
.modal-radio {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 1rem;
  color: #333;
  cursor: pointer;
}
.modal-radio input[type="radio"] {
  accent-color: var(--custom-dark-blue);
  width: 18px;
  height: 18px;
  margin: 0;
}

/* Contact form panel switching */
.contact-form-panel {
  display: none;
}
.contact-form-panel.active {
  display: block;
}

/* Birthday modal close override */
#bday-modal .modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  color: #333;
}

/* ==========================================================================
   FORM STYLES
   ========================================================================== */
.form-group {
  margin-bottom: 18px;
}
.form-group label {
  display: block;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 400;
  color: #333;
  margin-bottom: 6px;
}
.form-group label .required {
  color: #d32f2f;
  margin-left: 2px;
}
.form-control {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--contrast);
  background: var(--base);
  outline: none;
  transition: border-color 0.2s;
}
.form-control:focus {
  border-color: var(--custom-dark-blue);
  box-shadow: 0 0 0 2px rgba(0, 71, 186, 0.1);
}
.form-control::placeholder {
  color: #999;
}
textarea.form-control {
  resize: vertical;
  min-height: 100px;
}
select.form-control {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23333' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 36px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

/* Form states */
.form-success,
.form-error {
  display: none;
  padding: 16px;
  border-radius: 4px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 400;
  text-align: center;
  margin-top: 16px;
}
.form-success {
  background: #e8f5e9;
  color: #2e7d32;
  border: 1px solid #a5d6a7;
}
.form-error {
  background: #ffebee;
  color: #c62828;
  border: 1px solid #ef9a9a;
}
.form-success.visible,
.form-error.visible {
  display: block;
}

/* Submit button loading state */
.btn.loading {
  position: relative;
  color: transparent;
  pointer-events: none;
}
.btn.loading::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 20px;
  margin: -10px 0 0 -10px;
  border: 2px solid rgba(255,255,255,0.3);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin 0.6s linear infinite;
}
@keyframes spin {
  to { transform: rotate(360deg); }
}

/* File upload for job applications */
.file-upload {
  position: relative;
  display: block;
  padding: 20px;
  border: 2px dashed #ccc;
  border-radius: 4px;
  text-align: center;
  cursor: pointer;
  transition: border-color 0.2s;
}
.file-upload:hover {
  border-color: var(--custom-dark-blue);
}
.file-upload input[type="file"] {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
}
.file-upload-label {
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: #666;
  font-weight: 300;
}
.file-upload-label strong {
  color: var(--custom-dark-blue);
  font-weight: 600;
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */

/* Video responsive heights */
@media (max-width: 1024px) {
  .hero, .hero-video { height: 42vh !important; }
}
@media (max-width: 767px) {
  .hero { margin-top: 70px !important; }
  .hero, .hero-video { height: 32vh !important; }
  .hero-video {
    position: absolute;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    right: 50%;
    bottom: 50%;
    transform: translateX(50%) translateY(50%);
    max-width: none;
  }
  .video-controls-btn,
  .video-volume-btn {
    bottom: 10px;
    font-size: 2.3em;
    height: 30px;
    width: 30px;
    z-index: 99;
  }
  .video-controls-btn { left: 15px; }
  .video-volume-btn { left: 50px; }
  .video-controls-btn .fa { height: 26px; width: 30px; }
  .video-volume-btn .fa { height: 30px; width: 30px; }
}

/* Tablet + large screens */
@media (max-width: 1200px) {
  .newsletter-heading { font-size: 3rem; }
  .beach-bg { background-attachment: scroll !important; }
  .section-content { background-attachment: scroll; }
  .vendor-grid { grid-template-columns: repeat(3, 1fr); }
}

/* Tablet */
@media (max-width: 1024px) {
  .nav-left, .nav-right { display: none; }
  .nav-toggle { display: block; }
  .nav-logo { margin: 0 auto; flex-basis: auto; }
  .nav-logo img { width: auto; height: 70px; position: relative; }
  .welcome-grid { grid-template-columns: 1fr; gap: 30px; }
  .gallery-slide { flex: 0 0 calc(50% - 10px); }
  .gallery-track { padding: 0 40px; }
  .contact-grid { grid-template-columns: 1fr; gap: 30px; }
  .mobile-footer-bar { display: flex; bottom: 0; }
  .floating-widgets { bottom: 70px; }
  .newsletter-heading { font-size: 2rem; }
  .vendor-grid { grid-template-columns: repeat(2, 1fr); }
  .events-grid { grid-template-columns: repeat(2, 1fr); }
  .news-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-banner { min-height: 220px; }
}

@media (max-width: 991px) {
  .newsletter-map-grid { grid-template-columns: 1fr; }
  .contact-newsletter { padding: 30px; text-align: center; }
  .newsletter-heading { text-align: center; }
  .nl-subtitle { text-align: center; }
  .nl-input-wrap input { text-align: center; }
}

/* Mobile */
@media (max-width: 768px) {
  .section-welcome, .section-gallery { padding: 50px 0; }
  .gallery-slide { flex: 0 0 calc(100%); }
  .gallery-track { padding: 0 20px; gap: 10px; }
  .section-beach { min-height: 500px; }
  .beach-card { padding: 40px 30px; }
  .review-prev { left: -30px; }
  .review-next { right: -30px; }
  .newsletter-row { flex-direction: column; gap: 16px; }
  .newsletter-row .btn { width: 100%; }
  .contact-grid { grid-template-columns: 1fr; text-align: center; }
  .contact-social { justify-content: center; }
  .contact-col p { text-align: center; }
  .contact-col address p { text-align: center; }
  .reviews-source { font-size: 1.2em; }
  .section-contact .container { padding-bottom: 20px; }
  .site-footer { padding-bottom: 80px; }

  /* Subpage grids */
  .vendor-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .events-grid { grid-template-columns: 1fr; }
  .news-grid { grid-template-columns: 1fr; }

  /* Hero banner */
  .hero-banner { min-height: 200px; }
  .hero-banner .hero-banner-content { padding: 100px 20px 30px; }
  .hero-banner h1 { font-size: clamp(2rem, 8vw, 3rem); }

  /* Forms */
  .form-row { grid-template-columns: 1fr; }
  .modal-radio-group {
    gap: 6px;
  }

  /* Modals full width on mobile */
  .modal-content {
    max-width: 100%;
    max-height: 100vh;
    border-radius: 0;
  }
  .modal-overlay {
    padding: 0;
  }
  .modal-form .form-row {
    flex-direction: column;
    gap: 0;
  }
}

@media (max-width: 480px) {
  .vendor-grid { grid-template-columns: 1fr; }
  .vendor-card-body { padding: 14px; }
  .container { width: 94%; }
}

@media (max-width: 320px) {
  .mobile-footer-bar a { font-size: 12px; }
}
