/* ============================================================
   Kiwi Halal Meats — styles
   Palette: forest green, dark maroon, soft cream
   ============================================================ */
:root {
  --green: #1e3a2b;
  --green-deep: #15291e;
  --green-soft: #2c4a38;
  --maroon: #7a1f2b;
  --maroon-dark: #5e1822;
  --cream: #f6f1e4;
  --cream-2: #efe7d5;
  --ink: #25201c;
  --muted: #6c6258;
  --line: #e3d9c4;
  --gold: #c79a4b;
  --shadow: 0 12px 34px rgba(30, 40, 30, .12);
  --radius: 16px;
  --serif: "Playfair Display", Georgia, serif;
  --sans: "Inter", system-ui, -apple-system, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 110px; overflow-x: clip; }
body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;        /* prevent swiping to the off-canvas menu/cart */
  position: relative;
  width: 100%;
}
img { max-width: 100%; display: block; }
h1, h2, h3, h4 { font-family: var(--serif); line-height: 1.15; color: var(--green); }
a { text-decoration: none; color: inherit; }
section { scroll-margin-top: 100px; }

/* ---------- Inline SVG icon utility ---------- */
.ico { display: inline-flex; width: 1em; height: 1em; vertical-align: -0.14em; line-height: 0; flex: none; }
.ico svg { width: 100%; height: 100%; display: block; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  padding: .9rem 1.7rem; border: 2px solid transparent; border-radius: 50px;
  font-family: var(--sans); font-weight: 600; font-size: .95rem; letter-spacing: .03em;
  text-transform: uppercase; cursor: pointer; transition: transform .15s, background .2s, box-shadow .2s;
}
.btn:hover { transform: translateY(-2px); }
.btn--maroon { background: var(--maroon); color: #fff; box-shadow: 0 8px 20px rgba(122, 31, 43, .3); }
.btn--maroon:hover { background: var(--maroon-dark); }
.btn--ghost { background: transparent; color: #fff; border-color: rgba(255,255,255,.85); }
.btn--ghost:hover { background: rgba(255,255,255,.14); }
.btn--cream { background: var(--cream); color: var(--maroon); }
.btn--cream:hover { background: #fff; }
.btn--sm { padding: .65rem 1.2rem; font-size: .82rem; }
.btn--block { width: 100%; }

/* ---------- Topbar ---------- */
.topbar {
  background: var(--green-deep); color: var(--cream); text-align: center;
  font-size: .82rem; padding: .5rem 1rem; letter-spacing: .02em;
}
.topbar a { color: inherit; }
.topbar a:hover { color: var(--gold); text-decoration: underline; }
.topbar .ico { color: var(--gold); }

/* ---------- Nav ---------- */
.nav {
  position: sticky; top: 0; z-index: 60;
  background: rgba(246, 241, 228, .96); backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line); transition: box-shadow .25s;
}
.nav.scrolled { box-shadow: 0 6px 22px rgba(30,40,30,.10); }
.nav__inner {
  max-width: 1240px; margin: 0 auto; padding: .8rem 1.4rem;
  display: flex; align-items: center; gap: 1.5rem;
}
.brand { display: flex; align-items: center; gap: .6rem; }
.brand__mark { display: grid; place-items: center; }
.brand__text { display: flex; flex-direction: column; line-height: 1; }
.brand__text strong { font-family: var(--serif); font-size: 1.18rem; font-weight: 800; color: var(--green); letter-spacing: .04em; }
.brand__text em { font-style: normal; font-size: .62rem; letter-spacing: .55em; color: var(--maroon); margin-top: 3px; font-weight: 600; }

.nav__links { display: flex; gap: 1.6rem; margin-left: auto; }
.nav__links a { font-size: .92rem; font-weight: 500; color: var(--ink); position: relative; padding: .3rem 0; }
.nav__links a::after {
  content: ""; position: absolute; left: 0; bottom: -2px; width: 0; height: 2px;
  background: var(--maroon); transition: width .25s;
}
.nav__links a:hover, .nav__links a.active { color: var(--maroon); }
.nav__links a.active::after, .nav__links a:hover::after { width: 100%; }

.nav__actions { display: flex; align-items: center; gap: .4rem; }
.icon-btn {
  background: none; border: none; color: var(--green); cursor: pointer;
  width: 42px; height: 42px; border-radius: 50%; display: grid; place-items: center;
  transition: background .2s;
}
.icon-btn:hover { background: var(--cream-2); }
.nav-order {
  display: inline-flex; align-items: center; gap: .4rem; background: var(--maroon); color: #fff;
  padding: .55rem 1.05rem; border-radius: 50px; font-weight: 600; font-size: .85rem;
  letter-spacing: .02em; transition: background .2s, transform .15s; white-space: nowrap; margin-left: .2rem;
}
.nav-order:hover { background: var(--maroon-dark); transform: translateY(-1px); }
.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; width: 42px; height: 42px; justify-content: center; align-items: center; }
.hamburger span { width: 24px; height: 2.5px; background: var(--green); border-radius: 2px; transition: .3s; }
.hamburger.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }
.hamburger.open span { background: var(--cream); }

