/* Maggie's Hotel & Bakery — Eldoret
   Fresh & bright theme, light + dark. */

:root {
  --bg: #fbf9f5;
  --surface: #ffffff;
  --surface-2: #f4efe8;
  --text: #211f1c;
  --muted: #6d665e;
  --terracotta: #c65b3c;
  --terracotta-strong: #a8462b;
  --green: #3f7d5e;
  --green-strong: #2f5f47;
  --border: #ece5db;
  --shadow: 0 14px 40px -22px rgba(60, 40, 25, 0.45);
  --radius: 14px;
  --maxw: 1160px;
  --head: "Fraunces", Georgia, "Times New Roman", serif;
  --body: "Work Sans", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
}

[data-theme="dark"] {
  --bg: #14110d;
  --surface: #1e1a15;
  --surface-2: #241f19;
  --text: #f3ede4;
  --muted: #a89e92;
  --terracotta: #e2825f;
  --terracotta-strong: #ef9877;
  --green: #74b18c;
  --green-strong: #8ec4a3;
  --border: #2d271f;
  --shadow: 0 16px 44px -22px rgba(0, 0, 0, 0.7);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--body);
  color: var(--text);
  background: var(--bg);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  transition: background .25s ease, color .25s ease;
}

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

a { color: inherit; text-decoration: none; }

h1, h2, h3 {
  font-family: var(--head);
  font-weight: 600;
  line-height: 1.12;
  margin: 0 0 .5em;
  letter-spacing: -.01em;
}

h1 { font-size: clamp(2.3rem, 5vw, 3.6rem); }
h2 { font-size: clamp(1.7rem, 3.5vw, 2.5rem); }
h3 { font-size: 1.25rem; }

p { margin: 0 0 1rem; }

.wrap {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: clamp(1.1rem, 4vw, 2.2rem);
}

.eyebrow {
  display: inline-block;
  font-size: .78rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--terracotta);
  font-weight: 600;
  margin-bottom: .8rem;
}

.lead { font-size: 1.12rem; color: var(--muted); max-width: 60ch; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .8rem 1.5rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: .95rem;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform .15s ease, background .2s ease, box-shadow .2s ease;
}
.btn:active { transform: translateY(1px); }
.btn-primary { background: var(--terracotta); color: #fff; }
.btn-primary:hover { background: var(--terracotta-strong); box-shadow: var(--shadow); }
.btn-ghost { border-color: var(--border); color: var(--text); background: transparent; }
.btn-ghost:hover { border-color: var(--terracotta); color: var(--terracotta); }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: color-mix(in srgb, var(--bg) 88%, transparent);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-block: .85rem;
}
.brand {
  display: flex;
  align-items: baseline;
  gap: .55rem;
  font-family: var(--head);
  font-size: 1.35rem;
  font-weight: 600;
}
.brand span { color: var(--terracotta); }
.brand small {
  font-family: var(--body);
  font-size: .62rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 1.6rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-links a {
  font-weight: 500;
  font-size: .96rem;
  padding: .35rem 0;
  position: relative;
  color: var(--muted);
}
.nav-links a:hover, .nav-links a.active { color: var(--text); }
.nav-links a.active::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -.15rem;
  height: 2px;
  background: var(--terracotta);
  border-radius: 2px;
}
.nav-tools { display: flex; align-items: center; gap: .6rem; }

