/* ============================================================
   Donair Choices Cafe — Design System & Styles
   Brand: red #C8102E · chrome wordmark · warm cream + charcoal
   ============================================================ */

:root {
  /* Brand */
  --red:        #c8102e;
  --red-dark:   #9c0c22;
  --red-soft:   #f6e2e4;
  /* Neutrals (warm) */
  --ink:        #1c1a18;   /* near-black text / dark sections */
  --ink-2:      #2a2724;
  --charcoal:   #23201d;
  --muted:      #6d635a;
  --line:       #e9e0d4;
  --cream:      #fbf7f1;
  --sand:       #f3ece1;
  --white:      #ffffff;
  --gold:       #c9a24b;
  /* Type */
  --f-head: 'Poppins', 'Montserrat', system-ui, sans-serif;
  --f-body: 'DM Sans', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  --f-script: 'Kaushan Script', cursive;
  /* Metrics */
  --wrap: 1200px;
  --radius: 16px;
  --radius-sm: 10px;
  --shadow-sm: 0 2px 10px rgba(28,26,24,.06);
  --shadow:    0 12px 40px rgba(28,26,24,.12);
  --shadow-lg: 0 24px 70px rgba(28,26,24,.22);
  --ease: cubic-bezier(.2,.7,.2,1);
}

/* ---------- Reset-ish ---------- */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--f-body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
  font-size: 17px;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1,h2,h3,h4 { font-family: var(--f-head); font-weight: 700; line-height: 1.1; margin: 0 0 .4em; letter-spacing: -.01em; }
p { margin: 0 0 1em; }
section { position: relative; }

.wrap { width: min(var(--wrap), 92%); margin-inline: auto; }
.center { text-align: center; }

/* ---------- Buttons ---------- */
.btn {
  --bg: var(--red); --fg: #fff;
  display: inline-flex; align-items: center; gap: .55rem;
  background: var(--bg); color: var(--fg);
  font-family: var(--f-head); font-weight: 600; font-size: .98rem;
  padding: .85rem 1.5rem; border-radius: 999px; border: 2px solid transparent;
  cursor: pointer; transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s;
  box-shadow: 0 8px 22px rgba(200,16,46,.28);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 14px 30px rgba(200,16,46,.36); }
