/* Jump 'N Slide Bonaire — public site styles. Mobile-first. */

:root {
  --blue-900: #0a3350;
  --blue-700: #0e6ba8;
  --blue-500: #1596d6;
  --blue-100: #e6f5fc;
  --yellow-500: #ffb703;
  --yellow-600: #fb8500;
  --coral: #ff5d5d;
  --ink: #10293e;
  --ink-soft: #4a5f72;
  --white: #ffffff;
  --bg: #f5fbfe;
  --border: #dfeaf1;
  --radius-lg: 20px;
  --radius-md: 14px;
  --radius-sm: 8px;
  --shadow-sm: 0 2px 8px rgba(10,51,80,0.08);
  --shadow-md: 0 10px 30px rgba(10,51,80,0.12);
  --font-head: 'Baloo 2', 'Trebuchet MS', sans-serif;
  --font-body: 'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 { font-family: var(--font-head); line-height: 1.2; margin: 0 0 .5em; color: var(--blue-900); }
p { margin: 0 0 1em; }
ul { margin: 0; padding: 0; list-style: none; }
button { font-family: inherit; cursor: pointer; }

.container { width: 100%; max-width: 1180px; margin: 0 auto; padding: 0 20px; }
.skip-link { position: absolute; left: -999px; top: 0; background: var(--blue-900); color: #fff; padding: 10px 16px; z-index: 999; }
.skip-link:focus { left: 10px; top: 10px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 13px 26px; border-radius: 999px; font-weight: 700; border: 2px solid transparent;
  font-size: 1rem; transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
  white-space: nowrap;
}
.btn:active { transform: scale(.97); }
.btn-primary { background: var(--yellow-500); color: var(--blue-900); box-shadow: var(--shadow-sm); }
.btn-primary:hover { background: var(--yellow-600); }
.btn-secondary { background: var(--white); color: var(--blue-700); border-color: var(--blue-700); }
.btn-secondary:hover { background: var(--blue-100); }
.btn-outline-light { background: transparent; color: #fff; border-color: rgba(255,255,255,.7); }
.btn-outline-light:hover { background: rgba(255,255,255,.15); }
.btn-block { width: 100%; }
.btn-sm { padding: 8px 16px; font-size: .85rem; }
.btn[disabled] { opacity: .5; cursor: not-allowed; }
.btn-danger { background: var(--coral); color: #fff; }
.btn-disabled { background: #e4ecf1; color: #93a4b0; border-color: transparent; cursor: not-allowed; }
.btn-disabled:hover { background: #e4ecf1; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100; background: rgba(255,255,255,.96);
  backdrop-filter: blur(6px); border-bottom: 1px solid var(--border);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 70px; gap: 12px; }
.brand { display: flex; align-items: center; gap: 10px; font-weight: 800; font-size: 1.15rem; color: var(--blue-900); }
.brand-logo { height: 44px; width: auto; }
.brand-name { font-family: var(--font-head); display: none; }
@media (min-width: 480px) { .brand-name { display: inline; } }

.main-nav {
  position: fixed; top: 70px; right: -100%; width: min(320px, 85vw); height: calc(100vh - 70px); height: calc(100dvh - 70px);
  background: #fff; box-shadow: var(--shadow-md); display: flex; flex-direction: column; gap: 4px;
  padding: 20px; transition: right .25s ease; overflow-y: auto;
}
.main-nav.open { right: 0; }
.main-nav a { padding: 14px 12px; border-radius: var(--radius-sm); font-weight: 600; color: var(--blue-900); }
.main-nav a.active, .main-nav a:hover { background: var(--blue-100); color: var(--blue-700); }
.main-nav a.nav-phone { margin-top: 10px; color: var(--yellow-600); }
.main-nav a.nav-indoor { background: var(--yellow-500); color: var(--blue-900); text-align: center; margin-top: 6px; }
.main-nav a.nav-indoor:hover { background: var(--yellow-600); color: var(--blue-900); }
@media (min-width: 900px) {
  .main-nav a.nav-indoor { margin-top: 0; padding: 9px 16px; border-radius: 999px; }
}

.nav-overlay { position: fixed; inset: 0; background: rgba(10,41,62,.4); opacity: 0; pointer-events: none; transition: opacity .25s ease; z-index: 90; }
.nav-overlay.visible { opacity: 1; pointer-events: auto; }

.header-actions { display: flex; align-items: center; gap: 10px; }
.hamburger { width: 44px; height: 44px; background: none; border: none; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 5px; }
.hamburger span { display: block; width: 24px; height: 3px; background: var(--blue-900); border-radius: 2px; transition: transform .2s ease, opacity .2s ease; }
.hamburger.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

.cart-btn { position: relative; width: 44px; height: 44px; border-radius: 50%; border: none; background: var(--blue-100); color: var(--blue-700); display: flex; align-items: center; justify-content: center; }
.cart-count { position: absolute; top: -4px; right: -4px; background: var(--coral); color: #fff; font-size: .68rem; font-weight: 800; min-width: 18px; height: 18px; border-radius: 999px; display: flex; align-items: center; justify-content: center; padding: 0 4px; }

@media (min-width: 900px) {
  .main-nav { position: static; width: auto; height: auto; flex-direction: row; align-items: center; padding: 0; box-shadow: none; }
  .main-nav a { padding: 10px 14px; }
  .hamburger { display: none; }
  .nav-overlay { display: none; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative; overflow: hidden; color: #fff;
  background: linear-gradient(160deg, var(--blue-900) 0%, var(--blue-700) 55%, var(--blue-500) 100%);
  padding: 64px 0 80px;
}
.hero::before, .hero::after {
  content: ""; position: absolute; border-radius: 50%; opacity: .18; background: var(--yellow-500);
}
.hero::before { width: 300px; height: 300px; top: -120px; right: -100px; }
.hero::after { width: 220px; height: 220px; bottom: -100px; left: -60px; background: #fff; opacity: .1; }
.hero-has-image::before, .hero-has-image::after { display: none; }
.hero-inner { position: relative; z-index: 1; max-width: 700px; }
.hero-eyebrow { display: inline-block; background: rgba(255,255,255,.15); border: 1px solid rgba(255,255,255,.35); padding: 6px 16px; border-radius: 999px; font-weight: 700; font-size: .82rem; letter-spacing: .04em; margin-bottom: 18px; }
.hero h1 { color: #fff; font-size: clamp(2rem, 6vw, 3.4rem); margin-bottom: .3em; }
.hero h1 span { color: var(--yellow-500); }
.hero p.lead { font-size: 1.1rem; opacity: .92; max-width: 560px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 28px; }
.hero-stats { display: flex; flex-wrap: wrap; gap: 28px; margin-top: 46px; }
.hero-stat strong { display: block; font-family: var(--font-head); font-size: 1.8rem; color: var(--yellow-500); }
.hero-stat span { font-size: .85rem; opacity: .85; }

/* ---------- Sections ---------- */
.section { padding: 60px 0; }
.terms-list { padding-left: 22px; margin: 24px 0; display: flex; flex-direction: column; gap: 14px; }
.terms-list li { line-height: 1.6; }
.section-head { text-align: center; max-width: 640px; margin: 0 auto 40px; }
.section-head .kicker { color: var(--blue-700); font-weight: 800; text-transform: uppercase; letter-spacing: .08em; font-size: .8rem; }
.section-head h2 { font-size: clamp(1.7rem, 4vw, 2.4rem); }
.section-alt { background: var(--white); }

/* ---------- Indoor playground promo ---------- */
.indoor-promo {
  display: flex; align-items: center; justify-content: space-between; gap: 30px; flex-wrap: wrap;
  background: linear-gradient(160deg, var(--blue-900) 0%, var(--blue-700) 100%);
  color: #fff; border-radius: var(--radius-md); padding: 40px 44px; overflow: hidden;
}
.indoor-promo-text { max-width: 600px; }
.indoor-promo-text h2 { color: #fff; margin-bottom: .4em; }
.indoor-promo-text p { opacity: .92; margin-bottom: 22px; font-size: 1.05rem; }
.indoor-promo-icon { flex-shrink: 0; filter: drop-shadow(0 8px 14px rgba(0,0,0,.25)); }
.indoor-promo-icon svg { width: 90px; height: 90px; }
@media (max-width: 700px) {
  .indoor-promo { padding: 32px 26px; text-align: center; justify-content: center; }
  .indoor-promo-icon { display: none; }
}

/* ---------- Feature strip ---------- */
.feature-grid { display: grid; grid-template-columns: 1fr; gap: 20px; }
@media (min-width: 640px) { .feature-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .feature-grid { grid-template-columns: repeat(3, 1fr); } }
.feature-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-md); padding: 26px; box-shadow: var(--shadow-sm); }
.feature-card .icon { width: 52px; height: 52px; border-radius: 14px; background: var(--blue-100); color: var(--blue-700); display: flex; align-items: center; justify-content: center; margin-bottom: 16px; }
.feature-card h3 { font-size: 1.1rem; margin-bottom: 6px; }
.feature-card p { color: var(--ink-soft); margin: 0; font-size: .95rem; }

/* ---------- Date availability bar ---------- */
.date-bar {
  background: var(--blue-100); border: 2px solid var(--blue-500); border-radius: var(--radius-md);
  padding: 18px 20px; margin-bottom: 30px; transition: box-shadow .3s ease;
}
.date-bar-set { background: #eefaf1; border-color: #33a35c; }
.date-bar-flash { box-shadow: 0 0 0 5px rgba(21,150,214,.35); }
.date-bar-form { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 14px; }
.date-bar-label { font-weight: 700; color: var(--blue-900); flex: 1 1 220px; }
.date-bar-controls { display: flex; flex-wrap: wrap; gap: 10px; align-items: center; }
.date-bar-controls input[type="date"] {
  padding: 11px 14px; border-radius: var(--radius-sm); border: 1.5px solid var(--border); font-family: inherit; font-size: 1rem; background: #fff;
}

/* ---------- Item grid & cards ---------- */
.filter-bar { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-bottom: 34px; }
.filter-chip { padding: 10px 20px; border-radius: 999px; border: 2px solid var(--border); background: #fff; font-weight: 700; color: var(--ink-soft); font-size: .9rem; }
.filter-chip.active, .filter-chip:hover { border-color: var(--blue-700); color: var(--blue-700); background: var(--blue-100); }

.item-grid { display: grid; grid-template-columns: 1fr; gap: 26px; }
@media (min-width: 620px) { .item-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 980px) { .item-grid { grid-template-columns: repeat(3, 1fr); } }

.item-card { background: #fff; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm); border: 1px solid var(--border); display: flex; flex-direction: column; transition: transform .15s ease, box-shadow .15s ease; }
.item-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.item-media { position: relative; aspect-ratio: 4 / 3; overflow: hidden; background: var(--blue-100); cursor: pointer; }
.item-media img { width: 100%; height: 100%; object-fit: cover; }
.item-badges { position: absolute; top: 12px; left: 12px; display: flex; flex-direction: column; gap: 6px; z-index: 2; }
.badge { padding: 5px 12px; border-radius: 999px; font-size: .72rem; font-weight: 800; text-transform: uppercase; letter-spacing: .03em; }
.badge-sale { background: var(--coral); color: #fff; }
.badge-featured { background: var(--yellow-500); color: var(--blue-900); }
.badge-unavailable { background: var(--blue-900); color: #fff; }

.item-card-locked { opacity: .78; }
.item-card-locked .item-media img { filter: grayscale(1); }
.item-card-locked .item-media::after {
  content: ""; position: absolute; inset: 0; background: rgba(10,41,62,.28);
}
/* Every card renders both the "available" and "locked" badges/buttons; only one shows at a
   time. This lets JS flip availability instantly (toggle one class) with no markup rebuild. */
.avail-badge, .avail-btn { display: none; }
.item-card-locked .avail-badge { display: inline-block; }
.item-card-locked .avail-btn { display: inline-flex; }
.item-card-locked .ok-badge, .item-card-locked .ok-btn { display: none; }
.item-body { padding: 18px 18px 20px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.item-cat { font-size: .72rem; font-weight: 800; text-transform: uppercase; letter-spacing: .05em; color: var(--blue-700); }
.item-body h3 { font-size: 1.2rem; margin-bottom: 0; cursor: pointer; }
.item-desc { color: var(--ink-soft); font-size: .92rem; flex: 1; }
.item-specs { display: flex; flex-wrap: wrap; gap: 6px 14px; margin: 2px 0 4px; }
.item-spec { display: inline-flex; align-items: center; font-size: .8rem; font-weight: 700; color: var(--blue-700); }
.item-spec .icon-svg { margin-right: 4px; }
.modal-specs { margin: 4px 0 14px; padding: 10px 12px; background: var(--blue-100); border-radius: var(--radius-sm); }
.modal-specs-label { font-size: .72rem; font-weight: 800; text-transform: uppercase; letter-spacing: .04em; color: var(--ink-soft); margin-bottom: 6px; }
.modal-specs .item-spec { font-size: .88rem; }
.rating { color: var(--yellow-600); font-size: .95rem; letter-spacing: 1px; }
.star-rating { display: inline-flex; gap: 2px; vertical-align: middle; }
.icon-svg { vertical-align: -3px; margin-right: 6px; flex-shrink: 0; }
.price-row { display: flex; align-items: baseline; gap: 10px; margin: 6px 0 4px; }
.price-now { font-family: var(--font-head); font-size: 1.5rem; color: var(--blue-900); font-weight: 700; }
.price-was { text-decoration: line-through; color: #9aa9b6; font-size: .95rem; }
.abb-note { font-size: .78rem; color: var(--ink-soft); font-weight: 600; margin: -2px 0 4px; }
.item-actions { display: flex; gap: 10px; margin-top: 6px; }
.item-actions .btn { flex: 1; }
.qty-stepper {
  display: none; align-items: center; justify-content: space-between; flex: 1;
  border: 2px solid var(--blue-700); border-radius: 999px; padding: 4px 6px; background: var(--blue-100);
}
.qty-btn {
  width: 32px; height: 32px; border-radius: 50%; border: none; background: var(--blue-700); color: #fff;
  font-size: 1.2rem; font-weight: 800; line-height: 1; display: flex; align-items: center; justify-content: center;
}
.qty-btn:disabled { background: #b7c4cd; cursor: not-allowed; }
.qty-value { font-weight: 800; color: var(--blue-900); font-size: 1.05rem; min-width: 20px; text-align: center; }
.qty-stepper-block { width: 100%; margin-top: 10px; }

/* ---------- Modal (item details) ---------- */
.modal-overlay { position: fixed; inset: 0; background: rgba(10,41,62,.55); display: none; align-items: center; justify-content: center; z-index: 200; padding: 16px; }
.modal-overlay.visible { display: flex; }
.modal-box { background: #fff; border-radius: var(--radius-lg); max-width: 640px; width: 100%; max-height: 90vh; overflow-y: auto; position: relative; }
.modal-close { position: absolute; top: 14px; right: 14px; width: 38px; height: 38px; border-radius: 50%; background: #fff; border: 1px solid var(--border); font-size: 1.3rem; line-height: 1; z-index: 2; }
.modal-img { width: 100%; aspect-ratio: 16/10; object-fit: cover; border-radius: var(--radius-lg) var(--radius-lg) 0 0; }
.modal-body { padding: 24px; }
.map-modal-box { max-width: 560px; }
.pick-map { width: 100%; height: 320px; border-radius: var(--radius-md); overflow: hidden; border: 1px solid var(--border); background: var(--blue-100); }

/* ---------- Address picker ---------- */
.address-input-wrap { position: relative; }
.address-suggestions {
  position: absolute; top: calc(100% + 4px); left: 0; right: 0; z-index: 50; background: #fff;
  border: 1px solid var(--border); border-radius: var(--radius-sm); box-shadow: var(--shadow-md);
  max-height: 220px; overflow-y: auto; list-style: none; margin: 0; padding: 6px;
}
.address-suggestions li { padding: 10px 12px; border-radius: var(--radius-sm); cursor: pointer; font-size: .92rem; }
.address-suggestions li:hover { background: var(--blue-100); }

/* ---------- Add-ons ---------- */
.addon-list { display: flex; flex-direction: column; gap: 10px; }
.addon-row { display: flex; align-items: flex-start; justify-content: space-between; gap: 14px; padding: 12px; border: 1px solid var(--border); border-radius: var(--radius-sm); cursor: pointer; }
.addon-row:hover { background: var(--blue-100); }
.addon-row .checkbox-row { align-items: flex-start; }
.addon-price { font-weight: 800; color: var(--blue-900); white-space: nowrap; }

/* ---------- Cart drawer ---------- */
.cart-drawer { position: fixed; top: 0; right: -100%; width: min(400px, 92vw); height: 100vh; height: 100dvh; background: #fff; box-shadow: var(--shadow-md); z-index: 300; transition: right .25s ease; display: flex; flex-direction: column; }
.cart-drawer.open { right: 0; }
.cart-drawer-inner { display: flex; flex-direction: column; height: 100%; }
.cart-drawer-header { display: flex; align-items: center; justify-content: space-between; padding: 20px; border-bottom: 1px solid var(--border); }
.cart-drawer-header button { background: none; border: none; font-size: 1.6rem; color: var(--ink-soft); }
.cart-list { flex: 1; min-height: 0; overflow-y: auto; padding: 10px 20px; }
.cart-list li { display: flex; justify-content: space-between; align-items: center; gap: 10px; padding: 14px 0; border-bottom: 1px solid var(--border); }
.cart-list .cart-item-name { font-weight: 600; }
.cart-list .cart-item-price { color: var(--ink-soft); font-size: .88rem; }
.cart-remove { background: none; border: none; color: var(--coral); font-size: 1.3rem; }
.cart-empty { padding: 40px 24px; text-align: center; color: var(--ink-soft); }
.cart-footer { padding: 18px 20px calc(18px + env(safe-area-inset-bottom, 0px)); border-top: 1px solid var(--border); flex-shrink: 0; }
.cart-item-unavailable .cart-item-name { text-decoration: line-through; color: var(--ink-soft); }
.cart-warn { display: inline-block; color: var(--coral); font-weight: 700; font-size: .74rem; text-decoration: none; }
.cart-total-row { display: flex; justify-content: space-between; font-family: var(--font-head); font-size: 1.2rem; margin-bottom: 6px; }
.cart-tax-note { font-size: .78rem; color: var(--ink-soft); margin-bottom: 14px; }

/* ---------- Forms ---------- */
.form-grid { display: grid; grid-template-columns: 1fr; gap: 18px; }
@media (min-width: 640px) { .form-grid.two-col { grid-template-columns: 1fr 1fr; } }
.field { display: flex; flex-direction: column; gap: 6px; min-width: 0; }
.field label { font-weight: 700; font-size: .9rem; }
.field .hint { font-size: .78rem; color: var(--ink-soft); font-weight: 400; }
.field input, .field select, .field textarea {
  width: 100%; padding: 12px 14px; border-radius: var(--radius-sm); border: 1.5px solid var(--border); font-family: inherit; font-size: 1rem; background: #fff; color: var(--ink);
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--blue-500); }
.field input[readonly] { background: var(--blue-100); color: var(--blue-900); font-weight: 700; cursor: not-allowed; }
.field textarea { resize: vertical; min-height: 110px; }
.checkbox-row { display: flex; align-items: center; gap: 10px; }
.form-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 30px; box-shadow: var(--shadow-sm); }
.alert { padding: 14px 18px; border-radius: var(--radius-sm); margin-bottom: 20px; font-weight: 600; }
.alert-success { background: #e3f8ec; color: #157a4a; }
.alert-error { background: #fde8e8; color: #b42318; }

/* ---------- About page ---------- */
.about-hero { background: var(--blue-100); padding: 50px 0; }
.gallery-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
@media (min-width: 640px) { .gallery-grid { grid-template-columns: repeat(4, 1fr); } }
.gallery-grid img { border-radius: var(--radius-md); aspect-ratio: 1; object-fit: cover; width: 100%; }

/* ---------- Testimonials ---------- */
.testimonial-grid { display: grid; grid-template-columns: 1fr; gap: 20px; }
@media (min-width: 700px) { .testimonial-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .testimonial-grid { grid-template-columns: repeat(3, 1fr); } }
.testimonial-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-md); padding: 24px; box-shadow: var(--shadow-sm); display: flex; flex-direction: column; gap: 12px; }
.testimonial-text { color: var(--ink); font-style: italic; line-height: 1.6; flex: 1; margin: 0; }
.testimonial-author { display: flex; flex-direction: column; gap: 2px; padding-top: 10px; border-top: 1px solid var(--border); }
.testimonial-author strong { color: var(--blue-900); }
.testimonial-source { font-size: .78rem; color: var(--ink-soft); }

/* ---------- Contact page ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr; gap: 30px; }
@media (min-width: 900px) { .contact-grid { grid-template-columns: .9fr 1.1fr; } }
.contact-info-card { background: var(--blue-900); color: #fff; border-radius: var(--radius-lg); padding: 30px; }
.contact-info-card h3 { color: #fff; }
.contact-info-card a, .contact-info-card p { color: rgba(255,255,255,.9); display: block; margin-bottom: 14px; }
.map-wrap { border-radius: var(--radius-lg); overflow: hidden; margin-top: 20px; border: 1px solid rgba(255,255,255,.2); }
.map-wrap iframe { width: 100%; height: 220px; border: 0; display: block; }

/* ---------- Footer ---------- */
.site-footer { background: var(--blue-900); color: rgba(255,255,255,.85); margin-top: 40px; }
.footer-grid { display: grid; grid-template-columns: 1fr; gap: 34px; padding: 50px 0 30px; }
@media (min-width: 720px) { .footer-grid { grid-template-columns: 1.3fr 1fr 1fr; } }
.footer-logo { height: 48px; margin-bottom: 12px; filter: brightness(0) invert(1); }
.footer-col h4 { color: #fff; font-size: 1rem; margin-bottom: 14px; }
.footer-col a, .footer-col span { display: block; margin-bottom: 10px; color: rgba(255,255,255,.75); }
.footer-col a:hover { color: var(--yellow-500); }
.footer-whatsapp { color: var(--yellow-500) !important; font-weight: 700; }
.social-links { display: flex; gap: 12px; margin-top: 16px; }
.social-links a { width: 38px; height: 38px; border-radius: 50%; background: rgba(255,255,255,.1); display: flex; align-items: center; justify-content: center; }
.social-links a:hover { background: var(--yellow-500); color: var(--blue-900); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.12); padding: 18px 0; }
.footer-bottom .container { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 6px; font-size: .82rem; }
.footer-bottom p { margin: 0; }

/* ---------- Scroll reveal ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .6s ease, transform .6s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.item-grid > .reveal:nth-child(2), .feature-grid > .reveal:nth-child(2), .gallery-grid > .reveal:nth-child(2) { transition-delay: .06s; }
.item-grid > .reveal:nth-child(3), .feature-grid > .reveal:nth-child(3), .gallery-grid > .reveal:nth-child(3) { transition-delay: .12s; }
.item-grid > .reveal:nth-child(4), .feature-grid > .reveal:nth-child(4), .gallery-grid > .reveal:nth-child(4) { transition-delay: .18s; }
.item-grid > .reveal:nth-child(5), .feature-grid > .reveal:nth-child(5), .gallery-grid > .reveal:nth-child(5) { transition-delay: .24s; }
.item-grid > .reveal:nth-child(n+6), .feature-grid > .reveal:nth-child(n+6), .gallery-grid > .reveal:nth-child(n+6) { transition-delay: .3s; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ---------- Utility ---------- */
.text-center { text-align: center; }
.mt-lg { margin-top: 40px; }