.theme-toggle, .nav-burger {
  width: 42px; height: 42px;
  display: grid; place-items: center;
  border: 1px solid var(--border);
  background: var(--surface);
  border-radius: 50%;
  cursor: pointer;
  color: var(--text);
  transition: border-color .2s ease, color .2s ease;
}
.theme-toggle:hover, .nav-burger:hover { border-color: var(--terracotta); color: var(--terracotta); }
.theme-toggle svg { width: 19px; height: 19px; }
.theme-toggle .moon { display: none; }
[data-theme="dark"] .theme-toggle .sun { display: none; }
[data-theme="dark"] .theme-toggle .moon { display: block; }
.nav-burger { display: none; flex-direction: column; align-items: center; justify-content: center; gap: 5px; }
.nav-burger span { display: block; width: 22px; height: 2px; background: currentColor; border-radius: 2px; transition: transform .3s ease, opacity .2s ease; }
.nav-burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Hero */
.hero {
  position: relative;
  min-height: min(82vh, 640px);
  display: flex;
  align-items: flex-end;
  color: #fff;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(20,12,6,.15) 0%, rgba(20,12,6,.78) 100%);
  z-index: 1;
}
.hero img.hero-bg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
.hero-inner { position: relative; z-index: 2; padding-bottom: clamp(2.5rem, 6vw, 4.5rem); }
.hero h1 { color: #fff; max-width: 16ch; }
.hero .lead { color: rgba(255,255,255,.9); }
.hero-cta { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 1.6rem; }
.hero-cta .btn-ghost { color: #fff; border-color: rgba(255,255,255,.5); }
.hero-cta .btn-ghost:hover { border-color: #fff; color: #fff; background: rgba(255,255,255,.12); }

/* Generic section */
section { padding-block: clamp(3rem, 7vw, 5.5rem); }
.section-head { max-width: 62ch; margin-bottom: 2.5rem; }
.center { text-align: center; margin-inline: auto; }

/* Feature cards */
.grid { display: grid; gap: 1.4rem; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }

.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform .2s ease, box-shadow .2s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.card img { height: 210px; width: 100%; object-fit: cover; }
.card-body { padding: 1.4rem 1.5rem 1.6rem; }
.card-body h3 { margin-bottom: .4rem; }
.card-body p { color: var(--muted); margin: 0; }

/* Split (about teaser) */
.split { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(1.5rem, 4vw, 3.5rem); align-items: center; }
.split img { border-radius: var(--radius); box-shadow: var(--shadow); }
.split.reverse { direction: rtl; }
.split.reverse > * { direction: ltr; }

/* Stats strip */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; text-align: center; }
.stat b { font-family: var(--head); font-size: 2.2rem; color: var(--terracotta); display: block; }
.stat span { color: var(--muted); font-size: .92rem; }

/* Menu */
.menu-group { margin-bottom: 3rem; }
.menu-group > h3 {
  font-size: 1.5rem;
  padding-bottom: .6rem;
  border-bottom: 2px solid var(--border);
  margin-bottom: 1.3rem;
  display: flex; align-items: center; gap: .6rem;
}
.menu-item {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: .3rem 1rem;
  padding: .9rem 0;
  border-bottom: 1px dashed var(--border);
}
.menu-item:last-child { border-bottom: 0; }
.menu-item .name { font-weight: 600; }
.menu-item .price { font-family: var(--head); font-weight: 600; color: var(--green); white-space: nowrap; }
.menu-item .desc { grid-column: 1 / -1; color: var(--muted); font-size: .92rem; margin: 0; }

/* Rooms */
.room { display: grid; grid-template-columns: 1fr; }
.room-price { font-family: var(--head); font-size: 1.6rem; color: var(--terracotta); }
.room-price small { font-family: var(--body); font-size: .8rem; color: var(--muted); font-weight: 500; }
.amenities { list-style: none; padding: 0; margin: 1rem 0 1.3rem; display: grid; gap: .5rem; }
.amenities li { display: flex; gap: .6rem; align-items: center; color: var(--muted); font-size: .95rem; }
.amenities li::before { content: "✓"; color: var(--green); font-weight: 700; }

/* Gallery */
.gallery { display: grid; grid-template-columns: repeat(4, 1fr); gap: .8rem; }
.gallery img { border-radius: 10px; height: 200px; width: 100%; object-fit: cover; transition: transform .3s ease; }
.gallery a:hover img { transform: scale(1.04); }
.gallery a:first-child { grid-row: span 2; }
.gallery a:first-child img { height: 100%; }

/* Info / hours band */
.band { background: var(--surface-2); border-block: 1px solid var(--border); }
.info-cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.info-cols h3 { color: var(--terracotta); font-size: 1.05rem; }
.hours-row { display: flex; justify-content: space-between; padding: .35rem 0; border-bottom: 1px dashed var(--border); }

/* Forms */
.form-grid { display: grid; gap: 1rem; }
.field label { display: block; font-weight: 600; font-size: .9rem; margin-bottom: .35rem; }
.field input, .field textarea {
  width: 100%;
  padding: .8rem 1rem;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: var(--surface);
  color: var(--text);
  font: inherit;
}
.field input:focus, .field textarea:focus {
  outline: none;
  border-color: var(--terracotta);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--terracotta) 20%, transparent);
}
.field textarea { min-height: 140px; resize: vertical; }
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

