/* Vibez365 -- brand palette pulled directly from the logo file */
:root {
  --navy: #090e22;
  --navy-soft: #16203f;
  --crimson: #b01246;
  --crimson-soft: #d41a58;
  --white: #ffffff;
  --offwhite: #f7f6f3;
  --slate: #5b6178;
  --line: #e7e5e0;
  --radius: 2px;
}

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

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--navy);
  background: var(--white);
  line-height: 1.6;
}

h1, h2, h3, .display {
  font-family: 'Space Grotesk', 'Inter', sans-serif;
  font-weight: 700;
  letter-spacing: -0.02em;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

/* Never let a stray wide element create a horizontal scrollbar on phones. */
html { -webkit-text-size-adjust: 100%; }
html, body { overflow-x: hidden; max-width: 100%; }
img, video, iframe, table { max-width: 100%; }

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

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: var(--white);
  border-bottom: 1px solid var(--line);
}
.site-header .wrap {
  display: flex; align-items: center; justify-content: space-between;
  height: 88px;
}
.brand { display: flex; align-items: center; gap: 10px; }
.brand img { height: 38px; width: auto; object-fit: contain; }
.nav-links { display: flex; align-items: center; gap: 30px; }
.nav-links a {
  font-size: 14px; font-weight: 600; color: var(--navy);
  position: relative; padding: 4px 0;
}
.nav-links a::after {
  content: ''; position: absolute; left: 0; bottom: 0; height: 2px; width: 0;
  background: var(--crimson); transition: width .2s ease;
}
.nav-links a:hover::after { width: 100%; }
.nav-pricing { color: var(--crimson) !important; }
.nav-links a.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--crimson) 0%, var(--crimson-soft) 100%);
  color: var(--white) !important;
  padding: 10px 24px;
  font-size: 13.5px;
  font-weight: 700;
  border-radius: 4px;
  border: 1px solid transparent;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  line-height: 1;
  box-shadow: 0 4px 10px rgba(176, 18, 70, 0.2);
}
.nav-links a.nav-cta:hover {
  background: var(--navy);
  color: var(--white) !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 14px rgba(9, 14, 34, 0.25);
}
.nav-links a.nav-cta:active {
  transform: translateY(0);
  box-shadow: 0 2px 6px rgba(9, 14, 34, 0.15);
}
.nav-links a.nav-cta::after {
  display: none !important;
}

