/* ==========================================================================
   Alex's Party Rentals — style.css
   Palette from the logo: royal blue #027AF8 (buttons deepened to #0A66CC),
   red #F01616, yellow #FCD002, orange #FA9501, purple #652C9F, + green/pink
   accents. Warm white base, navy text. Built big & readable for all ages.
   Type: Poppins (headings) + Nunito Sans (body)
   ========================================================================== */

:root {
  color-scheme: light;

  --paper: #FFFDFA;
  --card: #FFFFFF;
  --tint: #F4F6FA;
  --line: #E7E4DE;

  --blue: #0A66CC;
  --blue-bright: #027AF8;
  --blue-deep: #0853A6;
  --red: #E01414;
  --orange: #E88400;
  --yellow: #FCD002;
  --green: #178A43;
  --purple: #652C9F;
  --pink: #D6408B;

  --ink: #1B2540;
  --muted: #4A5470;

  --shadow-sm: 0 2px 8px rgba(27, 37, 64, 0.07);
  --shadow-md: 0 10px 28px rgba(27, 37, 64, 0.12);
  --shadow-lg: 0 22px 55px rgba(27, 37, 64, 0.18);

  --font-display: "Poppins", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-body: "Nunito Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;

  --radius: 16px;
  --header-h: 70px;
}

/* ---------- Base ---------- */

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 14px);
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.06rem; /* ~17px base — friendly for older eyes */
  line-height: 1.65;
  color: var(--ink);
  background: var(--paper);
  overflow-x: clip;
}

img { max-width: 100%; height: auto; display: block; }

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.18;
  margin: 0;
  letter-spacing: -0.01em;
  text-wrap: balance;
  color: var(--ink);
}

p { margin: 0; }
a { color: var(--blue); }

:where(ul[role="list"], ol[role="list"]) { list-style: none; margin: 0; padding: 0; }

.sprite { position: absolute; width: 0; height: 0; overflow: hidden; }

