/**
 * Greater Zion Homepage v4 — "Four W's" Stylesheet
 *
 * BEM naming: gz-[block]__[element]--[modifier]
 * Prefix prevents collision with existing theme CSS.
 *
 * @package greaterzion
 * @since   4.0.0
 */

/* ============================================================
   CUSTOM PROPERTIES (scoped to homepage)
   ============================================================ */
.homepage-v4 {
  --gz-dark-blue: #364b54;
  --gz-white: #FFFFFF;
  --gz-orange: #EB6B40;
  --gz-light-blue: #B8CDD1;
  --gz-light-gray: #D5D2D2;
  --gz-med-gray: #7B7C7F;
  --gz-black-gray: #3A3736;
  --gz-aqua: #42B5BF;
  --gz-light-orange: #FFAD47;
  --gz-brown: #772107;
  --gz-page-max: 1240px;
  --gz-section-pad: clamp(80px, 10vw, 120px);
  --gz-side-pad: clamp(20px, 4vw, 48px);
}

/* ============================================================
   RESET & BASE (scoped)
   ============================================================ */
.homepage-v4,
.homepage-v4 *,
.homepage-v4 *::before,
.homepage-v4 *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.homepage-v4 {
  font-family: 'Nunito Sans', sans-serif;
  color: var(--gz-dark-blue);
  background: var(--gz-white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* Global focus styles */
.homepage-v4 a:focus-visible,
.homepage-v4 button:focus-visible {
  outline: 3px solid var(--gz-orange);
  outline-offset: 2px;
  border-radius: 4px;
}

/* ============================================================
   INLINE ALERTS — Card-style between trip bar and content
   Styles: info (blue), warning (orange), urgent (red)
   ============================================================ */
.gz-alerts {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 24px var(--gz-side-pad) 0;
  max-width: calc(var(--gz-page-max) + var(--gz-side-pad) * 2);
  margin: 0 auto;
}
.gz-alert {
  padding: 20px 24px;
  border-radius: 12px;
  border-left: 4px solid var(--gz-dark-blue);
  display: flex;
  gap: 16px;
  align-items: flex-start;
  font-family: 'Nunito Sans', sans-serif;
  box-shadow: 0 1px 4px rgba(0,0,0,0.04);
  transition: opacity 0.4s, max-height 0.4s, padding 0.4s, margin 0.4s;
  overflow: hidden;
  max-height: 400px;
}
.gz-alert.is-dismissed {
  opacity: 0;
  max-height: 0;
  padding-top: 0;
  padding-bottom: 0;
  margin-top: 0;
  margin-bottom: 0;
  pointer-events: none;
}
.gz-alert__icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: white;
}
.gz-alert__body { flex: 1; min-width: 0; }
.gz-alert__label {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.gz-alert__text {
  font-size: 15px;
  line-height: 1.6;
  font-weight: 400;
}
.gz-alert__text a {
  text-decoration: underline;
  text-underline-offset: 2px;
}
.gz-alert__cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 12px;
  padding: 8px 18px;
  border-radius: 8px;
  color: white;
  text-decoration: none;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  transition: opacity 0.2s, transform 0.2s;
}
.gz-alert__cta:hover { opacity: 0.9; transform: translateY(-1px); }
.gz-alert__dismiss {
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  opacity: 0.35;
  transition: opacity 0.2s;
  flex-shrink: 0;
  border-radius: 6px;
  color: inherit;
}
.gz-alert__dismiss:hover { opacity: 0.7; }

/* Info (dark blue) */
.gz-alert--info {
  background: #f0f5f6;
  border-left-color: var(--gz-dark-blue);
}
.gz-alert--info .gz-alert__icon { background: var(--gz-dark-blue); }
.gz-alert--info .gz-alert__label { color: var(--gz-dark-blue); }
.gz-alert--info .gz-alert__text { color: #4a5c64; }
.gz-alert--info .gz-alert__text a { color: var(--gz-dark-blue); }
.gz-alert--info .gz-alert__cta { background: var(--gz-dark-blue); }
.gz-alert--info .gz-alert__dismiss { color: #4a5c64; }

/* Warning (orange) */
.gz-alert--warning {
  background: #fef7f0;
  border-left-color: var(--gz-orange);
}
.gz-alert--warning .gz-alert__icon { background: var(--gz-orange); }
.gz-alert--warning .gz-alert__label { color: #b84d20; }
.gz-alert--warning .gz-alert__text { color: #7a4420; }
.gz-alert--warning .gz-alert__text a { color: #b84d20; }
.gz-alert--warning .gz-alert__cta { background: var(--gz-orange); }
.gz-alert--warning .gz-alert__dismiss { color: #7a4420; }

/* Urgent (red) */
.gz-alert--urgent {
  background: #fef2f2;
  border-left-color: #b91c1c;
}
.gz-alert--urgent .gz-alert__icon { background: #b91c1c; }
.gz-alert--urgent .gz-alert__label { color: #991b1b; }
.gz-alert--urgent .gz-alert__text { color: #7f1d1d; }
.gz-alert--urgent .gz-alert__text a { color: #991b1b; }
.gz-alert--urgent .gz-alert__cta { background: #b91c1c; }
.gz-alert--urgent .gz-alert__dismiss { color: #7f1d1d; }

/* ============================================================
   NAVIGATION — Two-row layout matching live site
   ============================================================ */
.gz-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  transition: background 0.5s, box-shadow 0.5s, top 0.4s;
}
.gz-nav__inner {
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: auto auto;
  align-items: center;
  padding: 0 var(--gz-side-pad);
  gap: 0;
}
.gz-nav.is-scrolled {
  background: rgba(54, 75, 84, 0.97);
  box-shadow: 0 1px 32px rgba(0,0,0,0.2);
}
@supports (backdrop-filter: blur(10px)) or (-webkit-backdrop-filter: blur(10px)) {
  .gz-nav.is-scrolled {
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
  }
}

/* Logo — spans both rows */
.gz-nav__brand {
  grid-row: 1 / 3;
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  padding: 10px 0;
  margin-right: 40px;
}
.gz-nav__logo {
  height: 56px;
  width: auto;
}
.gz-nav__logo-text {
  font-family: 'Barlow Condensed', sans-serif;
  color: white;
  line-height: 1.05;
}
.gz-nav__logo-text small { font-size: 12px; font-weight: 600; letter-spacing: 2.5px; display: block; }
.gz-nav__logo-text strong { font-size: 28px; font-weight: 800; letter-spacing: 0.5px; }

/* Utility row — small links (Blog, Media, etc.) */
.gz-nav__utility {
  grid-column: 2;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 24px;
  padding: 8px 0 0;
}
.gz-nav__utility a {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  transition: color 0.2s;
}
.gz-nav__utility a:hover { color: rgba(255,255,255,0.9); }

/* Primary nav row — main links, large bold text */
.gz-nav__links {
  grid-column: 2;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 40px;
  padding: 4px 0 14px;
}
.gz-nav__links a {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 24px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.95);
  text-decoration: none;
  position: relative;
  padding: 4px 0;
}
.gz-nav__links a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 3px;
  background: var(--gz-orange);
  transition: width 0.3s;
}
.gz-nav__links a:hover::after { width: 100%; }
.gz-nav__links a:hover { color: white; }

/* Search toggle */
.gz-nav__search-toggle {
  background: none;
  border: none;
  color: rgba(255,255,255,0.85);
  cursor: pointer;
  padding: 10px;
  display: flex;
  align-items: center;
  transition: color 0.2s;
  border-radius: 6px;
}
.gz-nav__search-toggle:hover { color: white; }
.gz-nav__search-toggle::after { display: none; }

/* CTA button */
.gz-nav__cta {
  background: var(--gz-orange) !important;
  color: white !important;
  padding: 9px 24px !important;
  border-radius: 24px;
  letter-spacing: 1.8px !important;
  font-size: 15px !important;
  font-weight: 700 !important;
  white-space: nowrap;
  transition: transform 0.2s, box-shadow 0.2s;
}
.gz-nav__cta::after { display: none !important; }
.gz-nav__cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(235,107,64,0.4);
}
.gz-nav__mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 12px;
  position: relative;
  z-index: 100;
}
.gz-nav__mobile-toggle span {
  display: block;
  width: 24px; height: 2px;
  background: white;
  margin: 5px 0;
  transition: transform 0.3s, opacity 0.3s;
}
/* Hamburger → X animation */
.gz-nav__mobile-toggle.is-active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.gz-nav__mobile-toggle.is-active span:nth-child(2) { opacity: 0; }
.gz-nav__mobile-toggle.is-active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu open state */
.gz-nav__links.is-open {
  display: flex !important;
  flex-direction: column;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(54, 75, 84, 0.98);
  backdrop-filter: blur(20px);
  z-index: 99;
  justify-content: center;
  align-items: center;
  gap: 24px;
  padding: 80px 32px;
}
.gz-nav__links.is-open a,
.gz-nav__links.is-open .menu-item a {
  font-size: 22px !important;
  letter-spacing: 2px !important;
  color: white !important;
  display: block !important;
}
.gz-nav__links.is-open a::after,
.gz-nav__links.is-open .menu-item a::after { display: none; }
.gz-nav__links.is-open .gz-nav__search-toggle { display: none; }
.gz-nav__links.is-open .gz-nav__cta {
  margin-top: 16px;
  padding: 14px 32px !important;
  font-size: 16px !important;
}

/* Utility links in mobile overlay */
.gz-nav__utility.is-open {
  display: flex !important;
  position: fixed;
  bottom: 60px; left: 0; right: 0;
  justify-content: center;
  gap: 24px;
  z-index: 99;
  padding: 0 32px;
}
.gz-nav__utility.is-open a {
  font-size: 13px !important;
  color: rgba(255,255,255,0.5) !important;
  letter-spacing: 1.5px;
}

/* ============================================================
   HERO
   ============================================================ */
.gz-hero {
  position: relative;
  height: 100vh;
  height: 100svh;
  min-height: 640px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.gz-hero__media {
  position: absolute;
  inset: 0;
}
.gz-hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.gz-hero__video-placeholder {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 150% 100% at 30% 70%, rgba(139,69,19,0.5), transparent 60%),
    radial-gradient(ellipse 100% 80% at 80% 30%, rgba(205,133,63,0.3), transparent 50%),
    linear-gradient(160deg, #5a3a20 0%, #8b5e3c 30%, #a0522d 50%, #cd853f 70%, #7a4420 100%);
  animation: gzDrift 25s ease-in-out infinite alternate;
}
@keyframes gzDrift {
  from { transform: scale(1.02); }
  to { transform: scale(1.08) translate(-1%, -0.5%); }
}
.gz-hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(54,75,84,0.45) 0%, rgba(54,75,84,0.25) 20%, rgba(54,75,84,0.35) 45%, rgba(54,75,84,0.7) 70%, rgba(54,75,84,0.95) 100%);
  pointer-events: none;
}
.gz-hero__content {
  position: relative;
  z-index: 3;
  text-align: center;
  padding: 0 var(--gz-side-pad);
  max-width: 800px;
  margin-top: 4vh;
  text-shadow: 0 2px 20px rgba(0,0,0,0.35);
}
.gz-hero__eyebrow {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: clamp(16px, 2vw, 20px);
  color: white;
  letter-spacing: 5px;
  text-transform: uppercase;
  margin-bottom: 16px;
  text-shadow: 0 2px 12px rgba(0,0,0,0.5);
}
.gz-hero__h1 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: clamp(48px, 8vw, 88px);
  text-transform: uppercase;
  color: white;
  line-height: 0.92;
  letter-spacing: -1px;
  margin-bottom: 4px;
  text-shadow: 0 3px 24px rgba(0,0,0,0.4);
}
.gz-hero__h1-line1 {
  display: block;
}
.gz-hero__emotion {
  color: var(--gz-aqua);
  display: block;
  transition: opacity 0.5s, transform 0.3s;
}
.gz-hero__h1-line2 {
  display: block;
  margin-bottom: 24px;
}
.gz-hero__scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  text-align: center;
  animation: gzPulse 2.5s ease-in-out infinite;
}
.gz-hero__scroll span {
  display: block;
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 8px;
}
.gz-hero__scroll-line {
  width: 1px; height: 36px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.4), transparent);
  margin: 0 auto;
}
@keyframes gzPulse {
  0%, 100% { opacity: 0.6; transform: translateX(-50%) translateY(0); }
  50% { opacity: 1; transform: translateX(-50%) translateY(-6px); }
}

/* Hero — Campaign logo animation (plays below headline, over background video) */
.gz-hero__campaign-logo {
  margin-top: 28px;
  display: flex;
  justify-content: center;
  position: relative;
  z-index: 3;
}
.gz-hero__campaign-video {
  width: clamp(280px, 50vw, 520px);
  height: auto;
  border-radius: 8px;
  filter: drop-shadow(0 4px 24px rgba(0,0,0,0.3));
}

/*
 * Blend-mode fallback: applied only when MOV is the sole source.
 * Safari plays MOV alpha natively, but Chrome/Firefox see black bg.
 * mix-blend-mode: screen makes black → transparent, white → visible.
 * This is imperfect (semi-transparent areas lose detail) but works
 * well enough for bold white-on-black graphics like "No Greater Feeling."
 */
.gz-hero__campaign-logo--blend .gz-hero__campaign-video {
  mix-blend-mode: screen;
}

/* ============================================================
   TRIP PLANNING BAR
   ============================================================ */
.gz-trip-bar {
  position: relative;
  z-index: 10;
  margin-top: -36px;
  padding: 0 var(--gz-side-pad);
}
.gz-trip-bar__inner {
  max-width: var(--gz-page-max);
  margin: 0 auto;
  background: white;
  border-radius: 16px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.12), 0 1px 3px rgba(0,0,0,0.06);
  padding: 20px 28px;
  display: flex;
  align-items: center;
  gap: 24px;
}
.gz-trip-bar__label {
  font-family: 'Nunito Sans', sans-serif;
  font-size: 15px;
  color: var(--gz-med-gray);
  font-weight: 600;
  white-space: nowrap;
  flex-shrink: 0;
}
.gz-trip-bar__actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  flex: 1;
}
.gz-trip-bar__action {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: 28px;
  background: #f3f1ef;
  color: var(--gz-dark-blue);
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.2s, color 0.2s, transform 0.2s;
  white-space: nowrap;
}
.gz-trip-bar__action svg { color: var(--gz-med-gray); transition: color 0.2s; flex-shrink: 0; }
.gz-trip-bar__action:hover { background: var(--gz-dark-blue); color: white; transform: translateY(-1px); }
.gz-trip-bar__action:hover svg { color: var(--gz-orange); }
.gz-trip-bar__action--cta {
  background: var(--gz-orange);
  color: white;
  margin-left: auto;
}
.gz-trip-bar__action--cta svg { color: rgba(255,255,255,0.8); }
.gz-trip-bar__action--cta:hover {
  background: #d45a30;
  color: white;
  box-shadow: 0 4px 16px rgba(235,107,64,0.35);
}
.gz-trip-bar__action--cta:hover svg { color: white; }

/* ============================================================
   SHARED SECTION STYLES
   ============================================================ */
.gz-section-eyebrow {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gz-orange);
  margin-bottom: 12px;
}
.gz-section-heading {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: clamp(32px, 4.5vw, 52px);
  text-transform: uppercase;
  color: var(--gz-dark-blue);
  line-height: 0.95;
  letter-spacing: -0.5px;
  letter-spacing: -0.5px;
  margin-bottom: 14px;
}
.gz-view-all-link {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gz-orange);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
  transition: gap 0.3s;
}
.gz-view-all-link:hover { gap: 12px; }