.nav-toggle {
  display: none; flex-direction: column; justify-content: center; gap: 5px;
  width: 40px; height: 40px; background: none; border: none; cursor: pointer;
  padding: 0;
}
.nav-toggle span {
  display: block; height: 2px; width: 26px; background: var(--navy);
  transition: transform .2s ease, opacity .2s ease;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Simple page banner (used on sub-pages, not the homepage slider) ---------- */
.hero {
  position: relative; overflow: hidden;
  background: var(--navy); color: var(--white);
  padding: 100px 0 120px;
}
.hero::before {
  content: '';
  position: absolute; top: 0; right: -10%; bottom: 0; width: 55%;
  background: var(--crimson);
  clip-path: polygon(38% 0, 100% 0, 62% 100%, 0% 100%);
  opacity: 0.94;
}
.hero .wrap { position: relative; z-index: 2; max-width: 620px; }
.hero .eyebrow {
  font-size: 13px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
  color: rgba(255,255,255,0.65); margin-bottom: 18px; display: block;
}
.hero h1 { font-size: clamp(27px, 6vw, 38px); line-height: 1.1; margin-bottom: 22px; color: white; }
.hero p { font-size: 17px; color: rgba(255,255,255,0.78); max-width: 480px; margin-bottom: 32px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* ---------- Hero slider (homepage only) ---------- */
.hero-slider {
  position: relative; overflow: hidden; min-height: 580px; background: var(--navy);
}
.hero-slide {
  position: absolute; inset: 0; opacity: 0; visibility: hidden;
  transition: opacity 1.2s cubic-bezier(0.4, 0, 0.2, 1), visibility 1.2s;
  display: flex; align-items: center;
  z-index: 1;
}
.hero-slide.active {
  opacity: 1; visibility: visible;
  z-index: 2;
}

/* Background image container with zoom effect */
.hero-slide::before {
  content: ''; position: absolute; inset: 0;
  background-image: var(--bg-img);
  background-size: cover; background-position: center;
  z-index: 1;
  transition: transform 12s cubic-bezier(0.1, 0.8, 0.3, 1);
  transform: scale(1.02);
}
.hero-slide.active::before {
  transform: scale(1.12);
}

/* Linear overlay for contrast */
.hero-slide::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(100deg, rgba(9,14,34,0.92) 25%, rgba(176,18,70,0.45) 100%);
  z-index: 2;
}

.hero-slide .wrap {
  position: relative; z-index: 3; max-width: 620px; color: white;
}

/* Content items slide-up cascading entries */
.hero-slide .eyebrow,
.hero-slide h1,
.hero-slide p,
.hero-slide .btn {
  opacity: 0;
  transform: translateY(24px);
  transition: transform 0.85s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.85s ease;
}
.hero-slide .eyebrow {
  display: block;
  font-size: 13.5px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 16px;
}
.hero-slide h1 {
  font-size: clamp(26px, 7vw, 48px);
  line-height: 1.12;
  margin-bottom: 22px;
  color: var(--white);
}
.hero-slide p {
  font-size: 17px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.82);
  margin-bottom: 34px;
  max-width: 520px;
}
.hero-slide.active .eyebrow {
  opacity: 1; transform: translateY(0); transition-delay: 0.2s;
}
.hero-slide.active h1 {
  opacity: 1; transform: translateY(0); transition-delay: 0.4s;
}
.hero-slide.active p {
  opacity: 1; transform: translateY(0); transition-delay: 0.6s;
}
.hero-slide.active .btn {
  opacity: 1; transform: translateY(0); transition-delay: 0.8s;
}


.hero-dots {
  position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%); z-index: 3;
  display: flex; gap: 10px;
}
.hero-dot {
  width: 9px; height: 9px; border-radius: 50%; background: rgba(255,255,255,0.35);
  border: none; cursor: pointer; padding: 0; transition: background .2s ease, transform .2s ease;
}
.hero-dot.active { background: var(--crimson); transform: scale(1.3); }
.hero-arrow {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 3;
  width: 44px; height: 44px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.35);
  background: rgba(9,14,34,0.4); color: white; font-size: 18px; cursor: pointer;
  display: flex; align-items: center; justify-content: center; transition: background .2s ease;
}
.hero-arrow:hover { background: rgba(176,18,70,0.7); }
.hero-arrow.prev { left: 22px; }
.hero-arrow.next { right: 22px; }

/* ---------- Scroll-reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in-view { opacity: 1; transform: translateY(0); }
.reveal-1 { transition-delay: .05s; } .reveal-2 { transition-delay: .15s; }
.reveal-3 { transition-delay: .25s; } .reveal-4 { transition-delay: .35s; }

/* ---------- Magazine blog layout ---------- */
.magazine-grid { display: grid; grid-template-columns: 1.35fr 1fr; gap: 28px; align-items: stretch; }
.feature-story {
  position: relative; overflow: hidden; min-height: 420px; display: flex; align-items: flex-end;
  background-size: cover; background-position: center; color: white;
}
.feature-story::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(9,14,34,0.92) 10%, rgba(9,14,34,0.05) 65%);
}
.feature-story .story-body { position: relative; z-index: 2; padding: 32px; }
.feature-story .tag {
  display: inline-block; background: var(--crimson); color: white; font-size: 11px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.06em; padding: 4px 10px; margin-bottom: 12px;
}
.feature-story h2 { font-size: 27px; margin-bottom: 10px; color: white; }
.feature-story p { color: rgba(255,255,255,0.82); font-size: 14px; max-width: 480px; }