/* Map */
.map-frame { border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.map-frame iframe { display: block; width: 100%; height: 380px; border: 0; filter: saturate(.9); }

/* Footer */
.site-footer {
  background: var(--surface-2);
  border-top: 1px solid var(--border);
  padding-block: 3rem 1.5rem;
  margin-top: 1rem;
}
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 2rem; margin-bottom: 2rem; }
.footer-grid h4 { font-family: var(--head); font-size: 1.05rem; margin: 0 0 .8rem; }
.footer-grid ul { list-style: none; padding: 0; margin: 0; display: grid; gap: .5rem; }
.footer-grid a { color: var(--muted); }
.footer-grid a:hover { color: var(--terracotta); }
.socials { display: flex; gap: .7rem; margin-top: 1rem; }
.socials a {
  width: 38px; height: 38px; border-radius: 50%;
  display: grid; place-items: center;
  border: 1px solid var(--border); color: var(--muted);
}
.socials a:hover { border-color: var(--terracotta); color: var(--terracotta); }
.socials svg { width: 18px; height: 18px; }
.copyright {
  border-top: 1px solid var(--border);
  padding-top: 1.3rem;
  color: var(--muted);
  font-size: .88rem;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: .5rem;
}

/* Page banner (interior pages) */
.page-banner {
  background: var(--surface-2);
  border-bottom: 1px solid var(--border);
  padding-block: clamp(2.5rem, 6vw, 4rem);
  text-align: center;
}
.page-banner p { color: var(--muted); max-width: 60ch; margin-inline: auto; margin-bottom: 0; }

.note {
  background: color-mix(in srgb, var(--green) 12%, var(--surface));
  border: 1px solid color-mix(in srgb, var(--green) 30%, var(--border));
  border-radius: 10px;
  padding: .8rem 1rem;
  font-size: .9rem;
  color: var(--muted);
}

/* Mobile */
@media (max-width: 860px) {
  .grid-3, .grid-2, .info-cols, .footer-grid, .stats { grid-template-columns: 1fr; }
  .card, .review, .stat { min-width: 0; }

  /* Reviews: one card at a time on phones (swipe), arrows hidden */
  .reviews { gap: 1rem; -webkit-overflow-scrolling: touch; }
  .reviews .review { flex: 0 0 86%; scroll-snap-align: center; }
  .carousel-btn { display: none; }
  .split { grid-template-columns: 1fr; }
  .split.reverse { direction: ltr; }
  .two-col { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: 1fr 1fr; }
  .gallery a:first-child { grid-row: auto; }
  .stats { grid-template-columns: 1fr 1fr; gap: 1.6rem; }

  .nav-burger { display: flex; }
  .nav-links {
    position: fixed;
    inset: 68px 0 auto 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--surface);
    border-bottom: 1px solid var(--border);
    padding: .5rem 1.5rem 1.2rem;
    opacity: 0;
    transform: translateY(-10px);
    pointer-events: none;
    transition: opacity .25s ease, transform .28s ease;
    box-shadow: var(--shadow);
  }
  .nav-links.open { opacity: 1; transform: none; pointer-events: auto; }
  .nav-links li { width: 100%; }
  .nav-links a { display: block; padding: .8rem 0; width: 100%; border-bottom: 1px solid var(--border); }
  .nav-links a.active::after { display: none; }
}

/* --- Modern extras --- */

/* Open now badge */
.open-badge {
  display: inline-flex; align-items: center; gap: .5rem;
  background: color-mix(in srgb, var(--green) 15%, var(--surface));
  color: var(--green-strong);
  border: 1px solid color-mix(in srgb, var(--green) 35%, transparent);
  padding: .35rem .8rem; border-radius: 999px;
  font-size: .82rem; font-weight: 600;
}
.open-badge .dot { width: 9px; height: 9px; border-radius: 50%; background: #28c76f; animation: pulse 2s infinite; }
.hero .open-badge { background: rgba(255,255,255,.16); color: #fff; border-color: rgba(255,255,255,.4); }
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(40,199,111,.5); }
  70% { box-shadow: 0 0 0 8px rgba(40,199,111,0); }
  100% { box-shadow: 0 0 0 0 rgba(40,199,111,0); }
}

/* Fact chips */
.chips { display: flex; flex-wrap: wrap; gap: .6rem; margin: 1.3rem 0; }
.chip {
  display: inline-flex; align-items: center; gap: .45rem;
  background: var(--surface-2); border: 1px solid var(--border);
  border-radius: 999px; padding: .5rem .95rem; font-size: .9rem;
  color: var(--muted); font-weight: 500;
}
.chip b { color: var(--text); font-weight: 600; }