/* Search bar */
.searchbar { border-top: 1px solid var(--line); background: var(--cream); }
.searchbar__inner { max-width: 1240px; margin: 0 auto; padding: .8rem 1.4rem; display: flex; gap: .6rem; }
.searchbar input {
  flex: 1; padding: .8rem 1.1rem; border: 1.5px solid var(--line); border-radius: 50px;
  font-family: var(--sans); font-size: .95rem; background: #fff; outline: none;
}
.searchbar input:focus { border-color: var(--maroon); }
.searchbar button { background: var(--maroon); color: #fff; border: none; width: 44px; border-radius: 50%; cursor: pointer; font-size: 1rem; }

/* ---------- Hero ---------- */
.hero {
  position: relative; min-height: 86vh; display: flex; align-items: center;
  background: var(--green-deep) url("assets/store-front.jpg") center/cover no-repeat;
  color: #fff; overflow: hidden;
}
.hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(100deg, rgba(21,41,30,.96) 0%, rgba(21,41,30,.88) 42%, rgba(21,41,30,.6) 72%, rgba(21,41,30,.42) 100%);
}
.hero__content { position: relative; max-width: 1240px; margin: 0 auto; padding: 3rem 1.6rem; width: 100%; }
.hero__eyebrow { color: var(--gold); font-weight: 600; letter-spacing: .18em; font-size: .8rem; text-transform: uppercase; margin-bottom: 1rem; }
.hero h1 { font-size: clamp(2.4rem, 6vw, 4.6rem); color: #fff; font-weight: 800; margin-bottom: 1.3rem; }
.hero h1 span { color: var(--gold); }
.hero__sub { max-width: 540px; font-size: clamp(1rem, 1.6vw, 1.18rem); color: rgba(255,255,255,.9); margin-bottom: 2.2rem; font-weight: 300; }
.hero__btns { display: flex; gap: 1rem; flex-wrap: wrap; }

/* ---------- Value props ---------- */
.values { background: var(--green); }
.values__inner {
  max-width: 1240px; margin: 0 auto; padding: 2.6rem 1.6rem;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.2rem;
}
.value { text-align: center; color: var(--cream); padding: .6rem; }
.value__icon {
  width: 64px; height: 64px; margin: 0 auto .9rem; border-radius: 50%;
  display: grid; place-items: center; color: var(--gold);
  background: rgba(255,255,255,.06); border: 1.5px solid rgba(199,154,75,.4);
}
.value h3 { color: #fff; font-family: var(--sans); font-size: 1.02rem; font-weight: 600; margin-bottom: .25rem; }
.value p { font-size: .85rem; color: rgba(255,255,255,.7); }

/* ---------- Section heads ---------- */
.section-head { text-align: center; max-width: 700px; margin: 0 auto 2.6rem; padding: 0 1rem; }
.kicker { color: var(--maroon); font-weight: 600; letter-spacing: .15em; text-transform: uppercase; font-size: .78rem; margin-bottom: .6rem; }
.kicker--cream { color: var(--gold); }
.section-head h2 { font-size: clamp(2rem, 4vw, 2.9rem); margin-bottom: .6rem; }
.section-sub { color: var(--muted); font-size: 1.02rem; }

/* ---------- Products ---------- */
.products { max-width: 1240px; margin: 0 auto; padding: 4.5rem 1.6rem; }
.grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.card {
  background: #fff; border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow); display: flex; flex-direction: column;
  transition: transform .2s, box-shadow .2s; border: 1px solid var(--line);
}
.card:hover { transform: translateY(-6px); box-shadow: 0 20px 40px rgba(30,40,30,.18); }
.card__media { position: relative; aspect-ratio: 1 / 1; overflow: hidden; background: var(--cream-2); }
.card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.card:hover .card__media img { transform: scale(1.06); }
.badge {
  position: absolute; top: 12px; right: 12px; background: rgba(21,41,30,.92); color: var(--cream);
  font-size: .66rem; font-weight: 700; letter-spacing: .04em; padding: .4rem .7rem; border-radius: 50px;
  display: flex; align-items: center; gap: .35rem; border: 1px solid rgba(199,154,75,.5);
}
.badge .ico { color: var(--gold); }
.tag-special {
  position: absolute; top: 12px; left: 12px; background: var(--maroon); color: #fff;
  font-size: .66rem; font-weight: 700; padding: .35rem .65rem; border-radius: 50px; letter-spacing: .03em;
}
.card__body { padding: 1.1rem 1.2rem 1.3rem; display: flex; flex-direction: column; flex: 1; }
.card__name { font-family: var(--serif); font-size: 1.18rem; font-weight: 600; margin-bottom: .15rem; }
.card__unit { color: var(--muted); font-size: .85rem; margin-bottom: .7rem; }
.card__row { display: flex; align-items: center; justify-content: space-between; margin-top: auto; gap: .6rem; }
.card__askprice { font-size: .85rem; font-style: italic; color: var(--muted); }
.card__order {
  background: var(--maroon); color: #fff; border: none; border-radius: 50px;
  padding: .6rem 1.2rem; font-weight: 600; font-size: .8rem; letter-spacing: .03em;
  text-transform: uppercase; cursor: pointer; transition: background .2s, transform .15s;
  text-decoration: none; display: inline-flex; align-items: center; gap: .4rem; white-space: nowrap;
}
.card__order:hover { background: var(--maroon-dark); transform: scale(1.04); }
.grid-empty { text-align: center; color: var(--muted); padding: 2rem; font-size: 1.1rem; }
.grid-note { max-width: 820px; margin: 2.2rem auto 0; text-align: center; color: var(--muted); font-size: .9rem; line-height: 1.7; }

/* ---------- Specials ---------- */
.specials { background: var(--maroon); color: #fff; }
.specials__inner {
  max-width: 1100px; margin: 0 auto; padding: 3.5rem 1.6rem;
  display: flex; align-items: center; justify-content: space-between; gap: 2rem; flex-wrap: wrap;
}
.specials__text { max-width: 620px; }
.specials__text h2 { color: #fff; font-size: clamp(1.8rem, 3.5vw, 2.6rem); margin-bottom: .8rem; }
.specials__text p { color: rgba(255,255,255,.88); margin-bottom: 1.2rem; }
.specials__price { margin-bottom: 1.4rem; }
.specials__price .was { text-decoration: line-through; opacity: .6; font-size: 1.3rem; }
.specials__price .now { font-family: var(--serif); font-size: 2.4rem; font-weight: 700; color: var(--cream); margin-left: .4rem; }
.specials__tags { display: flex; flex-wrap: wrap; gap: .6rem; margin-bottom: 1.5rem; }
.specials__tags span { background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.25); color: var(--cream); font-size: .82rem; font-weight: 500; padding: .45rem .9rem; border-radius: 50px; }
.specials__badge {
  width: 130px; height: 130px; border-radius: 50%; background: var(--cream); color: var(--maroon);
  display: grid; place-content: center; text-align: center; flex-shrink: 0;
  box-shadow: 0 14px 30px rgba(0,0,0,.25); border: 4px dashed var(--gold);
}
.specials__badge span { font-size: .85rem; font-weight: 700; letter-spacing: .1em; }
.specials__badge strong { font-family: var(--serif); font-size: 2.4rem; line-height: 1; display: inline-flex; align-items: center; }
.specials__badge .ico { width: .7em; height: .7em; }

/* ---------- Commitments ---------- */
.commit { max-width: 1240px; margin: 0 auto; padding: 5rem 1.6rem; }
.commit__grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 3.5rem; align-items: center; }
.commit__text h2 { font-size: clamp(1.8rem, 3.4vw, 2.7rem); margin-bottom: 1.2rem; }
.commit__text p { color: var(--muted); margin-bottom: 1rem; font-size: 1.02rem; }
.commit__list { list-style: none; margin-top: 1.4rem; display: grid; grid-template-columns: 1fr 1fr; gap: .6rem; }
.commit__list li { color: var(--green); font-weight: 500; font-size: .95rem; display: flex; align-items: center; gap: .45rem; }
.commit__list .ico { width: 1.05rem; height: 1.05rem; color: var(--maroon); }
.commit__media img { border-radius: var(--radius); box-shadow: var(--shadow); aspect-ratio: 4/5; object-fit: cover; width: 100%; }

.partners { margin-top: 4.5rem; text-align: center; }
.partners__title { font-family: var(--serif); color: var(--green); font-size: 1.4rem; margin-bottom: 1.8rem; }
.partners__grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 1.2rem; }
.partner {
  background: #fff; border: 1px solid var(--line); border-radius: 14px; padding: 1.4rem .8rem;
  display: flex; flex-direction: column; align-items: center; gap: .6rem; font-size: 1.8rem;
  box-shadow: 0 6px 16px rgba(30,40,30,.06); transition: transform .2s, border-color .2s;
}
.partner:hover { transform: translateY(-4px); border-color: var(--gold); }
.partner span { font-size: .78rem; font-family: var(--sans); font-weight: 600; color: var(--muted); line-height: 1.3; }
.partner .ico { width: 2.1rem; height: 2.1rem; color: var(--maroon); }

/* ---------- Testimonials ---------- */
.testi { background: var(--cream-2); padding: 4.5rem 1.6rem; }
.testi__viewport { max-width: 1180px; margin: 0 auto; overflow: hidden; }
.testi__track { display: flex; transition: transform .5s ease; }
.testi__card {
  flex: 0 0 33.3333%; padding: 0 .9rem;
}
.testi__inner {
  background: #fff; border-radius: var(--radius); padding: 2rem 1.8rem; height: 100%;
  box-shadow: var(--shadow); border: 1px solid var(--line);
}
.testi__stars { color: var(--gold); display: flex; gap: 3px; margin-bottom: .9rem; }
.testi__stars .ico { width: 1.15rem; height: 1.15rem; }
.testi__quote { color: var(--ink); font-style: italic; margin-bottom: 1.3rem; font-size: 1rem; line-height: 1.7; }
.testi__person { display: flex; align-items: center; gap: .8rem; }
.testi__avatar { width: 46px; height: 46px; border-radius: 50%; background: var(--green); color: var(--cream); display: grid; place-items: center; font-family: var(--serif); font-weight: 700; font-size: 1.1rem; }
.testi__name { font-weight: 600; color: var(--green); }
.testi__role { font-size: .82rem; color: var(--muted); }
.testi__nav { display: flex; align-items: center; justify-content: center; gap: 1.2rem; margin-top: 2rem; }
.testi__nav button { width: 46px; height: 46px; border-radius: 50%; border: 1.5px solid var(--green); background: transparent; color: var(--green); font-size: 1.4rem; cursor: pointer; transition: .2s; line-height: 1; }
.testi__nav button:hover { background: var(--green); color: #fff; }
.testi__dots { display: flex; gap: .5rem; }
.testi__dots button { width: 10px; height: 10px; border-radius: 50%; border: none; background: var(--line); cursor: pointer; padding: 0; transition: .2s; }
.testi__dots button.active { background: var(--maroon); width: 26px; border-radius: 5px; }

/* ---------- Gallery ---------- */
.gallery { max-width: 1240px; margin: 0 auto; padding: 5rem 1.6rem; }
.gallery__grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem;
  grid-auto-flow: dense;
}
.gallery__item {
  position: relative; border: none; padding: 0; cursor: pointer; overflow: hidden;
  border-radius: var(--radius); aspect-ratio: 1 / 1; background: var(--cream-2);
  box-shadow: var(--shadow); display: block;
}
.gallery__item--wide { grid-column: span 2; aspect-ratio: 2 / 1; }
.gallery__item img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s; }
.gallery__item:hover img { transform: scale(1.07); }
.gallery__cap {
  position: absolute; left: 0; right: 0; bottom: 0; padding: 1.6rem 1rem .9rem;
  color: #fff; font-size: .85rem; font-weight: 600; text-align: left;
  background: linear-gradient(to top, rgba(21,41,30,.88), rgba(21,41,30,0));
  opacity: 0; transform: translateY(8px); transition: opacity .3s, transform .3s;
}
.gallery__item:hover .gallery__cap, .gallery__item:focus-visible .gallery__cap { opacity: 1; transform: translateY(0); }
.gallery__item::after {
  content: ""; position: absolute; top: 10px; right: 12px;
  background: rgba(21,41,30,.6) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23fff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M9 4H4v5M15 4h5v5M9 20H4v-5M15 20h5v-5'/%3E%3C/svg%3E") center/16px no-repeat;
  width: 32px; height: 32px; border-radius: 50%;
  opacity: 0; transition: opacity .3s;
}
.gallery__item:hover::after { opacity: 1; }