.story-list { display: flex; flex-direction: column; gap: 18px; }
.story-list-item {
  display: flex; gap: 14px; align-items: center; padding-bottom: 18px; border-bottom: 1px solid var(--line);
  transition: transform .2s ease;
}
.story-list-item:last-child { border-bottom: none; }
.story-list-item:hover { transform: translateX(4px); }
.story-list-item img { width: 84px; height: 84px; object-fit: cover; flex-shrink: 0; }
.story-list-item .tag {
  font-size: 10.5px; font-weight: 700; color: var(--crimson); text-transform: uppercase; letter-spacing: 0.05em;
}
.story-list-item h3 { font-size: 14.5px; margin: 4px 0 2px; line-height: 1.3; }
.story-list-item .author { font-size: 12px; color: var(--slate); }

/* ---------- Carousels (sponsors / reviews) ---------- */
.carousel-head { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 24px; }
.carousel-controls { display: flex; gap: 8px; }
.carousel-btn {
  width: 38px; height: 38px; border: 1px solid var(--line); background: white; cursor: pointer;
  display: flex; align-items: center; justify-content: center; font-size: 16px; color: var(--navy);
  transition: background .2s ease, color .2s ease;
}
.carousel-btn:hover { background: var(--navy); color: white; }
.carousel-track {
  display: flex; gap: 20px; overflow-x: auto; scroll-snap-type: x mandatory; padding-bottom: 6px;
  scrollbar-width: none;
}
.carousel-track::-webkit-scrollbar { display: none; }
.carousel-track > * { scroll-snap-align: start; flex: 0 0 280px; }

/* ---------- Brand marquee (continuous right-to-left scroll) ---------- */
.brand-marquee { overflow: hidden; position: relative; -webkit-mask-image: linear-gradient(90deg, transparent, black 8%, black 92%, transparent); mask-image: linear-gradient(90deg, transparent, black 8%, black 92%, transparent); }
.brand-track {
  display: flex; gap: 50px; width: max-content; align-items: center;
  animation: brand-scroll 26s linear infinite;
}
.brand-marquee:hover .brand-track { animation-play-state: paused; }
@keyframes brand-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.brand-chip {
  padding: 16px 26px; border: 1px solid var(--line); font-weight: 700; font-size: 14px;
  color: var(--slate); font-family: 'Space Grotesk', sans-serif; white-space: nowrap;
  transition: color .2s ease, border-color .2s ease, transform .2s ease;
}
.brand-chip:hover { color: var(--navy); border-color: var(--navy); transform: translateY(-2px); }

/* ---------- Hover lift for cards ---------- */
.sponsor-card, .review-card, .blog-card, .video-card, .event-row {
  transition: transform .25s ease, box-shadow .25s ease;
}
.sponsor-card:hover, .review-card:hover, .blog-card:hover, .event-row:hover {
  transform: translateY(-4px); box-shadow: 0 14px 30px rgba(9,14,34,0.08);
}
.video-card:hover { transform: translateY(-4px); }
.btn {
  display: inline-block;
  padding: 14px 28px;
  font-size: 14.5px;
  font-weight: 700;
  border-radius: 4px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.btn:hover {
  transform: translateY(-2px);
}
.btn:active {
  transform: translateY(0);
}
.btn-primary {
  background: var(--white);
  color: var(--navy);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}
.btn-primary:hover {
  background: var(--offwhite);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.18);
  color: var(--navy);
}
.btn-ghost {
  border-color: rgba(255,255,255,0.4);
  color: var(--white);
}
.btn-ghost:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}
.btn-dark {
  background: var(--navy);
  color: var(--white);
  box-shadow: 0 4px 10px rgba(9, 14, 34, 0.15);
}
.btn-dark:hover {
  background: var(--navy-soft);
  box-shadow: 0 6px 16px rgba(9, 14, 34, 0.25);
}