/* ============================================================
   ORIENTATION
   ============================================================ */
.gz-orientation {
  padding: var(--gz-section-pad) var(--gz-side-pad);
  background: white;
}
.gz-orientation__inner {
  max-width: var(--gz-page-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
}
.gz-orientation__text h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: clamp(30px, 3.5vw, 44px);
  text-transform: uppercase;
  color: var(--gz-dark-blue);
  line-height: 0.95;
  margin-bottom: 18px;
}
.gz-orientation__text p {
  font-size: 17px;
  line-height: 1.7;
  color: var(--gz-black-gray);
  margin-bottom: 12px;
}
.gz-orientation__text a {
  color: var(--gz-orange);
  text-decoration: underline;
  text-underline-offset: 3px;
  font-weight: 600;
  transition: color 0.3s;
}
.gz-orientation__text a:hover { color: var(--gz-brown); }
.gz-orientation__first-timer {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 16px;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gz-orange);
  text-decoration: none;
  padding: 10px 0;
  transition: gap 0.3s;
}
.gz-orientation__first-timer:hover { gap: 12px; }
.gz-orientation__map {
  position: relative;
  background: #f0eeec;
  border-radius: 16px;
  aspect-ratio: 4/3;
}
.gz-orientation__map img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
}
.gz-orientation__map svg {
  width: 100%;
  height: 100%;
  border-radius: 16px;
}