.btn:active { transform: translateY(0); }
.btn--ghost { background: transparent; color: #fff; border-color: rgba(255,255,255,.6); box-shadow: none; }
.btn--ghost:hover { background: rgba(255,255,255,.12); box-shadow: none; }
.btn--dark { background: var(--ink); box-shadow: 0 8px 22px rgba(28,26,24,.28); }
.btn--dark:hover { box-shadow: 0 14px 30px rgba(28,26,24,.34); }
.btn--outline { background: transparent; color: var(--red); border-color: var(--red); box-shadow: none; }
.btn--outline:hover { background: var(--red); color:#fff; }
.btn--lg { padding: 1rem 1.9rem; font-size: 1.05rem; }

/* ---------- Eyebrow / section head ---------- */
.eyebrow {
  font-family: var(--f-head); font-weight: 600; letter-spacing: .18em;
  text-transform: uppercase; font-size: .78rem; color: var(--red);
  display: inline-flex; align-items: center; gap: .6rem; margin-bottom: .8rem;
}
.eyebrow::before { content: ""; width: 26px; height: 2px; background: var(--red); display: inline-block; }
.eyebrow.is-center { justify-content: center; }
.sec-title { font-size: clamp(1.9rem, 4vw, 2.9rem); }
.sec-lead { color: var(--muted); max-width: 60ch; }
.sec-head { margin-bottom: 2.6rem; }
.sec-head.is-center { margin-inline: auto; max-width: 720px; }

.script { font-family: var(--f-script); color: var(--red); font-weight: 400; padding-inline: .08em; }

/* ---------- Top bar ---------- */
.topbar {
  background: var(--ink); color: #efe7db; font-size: .82rem;
  font-family: var(--f-head); letter-spacing: .02em;
}
.topbar .wrap { display: flex; justify-content: space-between; align-items: center; gap: 1rem; padding: .5rem 0; }
.topbar a:hover { color: #fff; }
.topbar .dot { opacity: .4; margin: 0 .55rem; }
.topbar .tb-right { display: flex; align-items: center; gap: 1.2rem; }
.topbar .tb-phone { display: inline-flex; align-items: center; gap: .42rem; }
.topbar .tb-phone svg { width: 14px; height: 14px; fill: currentColor; opacity: .85; }
.topbar .tb-social { display: inline-flex; align-items: center; gap: .8rem; }
.topbar .tb-social a { display: inline-flex; opacity: .82; transition: opacity .2s, transform .2s; }
.topbar .tb-social a:hover { opacity: 1; transform: translateY(-1px); }
.topbar .tb-social svg { width: 16px; height: 16px; fill: currentColor; }
.btn svg.ic { width: 1.05em; height: 1.05em; fill: currentColor; flex: none; }
@media (max-width: 720px){ .topbar .tb-left { display:none; } .topbar .wrap { justify-content:center; } }

/* ---------- Header / nav ---------- */
.header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(251,247,241,.82); backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent; transition: box-shadow .3s, border-color .3s, background .3s;
}
.header.scrolled { box-shadow: var(--shadow-sm); border-color: var(--line); }
.nav { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: .7rem 0; }
.brand { display: flex; align-items: center; }
.brand-logo { height: 60px; width: auto; flex: none; display: block; }
.nav-links { display: flex; align-items: center; gap: 2rem; list-style: none; margin: 0; padding: 0; }
.nav-links a {
  font-family: var(--f-head); font-weight: 500; font-size: .96rem; color: var(--ink);
  position: relative; padding: .3rem 0;
}
.nav-links a::after {
  content: ""; position: absolute; left: 0; bottom: -2px; height: 2px; width: 0; background: var(--red);
  transition: width .28s var(--ease);
}
.nav-links a:hover::after { width: 100%; }
.nav-cta { display: flex; align-items: center; gap: .7rem; }
.nav-toggle { display: none; background: none; border: 0; cursor: pointer; padding: .4rem; }
.nav-toggle span { display:block; width: 26px; height: 2px; background: var(--ink); margin: 5px 0; transition: .3s; border-radius: 2px; }

.nav-menu-cta { display: none; }

@media (max-width: 960px){
  .nav-cta .btn span.long { display: none; }
  /* keep the logo + close button above the overlay so X can close it */
  .brand { position: relative; z-index: 110; }
  .nav-toggle { display: block; position: relative; z-index: 110; }
  .nav-toggle.active span:nth-child(1){ transform: translateY(7px) rotate(45deg); }
  .nav-toggle.active span:nth-child(2){ opacity: 0; }
  .nav-toggle.active span:nth-child(3){ transform: translateY(-7px) rotate(-45deg); }

  /* Full-screen mobile menu overlay (solid, covers the page) */
  .nav-links {
    display: flex;
    position: fixed; top: 0; left: 0; right: 0; bottom: 0;
    width: 100%; height: 100vh; height: 100dvh;
    margin: 0; padding: 5.5rem 1.5rem 2.5rem;
    flex-direction: column; align-items: center; justify-content: center;
    gap: 1.4rem; background: var(--cream); z-index: 90; overflow-y: auto;
    opacity: 0; visibility: hidden; transform: translateY(-10px);
    transition: opacity .3s var(--ease), transform .3s var(--ease), visibility .3s;
  }
  .nav-links.open { opacity: 1; visibility: visible; transform: none; }
  .nav-links li { width: auto; }
  .nav-links a { font-size: 1.65rem; font-weight: 600; color: var(--ink); padding: .35rem 1rem; display: inline-block; }
  .nav-links a::after { display: none; }
  .nav-links a:active { color: var(--red); }
  .nav-menu-cta { display: block; margin-top: 1.2rem; }
  body.nav-open { overflow: hidden; }
  .nav-scrim { display: none; }
}

@media (max-width: 600px){
  .nav-cta .btn { display: none; }   /* rely on hamburger + floating call button */
  .brand-logo { height: 46px; }
}

/* ---------- Hero ---------- */
.hero { position: relative; color: #fff; overflow: hidden; }
.hero-media { position: absolute; inset: 0; z-index: 0; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; }
.hero-media::after {
  content:""; position: absolute; inset: 0;
  background:
    linear-gradient(100deg, rgba(20,16,14,.92) 0%, rgba(20,16,14,.72) 42%, rgba(20,16,14,.28) 72%, rgba(20,16,14,.15) 100%),
    linear-gradient(0deg, rgba(20,16,14,.55), rgba(20,16,14,0) 40%);
}
.hero-inner { position: relative; z-index: 1; padding: clamp(3rem, 8vh, 6rem) 0 clamp(3.4rem, 9vh, 6.5rem); min-height: 88vh; display: flex; align-items: center; }
.hero-content { max-width: 640px; min-width: 0; }
.hero-logo { width: min(430px, 82%); height: auto; margin-bottom: 1.6rem; filter: drop-shadow(0 2px 4px rgba(0,0,0,.6)) drop-shadow(0 8px 22px rgba(0,0,0,.3)); }
.hero h1 { font-size: clamp(2rem, 4.6vw, 3.3rem); line-height: 1.08; margin-bottom: .7rem; overflow-wrap: break-word; }
.hero h1 .script { color: #ffd7b0; font-size: 1.1em; }
.hero-sub { font-size: clamp(1.02rem, 1.6vw, 1.2rem); color: #ece3d8; max-width: 46ch; margin-bottom: 1.6rem; }
.hero-cta { display: flex; flex-wrap: wrap; gap: .8rem; margin-bottom: 1.8rem; }
.hero-badges { display: flex; flex-wrap: wrap; gap: .6rem 1.4rem; align-items: center; }
.chip {
  display: inline-flex; align-items: center; gap: .5rem; font-family: var(--f-head); font-weight: 500;
  font-size: .86rem; color: #fff; background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.22);
  padding: .45rem .85rem; border-radius: 999px; backdrop-filter: blur(4px);
}
.chip svg { width: 16px; height: 16px; }
.rating { display: inline-flex; align-items: center; gap: .5rem; font-family: var(--f-head); font-weight: 500; font-size: .9rem; }
.stars { color: #ffc24b; letter-spacing: 1px; }

.hero-scroll { position: absolute; bottom: 1.2rem; left: 50%; transform: translateX(-50%); z-index: 1; color: rgba(255,255,255,.7); font-size: .75rem; letter-spacing: .2em; text-transform: uppercase; display: flex; flex-direction: column; align-items: center; gap: .4rem; }
.hero-scroll .mouse { width: 22px; height: 34px; border: 2px solid rgba(255,255,255,.5); border-radius: 12px; position: relative; }
.hero-scroll .mouse::after { content:""; position:absolute; top:6px; left:50%; transform: translateX(-50%); width:3px; height:7px; background:#fff; border-radius:2px; animation: scrolldot 1.6s infinite; }
@keyframes scrolldot { 0%{opacity:0; transform:translate(-50%,0)} 40%{opacity:1} 80%{opacity:0; transform:translate(-50%,10px)} }
@media (max-width:720px){ .hero-scroll{ display:none; } }
@media (max-width: 680px){
  /* stop the hero content from overflowing / being clipped, and improve readability */
  .hero-inner { display: block; min-height: auto; padding: 2rem 0 3rem; }
  .hero-content { max-width: 100%; }
  .hero-logo { width: min(300px, 76%); margin-bottom: 1.2rem; }
  .hero h1 { font-size: clamp(1.85rem, 7.4vw, 2.5rem); }
  .hero h1 .script { font-size: 1em; }
  .hero-sub { max-width: 100%; font-size: 1rem; }
  .hero-media::after {
    background:
      linear-gradient(180deg, rgba(20,16,14,.5) 0%, rgba(20,16,14,.32) 34%, rgba(20,16,14,.82) 100%);
  }
  .hero-cta { gap: .6rem; }
  .hero-cta .btn { flex: 1 1 auto; justify-content: center; }
  .hero-badges { gap: .5rem .9rem; }
}

/* ---------- Highlights strip ---------- */
.highlights { padding: clamp(3.5rem, 7vw, 6rem) 0; background: var(--cream); }
.hl-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.4rem; align-items: stretch; }
.hl-card {
  background: var(--white); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm);
  border: 1px solid var(--line); transition: transform .3s var(--ease), box-shadow .3s;
  display: flex; flex-direction: column; height: 100%;
}
.hl-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.hl-card .ph { aspect-ratio: 4/3; overflow: hidden; flex: none; }
.hl-card .ph img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.hl-card:hover .ph img { transform: scale(1.07); }
.hl-body { padding: 1rem 1.1rem 1.2rem; display: flex; flex-direction: column; gap: .3rem; flex: 1; }
.hl-body h3 { font-size: 1.08rem; margin: 0; line-height: 1.25; }
.hl-body small { color: var(--muted); }
.hl-price { font-family: var(--f-head); font-weight: 700; color: var(--red); font-size: 1.05rem; margin-top: auto; padding-top: .5rem; }
@media (max-width: 900px){ .hl-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 480px){ .hl-grid { grid-template-columns: 1fr 1fr; gap: .9rem; } .hl-body { padding:.7rem .8rem 1rem; } }

/* ---------- Menu ---------- */
.menu { padding: clamp(3.5rem, 7vw, 6.5rem) 0; background: var(--sand); }
.menu-note {
  background: #fffaf0; border: 1px dashed var(--gold); color: #7a5a12;
  border-radius: var(--radius-sm); padding: .7rem 1rem; font-size: .86rem; text-align: center;
  max-width: 640px; margin: 0 auto 2.2rem;
}
.filters { display: flex; flex-wrap: wrap; gap: .6rem; justify-content: center; margin-bottom: 2.6rem; }
.filter {
  font-family: var(--f-head); font-weight: 500; font-size: .9rem; color: var(--ink);
  background: #fff; border: 1px solid var(--line); padding: .55rem 1.15rem; border-radius: 999px; cursor: pointer;
  transition: .25s var(--ease);
}
.filter:hover { border-color: var(--red); color: var(--red); }
.filter.active { background: var(--red); color: #fff; border-color: var(--red); box-shadow: 0 6px 16px rgba(200,16,46,.25); }

.menu-cats { display: flex; flex-direction: column; gap: 3.2rem; }
.menu-cat { scroll-margin-top: 90px; }
.menu-cat-head { display: flex; align-items: center; gap: 1rem; margin-bottom: 1.6rem; }
.menu-cat-head h3 { font-size: clamp(1.4rem, 2.6vw, 1.9rem); margin: 0; white-space: nowrap; }
.menu-cat-head .rule { flex: 1; height: 1px; background: var(--line); }
.menu-cat-head .thumb { width: 58px; height: 58px; border-radius: 12px; object-fit: cover; box-shadow: var(--shadow-sm); }

.items { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem 2.6rem; }
.item { display: flex; gap: .8rem; align-items: baseline; padding-bottom: 1rem; border-bottom: 1px dotted var(--line); }
.item-main { flex: 1; }
.item-name { font-family: var(--f-head); font-weight: 600; font-size: 1.04rem; display: flex; align-items: center; gap: .5rem; }
.item-desc { color: var(--muted); font-size: .9rem; margin: .15rem 0 0; line-height: 1.5; }
.item-dots { flex: 1; border-bottom: 2px dotted var(--line); transform: translateY(-4px); min-width: 12px; }
.item-price { font-family: var(--f-head); font-weight: 700; color: var(--red); white-space: nowrap; }
.tag {
  font-family: var(--f-head); font-weight: 600; font-size: .62rem; letter-spacing: .05em; text-transform: uppercase;
  padding: .12rem .45rem; border-radius: 5px; vertical-align: middle;
}
.tag--halal { background: #e7f4ea; color: #1f7a3d; }
.tag--spicy { background: #fdeae2; color: #c0431a; }
.tag--veg   { background: #eaf6e4; color: #3f7a1f; }
.tag--pop   { background: var(--red-soft); color: var(--red-dark); }
@media (max-width: 780px){ .items { grid-template-columns: 1fr; gap: .2rem 0; } }

/* ---------- About ---------- */
.about { padding: clamp(3.5rem, 7vw, 6.5rem) 0; background: var(--cream); }
.about-grid { display: grid; grid-template-columns: 1.05fr 1fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.about-media { position: relative; }
.about-media img { border-radius: var(--radius); box-shadow: var(--shadow); width: 100%; aspect-ratio: 4/5; object-fit: cover; }
.about-media .badge {
  position: absolute; right: -14px; bottom: -14px; background: var(--red); color: #fff;
  border-radius: 16px; padding: 1rem 1.2rem; text-align: center; box-shadow: var(--shadow); font-family: var(--f-head);
}
.about-media .badge b { display: block; font-size: 1.8rem; line-height: 1; }
.about-media .badge span { font-size: .72rem; letter-spacing: .05em; opacity: .9; }
.about-feats { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; margin-top: 1.6rem; }
.feat { display: flex; gap: .8rem; align-items: flex-start; }
.feat .ic { width: 42px; height: 42px; border-radius: 10px; background: var(--red-soft); color: var(--red); display: grid; place-items: center; flex: none; }
.feat .ic svg { width: 22px; height: 22px; }
.feat h4 { margin: 0 0 .1rem; font-size: 1rem; }
.feat p { margin: 0; font-size: .86rem; color: var(--muted); }
@media (max-width: 820px){ .about-grid { grid-template-columns: 1fr; } .about-media { max-width: 460px; margin: 0 auto 1rem; } .about-media .badge{ right: 8px; } }

/* ---------- Gallery ---------- */
.gallery { padding: clamp(3.5rem, 7vw, 6.5rem) 0; background: var(--ink); color: #fff; }
.gallery .sec-lead { color: #c9beb0; }
.gallery .eyebrow { color: #ff9a86; }
.gallery .eyebrow::before { background: #ff9a86; }
.gal-grid { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 200px; gap: 1rem; }
.gal-item { overflow: hidden; border-radius: var(--radius-sm); cursor: pointer; position: relative; }
.gal-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.gal-item:hover img { transform: scale(1.08); }
.gal-item::after { content: "＋"; position: absolute; inset: 0; display: grid; place-items: center; color: #fff; font-size: 1.6rem; background: rgba(28,26,24,.35); opacity: 0; transition: .3s; }
.gal-item:hover::after { opacity: 1; }
.gal-item.tall { grid-row: span 2; }
.gal-item.wide { grid-column: span 2; }
@media (max-width: 780px){ .gal-grid { grid-template-columns: repeat(2,1fr); grid-auto-rows: 150px; } .gal-item.wide{ grid-column: span 2; } }

/* Lightbox */
.lightbox { position: fixed; inset: 0; background: rgba(12,10,9,.92); display: none; place-items: center; z-index: 100; padding: 4vw; }
.lightbox.open { display: grid; }
.lightbox img { max-width: 92vw; max-height: 86vh; border-radius: 8px; box-shadow: var(--shadow-lg); }
.lightbox .lb-close { position: absolute; top: 1.3rem; right: 1.6rem; color: #fff; font-size: 2.2rem; cursor: pointer; line-height: 1; background: none; border: 0; }

/* ---------- Visit / Location ---------- */
.visit { padding: clamp(3.5rem, 7vw, 6.5rem) 0; background: var(--cream); }
.visit-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem,4vw,3.5rem); align-items: stretch; }
.visit-map { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); min-height: 380px; border: 1px solid var(--line); }
.visit-map iframe { width: 100%; height: 100%; min-height: 380px; border: 0; display: block; }
.info-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: clamp(1.4rem, 3vw, 2.2rem); box-shadow: var(--shadow-sm); }
.info-row { display: flex; gap: .9rem; padding: 1rem 0; border-bottom: 1px solid var(--line); }
.info-row:last-of-type { border-bottom: 0; }
.info-row .ic { width: 40px; height: 40px; border-radius: 10px; background: var(--red-soft); color: var(--red); display: grid; place-items: center; flex: none; }
.info-row .ic svg { width: 20px; height: 20px; }
.info-row h4 { margin: 0 0 .15rem; font-size: 1rem; }
.info-row p, .info-row a { margin: 0; color: var(--muted); font-size: .95rem; }
.info-row a:hover { color: var(--red); }
.hours { list-style: none; margin: .2rem 0 0; padding: 0; font-size: .95rem; }
.hours li { display: flex; justify-content: space-between; padding: .18rem 0; color: var(--muted); }
.hours li b { color: var(--ink); font-weight: 600; font-family: var(--f-head); }
.hours li.today { color: var(--red); }
.visit-actions { display: flex; flex-wrap: wrap; gap: .7rem; margin-top: 1.4rem; }
@media (max-width: 860px){ .visit-grid { grid-template-columns: 1fr; } .visit-map { min-height: 300px; } }

/* ---------- Order CTA band ---------- */
.order { padding: clamp(3rem, 6vw, 5rem) 0; background: linear-gradient(120deg, var(--red-dark), var(--red)); color: #fff; text-align: center; }
.order h2 { font-size: clamp(1.7rem, 3.5vw, 2.6rem); }
.order p { color: #ffe1e4; max-width: 52ch; margin: 0 auto 1.8rem; }
.order-apps { display: flex; flex-wrap: wrap; gap: .9rem; justify-content: center; }
.app-btn {
  display: inline-flex; align-items: center; gap: .6rem; background: #fff; color: var(--ink);
  font-family: var(--f-head); font-weight: 600; padding: .85rem 1.4rem; border-radius: 999px;
  transition: transform .25s var(--ease), box-shadow .25s; box-shadow: 0 10px 24px rgba(0,0,0,.18);
}
.app-btn:hover { transform: translateY(-3px); box-shadow: 0 16px 32px rgba(0,0,0,.24); }
.app-btn .dotmark { width: 9px; height: 9px; border-radius: 50%; }

/* ---------- Footer ---------- */
.footer { background: var(--ink); color: #c9beb0; padding: clamp(3rem,5vw,4.5rem) 0 2rem; }
.foot-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 2rem; }
.footer svg.flogo { height: 64px; margin-bottom: 1rem; filter: drop-shadow(0 2px 3px rgba(0,0,0,.5)); }
.footer h5 { font-family: var(--f-head); color: #fff; font-size: .82rem; letter-spacing: .14em; text-transform: uppercase; margin: 0 0 1.1rem; }
.footer ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: .6rem; }
.footer a:hover { color: #fff; }
.footer p { font-size: .92rem; line-height: 1.7; }
.f-social { display: flex; gap: .7rem; margin-top: 1rem; }
.f-social a { width: 40px; height: 40px; border-radius: 50%; border: 1px solid rgba(255,255,255,.18); display: grid; place-items: center; transition: .25s; color: #c9beb0; }
.f-social a:hover { background: var(--red); border-color: var(--red); color: #fff; transform: translateY(-2px); }
.f-social svg { width: 18px; height: 18px; fill: currentColor; }
.foot-bottom { margin-top: 2.6rem; padding-top: 1.4rem; border-top: 1px solid rgba(255,255,255,.12); display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap; font-size: .82rem; opacity: .8; }
@media (max-width: 820px){ .foot-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px){ .foot-grid { grid-template-columns: 1fr; } }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce){
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
  .hero-scroll .mouse::after { animation: none; }
}

/* ---------- Floating call button (mobile) ---------- */
.fab { position: fixed; right: 1rem; bottom: 1rem; z-index: 60; display: none; }
@media (max-width: 640px){ .fab { display: inline-flex; } }