/* ---------- Section shell ---------- */
section.block { padding: 90px 0; }
.block-alt { background: var(--offwhite); }
.section-head { max-width: 640px; margin-bottom: 48px; }
.section-head .eyebrow {
  font-size: 13px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--crimson); display: block; margin-bottom: 10px;
}
.section-head h2 { font-size: 32px; margin-bottom: 14px; }
.section-head p { color: var(--slate); font-size: 15.5px; }

/* ---------- Package cards ---------- */
.pkg-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 22px;
}
.pkg-card {
  border: 1px solid var(--line); border-radius: var(--radius); padding: 28px 26px;
  background: var(--white); display: flex; flex-direction: column;
  transition: border-color .2s ease, transform .2s ease;
}
.pkg-card:hover { border-color: var(--crimson); transform: translateY(-3px); }
.pkg-card .pkg-name { font-size: 16px; font-weight: 700; margin-bottom: 6px; }
.pkg-card .pkg-price { font-size: 30px; font-weight: 700; color: var(--navy); font-family: 'Space Grotesk', sans-serif; }
.pkg-card .pkg-billing { font-size: 12.5px; color: var(--slate); margin-bottom: 14px; display: block; }
.pkg-card .pkg-desc { font-size: 13.5px; color: var(--slate); flex: 1; margin-bottom: 20px; }
.pkg-card .pkg-cta {
  text-align: center; padding: 11px; border: 1px solid var(--navy); font-size: 13px; font-weight: 700;
  border-radius: var(--radius);
}
.pkg-card .pkg-cta:hover { background: var(--navy); color: var(--white); }
.pkg-card.featured { border-color: var(--crimson); border-width: 2px; position: relative; }
.pkg-card.featured::before {
  content: 'MOST BOOKED'; position: absolute; top: -11px; left: 24px;
  background: var(--crimson); color: white; font-size: 10px; font-weight: 700;
  padding: 4px 10px; letter-spacing: 0.05em; border-radius: var(--radius);
}

/* ---------- Journey strip ---------- */
.journey {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}
.journey-step {
  padding: 36px 30px;
  border: 1px solid var(--line);
  border-top: 4px solid var(--crimson);
  border-radius: var(--radius);
  background: var(--white);
  transition: all 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  overflow: hidden; /* Hide blurred pseudo-element edges */
}
.journey-step::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: var(--bg-img);
  background-size: cover;
  background-position: center;
  filter: blur(12px) brightness(0.98);
  opacity: 0.08;
  transition: opacity 0.4s ease, transform 0.4s ease, filter 0.4s ease;
  z-index: 1;
}
.journey-step:hover::before {
  opacity: 0.16;
  transform: scale(1.12);
  filter: blur(8px) brightness(0.95);
}
.journey-step:hover {
  transform: translateY(-8px);
  border-top-color: var(--navy);
  box-shadow: 0 16px 36px rgba(9, 14, 34, 0.12);
}
.journey-step .num {
  font-size: 36px;
  font-weight: 700;
  color: rgba(176, 18, 70, 0.12);
  font-family: 'Space Grotesk', sans-serif;
  position: absolute;
  top: 20px;
  right: 24px;
  transition: color 0.3s ease;
  z-index: 2;
}
.journey-step:hover .num {
  color: var(--crimson);
}
.journey-step h3 {
  font-size: 19px;
  margin: 0 0 12px;
  padding-right: 36px;
  font-family: 'Space Grotesk', sans-serif;
  color: var(--navy);
  position: relative;
  z-index: 2;
}
.journey-step p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--slate);
  flex-grow: 1;
  position: relative;
  z-index: 2;
}
.journey-link {
  display: inline-block;
  margin-top: 20px;
  font-size: 13px;
  font-weight: 700;
  color: var(--crimson);
  transition: color 0.3s ease, transform 0.3s ease;
}
.journey-step:hover .journey-link {
  color: var(--navy);
  transform: translateX(6px);
}