.icon {
  width: 1.25em;
  height: 1.25em;
  flex: none;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.container { width: min(100% - 40px, 1120px); margin-inline: auto; }

.skip-link {
  position: absolute;
  left: 12px;
  top: -60px;
  z-index: 300;
  background: var(--blue);
  color: #fff;
  padding: 12px 20px;
  border-radius: 0 0 10px 10px;
  font-weight: 800;
  text-decoration: none;
  transition: top 0.15s ease;
}
.skip-link:focus-visible { top: 0; }

:focus-visible {
  outline: 3px solid var(--blue-bright);
  outline-offset: 2px;
  border-radius: 6px;
}

/* ---------- Type helpers ---------- */

.section-title { font-size: clamp(1.75rem, 5.4vw, 2.5rem); }
.section-title-center { text-align: center; }

.section-sub {
  max-width: 620px;
  margin: 14px auto 0;
  text-align: center;
  color: var(--muted);
  font-size: 1.12rem;
  font-weight: 600;
}

/* ---------- Buttons (big, obvious, 48px+) ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 50px;
  padding: 13px 26px;
  border: 2px solid transparent;
  border-radius: 12px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.02rem;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 0.15s ease, border-color 0.15s ease, color 0.15s ease,
    transform 0.15s ease, box-shadow 0.2s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(1px); }

.btn-blue { background: var(--blue); color: #fff; box-shadow: 0 6px 18px rgba(10, 102, 204, 0.3); }
.btn-blue:hover { background: var(--blue-deep); }

.btn-green { background: var(--red); color: #fff; box-shadow: 0 6px 18px rgba(224, 20, 20, 0.3); }
.btn-green:hover { background: #B91010; }

.btn-white { background: #fff; color: var(--blue-deep); box-shadow: 0 6px 18px rgba(0, 0, 0, 0.18); }
.btn-white:hover { background: #EDF3FB; }

.btn-outline {
  background: #fff;
  color: var(--blue);
  border-color: var(--blue);
}
.btn-outline:hover { background: #EDF3FB; }

.btn-lg { min-height: 56px; padding: 15px 30px; font-size: 1.12rem; }
.btn-xl { min-height: 60px; padding: 17px 34px; font-size: 1.18rem; }
.btn-nav { min-height: 44px; padding: 9px 18px; font-size: 0.95rem; }
.btn-block { width: 100%; }

/* ---------- Language bar (very top) ---------- */

.lang-bar {
  background: var(--blue-deep);
}
.lang-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 8px 0;
}
.lang-note {
  color: #C8DEF7;
  font-weight: 700;
  font-size: 0.92rem;
  letter-spacing: 0.01em;
}
.lang-toggle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 42px;
  padding: 8px 20px;
  border: 0;
  border-radius: 999px;
  background: #fff;
  color: var(--blue-deep);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.18);
  transition: background-color 0.15s ease, transform 0.15s ease;
}
.lang-toggle:hover { background: #EDF3FB; }
.lang-toggle:active { transform: translateY(1px); }
.lang-toggle .icon { width: 20px; height: 20px; }

/* ---------- Header ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 253, 250, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow 0.2s ease;
}
.site-header.scrolled { box-shadow: var(--shadow-sm); }

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  min-height: var(--header-h);
}

.brand { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.brand-logo { width: 52px; height: 52px; }
.brand-lockup { display: flex; flex-direction: column; line-height: 1.2; }
.brand-name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.12rem;
  color: var(--ink);
}
.brand-sub {
  font-weight: 700;
  font-size: 0.78rem;
  color: var(--muted);
}

/* Nav — mobile dropdown */
.site-nav {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: #fff;
  border-bottom: 1px solid var(--line);
  box-shadow: var(--shadow-lg);
  display: none;
}
.site-header.nav-open .site-nav { display: block; }

.site-nav ul {
  list-style: none;
  margin: 0;
  padding: 8px 20px 22px;
  display: flex;
  flex-direction: column;
}
.site-nav a {
  display: block;
  padding: 15px 6px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.12rem;
  color: var(--ink);
  text-decoration: none;
  border-bottom: 1px solid var(--line);
}
.site-nav a:hover { color: var(--blue); }
.site-nav a.btn {
  display: inline-flex;
  justify-content: center;
  border-bottom: 0;
  margin-top: 14px;
  width: 100%;
  color: #fff;
}

.header-actions { display: flex; align-items: center; gap: 8px; }

.header-call {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: var(--blue);
  color: #fff;
}
.header-call .icon { width: 21px; height: 21px; }

.menu-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border: 2px solid var(--line);
  border-radius: 12px;
  background: #fff;
  color: var(--ink);
  cursor: pointer;
}
.menu-toggle .icon { width: 23px; height: 23px; }
.menu-toggle .icon-close { display: none; }
.site-header.nav-open .icon-open { display: none; }
.site-header.nav-open .icon-close { display: block; }

@media (max-width: 480px) {
  .brand-name { font-size: 0.98rem; }
  .brand-sub { font-size: 0.7rem; }
  .brand-logo { width: 46px; height: 46px; }
}

@media (min-width: 1040px) {
  .site-nav {
    position: static;
    display: block;
    border: 0;
    box-shadow: none;
    background: transparent;
  }
  .site-nav ul { flex-direction: row; align-items: center; gap: 4px; padding: 0; }
  .site-nav a {
    border-bottom: 0;
    font-size: 1rem;
    padding: 10px 13px;
  }
  .site-nav a.btn { margin-top: 0; margin-left: 8px; width: auto; }
  .header-actions { display: none; }
}

/* ---------- Compact hero ---------- */

