/* ===========================================================
   Abbas Xpress Mart — shared stylesheet
   Design language carried over from Concept 01 "Bold & Retro"
   =========================================================== */

:root{
  --red:#FC2319; --red-dk:#D4160D;
  --navy:#27387E; --navy-dk:#1B2757;
  --teal:#00A19A; --teal-dk:#00817C;
  --yellow:#F9D25C; --yellow-dk:#EFBE31;
  --pink:#FF6FA5;
  --ink:#373435; --ink-soft:#5A5657;
  --cream:#FFF9EC; --paper:#FFFFFF;
  --r:18px;
  --display:'Baloo 2','Trebuchet MS',system-ui,sans-serif;
  --body:'Inter',system-ui,-apple-system,'Segoe UI',sans-serif;
  --bw:4px;                     /* border weight */
  --sh:0 6px 0 var(--ink);      /* hard shadow */
  --sh-sm:0 4px 0 var(--ink);
  --sh-lg:0 10px 0 var(--ink);
}

*{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth;overflow-x:clip;scroll-padding-top:110px}
body{font-family:var(--body);color:var(--ink);background:var(--cream);line-height:1.65;-webkit-font-smoothing:antialiased;overflow-x:clip}
img{max-width:100%;display:block;height:auto}
a{color:inherit;text-decoration:none}
button{font:inherit}
h1,h2,h3,h4,.dsp{font-family:var(--display);line-height:1.06;letter-spacing:-.01em}
.wrap{width:min(1180px,92vw);margin-inline:auto}
.center{text-align:center}
:focus-visible{outline:3px solid var(--navy);outline-offset:3px;border-radius:6px}
.skip{position:absolute;left:-9999px;top:0;background:var(--ink);color:var(--yellow);padding:.7rem 1.1rem;z-index:200;border-radius:0 0 12px 0;font-weight:700}
.skip:focus{left:0}
.sr{position:absolute;width:1px;height:1px;overflow:hidden;clip:rect(0 0 0 0);white-space:nowrap}