/* ---------- Blog ---------- */
.blog-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }
.blog-card { border: 1px solid var(--line); padding: 26px; border-radius: var(--radius); overflow: hidden; }
.blog-card-img {
  height: 190px; margin: -26px -26px 18px; overflow: hidden; background: var(--navy);
}
.blog-card-img img { width: 100%; height: 100%; object-fit: cover; object-position: center; display: block; }
.blog-card .tag {
  font-size: 11px; font-weight: 700; color: var(--crimson); text-transform: uppercase; letter-spacing: 0.06em;
}
.blog-card h3 { font-size: 17px; margin: 10px 0 8px; }
.blog-card p { font-size: 13.5px; color: var(--slate); }
.blog-card .author { margin-top: 14px; font-size: 12.5px; color: var(--slate); font-weight: 600; }

/* ---------- Footer ---------- */
footer { background: var(--navy); color: rgba(255,255,255,0.75); padding: 60px 0 30px; }
footer .foot-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 40px;
}
footer h4 { color: white; font-size: 13px; letter-spacing: 0.05em; text-transform: uppercase; margin-bottom: 16px; }
footer a { display: block; font-size: 13.5px; margin-bottom: 10px; color: rgba(255,255,255,0.75); }
footer a:hover { color: white; }
footer .foot-socials {
  display: flex; gap: 10px; margin-top: 16px; flex-wrap: wrap;
}
footer .foot-socials a {
  display: inline-flex; align-items: center; justify-content: center;
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,0.08); color: rgba(255,255,255,0.75);
  margin-bottom: 0; transition: all 0.3s ease;
}
footer .foot-socials a:hover {
  background: var(--crimson); color: white; transform: translateY(-2px);
}
footer .foot-bottom {
  border-top: 1px solid rgba(255,255,255,0.12); padding-top: 24px; font-size: 12.5px;
  color: rgba(255,255,255,0.5); display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px;
}

/* ---------- Admin bar (edit affordance for logged-in admins) ---------- */
.admin-bar {
  background: var(--crimson); color: white; font-size: 12.5px; font-weight: 600;
  text-align: center; padding: 8px;
}
.admin-bar a { text-decoration: underline; }

/* ---------- Sponsor spotlight (active Promotion subscribers) ---------- */
.sponsor-strip {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 18px;
}
.sponsor-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  display: flex;
  flex-direction: column;
  padding: 0;
  overflow: visible; /* Needed for absolute floating logo overflow */
  position: relative;
  height: 100%;
  transition: all 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
  text-decoration: none;
  color: inherit;
}
.sponsor-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 36px rgba(9, 14, 34, 0.12);
  border-color: var(--crimson);
}
.sponsor-cover {
  height: 130px;
  background-size: cover;
  background-position: center;
  position: relative;
  z-index: 1;
  transition: filter 0.3s ease;
}
.sponsor-card:hover .sponsor-cover {
  filter: brightness(0.92);
}
.sponsor-avatar {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--navy);
  border: 3px solid var(--white);
  box-shadow: 0 4px 12px rgba(9, 14, 34, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 100px;
  left: 20px;
  z-index: 3;
  overflow: hidden;
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.sponsor-card:hover .sponsor-avatar {
  transform: scale(1.08);
}
.sponsor-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.sponsor-avatar span {
  font-weight: 700;
  font-size: 16px;
  font-family: 'Space Grotesk', sans-serif;
  color: var(--white);
}
.sponsor-body {
  padding: 36px 22px 22px; /* 36px top padding to clear floating avatar */
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex-grow: 1;
  gap: 12px;
  position: relative;
  z-index: 2;
}
.sponsor-card h4 {
  font-size: 16.5px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 2px;
  font-family: 'Space Grotesk', sans-serif;
}
.sponsor-card p {
  font-size: 13.5px;
  color: var(--slate);
  line-height: 1.5;
  margin-bottom: 8px;
  flex-grow: 1;
}
.sponsor-badge {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--crimson);
  text-transform: uppercase;
  margin-bottom: 4px;
}

/* ---------- Sponsor grid ---------- */
.sponsor-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