/* ============================================================
   FOUR W's TILES
   ============================================================ */
.gz-fourws {
  padding: var(--gz-section-pad) var(--gz-side-pad);
  background: #f8f7f6;
  position: relative;
}
.gz-fourws::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 60px;
  background: linear-gradient(to bottom, rgba(54,75,84,0.06), transparent);
  pointer-events: none;
}
.gz-fourws__header {
  max-width: var(--gz-page-max);
  margin: 0 auto 40px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 20px;
}
.gz-fourws__header .gz-section-heading { margin-bottom: 0; }
.gz-fourws__grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: 380px 360px;
  gap: 16px;
  max-width: var(--gz-page-max);
  margin: 0 auto;
}
.gz-fourws__tile {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  text-decoration: none;
  color: white;
}
.gz-fourws__tile:focus-visible {
  outline: 3px solid var(--gz-orange);
  outline-offset: 2px;
}
.gz-fourws__tile--span { grid-column: span 2; }
.gz-fourws__tile-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: transform 0.7s cubic-bezier(.2,.8,.3,1);
}
.gz-fourws__tile:hover .gz-fourws__tile-bg { transform: scale(1.06); }
.gz-fourws__tile-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(54,75,84,0.92) 0%, rgba(54,75,84,0.35) 50%, rgba(54,75,84,0.08) 100%);
  transition: background 0.5s;
}
.gz-fourws__tile:hover .gz-fourws__tile-overlay {
  background: linear-gradient(0deg, rgba(54,75,84,0.95) 0%, rgba(54,75,84,0.4) 55%, rgba(54,75,84,0.12) 100%);
}
.gz-fourws__tile-content {
  position: relative;
  z-index: 2;
  padding: 28px 32px;
  width: 100%;
}
.gz-fourws__tile-tagline {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--gz-orange);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 8px;
  text-shadow: 0 1px 8px rgba(0,0,0,0.5);
}
.gz-fourws__tile-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: clamp(36px, 4vw, 48px);
  text-transform: uppercase;
  color: white;
  letter-spacing: -0.5px;
  line-height: 1;
}
.gz-fourws__tile--span .gz-fourws__tile-title { font-size: clamp(42px, 5vw, 60px); }
.gz-fourws__tile-activity {
  font-family: 'Nunito Sans', sans-serif;
  font-size: 15px;
  font-weight: 400;
  color: rgba(255,255,255,0.85);
  margin-top: 8px;
  letter-spacing: 0.3px;
  line-height: 1.4;
}
.gz-fourws__tile-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 14px;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.4s 0.1s, transform 0.4s 0.1s;
}
.gz-fourws__tile:hover .gz-fourws__tile-cta { opacity: 1; transform: translateY(0); }