/* Reviews carousel */
.carousel { position: relative; }
.reviews {
  display: flex; gap: 1.4rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: .4rem .2rem 1.2rem;
  scrollbar-width: none;
}
.reviews::-webkit-scrollbar { display: none; }
.reviews .review { flex: 0 0 86%; scroll-snap-align: center; }
@media (min-width: 861px) {
  .reviews .review { flex-basis: calc((100% - 2.8rem) / 3); scroll-snap-align: start; }
  .carousel-btn { display: grid; }
}
.carousel-btn {
  position: absolute; top: 42%; transform: translateY(-50%);
  width: 46px; height: 46px; border-radius: 50%;
  display: none; place-items: center;
  background: var(--surface); color: var(--text);
  border: 1px solid var(--border); box-shadow: var(--shadow);
  font-size: 1.7rem; line-height: 1; cursor: pointer; z-index: 5;
  transition: background .2s ease, color .2s ease, border-color .2s ease;
}
.carousel-btn:hover { background: var(--terracotta); color: #fff; border-color: var(--terracotta); }
.carousel-btn.prev { left: -14px; }
.carousel-btn.next { right: -14px; }
.carousel-dots { display: flex; justify-content: center; gap: .5rem; margin-top: .2rem; }
.carousel-dots .cdot { width: 8px; height: 8px; border-radius: 50%; background: var(--border); border: 0; padding: 0; cursor: pointer; transition: background .2s ease, width .2s ease; }
.carousel-dots .cdot.on { background: var(--terracotta); width: 22px; border-radius: 4px; }
.review { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 1.5rem 1.6rem; }
.review .stars { color: #f0a500; letter-spacing: 2px; margin-bottom: .6rem; }
.review p { margin: 0 0 1rem; }
.review .who { color: var(--muted); font-size: .9rem; font-weight: 600; }
.google-badge {
  display: inline-flex; align-items: center; gap: .8rem;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 999px; padding: .55rem 1.2rem; font-weight: 600;
  box-shadow: var(--shadow);
}
.google-badge b { color: var(--terracotta); font-family: var(--head); font-size: 1.15rem; }
.google-badge .rlabel { color: var(--muted); font-weight: 500; font-size: .9rem; }

/* Menu quick-nav */
.menu-nav {
  position: sticky; top: 63px; z-index: 20;
  background: color-mix(in srgb, var(--bg) 90%, transparent);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
  display: flex; gap: .45rem; flex-wrap: wrap; padding: .7rem 0;
}
.menu-nav a { padding: .45rem .95rem; border-radius: 999px; font-size: .9rem; font-weight: 600; color: var(--muted); border: 1px solid var(--border); }
.menu-nav a:hover { color: var(--terracotta); border-color: var(--terracotta); }
.menu-group { scroll-margin-top: 130px; }

/* Menu category bar: wraps on desktop, single swipe-row on phones */
.menu-nav-track { display: flex; gap: .45rem; flex-wrap: wrap; }
@media (max-width: 860px) {
  .menu-nav { top: 62px; padding: .5rem 0; }
  .menu-nav-track { flex-wrap: nowrap; overflow-x: auto; scrollbar-width: none; scroll-snap-type: x proximity; }
  .menu-nav-track::-webkit-scrollbar { display: none; }
  .menu-nav a { white-space: nowrap; scroll-snap-align: start; }
  .menu-group { scroll-margin-top: 118px; margin-bottom: 2.2rem; }
  .menu-group > h3 { font-size: 1.25rem; margin-bottom: .9rem; }
  .menu-item { padding-block: .55rem; }
  .page-banner { padding-block: 1.6rem; }
}

/* Floating WhatsApp button */
.wa-float {
  position: fixed; right: 18px; bottom: 18px; z-index: 60;
  display: inline-flex; align-items: center; gap: .6rem;
  background: #25d366; color: #fff;
  padding: .75rem 1.15rem; border-radius: 999px; font-weight: 600;
  box-shadow: 0 12px 30px -8px rgba(0,0,0,.45);
  transition: transform .18s ease;
}
.wa-float:hover { transform: translateY(-2px); color: #fff; }
.wa-float svg { width: 22px; height: 22px; }
.wa-float .wa-text { font-size: .9rem; }
@media (max-width: 600px) {
  .wa-float { padding: .85rem; border-radius: 50%; }
  .wa-float .wa-text { display: none; }
}

/* Lightbox */
.lightbox { position: fixed; inset: 0; z-index: 80; display: none; align-items: center; justify-content: center; background: rgba(10,6,3,.85); padding: 2rem; cursor: zoom-out; }
.lightbox.open { display: flex; }
.lightbox img { max-width: 92vw; max-height: 88vh; border-radius: 12px; box-shadow: 0 20px 60px -10px rgba(0,0,0,.6); }
.lightbox .lb-close { position: absolute; top: 14px; right: 20px; color: #fff; font-size: 2.4rem; line-height: 1; background: none; border: 0; cursor: pointer; }
.gallery a { cursor: zoom-in; }

/* Scroll reveal */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } }

/* Dim backdrop behind the open mobile menu */
.nav-scrim { position: fixed; inset: 0; z-index: 30; background: rgba(10,6,3,.4); opacity: 0; visibility: hidden; transition: opacity .25s ease, visibility .25s ease; }
.nav-scrim.show { opacity: 1; visibility: visible; }
@media (min-width: 861px) { .nav-scrim { display: none; } }

/* === Card & motion refresh === */

/* Feature cards: lift + image zoom + heading tint */
.card { transition: transform .35s cubic-bezier(.2,.7,.2,1), box-shadow .35s ease, border-color .35s ease; }
.card:hover { transform: translateY(-6px); box-shadow: 0 24px 54px -26px rgba(60,40,25,.55); border-color: color-mix(in srgb, var(--terracotta) 40%, var(--border)); }
.card img { transition: transform .55s cubic-bezier(.2,.7,.2,1); }
.card:hover img { transform: scale(1.07); }
.card-body h3 { transition: color .25s ease; }
.card:hover .card-body h3 { color: var(--terracotta); }

/* Review cards: quote mark + lift */
.review { position: relative; overflow: hidden; transition: transform .35s cubic-bezier(.2,.7,.2,1), box-shadow .35s ease, border-color .35s ease; }
.review:hover { transform: translateY(-5px); box-shadow: 0 22px 48px -26px rgba(60,40,25,.5); border-color: color-mix(in srgb, var(--terracotta) 35%, var(--border)); }
.review::before { content: "\201C"; position: absolute; top: -.12em; right: .22em; font-family: var(--head); font-size: 5rem; line-height: 1; color: color-mix(in srgb, var(--terracotta) 16%, transparent); pointer-events: none; }
.review .stars, .review p, .review .who { position: relative; }

/* Stat tiles become cards */
.stat { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 1.5rem 1rem; transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease; }
.stat:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: color-mix(in srgb, var(--terracotta) 30%, var(--border)); }

/* Menu rows feel tappable */
.menu-item { padding-inline: .7rem; border-left: 3px solid transparent; border-radius: 8px 8px 0 0; transition: background .2s ease, border-color .2s ease; }
.menu-item:hover { background: var(--surface-2); border-left-color: var(--terracotta); }

/* Reusable padded surface (contact, etc.) */
.panel { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 1.9rem; box-shadow: var(--shadow); }

/* Staggered entrance for items inside revealed sections */
@media (prefers-reduced-motion: no-preference) {
  section.reveal .grid > *,
  section.reveal .reviews > *,
  section.reveal .stats > *,
  section.reveal .gallery > *,
  section.reveal .split > * {
    opacity: 0; transform: translateY(22px);
    transition: opacity .5s ease, transform .6s cubic-bezier(.2,.7,.2,1);
  }
  section.reveal.in .grid > *,
  section.reveal.in .reviews > *,
  section.reveal.in .stats > *,
  section.reveal.in .gallery > *,
  section.reveal.in .split > * { opacity: 1; transform: none; }
  section.reveal.in :is(.grid, .reviews, .stats, .gallery, .split) > *:nth-child(1) { transition-delay: .05s; }
  section.reveal.in :is(.grid, .reviews, .stats, .gallery, .split) > *:nth-child(2) { transition-delay: .13s; }
  section.reveal.in :is(.grid, .reviews, .stats, .gallery, .split) > *:nth-child(3) { transition-delay: .21s; }
  section.reveal.in :is(.grid, .reviews, .stats, .gallery, .split) > *:nth-child(4) { transition-delay: .29s; }
  section.reveal.in :is(.grid, .reviews, .stats, .gallery, .split) > *:nth-child(5) { transition-delay: .37s; }
}

/* Phone polish */
@media (max-width: 640px) {
  .card img { height: 195px; }
  .card-body { padding: 1.2rem 1.25rem 1.35rem; }
  .review { padding: 1.3rem 1.4rem; }
  .stat { padding: 1.25rem .8rem; }
  .stat b { font-size: 1.9rem; }
  .menu-item { padding-inline: .45rem; }
  .panel { padding: 1.3rem; }
  .map-frame iframe { height: 330px !important; }
  * { -webkit-tap-highlight-color: transparent; }
}