/* ---------- Brands marquee ticker ---------- */
.brand-marquee {
  width: 100%;
  overflow: hidden;
  position: relative;
  padding: 24px 0;
  display: flex;
  align-items: center;
  background: var(--white);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.brand-track {
  display: flex;
  width: max-content;
  gap: 75px;
  align-items: center;
  animation: scrollMarquee 32s linear infinite;
}
.brand-marquee:hover .brand-track {
  animation-play-state: paused;
}
.brand-item {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  text-decoration: none;
}
.brand-item img {
  height: 56px;
  max-width: 170px;
  object-fit: contain;
  transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.brand-item:hover img {
  transform: scale(1.08);
}
@keyframes scrollMarquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* ---------- Video grid ---------- */
.video-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 22px; align-items: start; }
.video-card iframe { width: 100%; aspect-ratio: 16/9; border: none; display: block; }
/* Vertical (9:16) videos such as Facebook reels — full-height player, nothing cut off */
.video-card-vertical { max-width: 320px; width: 100%; margin: 0 auto; }
.video-card-vertical iframe { aspect-ratio: 9/16; }
.video-card h3 { font-size: 15px; padding: 14px 4px 4px; }
.video-card p { font-size: 13px; color: var(--slate); padding: 0 4px; }

/* ---------- Review showcase ---------- */
.review-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 22px; }
.review-card { border: 1px solid var(--line); padding: 24px; background: var(--white); }
.review-stars { color: var(--crimson); font-size: 14px; margin-bottom: 10px; letter-spacing: 2px; }
.review-card p.excerpt { font-size: 14px; color: var(--navy); margin-bottom: 14px; font-style: italic; }
.review-card .who { font-size: 12.5px; color: var(--slate); font-weight: 600; }

/* ---------- Upcoming events strip ---------- */
.event-row {
  border: 1px solid var(--line); padding: 22px; margin-bottom: 16px;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 14px; align-items: center;
}

/* ---------- Responsive ---------- */
@media (max-width: 860px) {
  .brand img { height: 32px; }
  .nav-toggle { display: flex; }
  .nav-links {
    display: flex; flex-direction: column; align-items: flex-start; gap: 4px;
    position: absolute; top: 88px; left: 0; right: 0;
    background: var(--white); border-bottom: 1px solid var(--line);
    max-height: 0; overflow: hidden; padding: 0 24px;
    transition: max-height .25s ease, padding .25s ease;
  }
  .nav-links.open { max-height: 420px; padding: 14px 24px 22px; }
  .nav-links a { width: 100%; padding: 10px 0; }
  .nav-cta { margin-top: 6px; text-align: center; }
  .hero h1 { font-size: 32px; }
  .hero::before { clip-path: polygon(0 62%, 100% 30%, 100% 100%, 0 100%); opacity: 0.25; }
  footer .foot-grid { grid-template-columns: 1fr 1fr; }
  .brand-strip { justify-content: center; }
  .hero-slider { min-height: 460px; }
  .hero-slide h1 { font-size: 32px; }
  .hero-arrow { width: 36px; height: 36px; font-size: 15px; }
  .magazine-grid { grid-template-columns: 1fr; }
  .feature-story { min-height: 300px; }
}
@media (max-width: 480px) {
  .site-header .wrap { height: 72px; }
  .brand img { height: 28px; }
  .hero { padding: 60px 0 80px; }
  .hero h1 { font-size: 27px; }
  section.block { padding: 60px 0; }
  .hero-slider { min-height: 420px; }
  .hero-slide h1 { font-size: 26px; }
  .hero-arrow { display: none; }
}