/* ---------- Lightbox ---------- */
.lightbox {
  position: fixed; inset: 0; z-index: 120; background: rgba(10,18,13,.94);
  display: grid; place-items: center; padding: 2rem; animation: fade .25s forwards;
}
.lightbox[hidden] { display: none; }
.lightbox img { max-width: 90vw; max-height: 86vh; border-radius: 10px; box-shadow: 0 20px 60px rgba(0,0,0,.5); }
.lightbox__close, .lightbox__nav {
  position: absolute; background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.25);
  color: #fff; cursor: pointer; border-radius: 50%; display: grid; place-items: center; transition: background .2s;
}
.lightbox__close { top: 1.4rem; right: 1.4rem; width: 48px; height: 48px; font-size: 1.3rem; }
.lightbox__nav { top: 50%; transform: translateY(-50%); width: 54px; height: 54px; font-size: 2rem; }
.lightbox__prev { left: 1.4rem; }
.lightbox__next { right: 1.4rem; }
.lightbox__close:hover, .lightbox__nav:hover { background: var(--maroon); }

/* ---------- Footer ---------- */
.footer { background: var(--green-deep); color: var(--cream); padding: 3.5rem 1.6rem 1rem; }
.footer__grid { max-width: 1240px; margin: 0 auto; display: grid; grid-template-columns: 1.4fr 1fr 1.7fr; gap: 2.5rem; }
.brand--light .brand__text strong { color: #fff; }
.brand--light .brand__text em { color: #c98b94; }
.footer__hours { margin: 1.4rem 0; font-size: .9rem; color: rgba(246,241,228,.75); line-height: 1.8; }
.footer__hours strong { color: var(--gold); font-size: .95rem; }
.footer__hours a { color: var(--cream); }
.footer__hours a:hover { color: var(--gold); }
.socials { display: flex; gap: .7rem; }
.socials a { width: 40px; height: 40px; border-radius: 50%; background: rgba(255,255,255,.08); display: grid; place-items: center; color: var(--cream); font-size: 1rem; transition: .2s; }
.socials a:hover { background: var(--maroon); transform: translateY(-3px); }
.socials .ico { width: 1.15rem; height: 1.15rem; }
.footer__links h4 { color: #fff; font-family: var(--sans); font-size: 1rem; margin-bottom: 1.1rem; }
.footer__links a { display: block; color: rgba(246,241,228,.72); font-size: .92rem; margin-bottom: .65rem; transition: .2s; }
.footer__links a:hover { color: var(--gold); padding-left: 5px; }
.footer__map h4 { color: #fff; font-family: var(--sans); font-size: 1rem; margin-bottom: .8rem; }
.footer__addr { font-size: .92rem; color: var(--gold); margin-bottom: .9rem; font-weight: 500; }
.footer__addr a { display: inline-flex; align-items: center; gap: .35rem; color: var(--gold); transition: color .2s; }
.footer__addr a:hover { color: #fff; text-decoration: underline; }
.map-embed { border-radius: 12px; overflow: hidden; margin-bottom: 1rem; border: 1px solid rgba(255,255,255,.12); }
.map-embed iframe { display: block; filter: saturate(.9); }
.footer__bottom { max-width: 1240px; margin: 2.5rem auto 0; padding-top: 1.4rem; border-top: 1px solid rgba(255,255,255,.1); text-align: center; font-size: .82rem; color: rgba(246,241,228,.55); }
.footer__credits { margin-top: .55rem; font-size: .8rem; color: rgba(246,241,228,.5); }
.footer__credits a { color: var(--gold); font-weight: 600; transition: color .2s; }
.footer__credits a:hover { color: #fff; text-decoration: underline; }

/* ---------- Mobile sticky CTA ---------- */
.mobile-cta { display: none; position: fixed; bottom: 0; left: 0; right: 0; z-index: 55; }
.mobile-cta a { flex: 1; text-align: center; padding: .95rem; font-weight: 600; font-size: .92rem; color: #fff; }
.mobile-cta__call { background: var(--green); }
.mobile-cta__dir { background: var(--maroon); }

@keyframes fade { to { opacity: 1; } }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .grid { grid-template-columns: repeat(2, 1fr); }
  .partners__grid { grid-template-columns: repeat(3, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .commit__grid { gap: 2rem; }
  .gallery__grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 820px) {
  .nav__links {
    position: fixed; top: 0; right: 0; height: 100vh; width: min(290px, 80vw);
    background: var(--green); flex-direction: column; padding: 5.5rem 2rem 2rem;
    gap: 1.4rem; transform: translateX(100%); transition: transform .3s; box-shadow: -10px 0 40px rgba(0,0,0,.25); z-index: 70; margin-left: 0;
  }
  .nav__links.open { transform: translateX(0); }
  .nav__links a { color: var(--cream); font-size: 1.05rem; }
  .nav__links a.active, .nav__links a:hover { color: var(--gold); }
  .nav__links a::after { background: var(--gold); }
  .hamburger { display: flex; position: relative; z-index: 80; }
  .values__inner { grid-template-columns: repeat(2, 1fr); gap: 1.8rem; }
  .commit__grid { grid-template-columns: 1fr; }
  .commit__media { order: -1; }
  .commit__media img { aspect-ratio: 16/10; }
  .testi__card { flex: 0 0 100%; }
  .gallery__grid { grid-template-columns: repeat(2, 1fr); }
  .specials__inner { flex-direction: column-reverse; text-align: center; }
  .specials__text { text-align: center; }
  .mobile-cta { display: flex; }
  body { padding-bottom: 52px; }
  .footer { padding-bottom: 70px; }
}

@media (max-width: 560px) {
  .grid { grid-template-columns: 1fr; }
  .gallery__grid { gap: .7rem; }
  .gallery__item--wide { grid-column: span 2; }
  .partners__grid { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr; }
  .hero { min-height: 78vh; }
  .hero__btns { flex-direction: column; }
  .hero__btns .btn { width: 100%; }
  .commit__list { grid-template-columns: 1fr; }
  .topbar span { font-size: .72rem; }
}