.hero {
  position: relative;
  padding: 34px 0 40px;
  background: linear-gradient(180deg, #FDF9F2 0%, var(--paper) 100%);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}

.hero-logo-bg {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -76%) rotate(-6deg);
  width: min(88vw, 560px);
  opacity: 0.07;
  pointer-events: none;
  filter: saturate(1.1);
}
@media (min-width: 900px) {
  .hero-logo-bg {
    left: 30%;
    width: 480px;
    opacity: 0.06;
  }
}

.confetti {
  position: absolute;
  width: 14px;
  height: 14px;
  border-radius: 4px;
  opacity: 0.55;
  pointer-events: none;
}
.c1 { background: var(--yellow); top: 18%; left: 4%; transform: rotate(24deg); }
.c2 { background: var(--red); top: 66%; left: 9%; transform: rotate(-18deg); border-radius: 50%; width: 11px; height: 11px; }
.c3 { background: var(--purple); top: 22%; right: 6%; transform: rotate(40deg); }
.c4 { background: var(--green); bottom: 14%; right: 12%; transform: rotate(-30deg); border-radius: 50%; width: 10px; height: 10px; }
.c5 { background: var(--orange); bottom: 20%; left: 7%; transform: rotate(12deg); }
.c6 { background: var(--pink); top: 44%; right: 3%; transform: rotate(-24deg); width: 11px; height: 11px; }
.c7 { background: var(--blue-bright); bottom: 8%; left: 46%; transform: rotate(30deg); border-radius: 50%; width: 10px; height: 10px; }
.c8 { background: var(--yellow); top: 6%; left: 3%; transform: rotate(18deg); }
.c9 { background: var(--purple); top: 10%; right: 4%; transform: rotate(-28deg); border-radius: 50%; width: 11px; height: 11px; }
.c10 { background: var(--red); bottom: 7%; left: 5%; transform: rotate(-14deg); width: 12px; height: 12px; }
.c11 { background: var(--green); bottom: 10%; right: 6%; transform: rotate(36deg); }
.c12 { background: var(--blue-bright); top: 48%; right: 2.5%; transform: rotate(8deg); border-radius: 50%; width: 10px; height: 10px; }

.hero-inner {
  position: relative;
  display: grid;
  gap: 26px;
  align-items: center;
}
@media (min-width: 900px) {
  .hero-inner { grid-template-columns: 1.1fr 0.9fr; gap: 48px; }
}

.hero h1 { font-size: clamp(1.9rem, 6.4vw, 3rem); font-weight: 800; }
.hero-sub {
  margin-top: 10px;
  color: var(--muted);
  font-size: 1.18rem;
  font-weight: 600;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.hero-phone { margin-top: 16px; font-size: 1.15rem; font-weight: 800; }
.hero-phone a {
  color: var(--ink);
  text-decoration: none;
  font-family: var(--font-display);
  font-size: 1.35rem;
}
.hero-phone a:hover { color: var(--blue); }

.hero-media {
  aspect-ratio: 16 / 10;
  border-radius: 20px;
  box-shadow: var(--shadow-md);
}

/* ---------- Sections ---------- */

.section { position: relative; padding: 56px 0; overflow: hidden; }
@media (min-width: 900px) { .section { padding: 76px 0; } }

/* ---------- Photo slots ---------- */

.photo-slot {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  overflow: hidden;
  background:
    radial-gradient(ellipse 90% 85% at 50% 115%, rgba(2, 122, 248, 0.09), transparent 62%),
    linear-gradient(160deg, #F7F4EE 0%, #EFEAE2 100%);
}
.photo-slot > .icon { width: 46px; height: 46px; color: rgba(10, 102, 204, 0.35); stroke-width: 1.4; }
.photo-slot img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.photo-slot:hover img { transform: scale(1.04); }
.photo-wide { aspect-ratio: 16 / 10; }

/* ---------- Packages ---------- */

.packages { background: var(--paper); padding-top: 48px; }

.date-card {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 12px 18px;
  margin: 26px auto 0;
  padding: 16px 20px;
  max-width: 720px;
  background: #FFF8E6;
  border: 1.5px solid #F2DD9A;
  border-radius: 14px;
}
.date-card label {
  display: flex;
  align-items: center;
  gap: 9px;
  font-weight: 700;
  font-size: 1rem;
  color: var(--ink);
}
.date-card label .icon { width: 20px; height: 20px; color: var(--orange); }
.date-card .opt { color: var(--muted); font-weight: 600; }
.date-card input {
  font: inherit;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--ink);
  padding: 10px 14px;
  min-height: 48px;
  border: 2px solid var(--line);
  border-radius: 10px;
  background: #fff;
}
.date-card input:focus { outline: none; border-color: var(--blue); }

.pkg-grid {
  display: grid;
  gap: 16px;
  margin-top: 30px;
}
@media (min-width: 640px) { .pkg-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 980px) { .pkg-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; } }
@media (min-width: 1240px) { .pkg-grid { grid-template-columns: repeat(5, minmax(0, 1fr)); } }

.pkg-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--card);
  border: 1px solid var(--line);
  border-top: 5px solid var(--blue);
  border-radius: var(--radius);
  padding: 22px 20px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.pkg-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }

.pc-blue { border-top-color: var(--blue-bright); }
.pc-orange { border-top-color: var(--orange); }
.pc-green { border-top-color: var(--green); }
.pc-purple { border-top-color: var(--purple); }
.pc-red { border-top-color: var(--red); }
.pc-pink { border-top-color: var(--pink); }

.pkg-card.is-popular {
  border: 2px solid var(--orange);
  border-top-width: 5px;
  box-shadow: var(--shadow-md);
}
.pkg-flag {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--orange);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.85rem;
  padding: 4px 14px;
  border-radius: 999px;
  white-space: nowrap;
}

.pkg-num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.18rem;
  color: var(--ink);
}

.pkg-items { margin-top: 12px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.pkg-items li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 1.02rem;
  color: var(--muted);
}
.pkg-items .icon { width: 21px; height: 21px; color: var(--blue); }

.pkg-price {
  margin-top: 14px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 2.1rem;
  color: var(--ink);
}
.pkg-card .btn { margin-top: 12px; }

/* ---------- Jumpers ---------- */

.jumpers { background: var(--tint); }

.jumper-grid {
  display: grid;
  gap: 16px;
  margin-top: 34px;
}
@media (min-width: 640px) { .jumper-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 1040px) { .jumper-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 20px; } }

.jumper-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
}
.jumper-photo {
  aspect-ratio: 4 / 3;
  width: 100%;
  padding: 0;
  border: 0;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  cursor: pointer;
}
.jumper-body { padding: 16px 16px 18px; display: flex; flex-direction: column; gap: 12px; flex: 1; }
.jumper-body h3 { font-size: 1.12rem; flex: 1; }

/* ---------- Tables & chairs ---------- */

.tables { background: var(--paper); }
.tables-inner { display: grid; gap: 30px; align-items: center; }
@media (min-width: 900px) { .tables-inner { grid-template-columns: 1fr 1fr; gap: 52px; } }
.tables-copy p { margin: 14px 0 22px; color: var(--muted); font-size: 1.12rem; font-weight: 600; max-width: 480px; }

/* ---------- Steps ---------- */

.steps { background: var(--tint); }
.step-grid {
  display: grid;
  gap: 16px;
  margin-top: 34px;
  counter-reset: step;
}
@media (min-width: 800px) { .step-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; } }

.step-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 22px;
  text-align: center;
  box-shadow: var(--shadow-sm);
}
.step-icon {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  margin-bottom: 16px;
}
.step-icon .icon { width: 32px; height: 32px; }
.si-blue { background: #E4EFFB; color: var(--blue); }
.si-orange { background: #FDF1DE; color: var(--orange); }
.si-green { background: #E5F4EA; color: var(--green); }
.step-n {
  position: absolute;
  right: -4px;
  bottom: -4px;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--ink);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2.5px solid #fff;
}
.step-card h3 { font-size: 1.12rem; font-weight: 700; }

/* ---------- Gallery ---------- */

.gallery { background: var(--paper); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 34px;
}
@media (min-width: 800px) { .gallery-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; } }
.g-item {
  aspect-ratio: 4 / 3;
  width: 100%;
  padding: 0;
  cursor: pointer;
}

/* ---------- Why ---------- */

.why { background: var(--tint); }
.why-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 30px;
}
.why-grid li {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 13px 22px;
  font-weight: 800;
  font-size: 1.02rem;
  box-shadow: var(--shadow-sm);
}
.why-grid .icon { width: 21px; height: 21px; }
.wi-green { color: var(--green); }
.wi-blue { color: var(--blue); }
.wi-orange { color: var(--orange); }
.wi-purple { color: var(--purple); }
.wi-pink { color: var(--pink); }