/* ---------- Event Cards ---------- */
.event-card {
  border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; margin-bottom: 30px;
  display: grid; grid-template-columns: 320px 1fr; background: var(--white);
  transition: transform .25s ease, box-shadow .25s ease;
}
.event-card:hover {
  transform: translateY(-4px); box-shadow: 0 14px 30px rgba(9,14,34,0.08);
}
.event-img {
  /* contain (not cover) so full flyers/posters stay readable inside the box */
  background-size: contain; background-position: center; background-repeat: no-repeat;
  background-color: var(--navy); min-height: 220px;
}
.event-info {
  padding: 30px; display: flex; flex-direction: column; justify-content: space-between; gap: 16px;
}
@media (max-width: 768px) {
  .event-card { grid-template-columns: 1fr; }
  .event-img { min-height: 180px; }
  .event-info { padding: 20px; }
}

/* ---------- Homepage Event Grid Cards ---------- */
.event-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
@media (max-width: 991px) {
  .event-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .event-grid {
    grid-template-columns: 1fr;
  }
}
.event-grid .event-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  height: 100%;
  position: relative;
  transition: all 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
  text-decoration: none;
  color: inherit;
}
.event-grid .event-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 36px rgba(9, 14, 34, 0.12);
  border-color: var(--crimson);
}
.event-card-img {
  height: 200px;
  position: relative;
  overflow: hidden;
  background: var(--navy);
}
.event-card-img img {
  width: 100%;
  height: 100%;
  object-fit: contain; /* show the full flyer/poster inside the box */
  transition: transform 0.5s ease;
}
.event-grid .event-card:hover .event-card-img img {
  transform: scale(1.06);
}
.event-date-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--crimson);
  color: var(--white);
  padding: 6px 12px;
  border-radius: var(--radius);
  text-align: center;
  z-index: 2;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  box-shadow: 0 4px 10px rgba(176, 18, 70, 0.25);
}
.event-date-badge .month {
  display: block;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  opacity: 0.85;
}
.event-date-badge .day {
  display: block;
  font-size: 18px;
  line-height: 1.1;
}
.event-card-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex-grow: 1;
  gap: 14px;
}
.event-card-body h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.3;
  margin: 0;
}
.event-card-meta {
  font-size: 13.5px;
  color: var(--slate);
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: 10px;
}
.event-card-meta-item {
  display: flex;
  align-items: center;
  gap: 8px;
}
.event-card-meta-item svg {
  width: 14px;
  height: 14px;
  fill: var(--slate);
  flex-shrink: 0;
}
.event-card-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
  background: var(--navy);
  color: var(--white);
  font-size: 13px;
  font-weight: 700;
  border-radius: var(--radius);
  transition: background 0.2s ease;
  margin-top: 6px;
  text-align: center;
}
.event-grid .event-card:hover .event-card-btn {
  background: var(--crimson);
}

/* ---------- Video Reviews & Modal Player ---------- */
.review-card.video-review {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  transition: all 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
  position: relative;
}
.review-card.video-review:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 36px rgba(9, 14, 34, 0.1);
  border-color: var(--crimson);
}
.review-video-thumb {
  height: 180px;
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.review-video-thumb::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(9, 14, 34, 0.35);
  transition: background 0.3s ease;
}
.review-card:hover .review-video-thumb::before {
  background: rgba(9, 14, 34, 0.5);
}
.review-play-btn {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), background 0.3s ease;
}
.review-play-btn svg {
  width: 20px;
  height: 20px;
  fill: var(--crimson);
  margin-left: 2px;
  transition: fill 0.3s ease;
}
.review-card:hover .review-play-btn {
  transform: scale(1.12);
  background: var(--crimson);
}
.review-card:hover .review-play-btn svg {
  fill: var(--white);
}
.review-badge-tier {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  background: var(--crimson);
  color: var(--white);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 4px 8px;
  border-radius: 4px;
  box-shadow: 0 4px 10px rgba(176, 18, 70, 0.25);
}
.review-card-footer {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex-grow: 1;
}