/* Category-specific gradient fallbacks (only used when no ACF image set) */
.gz-fourws__tile[data-category="wander"] .gz-fourws__tile-bg { background-image: linear-gradient(150deg, #7a3b1e, #c17742, #9b4f2a); }
.gz-fourws__tile[data-category="wild"] .gz-fourws__tile-bg   { background-image: linear-gradient(150deg, #4a2c17, #7d4e30, #5c3720); }
.gz-fourws__tile[data-category="water"] .gz-fourws__tile-bg  { background-image: linear-gradient(150deg, #2d4a4f, #4a7c82, #2d4a4f); }
.gz-fourws__tile[data-category="whimsy"] .gz-fourws__tile-bg { background-image: linear-gradient(150deg, #5c3347, #8a4f6a, #6b3a50); }

/* Four W's — Integrated quiz CTA */
.gz-fourws__quiz {
  max-width: var(--gz-page-max);
  margin: 32px auto 0;
}
.gz-fourws__quiz-inner {
  background: var(--gz-dark-blue);
  border-radius: 14px;
  padding: 32px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.gz-fourws__quiz-text h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: clamp(22px, 2.5vw, 30px);
  text-transform: uppercase;
  color: white;
  line-height: 1;
  margin-bottom: 6px;
}
.gz-fourws__quiz-text p {
  font-family: 'Nunito Sans', sans-serif;
  font-size: 15px;
  color: var(--gz-light-blue);
  line-height: 1.5;
  max-width: 480px;
}
.gz-fourws__quiz-btn {
  display: inline-block;
  background: var(--gz-orange);
  color: white;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 16px 36px;
  border-radius: 30px;
  text-decoration: none;
  white-space: nowrap;
  transition: transform 0.3s, box-shadow 0.3s;
  flex-shrink: 0;
}
.gz-fourws__quiz-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(235,107,64,0.35);
}

/* ============================================================
   PARKS — Featured + sidebar grid
   ============================================================ */
.gz-parks {
  padding: var(--gz-section-pad) var(--gz-side-pad);
  background: #f8f7f6;
}
.gz-parks__inner { max-width: var(--gz-page-max); margin: 0 auto; }
.gz-parks__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 40px;
}
.gz-parks__header .gz-section-heading { margin-bottom: 0; }
.gz-parks__grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 16px;
}
.gz-parks__sidebar {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
/* Park card base */
.gz-pcard {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  text-decoration: none;
  color: white;
}
.gz-pcard:focus-visible { outline: 3px solid var(--gz-orange); outline-offset: 2px; }
.gz-pcard__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: transform 0.7s cubic-bezier(.2,.8,.3,1);
}
.gz-pcard:hover .gz-pcard__bg { transform: scale(1.06); }
.gz-pcard__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(54,75,84,0.9) 0%, rgba(54,75,84,0.25) 50%, rgba(54,75,84,0.05) 100%);
}
.gz-pcard__content {
  position: relative;
  z-index: 2;
  padding: 28px;
  width: 100%;
}
.gz-pcard__badge {
  display: inline-block;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gz-orange);
  margin-bottom: 8px;
}
.gz-pcard__title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  text-transform: uppercase;
  color: white;
  line-height: 1.05;
}
.gz-pcard__desc {
  font-family: 'Nunito Sans', sans-serif;
  font-size: 15px;
  color: rgba(255,255,255,0.85);
  margin-top: 8px;
  line-height: 1.5;
}
/* Featured (Zion NP) — tall card */
.gz-pcard--featured {
  min-height: 420px;
}
.gz-pcard--featured .gz-pcard__title {
  font-size: clamp(32px, 3.5vw, 44px);
}
/* Small sidebar cards */
.gz-pcard--small {
  min-height: 195px;
}
.gz-pcard--small .gz-pcard__title {
  font-size: 22px;
}

/* ============================================================
   STATS RIBBON
   ============================================================ */
.gz-stats-ribbon {
  padding: 48px var(--gz-side-pad);
  display: flex;
  justify-content: center;
  gap: clamp(24px, 5vw, 64px);
  flex-wrap: wrap;
  background: var(--gz-dark-blue);
}
.gz-stats-ribbon__stat { text-align: center; min-width: 120px; }
.gz-stats-ribbon__number {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: clamp(36px, 4vw, 52px);
  color: white;
  line-height: 1;
  letter-spacing: -1px;
}
.gz-stats-ribbon__accent { color: var(--gz-orange); }
.gz-stats-ribbon__label {
  font-family: 'Nunito Sans', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--gz-light-blue);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-top: 4px;
}
.gz-stats-ribbon__divider {
  width: 1px; height: 48px;
  background: rgba(255,255,255,0.15);
  align-self: center;
}