/* ---------- ticker ---------- */
.ticker{background:var(--navy);color:#fff;font-weight:600;font-size:.82rem;letter-spacing:.04em;text-transform:uppercase;overflow:hidden;white-space:nowrap;padding:.55rem 0}
.ticker span{display:inline-block;padding-inline:1.4rem;opacity:.95}
.ticker span::after{content:"★";margin-left:1.4rem;color:var(--yellow)}
.ticker-track{display:inline-flex;animation:slide 34s linear infinite;will-change:transform}
@keyframes slide{to{transform:translateX(-50%)}}
@media (prefers-reduced-motion:reduce){.ticker-track{animation:none}}

/* ---------- header ---------- */
header{position:sticky;top:0;z-index:60;background:var(--yellow);border-bottom:var(--bw) solid var(--ink)}
.nav{display:flex;align-items:center;justify-content:space-between;gap:1rem;padding:.6rem 0}
.brand{display:flex;align-items:center;gap:.6rem;flex:0 0 auto}
.brand img{height:50px;width:auto}
.menu{display:flex;gap:.2rem;align-items:center}
.menu a{font-family:var(--display);font-weight:700;font-size:1rem;padding:.45rem .75rem;border-radius:999px;transition:.15s}
.menu a:hover{background:var(--ink);color:var(--yellow)}
.menu a[aria-current=page]{background:var(--ink);color:var(--yellow)}
.cta{background:var(--red);color:#fff!important;border:3px solid var(--ink);box-shadow:0 3px 0 var(--ink);padding:.45rem 1rem!important;border-radius:999px;font-weight:800}
.cta:hover{transform:translateY(2px);box-shadow:0 1px 0 var(--ink);background:var(--red-dk)!important;color:#fff!important}
.burger{display:none;background:var(--ink);border:0;border-radius:12px;padding:.6rem .7rem;cursor:pointer}
.burger span{display:block;width:22px;height:3px;background:var(--yellow);border-radius:2px}
.burger span+span{margin-top:4px}

/* live open / closed badge */
.status{display:inline-flex;align-items:center;gap:.45rem;background:#fff;border:3px solid var(--ink);border-radius:999px;padding:.28rem .8rem;font-size:.78rem;font-weight:700;box-shadow:0 3px 0 var(--ink);white-space:nowrap}
.status .dot{width:10px;height:10px;border-radius:50%;background:#9a9a9a;flex:0 0 10px}
.status.is-open .dot{background:#18a558;box-shadow:0 0 0 4px rgba(24,165,88,.22)}
.status.is-closed .dot{background:var(--red);box-shadow:0 0 0 4px rgba(252,35,25,.18)}
.status b{font-weight:800}
/* The copy of the badge inside .menu exists for the mobile drawer only —
   hidden by default so it never doubles up with the header's own badge
   above the 920px burger breakpoint. Re-shown inside the drawer below. */
.menu .status{display:none}

@media(max-width:1040px){.menu a{font-size:.94rem;padding:.4rem .6rem}.status{display:none}}
@media(max-width:920px){
  .menu{position:fixed;inset:0 0 0 auto;width:min(330px,86vw);background:var(--yellow);border-left:var(--bw) solid var(--ink);flex-direction:column;align-items:stretch;padding:5.5rem 1.2rem 2rem;gap:.35rem;transform:translateX(100%);visibility:hidden;transition:.28s ease;box-shadow:-10px 0 30px rgba(0,0,0,.15);overflow-y:auto}
  .menu.open{transform:none;visibility:visible}
  .menu a{font-size:1.2rem;padding:.7rem .9rem}
  .menu .status{display:inline-flex;align-self:flex-start;margin-top:.6rem}
  .burger{display:block;position:relative;z-index:70}
  .brand img{height:42px}
}
.scrim{position:fixed;inset:0;background:rgba(0,0,0,.45);opacity:0;visibility:hidden;transition:.25s;z-index:55}
.scrim.on{opacity:1;visibility:visible}

/* ---------- buttons ---------- */
.btn{display:inline-flex;align-items:center;gap:.5rem;font-family:var(--display);font-weight:800;font-size:1.03rem;padding:.72rem 1.45rem;border-radius:999px;border:3px solid var(--ink);box-shadow:var(--sh-sm);transition:.15s;cursor:pointer;text-align:center}
.btn:hover{transform:translateY(3px);box-shadow:0 1px 0 var(--ink)}
.btn svg{width:19px;height:19px;stroke:currentColor;fill:none;stroke-width:2.3;stroke-linecap:round;stroke-linejoin:round}
.btn-red{background:var(--red);color:#fff}
.btn-white{background:#fff;color:var(--ink)}
.btn-yellow{background:var(--yellow);color:var(--ink)}
.btn-teal{background:var(--teal);color:#fff}
.btn-sm{font-size:.9rem;padding:.5rem 1rem;box-shadow:0 3px 0 var(--ink)}

/* ---------- hero ---------- */
.hero{position:relative;border-bottom:var(--bw) solid var(--ink);overflow:hidden;background:var(--teal)}
.hero-bg{position:absolute;inset:0;width:100%;height:100%;object-fit:cover}
.hero::after{content:"";position:absolute;inset:0;background:linear-gradient(100deg,rgba(20,26,24,.86) 0%,rgba(20,26,24,.68) 42%,rgba(20,26,24,.30) 100%)}
.hero>.wrap{position:relative;z-index:2}
.hero-grid{display:grid;grid-template-columns:1.08fr .92fr;gap:2.6rem;align-items:center;padding:4rem 0 3.6rem}
.eyebrow{display:inline-flex;align-items:center;gap:.5rem;background:var(--yellow);border:3px solid var(--ink);border-radius:999px;padding:.34rem .95rem;font-weight:700;font-size:.78rem;text-transform:uppercase;letter-spacing:.08em;box-shadow:0 3px 0 var(--ink)}
.hero h1{font-size:clamp(2.5rem,6vw,4.4rem);color:#fff;margin:1.1rem 0 .9rem;text-shadow:0 5px 0 var(--ink),0 6px 22px rgba(0,0,0,.4)}
.hero h1 em{font-style:normal;color:var(--yellow)}
.hero .lede{font-size:clamp(1rem,1.3vw,1.12rem);color:#fff;max-width:48ch;font-weight:500;background:rgba(18,32,30,.5);padding:.9rem 1.15rem;border-radius:14px;backdrop-filter:blur(3px);border:2px solid rgba(255,255,255,.14)}
.hero-btns{display:flex;flex-wrap:wrap;gap:.75rem;margin-top:1.7rem}
.hero-card{background:#fff;border:var(--bw) solid var(--ink);border-radius:24px;box-shadow:0 8px 0 var(--ink);padding:1.1rem;transform:rotate(-1.6deg)}
.hero-card>img{border:3px solid var(--ink);border-radius:16px}
.hero-card .strip{margin-top:.9rem;background:var(--navy);color:#fff;border-radius:14px;padding:.7rem .8rem;display:flex;justify-content:space-around;text-align:center;font-size:.68rem;font-weight:700;text-transform:uppercase;letter-spacing:.05em;gap:.4rem}
.hero-card .strip b{display:block;font-family:var(--display);font-size:1.1rem;letter-spacing:0;color:var(--yellow)}
/* hero rotating image card (home page) */
.hero-rot{padding:1.05rem 1.05rem .95rem}
.hero-rot .frames{position:relative;aspect-ratio:4/3;border:3px solid var(--ink);border-radius:16px;overflow:hidden;background:var(--cream)}
.hero-rot .frames img{position:absolute;inset:0;width:100%;height:100%;object-fit:cover;opacity:0;transition:opacity .9s ease}
.hero-rot .frames img.on{opacity:1}
.hero-rot .cap{position:absolute;left:0;right:0;bottom:0;margin:0;padding:1.9rem .9rem .7rem;color:#fff;font-weight:700;font-size:.92rem;letter-spacing:.01em;background:linear-gradient(180deg,rgba(20,26,24,0) 0%,rgba(20,26,24,.78) 65%);text-shadow:0 1px 6px rgba(0,0,0,.5)}
.hero-rot .dots{display:flex;gap:.42rem;justify-content:center;margin-top:.8rem}
.hero-rot .dots button{width:10px;height:10px;padding:0;border-radius:50%;border:2.5px solid var(--ink);background:#fff;cursor:pointer;transition:.18s}
.hero-rot .dots button.on{background:var(--red);transform:scale(1.18)}
@media(prefers-reduced-motion:reduce){.hero-rot .frames img{transition:none}}
@media(max-width:880px){
  .hero-grid{grid-template-columns:1fr;gap:1.8rem;padding:2.6rem 0 2.4rem}
  /* width:100% is required here: this is a grid item with margin-inline:auto,
     and per the CSS box-alignment spec an auto inline margin overrides grid's
     default stretch, sizing the box to its content instead. .hero-rot's only
     content (.frames) is an aspect-ratio box whose children are all
     position:absolute, so it has ~no intrinsic width to size against and
     collapses to a sliver without an explicit width. */
  .hero-card{transform:none;width:100%;max-width:420px;margin-inline:auto}
  .hero::after{background:linear-gradient(180deg,rgba(20,26,24,.82) 0%,rgba(20,26,24,.72) 100%)}
}

/* compact page hero (inner pages) */
.hero-sm .hero-grid{grid-template-columns:1fr;padding:3rem 0 2.6rem;max-width:760px}
.hero-sm h1{font-size:clamp(2.2rem,5.2vw,3.5rem)}
.crumbs{font-size:.82rem;color:rgba(255,255,255,.85);font-weight:600;margin-bottom:.3rem}
.crumbs a:hover{color:var(--yellow)}
.crumbs span{opacity:.6;padding:0 .35rem}

/* ---------- service strip ---------- */
.strip-services{background:var(--navy);padding:1.5rem 0;border-bottom:var(--bw) solid var(--ink)}
.svc-row{display:grid;grid-template-columns:repeat(4,1fr);gap:1rem}
.svc{display:flex;align-items:center;gap:.75rem;color:#fff}
.svc .ic{flex:0 0 44px;height:44px;display:grid;place-items:center;background:var(--yellow);border:3px solid var(--ink);border-radius:12px}
.svc .ic svg{width:22px;height:22px;stroke:var(--ink);fill:none;stroke-width:2.2;stroke-linecap:round;stroke-linejoin:round}
.svc b{font-family:var(--display);font-size:1.04rem;display:block;line-height:1.15}
.svc small{opacity:.82;font-size:.78rem}
@media(max-width:820px){.svc-row{grid-template-columns:repeat(2,1fr);gap:1.1rem}}
@media(max-width:420px){.svc-row{grid-template-columns:1fr}}

/* ---------- sections ---------- */
section{padding:4.2rem 0}
section.tight{padding:3rem 0}
.sec-head{text-align:center;max-width:660px;margin:0 auto 2.6rem}
.sec-head.left{text-align:left;margin-inline:0}
.tag{display:inline-block;background:var(--red);color:#fff;font-weight:700;font-size:.74rem;text-transform:uppercase;letter-spacing:.1em;padding:.3rem .85rem;border-radius:999px;border:3px solid var(--ink);box-shadow:0 3px 0 var(--ink)}
.tag-teal{background:var(--teal)}
.tag-navy{background:var(--navy)}
.tag-yellow{background:var(--yellow);color:var(--ink)}
.tag-pink{background:var(--pink)}
.sec-head h2{font-size:clamp(2rem,4.6vw,3rem);margin:1rem 0 .6rem}
.sec-head p{color:var(--ink-soft);font-size:1.02rem}
.bg-cream{background:var(--cream)}
.bg-white{background:#fff}
.bg-soft{background:linear-gradient(180deg,#fff 0%,var(--cream) 100%)}

/* ---------- photo cards ---------- */
.cards{display:grid;grid-template-columns:repeat(3,1fr);gap:1.4rem}
.cards.two{grid-template-columns:repeat(2,1fr)}
.cards.four{grid-template-columns:repeat(4,1fr)}
.card{background:#fff;border:var(--bw) solid var(--ink);border-radius:22px;box-shadow:var(--sh);overflow:hidden;transition:.18s;display:flex;flex-direction:column}
.card:hover{transform:translateY(-4px);box-shadow:var(--sh-lg)}
.card .shot{position:relative;aspect-ratio:4/3;border-bottom:var(--bw) solid var(--ink);overflow:hidden;background:var(--cream)}
.card .shot img{width:100%;height:100%;object-fit:cover;transition:transform .4s ease}
.card:hover .shot img{transform:scale(1.05)}
.card .chip{position:absolute;top:10px;left:10px;background:var(--yellow);border:2.5px solid var(--ink);border-radius:999px;padding:.16rem .6rem;font-size:.68rem;font-weight:800;text-transform:uppercase;letter-spacing:.06em}
.card .chip.age{background:var(--red);color:#fff}
.card .bd{padding:1.1rem 1.2rem 1.35rem;flex:1;display:flex;flex-direction:column}
.card h3{font-size:1.42rem;margin-bottom:.35rem}
.card p{font-size:.92rem;color:var(--ink-soft);margin-bottom:.85rem;flex:1}
.pills{display:flex;flex-wrap:wrap;gap:.35rem}
.pill{font-size:.71rem;font-weight:600;background:var(--cream);border:2px solid var(--ink);border-radius:999px;padding:.18rem .58rem}
@media(max-width:980px){.cards.four{grid-template-columns:repeat(2,1fr)}}
@media(max-width:900px){.cards{grid-template-columns:repeat(2,1fr)}}
@media(max-width:600px){.cards,.cards.two,.cards.four{grid-template-columns:1fr}}

/* ---------- feature (image + copy) ---------- */
.feature{display:grid;grid-template-columns:1fr 1fr;gap:3rem;align-items:center}
.feature.flip .fx-media{order:2}
.feature h2{font-size:clamp(1.9rem,4.2vw,2.8rem);margin:1rem 0 .8rem}
.feature p{color:var(--ink-soft);margin-bottom:1rem;max-width:50ch}
.fx-media img{border:var(--bw) solid var(--ink);border-radius:24px;box-shadow:var(--sh)}
.fx-stack{display:grid;grid-template-columns:1fr 1fr;gap:1rem}
.fx-stack img{border:var(--bw) solid var(--ink);border-radius:20px;box-shadow:var(--sh-sm);width:100%;aspect-ratio:1;object-fit:cover}
.fx-stack img:first-child{grid-row:span 2;aspect-ratio:auto;height:100%}
@media(max-width:880px){.feature{grid-template-columns:1fr;gap:2rem}.feature.flip .fx-media{order:0}}

/* ---------- occasions ---------- */
.occasions{display:flex;flex-wrap:wrap;gap:.5rem;margin-bottom:1.5rem}
.occasions span{background:#fff;border:3px solid var(--ink);border-radius:999px;padding:.35rem .9rem;font-weight:600;font-size:.86rem;box-shadow:0 3px 0 var(--ink)}

/* ---------- dark services ---------- */
.dark{background:var(--ink);color:#fff}
.dark .sec-head h2{color:#fff}
.dark .sec-head p{color:rgba(255,255,255,.72)}
.svc-cards{display:grid;grid-template-columns:repeat(3,1fr);gap:1.3rem}
.svc-card{background:#403c3d;border:3px solid #55504f;border-radius:20px;overflow:hidden;transition:.18s;display:flex;flex-direction:column}
.svc-card:hover{border-color:var(--yellow);transform:translateY(-4px)}
.svc-card .shot{aspect-ratio:16/10;overflow:hidden;border-bottom:3px solid #55504f}
.svc-card .shot img{width:100%;height:100%;object-fit:cover}
.svc-card .bd{padding:1.3rem 1.2rem 1.4rem;flex:1}
.svc-card .badge{width:48px;height:48px;border-radius:14px;display:grid;place-items:center;margin:-3.2rem 0 .8rem;border:3px solid var(--ink);position:relative;box-shadow:0 3px 0 var(--ink)}
.svc-card .badge svg{width:24px;height:24px;stroke:var(--ink);fill:none;stroke-width:2.2;stroke-linecap:round;stroke-linejoin:round}
.svc-card h3{font-size:1.3rem;margin-bottom:.4rem}
.svc-card p{font-size:.9rem;color:rgba(255,255,255,.74)}
.svc-card .note{margin-top:.75rem;background:none;border:0;padding:0;border-radius:0;font-size:.74rem;font-weight:800;color:var(--yellow);text-transform:uppercase;letter-spacing:.07em}
@media(max-width:980px){.svc-cards{grid-template-columns:repeat(2,1fr)}}
@media(max-width:600px){.svc-cards{grid-template-columns:1fr}}

/* ---------- gallery + lightbox ---------- */
.gallery{display:grid;grid-template-columns:repeat(4,1fr);gap:1rem}
.gallery.g3{grid-template-columns:repeat(3,1fr)}
.gallery button{padding:0;border:var(--bw) solid var(--ink);border-radius:18px;overflow:hidden;box-shadow:var(--sh-sm);background:none;cursor:pointer;transition:.16s;display:block}
.gallery button:hover{transform:translateY(-3px);box-shadow:var(--sh)}
.gallery img{width:100%;aspect-ratio:1;object-fit:cover}
.gallery button.tall{grid-row:span 2}
.gallery button.tall img{aspect-ratio:1/2.08}
.gallery button.wide{grid-column:span 2}
.gallery button.wide img{aspect-ratio:2.08/1}
@media(max-width:900px){.gallery,.gallery.g3{grid-template-columns:repeat(2,1fr)}.gallery button.tall{grid-row:auto}.gallery button.tall img{aspect-ratio:1}.gallery button.wide{grid-column:span 2}}
@media(max-width:520px){.gallery,.gallery.g3{grid-template-columns:1fr}.gallery button.wide{grid-column:auto}.gallery button.wide img{aspect-ratio:4/3}}

.lb{position:fixed;inset:0;background:rgba(20,18,18,.94);z-index:200;display:none;align-items:center;justify-content:center;padding:1.2rem}
.lb.on{display:flex}
.lb img{max-width:min(1100px,94vw);max-height:82vh;border:var(--bw) solid var(--ink);border-radius:18px;background:#000}
.lb .cap{position:absolute;bottom:1.4rem;left:50%;transform:translateX(-50%);color:#fff;font-size:.9rem;background:rgba(0,0,0,.6);padding:.45rem 1rem;border-radius:999px;max-width:90vw;text-align:center}
.lb .x,.lb .prev,.lb .next{position:absolute;background:var(--yellow);border:3px solid var(--ink);border-radius:999px;width:46px;height:46px;display:grid;place-items:center;cursor:pointer;box-shadow:0 3px 0 var(--ink);font-family:var(--display);font-weight:800;font-size:1.3rem;color:var(--ink)}
.lb .x{top:1.1rem;right:1.1rem}
.lb .prev{left:1.1rem;top:50%;transform:translateY(-50%)}
.lb .next{right:1.1rem;top:50%;transform:translateY(-50%)}

/* ---------- brands ---------- */
.brands{background:var(--yellow);border-block:var(--bw) solid var(--ink);padding:2.5rem 0}
.brands h3{text-align:center;font-size:1.3rem;margin-bottom:1.3rem;text-transform:uppercase;letter-spacing:.05em}
.brand-row{display:flex;flex-wrap:wrap;justify-content:center;gap:.65rem}
.brand-row span{background:#fff;border:3px solid var(--ink);border-radius:12px;padding:.5rem 1.05rem;font-family:var(--display);font-weight:700;font-size:.98rem;box-shadow:var(--sh-sm)}

/* ---------- stats ---------- */
.stats{display:grid;grid-template-columns:repeat(3,1fr);gap:1rem;margin-top:1.6rem}
.stat{background:#fff;border:3px solid var(--ink);border-radius:16px;padding:.9rem;text-align:center;box-shadow:var(--sh-sm);min-width:0}
.stat b{display:block;font-family:var(--display);font-size:1.5rem;color:var(--red)}
.stat small{display:block;font-size:.72rem;font-weight:600;text-transform:uppercase;letter-spacing:.05em;color:var(--ink-soft);overflow-wrap:break-word}

/* ---------- visit / hours / map ---------- */
.visit{background:var(--navy);color:#fff}
.visit .sec-head h2{color:#fff}
.visit .sec-head p{color:rgba(255,255,255,.72)}
.visit-grid{display:grid;grid-template-columns:1fr 1.2fr;gap:1.6rem;align-items:start}
.info-card{background:#fff;color:var(--ink);border:var(--bw) solid var(--ink);border-radius:22px;box-shadow:0 6px 0 rgba(0,0,0,.35);padding:1.6rem}
.info-card h3{font-size:1.4rem;margin-bottom:.9rem}
.hrow{display:flex;justify-content:space-between;gap:1rem;padding:.5rem .2rem;border-bottom:2px dashed #e6e0d2;font-size:.94rem}
.hrow:last-of-type{border:0}
.hrow b{font-weight:600}
.hrow.today{background:#fff6d9;margin-inline:-.5rem;padding-inline:.5rem;border-radius:8px;border-bottom-color:transparent}
.hrow.today b::after{content:" · today";font-weight:700;color:var(--red);font-size:.78rem}
.contact-line{display:flex;align-items:flex-start;gap:.7rem;margin-bottom:.85rem;font-size:.95rem}
.contact-line svg{width:20px;height:20px;flex:0 0 20px;margin-top:4px;stroke:var(--red);fill:none;stroke-width:2.2;stroke-linecap:round;stroke-linejoin:round}
.contact-line a:hover{color:var(--red);text-decoration:underline}
.map{border:var(--bw) solid var(--ink);border-radius:22px;overflow:hidden;box-shadow:0 6px 0 rgba(0,0,0,.35);background:#e9edf7;min-height:420px;display:block}
.map iframe{display:block;width:100%;height:100%;min-height:420px;border:0}
@media(max-width:880px){.visit-grid{grid-template-columns:1fr}.map,.map iframe{min-height:320px}}

/* ---------- callout ---------- */
.callout{background:var(--yellow);border:var(--bw) solid var(--ink);border-radius:24px;box-shadow:var(--sh);padding:2.2rem;display:flex;flex-wrap:wrap;gap:1.4rem;align-items:center;justify-content:space-between}
.callout h2{font-size:clamp(1.6rem,3.4vw,2.3rem);margin-bottom:.35rem}
.callout p{color:var(--ink-soft);max-width:52ch}
.callout .acts{display:flex;flex-wrap:wrap;gap:.7rem}

/* ---------- note ---------- */
.note{background:#fff;border:3px dashed var(--navy);border-radius:14px;padding:.85rem 1.1rem;font-size:.86rem;color:var(--navy);font-weight:600}
.note-red{border-color:var(--red);color:var(--red-dk)}

/* ---------- steps / list ---------- */
.ticks{display:grid;gap:.6rem;margin:1rem 0 1.4rem}
.ticks li{list-style:none;display:flex;gap:.65rem;align-items:flex-start;font-size:.96rem;color:var(--ink-soft)}
.ticks li::before{content:"✓";flex:0 0 22px;height:22px;background:var(--teal);color:#fff;border:2px solid var(--ink);border-radius:50%;display:grid;place-items:center;font-size:.7rem;font-weight:900;margin-top:3px}

/* ---------- footer ---------- */
footer{background:var(--ink);color:rgba(255,255,255,.72);padding:3rem 0 1.6rem}
.f-grid{display:grid;grid-template-columns:1.5fr 1fr 1fr 1fr;gap:2rem;margin-bottom:2rem}
footer .flogo{height:54px;width:auto;margin-bottom:.9rem}
footer h4{font-family:var(--display);color:#fff;font-size:1.08rem;margin-bottom:.6rem}
footer a{display:block;padding:.18rem 0;font-size:.91rem;transition:.15s}
footer a:hover{color:var(--yellow)}
footer p{font-size:.9rem;max-width:36ch}
.f-bot{border-top:2px solid #4b4747;padding-top:1.3rem;display:flex;flex-wrap:wrap;gap:.8rem;justify-content:space-between;font-size:.82rem}
.legal{color:rgba(255,255,255,.45);font-size:.77rem;margin-top:.6rem;max-width:none}
@media(max-width:820px){.f-grid{grid-template-columns:1fr 1fr;gap:1.6rem}}
@media(max-width:480px){.f-grid{grid-template-columns:1fr}}

/* ---------- misc ---------- */
.prose p{color:var(--ink-soft);margin-bottom:1rem;max-width:68ch}
.prose h3{font-size:1.5rem;margin:1.8rem 0 .6rem}
.reveal{opacity:0;transform:translateY(18px);transition:opacity .5s ease,transform .5s ease}
.reveal.in{opacity:1;transform:none}
@media (prefers-reduced-motion:reduce){.reveal{opacity:1;transform:none;transition:none}.card:hover,.btn:hover{transform:none}}