/* Modal styling */
.video-modal {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.video-modal.open {
  opacity: 1;
  pointer-events: auto;
}
.video-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(9, 14, 34, 0.85);
  backdrop-filter: blur(8px);
}
.video-modal-content {
  position: relative;
  width: 90%;
  max-width: 900px;
  aspect-ratio: 16/9;
  background: var(--navy);
  z-index: 2;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.4);
  transform: scale(0.95);
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.15);
}
.video-modal.open .video-modal-content {
  transform: scale(1);
}
.video-modal-close {
  position: absolute;
  top: 14px;
  right: 18px;
  background: transparent;
  border: none;
  color: var(--white);
  font-size: 32px;
  cursor: pointer;
  z-index: 10;
  transition: color 0.2s ease;
}
.video-modal-close:hover {
  color: var(--crimson);
}
.video-modal-body {
  width: 100%;
  height: 100%;
}
.video-modal-body iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* ---------- Back to Top Button ---------- */
.back-to-top {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--crimson);
  border: none;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 999;
  box-shadow: 0 4px 12px rgba(176, 18, 70, 0.3);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.back-to-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.back-to-top:hover {
  background: var(--navy);
  box-shadow: 0 6px 16px rgba(9, 14, 34, 0.25);
  transform: translateY(-4px);
}
.back-to-top svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

/* ==========================================================================
   Mobile-first responsive utilities & fixes (added for full mobile support)
   ========================================================================== */

/* Responsive split layouts — mobile-first: single column by default,
   multi-column only on wider screens. Replaces hard-coded inline grids so
   nothing squishes on phones. */
.vz-split { display: grid; gap: 30px; align-items: start; }
@media (min-width: 769px) {
  .vz-split.cols-2-1  { grid-template-columns: 2fr 1fr; }
  .vz-split.cols-11-1 { grid-template-columns: 1.1fr 1fr; }
  .vz-split.cols-1-1  { grid-template-columns: 1fr 1fr; }
}
.vz-2col { display: grid; grid-template-columns: 1fr; gap: 14px; }
@media (min-width: 600px) { .vz-2col { grid-template-columns: 1fr 1fr; } }

/* Homepage "About Vibez365": vertically centred two-column on desktop, a tidy
   stacked layout on phones (heading → copy → stats → image → quote card). */
.about-split { align-items: start; }
@media (min-width: 769px) { .about-split { gap: 50px; align-items: center; } }
@media (max-width: 768px) {
  #aboutUsSection .about-split > div:last-child { margin-top: 4px; }
  #aboutUsSection img { width: 100%; height: auto; max-height: 340px; object-fit: cover; border-radius: 6px; }
}

/* Wide data tables (dashboard) scroll horizontally instead of overflowing. */
.vz-scroll { width: 100%; overflow-x: auto; -webkit-overflow-scrolling: touch; }

/* Floating callout that hangs off the corner on desktop — pull it back inside
   the flow on phones so it can't push the page wide. */
@media (max-width: 768px) {
  .vz-float-callout {
    position: static !important;
    max-width: 100% !important;
    margin: 16px 0 0 !important;
    inset: auto !important;
  }
}

/* Form controls: 16px minimum on phones prevents iOS Safari from zooming in
   on focus, and keeps tap targets comfortable. */
@media (max-width: 600px) {
  input, select, textarea, button { font-size: 16px !important; }
}
input, select, textarea { max-width: 100%; }

/* Footer: collapse to two columns on tablet, single column on phones, and
   stop the newsletter input from forcing horizontal overflow. */
footer .foot-newsletter input { min-width: 0; }
@media (max-width: 600px) {
  footer .foot-grid { grid-template-columns: 1fr; gap: 30px; }
  footer .foot-bottom { flex-direction: column; align-items: flex-start; }
}

/* Section padding eases in on small screens for a tighter, faster-feeling layout. */
@media (max-width: 600px) {
  .wrap { padding: 0 18px; }
  section.block { padding: 54px 0; }
  .section-head { margin-bottom: 32px; }
  .section-head h2 { font-size: 25px; }
}

/* Tap targets: give nav + buttons a comfortable minimum height on touch. */
@media (max-width: 860px) {
  .nav-links a { min-height: 44px; display: flex; align-items: center; }
  .nav-links a.nav-cta { min-height: 0; }
}