/* ============================================================
   EVENTS
   ============================================================ */
.gz-events {
  padding: var(--gz-section-pad) var(--gz-side-pad);
  background: var(--gz-dark-blue);
  position: relative;
  overflow: hidden;
}
.gz-events::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(66,181,191,0.06), transparent 70%);
  pointer-events: none;
}
.gz-events__inner {
  max-width: var(--gz-page-max);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.gz-events__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 40px;
}
.gz-events .gz-section-eyebrow { color: var(--gz-aqua); }
.gz-events .gz-section-heading { color: white; margin-bottom: 0; }
.gz-events .gz-view-all-link { color: var(--gz-light-orange); }
.gz-events__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.gz-ecard {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  overflow: hidden;
  transition: background 0.3s, transform 0.3s, border-color 0.3s;
  text-decoration: none;
  color: white;
}
.gz-ecard:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.15);
  transform: translateY(-4px);
}
.gz-ecard:focus-visible { outline: 3px solid var(--gz-orange); outline-offset: 2px; }
.gz-ecard__img { height: 200px; position: relative; overflow: hidden; }
.gz-ecard__img-inner {
  position: absolute; inset: 0;
  transition: transform 0.6s;
}
.gz-ecard:hover .gz-ecard__img-inner { transform: scale(1.06); }
.gz-ecard__date {
  position: absolute;
  top: 14px; left: 14px;
  background: var(--gz-orange);
  color: white;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  text-align: center;
  padding: 8px 12px;
  border-radius: 10px;
  line-height: 1;
}
.gz-ecard__month { font-size: 11px; letter-spacing: 1.5px; text-transform: uppercase; display: block; margin-bottom: 2px; }
.gz-ecard__day { font-size: 26px; display: block; }
.gz-ecard__body { padding: 20px; }
.gz-ecard__type {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gz-aqua);
  margin-bottom: 6px;
}
.gz-ecard__title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 24px;
  text-transform: uppercase;
  color: white;
  line-height: 1.1;
  margin-bottom: 6px;
}
.gz-ecard__meta { font-size: 14px; color: var(--gz-light-blue); line-height: 1.4; }