/* ---------- Final CTA ---------- */

.final-cta {
  position: relative;
  padding: 66px 0 72px;
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-deep) 100%);
  overflow: hidden;
  text-align: center;
}
.final-cta .confetti { opacity: 0.4; }
.final-inner { position: relative; }
.final-cta h2 {
  color: #fff;
  font-size: clamp(1.9rem, 6vw, 2.8rem);
  font-weight: 800;
}
.final-cta p { margin-top: 12px; color: rgba(255, 255, 255, 0.94); font-size: 1.18rem; font-weight: 600; }
.final-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-top: 28px;
}
.final-phone { margin-top: 22px; }
.final-phone a {
  color: #fff;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.6rem;
  text-decoration: none;
}
.final-ig {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.92);
  font-weight: 700;
  text-decoration: none;
}
.final-ig:hover { color: #fff; }
.final-ig .icon { width: 20px; height: 20px; }

/* ---------- Footer ---------- */

.site-footer {
  background: #12203C;
  color: #C2CBDE;
  padding: 48px 0 36px;
  text-align: center;
}
.footer-inner img { margin: 0 auto 12px; }
.footer-name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.35rem;
  color: #fff;
}
.footer-tag { margin-top: 4px; font-weight: 700; }
.footer-line { margin-top: 10px; font-size: 1.05rem; }
.footer-line a { color: #fff; font-weight: 800; text-decoration: none; }
.footer-line a:hover { text-decoration: underline; }
.footer-copy { margin-top: 18px; font-size: 0.95rem; color: #8B99B5; }

/* ---------- Credit bar ---------- */

.credit-bar {
  background: #0C1730;
  padding: 15px 20px;
  text-align: center;
}
.credit-bar p { font-size: 0.8rem; letter-spacing: 0.04em; color: #5F6E8C; }
.credit-bar a { color: #93A3C0; font-weight: 700; text-decoration: none; }
.credit-bar a:hover { color: #fff; }

/* ---------- Lightbox ---------- */

.lightbox {
  width: min(94vw, 980px);
  border: 0;
  border-radius: var(--radius);
  background: #fff;
  padding: 0;
  overflow: visible;
  box-shadow: var(--shadow-lg);
}
.lightbox::backdrop { background: rgba(15, 22, 40, 0.8); }
.lightbox-body img {
  width: 100%;
  height: auto;
  max-height: 82vh;
  object-fit: contain;
  border-radius: var(--radius);
  display: block;
}
.lightbox-close {
  position: absolute;
  top: -16px;
  right: -14px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 0;
  background: var(--red);
  color: #fff;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
}
.lightbox-close .icon { width: 21px; height: 21px; }

/* ---------- Sticky mobile bar ---------- */

.mobile-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 95;
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: #fff;
  border-top: 1px solid var(--line);
  padding-bottom: env(safe-area-inset-bottom);
  box-shadow: 0 -6px 22px rgba(27, 37, 64, 0.15);
}
.mobile-bar a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 60px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.08rem;
  text-decoration: none;
}
.mobile-bar .icon { width: 21px; height: 21px; }
.mb-text { background: var(--red); color: #fff; }
.mb-text:active { background: #B91010; }
.mb-call { background: var(--blue); color: #fff; }
.mb-call:active { background: var(--blue-deep); }

body { padding-bottom: calc(64px + env(safe-area-inset-bottom)); }

@media (min-width: 900px) {
  .mobile-bar { display: none; }
  body { padding-bottom: 0; }
}

/* ---------- Scroll reveal (gentle) ---------- */

.reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.5s ease, transform 0.5s ease;
  transition-delay: var(--reveal-delay, 0s);
}
.reveal.in { opacity: 1; transform: none; }

/* ---------- Reduced motion ---------- */

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
  .btn:hover, .pkg-card:hover { transform: none; }
  .photo-slot:hover img { transform: none; }
}