/* ============================================================
   DESTINATIONS
   ============================================================ */
.gz-destinations {
  padding: var(--gz-section-pad) var(--gz-side-pad);
  background: white;
}
.gz-destinations__header {
  max-width: var(--gz-page-max);
  margin: 0 auto 40px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 20px;
}
.gz-destinations__header .gz-section-heading { margin-bottom: 0; }
.gz-destinations__intro {
  max-width: var(--gz-page-max);
  margin: -20px auto 32px;
  font-family: 'Nunito Sans', sans-serif;
  font-size: 17px;
  line-height: 1.65;
  color: var(--gz-med-gray);
}
.gz-destinations__intro p { margin-bottom: 8px; }
.gz-destinations__intro p:last-child { margin-bottom: 0; }
.gz-destinations__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
  max-width: var(--gz-page-max);
  margin: 0 auto;
}
.gz-dcard {
  background: white;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(0,0,0,0.05);
  transition: transform 0.35s, box-shadow 0.35s;
  text-decoration: none;
  color: var(--gz-dark-blue);
}
.gz-dcard:hover { transform: translateY(-4px); box-shadow: 0 12px 36px rgba(0,0,0,0.1); }
.gz-dcard:focus-visible { outline: 3px solid var(--gz-orange); outline-offset: 2px; }
.gz-dcard__img { height: 210px; position: relative; overflow: hidden; }
.gz-dcard__img-inner { position: absolute; inset: 0; transition: transform 0.6s; }
.gz-dcard:hover .gz-dcard__img-inner { transform: scale(1.06); }
.gz-dcard__badge {
  position: absolute;
  top: 14px; left: 14px;
  background: rgba(54,75,84,0.8);
  backdrop-filter: blur(6px);
  color: white;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 16px;
}
.gz-dcard__body { padding: 20px 22px 22px; }
.gz-dcard__body h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 22px;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.gz-dcard__body p { font-size: 15px; color: var(--gz-med-gray); line-height: 1.55; }

/* ============================================================
   WHERE TO STAY
   ============================================================ */
.gz-stays {
  padding: var(--gz-section-pad) var(--gz-side-pad);
  background: white;
}
.gz-stays__inner { max-width: var(--gz-page-max); margin: 0 auto; }
.gz-stays__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 40px;
}
.gz-stays__header .gz-section-heading { margin-bottom: 0; }
.gz-stays__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.gz-stay-card {
  background: #f8f7f6;
  border-radius: 14px;
  padding: 28px 24px;
  text-decoration: none;
  color: var(--gz-dark-blue);
  transition: transform 0.3s, box-shadow 0.3s, background 0.3s;
  border: 1px solid rgba(0,0,0,0.04);
}
.gz-stay-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(0,0,0,0.1);
  background: white;
}
.gz-stay-card:focus-visible { outline: 3px solid var(--gz-orange); outline-offset: 2px; }
.gz-stay-card__icon {
  color: var(--gz-orange);
  margin-bottom: 16px;
}
.gz-stay-card h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 20px;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.gz-stay-card p { font-size: 15px; color: var(--gz-med-gray); line-height: 1.5; }

/* ============================================================
   STORIES
   ============================================================ */
.gz-stories {
  padding: var(--gz-section-pad) var(--gz-side-pad);
  background: #f8f7f6;
}
.gz-stories__inner { max-width: var(--gz-page-max); margin: 0 auto; }
.gz-stories__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 40px;
}
.gz-stories__header .gz-section-heading { margin-bottom: 0; }
.gz-stories__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  grid-template-rows: 450px;
  gap: 20px;
}
.gz-scard {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  text-decoration: none;
  color: white;
}
.gz-scard:focus-visible { outline: 3px solid var(--gz-orange); outline-offset: 2px; }
.gz-scard__bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: transform 0.6s;
}
.gz-scard:hover .gz-scard__bg { transform: scale(1.06); }
.gz-scard__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(58,55,54,0.92) 0%, rgba(58,55,54,0.1) 50%);
}
.gz-scard__content {
  position: relative;
  z-index: 2;
  padding: 28px;
  width: 100%;
}
.gz-scard__cat {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gz-aqua);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.gz-scard__title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 28px;
  text-transform: uppercase;
  color: white;
  line-height: 1.1;
}
.gz-scard:first-child .gz-scard__title { font-size: 34px; }

/* ============================================================
   MAP HOTSPOTS & TOOLTIPS
   ============================================================ */
.gz-map-hotspot { cursor: pointer; }
.gz-map-hotspot:hover circle:first-of-type,
.gz-map-hotspot:focus circle:first-of-type { fill: var(--gz-dark-blue); }
.gz-map-hotspot:hover text,
.gz-map-hotspot:focus text { fill: var(--gz-orange); }
.gz-map-hotspot:hover rect,
.gz-map-hotspot:focus rect { fill: rgba(66,181,191,0.22); }
.gz-map-hotspot__hit { pointer-events: all; }
.gz-map-tooltip {
  position: absolute;
  background: var(--gz-dark-blue);
  color: white;
  font-family: 'Nunito Sans', sans-serif;
  font-size: 12px;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 6px;
  white-space: nowrap;
  pointer-events: none;
  transform: translate(-50%, -100%);
  z-index: 10;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}
.gz-map-tooltip::after {
  content: '';
  position: absolute;
  top: 100%; left: 50%;
  transform: translateX(-50%);
  border: 5px solid transparent;
  border-top-color: var(--gz-dark-blue);
}

/* ============================================================
   ACCESSIBILITY — Focus states & visible outlines
   ============================================================ */
.gz-trip-bar__action:focus-visible,
.gz-nav__links a:focus-visible,
.gz-nav__utility a:focus-visible,
.gz-nav__cta:focus-visible,
.gz-nav__search-toggle:focus-visible,
.gz-nav__mobile-toggle:focus-visible,
.gz-fourws__quiz-btn:focus-visible,
.gz-alert__cta:focus-visible,
.gz-alert__dismiss:focus-visible,
.gz-view-all-link:focus-visible,
.gz-orientation__first-timer:focus-visible,
.gz-stay-card:focus-visible,
.gz-pcard:focus-visible,
.gz-ecard:focus-visible,
.gz-dcard:focus-visible,
.gz-scard:focus-visible,
.gz-fourws__tile:focus-visible {
  outline: 3px solid var(--gz-orange);
  outline-offset: 2px;
}

/* Fallback for older browsers without :focus-visible */
.gz-nav__mobile-toggle:focus,
.gz-nav__search-toggle:focus {
  outline: 2px solid var(--gz-orange);
  outline-offset: 2px;
}

/* Skip-to-content link */
.gz-skip-link {
  position: absolute;
  top: -100px; left: 16px;
  background: var(--gz-orange);
  color: white;
  padding: 12px 24px;
  border-radius: 8px;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-decoration: none;
  z-index: 200;
  transition: top 0.2s;
}
.gz-skip-link:focus {
  top: 16px;
}

/* ============================================================
   FOOTER
   ============================================================ */
.gz-footer {
  background: var(--gz-black-gray);
  padding: 64px var(--gz-side-pad) 36px;
}
.gz-footer__grid {
  max-width: var(--gz-page-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 40px;
}
.gz-footer__brand {}
.gz-footer__logo { max-height: 48px; width: auto; margin-bottom: 14px; }
.gz-footer__logo-text {
  font-family: 'Barlow Condensed', sans-serif;
  color: white;
  line-height: 1.05;
  margin-bottom: 14px;
}
.gz-footer__logo-text small { font-size: 10px; font-weight: 600; letter-spacing: 2.5px; display: block; }
.gz-footer__logo-text strong { font-size: 20px; font-weight: 800; display: block; }
.gz-footer p,
.gz-footer__brand p { font-size: 14px; color: var(--gz-med-gray); line-height: 1.6; }
.gz-footer__address { margin-top: 12px; font-size: 13px !important; color: rgba(255,255,255,0.35) !important; }
.gz-footer__col h4 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: white;
  margin-bottom: 16px;
}
.gz-footer__col a,
.gz-footer__col nav a,
.gz-footer__col .menu-item a {
  display: block;
  font-size: 14px;
  color: var(--gz-med-gray);
  text-decoration: none;
  margin-bottom: 10px;
  transition: color 0.3s;
}
.gz-footer__col a:hover,
.gz-footer__col nav a:hover { color: var(--gz-light-blue); }
.gz-footer__col a:focus-visible,
.gz-footer__social a:focus-visible { outline: 2px solid var(--gz-orange); outline-offset: 2px; }
/* Reset WP nav menu list styles */
.gz-footer__col nav ul { list-style: none; padding: 0; margin: 0; }
.gz-footer__bar {
  max-width: var(--gz-page-max);
  margin: 40px auto 0;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.06);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
.gz-footer__bar p { font-size: 12px; color: rgba(255,255,255,0.3); }
.gz-footer__social { display: flex; gap: 10px; }
.gz-footer__social a {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  display: grid; place-items: center;
  color: var(--gz-med-gray);
  text-decoration: none;
  transition: background 0.3s, color 0.3s, border-color 0.3s;
}
.gz-footer__social a:hover { background: var(--gz-orange); color: white; border-color: var(--gz-orange); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1280px) {
  .gz-nav__links { gap: 28px; }
  .gz-nav__links a { font-size: 22px; letter-spacing: 2px; }
  .gz-nav__utility { gap: 18px; }
}

@media (max-width: 1024px) {
  .gz-nav__utility { display: none; }
  .gz-nav__links { display: none; }
  .gz-nav__inner { grid-template-rows: auto; }
  .gz-nav__brand { grid-row: 1; padding: 12px 0; }
  .gz-nav__mobile-toggle { display: block; }
  .gz-fourws__grid { grid-template-columns: 1fr 1fr; grid-template-rows: 320px 320px 320px; }
  .gz-fourws__tile--span { grid-column: span 2; }
  .gz-events__grid { grid-template-columns: 1fr; }
  .gz-stories__grid { grid-template-columns: 1fr 1fr; grid-template-rows: 300px 300px; }
  .gz-scard:nth-child(3) { display: none; }
  .gz-footer__grid { grid-template-columns: 1fr 1fr; }
  .gz-orientation__inner { grid-template-columns: 1fr; }
  .gz-orientation__map { max-width: 560px; margin: 0 auto; }
  .gz-parks__grid { grid-template-columns: 1fr; }
  .gz-pcard--featured { min-height: 340px; }
  .gz-parks__sidebar { grid-template-columns: 1fr 1fr; }
  .gz-fourws__quiz-inner { flex-direction: column; text-align: center; }
  .gz-fourws__quiz-text p { margin: 0 auto; }
  .gz-stays__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .gz-alerts { padding-top: 16px; gap: 10px; }
  .gz-alert { padding: 16px 18px; gap: 12px; }
  .gz-alert__icon { width: 36px; height: 36px; border-radius: 8px; }
  .gz-alert__icon svg { width: 18px; height: 18px; }
  .gz-alert__text { font-size: 14px; }
  .gz-trip-bar__inner { flex-direction: column; gap: 12px; }
  .gz-trip-bar__label { display: none; }
  .gz-trip-bar__actions { justify-content: center; }
  .gz-trip-bar__action--cta { margin-left: 0; }
  .gz-stats-ribbon { gap: 20px; }
  .gz-stats-ribbon__divider { display: none; }
  .gz-fourws__grid { grid-template-columns: 1fr; grid-template-rows: repeat(4, 260px); }
  .gz-fourws__tile--span { grid-column: auto; }
  .gz-fourws__tile--span .gz-fourws__tile-title { font-size: 32px; }
  .gz-stories__grid { grid-template-columns: 1fr; grid-template-rows: repeat(3, 260px); }
  .gz-scard:nth-child(3) { display: flex; }
  .gz-footer__grid { grid-template-columns: 1fr; gap: 32px; }
  .gz-footer__bar { justify-content: center; text-align: center; }
  .gz-destinations__header { flex-direction: column; align-items: flex-start; gap: 12px; }
  .gz-events__header { flex-direction: column; align-items: flex-start; gap: 12px; }
  .gz-stories__header { flex-direction: column; align-items: flex-start; gap: 12px; }
  .gz-parks__header { flex-direction: column; align-items: flex-start; gap: 12px; }
  .gz-fourws__header { flex-direction: column; align-items: flex-start; gap: 12px; }
  .gz-parks__sidebar { grid-template-columns: 1fr; }
  .gz-pcard--small { min-height: 180px; }
  .gz-fourws__quiz-inner { padding: 24px; gap: 20px; }
  .gz-stays__grid { grid-template-columns: 1fr; }
  .gz-stays__header { flex-direction: column; align-items: flex-start; gap: 12px; }
}

/* ============================================================
   REDUCED MOTION
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  .homepage-v4 *,
  .homepage-v4 *::before,
  .homepage-v4 *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .gz-hero__video-placeholder { animation: none; transform: scale(1.04); }
  .gz-hero__scroll { animation: none; opacity: 0.6; }
  .homepage-v4 { scroll-behavior: auto; }
}

/* ============================================================
   ADMIN BAR OFFSET (when logged in)
   ============================================================ */
.admin-bar .gz-nav { top: 32px; }

/* ============================================================
   HIDE EXISTING THEME HEADER/FOOTER
   These rules suppress the theme's header and footer
   so the homepage v4 template can use its own.
   Only active on pages with .homepage-v4 body class.
   ============================================================ */
.homepage-v4 .greater-zion-blocks-header,
.homepage-v4 .greater-zion-blocks-footer,
.homepage-v4 .zionplus-blocks-header,
.homepage-v4 .zionplus-blocks-footer,
.homepage-v4 .site-container { display: none !important; }
