/* ================================================================
   COSTA MENU PRICES UK — Global Stylesheet
   costamenupricesuk.vercel.app
   ================================================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,700;0,900;1,400&family=Source+Sans+3:wght@300;400;600;700;900&family=JetBrains+Mono:wght@400;500&display=swap');

/* ── Variables ── */
:root {
  --red:        #C8102E;
  --red-dark:   #9E0C24;
  --red-deep:   #6B0818;
  --red-light:  #FFF0EE;
  --red-pale:   #FFE0DB;
  --gold:       #B8860B;
  --gold-light: #FFFBEB;
  --dark:       #1A1A1A;
  --dark2:      #2D2D2D;
  --mid:        #3D3D3D;
  --muted:      #6B7280;
  --border:     #E5E7EB;
  --border2:    #D1D5DB;
  --bg:         #FFFFFF;
  --bg2:        #F9FAFB;
  --bg3:        #FFF8F5;
  --green:      #15803D;
  --green-bg:   #DCFCE7;
  --blue:       #1D4ED8;
  --blue-bg:    #EFF6FF;
  --sh-sm:  0 1px 3px rgba(0,0,0,.08);
  --sh-md:  0 4px 16px rgba(0,0,0,.10);
  --sh-lg:  0 8px 32px rgba(0,0,0,.14);
  --sh-xl:  0 16px 48px rgba(0,0,0,.18);
  --r:      8px;
  --r-lg:   14px;
  --r-xl:   20px;
  --fh: 'Playfair Display', Georgia, serif;
  --fb: 'Source Sans 3', system-ui, sans-serif;
  --fm: 'JetBrains Mono', monospace;
  --W: 1140px;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--fb); color: var(--dark); background: var(--bg); line-height: 1.7; -webkit-font-smoothing: antialiased; }
img  { display: block; max-width: 100%; }
a    { color: var(--red); text-decoration: none; transition: color .15s; }
a:hover { color: var(--red-dark); text-decoration: underline; }
table { border-collapse: collapse; width: 100%; }
ul { list-style: none; }

/* ── Type ── */
h1,h2,h3,h4 { font-family: var(--fh); line-height: 1.2; color: var(--dark); }
h1 { font-size: clamp(1.75rem, 4.5vw, 3rem);   font-weight: 900; }
h2 { font-size: clamp(1.35rem, 3vw,  2.1rem);  font-weight: 700; }
h3 { font-size: clamp(1.05rem, 2vw,  1.45rem); font-weight: 600; }
h4 { font-size: 1rem; font-weight: 700; font-family: var(--fb); }
p  { color: var(--mid); line-height: 1.75; margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

/* ── Layout ── */
.W    { max-width: var(--W); margin: 0 auto; padding: 0 20px; }
.WL   { max-width: 1300px;  margin: 0 auto; padding: 0 20px; }
.sec  { padding: 60px 0; }
.ssec { padding: 36px 0; }

/* Grid helpers */
.g2 { display: grid; grid-template-columns: 1fr 1fr;          gap: 28px; align-items: start; }
.g3 { display: grid; grid-template-columns: repeat(3,1fr);    gap: 20px; }
.g4 { display: grid; grid-template-columns: repeat(4,1fr);    gap: 16px; }

/* ================================================================
   NAVBAR
================================================================ */
.nav {
  background: var(--red);
  position: sticky; top: 0; z-index: 1000;
  box-shadow: 0 2px 16px rgba(200,16,46,.4);
}
.nav-in {
  display: flex; align-items: center; justify-content: space-between;
  height: 64px; max-width: 1300px; margin: 0 auto; padding: 0 20px;
}
.nav-logo {
  display: flex; align-items: center; gap: 9px; color: #fff;
  font-family: var(--fh); font-size: 1.08rem; font-weight: 700;
  white-space: nowrap; text-decoration: none; flex-shrink: 0;
}
.nav-logo:hover { color: #fff; text-decoration: none; }
.nav-logo-icon { font-size: 1.45rem; }
.nav-logo-tag {
  font-size: .58rem; font-family: var(--fb); letter-spacing: .1em;
  text-transform: uppercase; background: rgba(255,255,255,.2);
  padding: 2px 7px; border-radius: 4px; margin-left: 2px;
}
.nav-list { display: flex; align-items: center; gap: 2px; }
.nav-item { position: relative; }
.nav-a {
  color: rgba(255,255,255,.93); font-size: .875rem; font-weight: 600;
  padding: 8px 11px; border-radius: 6px;
  display: flex; align-items: center; gap: 4px;
  transition: background .15s; white-space: nowrap; cursor: pointer;
  text-decoration: none;
}
.nav-a:hover { background: rgba(255,255,255,.15); color: #fff; text-decoration: none; }
.nav-a.cur   { background: rgba(255,255,255,.22); color: #fff; }
.caret { font-size: .58rem; opacity: .8; transition: transform .18s; }
.nav-item:hover .caret { transform: rotate(180deg); }

.drop {
  position: absolute; top: calc(100% + 8px); left: 0;
  background: #fff; border-radius: var(--r-lg); min-width: 215px;
  box-shadow: var(--sh-xl); border: 1px solid var(--border);
  opacity: 0; visibility: hidden; transform: translateY(-8px);
  transition: opacity .18s, transform .18s, visibility .18s;
  z-index: 99; overflow: hidden;
}
.nav-item:hover .drop,
.nav-item:focus-within .drop { opacity: 1; visibility: visible; transform: translateY(0); }
.drop a {
  display: flex; align-items: center; gap: 9px; padding: 10px 15px;
  color: var(--mid); font-size: .875rem; border-bottom: 1px solid var(--border);
  transition: background .1s, color .1s;
}
.drop a:last-child { border-bottom: none; }
.drop a:hover { background: var(--red-light); color: var(--red); text-decoration: none; }
.di { width: 20px; text-align: center; flex-shrink: 0; }

.nav-stamp { font-size: .72rem; color: rgba(255,255,255,.65); font-family: var(--fm); white-space: nowrap; }
.nav-hb { display: none; background: none; border: none; color: #fff; font-size: 1.5rem; padding: 6px; line-height: 1; cursor: pointer; }

/* Mobile open */
.mob-open .nav-list {
  display: flex; flex-direction: column; align-items: stretch;
  position: fixed; top: 64px; left: 0; right: 0; bottom: 0;
  background: var(--red-deep); padding: 10px; gap: 2px; overflow-y: auto; z-index: 999;
}
.mob-open .nav-a { padding: 12px 14px; }
.mob-open .drop {
  position: static; opacity: 1; visibility: visible; transform: none;
  box-shadow: none; border: none; border-radius: 0; background: rgba(0,0,0,.25);
}
.mob-open .drop a { color: rgba(255,255,255,.85); border-bottom-color: rgba(255,255,255,.1); }
.mob-open .drop a:hover { background: rgba(255,255,255,.1); color: #fff; }

/* ================================================================
   UPDATE BAR
================================================================ */
.upd { background: #DCFCE7; border-bottom: 1px solid #86EFAC; padding: 8px 0; }
.upd-in {
  max-width: var(--W); margin: 0 auto; padding: 0 20px;
  display: flex; align-items: center; gap: 7px; flex-wrap: wrap;
  font-size: .82rem; color: var(--green);
}

/* ================================================================
   BREADCRUMB
================================================================ */
.bc-bar { background: var(--bg2); border-bottom: 1px solid var(--border); padding: 9px 0; }
.bc {
  max-width: var(--W); margin: 0 auto; padding: 0 20px;
  display: flex; align-items: center; gap: 6px; flex-wrap: wrap; font-size: .8rem;
}
.bc a { color: var(--muted); }
.bc a:hover { color: var(--red); text-decoration: none; }
.bc-sep { color: var(--border2); }
.bc-now { color: var(--dark); font-weight: 600; }

/* ================================================================
   HERO
================================================================ */
.hero {
  background: linear-gradient(140deg, var(--red-deep) 0%, var(--red) 60%, #E5132F 100%);
  padding: 62px 0 52px; position: relative; overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(circle at 15% 55%, rgba(255,255,255,.07) 0%, transparent 55%),
    radial-gradient(circle at 85% 20%, rgba(255,255,255,.04) 0%, transparent 45%);
}
.hero::after {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background: url("data:image/svg+xml,%3Csvg width='48' height='48' viewBox='0 0 48 48' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M24 0 L48 24 L24 48 L0 24Z'/%3E%3C/g%3E%3C/svg%3E") repeat;
}
.hero-in { position: relative; z-index: 1; max-width: var(--W); margin: 0 auto; padding: 0 20px; }
.hero h1  { color: #fff; margin-bottom: 14px; text-shadow: 0 2px 12px rgba(0,0,0,.25); }
.hero-sub { font-size: 1.05rem; color: rgba(255,255,255,.9); max-width: 640px; margin-bottom: 26px; line-height: 1.7; }
.hero-bc  { font-size: .8rem; color: rgba(255,255,255,.65); margin-bottom: 14px; }
.hero-bc a { color: rgba(255,255,255,.65); }
.hero-bc a:hover { color: rgba(255,255,255,.9); text-decoration: none; }
.tags { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 28px; }
.tag-pill {
  display: inline-flex; align-items: center; gap: 5px; font-size: .8rem;
  color: #fff; font-weight: 600; padding: 5px 12px; border-radius: 20px;
  background: rgba(255,255,255,.15); border: 1px solid rgba(255,255,255,.25);
}

/* ================================================================
   BUTTONS
================================================================ */
.btns { display: flex; flex-wrap: wrap; gap: 12px; }
.btn {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 11px 22px; border-radius: var(--r); font-weight: 700; font-size: .9rem;
  border: none; cursor: pointer; white-space: nowrap;
  transition: transform .15s, box-shadow .15s; text-decoration: none;
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--sh-md); text-decoration: none; }
.btn-w     { background: #fff; color: var(--red); }
.btn-w:hover { color: var(--red-dark); }
.btn-ghost { background: transparent; color: #fff; border: 2px solid rgba(255,255,255,.45); }
.btn-ghost:hover { background: rgba(255,255,255,.15); border-color: rgba(255,255,255,.8); color: #fff; }
.btn-red   { background: var(--red); color: #fff; }
.btn-red:hover { background: var(--red-dark); color: #fff; }
.btn-ol    { background: transparent; color: var(--red); border: 2px solid var(--red); }
.btn-ol:hover { background: var(--red); color: #fff; }
.btn-grn   { background: var(--green); color: #fff; }
.btn-grn:hover { background: #166534; color: #fff; }
.btn-sm    { padding: 7px 14px; font-size: .82rem; }

/* ================================================================
   STATS BAR
================================================================ */
.stats { background: var(--dark2); padding: 13px 0; }
.stats-in {
  max-width: var(--W); margin: 0 auto; padding: 0 20px;
  display: flex; align-items: center; justify-content: center; flex-wrap: wrap;
}
.sp { display: flex; align-items: center; gap: 6px; padding: 4px 20px; border-right: 1px solid rgba(255,255,255,.12); }
.sp:last-child { border-right: none; }
.sp span { font-size: .8rem; color: rgba(255,255,255,.75); font-family: var(--fm); }
.sp strong { color: #fff; }

/* ================================================================
   LABELS / TAGS
================================================================ */
.lbl {
  display: inline-block; font-size: .68rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: .08em; padding: 3px 10px; border-radius: 20px; margin-bottom: 8px;
  font-family: var(--fb);
}
.lbl-r  { background: var(--red);   color: #fff; }
.lbl-d  { background: var(--dark);  color: #fff; }
.lbl-g  { background: var(--green); color: #fff; }
.lbl-gd { background: var(--gold);  color: #fff; }
.lbl-b  { background: var(--blue);  color: #fff; }
.lbl-gh { background: rgba(255,255,255,.2); color: #fff; }

/* Item tags */
.it { display: inline-block; font-size: .61rem; font-weight: 700; text-transform: uppercase; letter-spacing: .04em; padding: 2px 6px; border-radius: 3px; margin-left: 5px; vertical-align: middle; }
.it-p  { background: var(--red-light); color: var(--red); }
.it-n  { background: #FEF3C7; color: #92400E; }
.it-v  { background: var(--green-bg); color: var(--green); }
.it-gf { background: var(--blue-bg);  color: var(--blue); }

/* ================================================================
   CATEGORY CARDS
================================================================ */
.cat-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(148px, 1fr)); gap: 13px; }
.cat-card {
  background: var(--bg); border: 1.5px solid var(--border); border-radius: var(--r-xl);
  padding: 18px 13px; text-align: center; text-decoration: none;
  display: flex; flex-direction: column; align-items: center; gap: 7px;
  transition: border-color .2s, transform .2s, box-shadow .2s;
}
.cat-card:hover { border-color: var(--red); transform: translateY(-3px); box-shadow: var(--sh-md); text-decoration: none; }
.cc-icon { font-size: 2rem; line-height: 1; }
.cc-name { font-size: .875rem; font-weight: 700; color: var(--dark); }
.cc-meta { font-size: .72rem; color: var(--muted); font-family: var(--fm); }

/* ================================================================
   PRICE TABLES
================================================================ */
.tbl-wrap { overflow-x: auto; border-radius: var(--r); box-shadow: var(--sh-sm); border: 1px solid var(--border); }
.pt { width: 100%; font-size: .9rem; }
.pt thead tr { background: var(--dark); }
.pt thead th {
  padding: 11px 16px; color: #fff; font-weight: 700; font-size: .75rem;
  letter-spacing: .05em; text-transform: uppercase; text-align: left; white-space: nowrap;
}
.pt thead th.tc { text-align: center; }
.pt thead th.tr { text-align: right; }
.pt tbody tr { border-bottom: 1px solid var(--border); transition: background .1s; }
.pt tbody tr:last-child { border-bottom: none; }
.pt tbody tr:nth-child(even) { background: var(--bg2); }
.pt tbody tr:hover { background: var(--red-light); }
.pt td  { padding: 10px 16px; vertical-align: middle; }
.pt .cr td {
  background: #2D2D2D; color: #fff; font-size: .73rem; font-weight: 700;
  letter-spacing: .07em; text-transform: uppercase; padding: 7px 16px;
}
.in  { font-weight: 700; color: var(--dark); line-height: 1.3; }
.id  { font-size: .8rem; color: var(--muted); margin-top: 2px; line-height: 1.4; }
.pr  { font-family: var(--fm); font-weight: 500; color: var(--red); font-size: .95rem; text-align: right; white-space: nowrap; }
.kc  { font-family: var(--fm); font-size: .82rem; color: var(--muted); text-align: center; white-space: nowrap; }

/* ================================================================
   INFO BOXES
================================================================ */
.ib { border-left: 4px solid; border-radius: 0 var(--r) var(--r) 0; padding: 15px 18px; margin: 18px 0; }
.ib h4 { font-size: .92rem; margin-bottom: 5px; }
.ib p  { font-size: .875rem; margin: 0; }
.ib-r  { background: var(--red-light);  border-color: var(--red);   }
.ib-r  h4 { color: var(--red); }
.ib-gd { background: var(--gold-light); border-color: var(--gold);  }
.ib-gd h4 { color: var(--gold); }
.ib-g  { background: var(--green-bg);   border-color: var(--green); }
.ib-g  h4 { color: var(--green); }
.ib-b  { background: var(--blue-bg);    border-color: var(--blue);  }
.ib-b  h4 { color: var(--blue); }

/* ================================================================
   SECTION HEADER
================================================================ */
.sh { display: flex; align-items: flex-start; justify-content: space-between; flex-wrap: wrap; gap: 12px; margin-bottom: 22px; }
.sh-l { display: flex; align-items: center; gap: 11px; }
.sh-icon { font-size: 1.6rem; flex-shrink: 0; }
.sh-tx .lbl { margin-bottom: 4px; }
.sh-tx h2 { margin: 0; }

/* ================================================================
   CONTENT CARDS
================================================================ */
.card { background: var(--bg); border: 1.5px solid var(--border); border-radius: var(--r-lg); padding: 24px; }
.card-a {
  display: block; text-decoration: none;
  background: var(--bg); border: 1.5px solid var(--border); border-radius: var(--r-lg); padding: 24px;
  transition: border-color .2s, transform .2s, box-shadow .2s;
}
.card-a:hover { border-color: var(--red); transform: translateY(-3px); box-shadow: var(--sh-md); text-decoration: none; }
.card-a .card-ico { font-size: 2rem; margin-bottom: 12px; }
.card-a h3 { color: var(--dark); margin-bottom: 8px; font-size: 1.1rem; }
.card-a p  { font-size: .875rem; color: var(--muted); margin: 0; }

/* Deal card */
.deal-card { background: var(--bg); border: 1.5px solid var(--border); border-radius: var(--r-lg); overflow: hidden; }
.deal-hd   { background: var(--red); color: #fff; padding: 16px 20px; }
.deal-hd h3 { color: #fff; font-size: 1.05rem; margin-bottom: 4px; }
.deal-hd .dp { font-family: var(--fh); font-size: 2.2rem; font-weight: 900; color: #fff; line-height: 1; }
.deal-bd   { padding: 18px 20px; }
.deal-bd p { font-size: .875rem; margin-bottom: 12px; }
.deal-inc  { display: flex; flex-direction: column; gap: 5px; margin-bottom: 14px; }
.deal-inc li { font-size: .85rem; color: var(--mid); display: flex; align-items: center; gap: 7px; }
.deal-inc li::before { content: '✓'; color: var(--green); font-weight: 700; }

/* ================================================================
   CALLOUT BANNER
================================================================ */
.callout {
  background: linear-gradient(135deg, var(--red) 0%, var(--red-dark) 100%);
  border-radius: var(--r-xl); padding: 28px 32px;
  display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap;
}
.callout h3 { color: #fff; margin-bottom: 5px; }
.callout p  { color: rgba(255,255,255,.85); margin: 0; font-size: .9rem; }
.callout-g  { background: linear-gradient(135deg, #15803D 0%, #166534 100%); }
.callout-d  { background: linear-gradient(135deg, #1A1A1A 0%, #2D2D2D 100%); }

/* ================================================================
   ABOUT / EEAT SECTION
================================================================ */
.about { background: var(--dark); padding: 64px 0; }
.about-g { display: grid; grid-template-columns: 1fr 1fr; gap: 52px; align-items: start; }
.about h2, .about h3 { color: #fff; }
.about h2 { margin-bottom: 16px; }
.about h3 { font-size: 1.2rem; margin-bottom: 12px; }
.about h4 { color: rgba(255,255,255,.85); margin-bottom: 8px; }
.about p  { color: rgba(255,255,255,.72); }
.facts { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 24px; }
.fact { background: rgba(255,255,255,.07); border-radius: var(--r); padding: 14px 16px; }
.fv { font-family: var(--fh); font-size: 1.6rem; font-weight: 900; color: var(--red); line-height: 1; margin-bottom: 4px; }
.fl { font-size: .73rem; color: rgba(255,255,255,.55); text-transform: uppercase; letter-spacing: .06em; }

/* ================================================================
   FAQ
================================================================ */
.faq-sec  { background: var(--bg2); padding: 64px 0; }
.faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.faq-item { background: var(--bg); border: 1.5px solid var(--border); border-radius: var(--r); overflow: hidden; }
.faq-q {
  padding: 15px 18px; font-weight: 700; font-size: .9rem; color: var(--dark);
  cursor: pointer; display: flex; justify-content: space-between; align-items: center;
  gap: 8px; user-select: none; list-style: none;
}
.faq-q::-webkit-details-marker { display: none; }
.faq-q::after { content: '+'; font-size: 1.25rem; color: var(--red); font-weight: 300; flex-shrink: 0; transition: transform .2s; }
details[open] > .faq-q::after { transform: rotate(45deg); }
.faq-a { padding: 14px 18px 16px; font-size: .875rem; color: var(--mid); border-top: 1px solid var(--border); }
.faq-a strong { color: var(--dark); }
.faq-a a { color: var(--red); }

/* ================================================================
   INTRO TEXT BAND
================================================================ */
.intro { background: var(--bg3); border-bottom: 1px solid var(--border); padding: 30px 0; }
.intro p { font-size: 1rem; max-width: 820px; line-height: 1.8; }
.intro strong { color: var(--dark); }

/* ================================================================
   AD SLOTS
================================================================ */
.ad-wrap { background: var(--bg2); border: 1px dashed var(--border2); border-radius: var(--r); padding: 10px; text-align: center; margin: 22px 0; }
.ad-lbl  { font-size: .63rem; text-transform: uppercase; letter-spacing: .09em; color: var(--muted); margin-bottom: 6px; font-family: var(--fm); }

/* ================================================================
   JUMP BAR
================================================================ */
.jbar {
  background: var(--bg2); border-bottom: 1px solid var(--border);
  padding: 10px 0; position: sticky; top: 64px; z-index: 90;
}
.jbar-in {
  max-width: var(--W); margin: 0 auto; padding: 0 20px;
  display: flex; flex-wrap: wrap; gap: 7px; align-items: center;
}
.jlbl { font-size: .73rem; font-weight: 700; color: var(--muted); text-transform: uppercase; letter-spacing: .06em; margin-right: 4px; white-space: nowrap; }
.ja {
  font-size: .8rem; padding: 4px 12px; border-radius: 20px; font-weight: 600;
  text-decoration: none; border: 1px solid var(--border); color: var(--mid); background: var(--bg);
  transition: background .15s, color .15s; white-space: nowrap;
}
.ja:hover { background: var(--red-light); color: var(--red); border-color: var(--red-pale); text-decoration: none; }
.ja-r { background: var(--red); color: #fff; border-color: var(--red); }
.ja-g { background: var(--green-bg); color: var(--green); border-color: #86EFAC; }

/* ================================================================
   CALORIE BADGES
================================================================ */
.cal { display: inline-block; padding: 3px 10px; border-radius: 20px; font-size: .78rem; font-weight: 700; font-family: var(--fm); }
.cal-lo { background: var(--green-bg); color: var(--green); }
.cal-md { background: #FEF3C7; color: #92400E; }
.cal-hi { background: var(--red-light); color: var(--red); }

/* ================================================================
   FOOTER
================================================================ */
.footer { background: #0F0F0F; color: rgba(255,255,255,.65); padding: 52px 0 0; }
.footer-g { display: grid; grid-template-columns: 2.2fr 1fr 1fr 1fr; gap: 36px; padding-bottom: 40px; }
.footer h3 { color: #fff; font-size: 1.05rem; margin-bottom: 12px; }
.footer h4 { color: rgba(255,255,255,.82); font-size: .76rem; text-transform: uppercase; letter-spacing: .08em; margin-bottom: 14px; font-family: var(--fb); }
.footer .fp { font-size: .8rem; line-height: 1.8; }
.footer li  { margin-bottom: 8px; }
.footer li a { color: rgba(255,255,255,.55); font-size: .82rem; }
.footer li a:hover { color: #fff; text-decoration: none; }
.footer hr  { border: none; border-top: 1px solid rgba(255,255,255,.09); }
.footer-bt  { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 10px; padding: 18px 0; }
.footer-bt p { font-size: .73rem; color: rgba(255,255,255,.35); margin: 0; }
.disc {
  background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.09);
  border-radius: var(--r); padding: 14px 18px; margin-bottom: 22px;
  font-size: .77rem; color: rgba(255,255,255,.42); line-height: 1.65;
}
.disc strong { color: rgba(255,255,255,.62); }
.disc a { color: rgba(255,255,255,.52); }

/* ================================================================
   UTILITIES
================================================================ */
.tc  { text-align: center; }
.tr  { text-align: right; }
.mb0 { margin-bottom: 0 !important; }
.mb12 { margin-bottom: 12px; }
.mb20 { margin-bottom: 20px; }
.mb28 { margin-bottom: 28px; }
.mb36 { margin-bottom: 36px; }
.mt20 { margin-top: 20px; }
.mt28 { margin-top: 28px; }
.mt36 { margin-top: 36px; }
.mt48 { margin-top: 48px; }
.div  { border: none; border-top: 1px solid var(--border); margin: 36px 0; }
.t-r  { color: var(--red); }
.t-g  { color: var(--green); }
.t-m  { color: var(--muted); }

/* ================================================================
   RESPONSIVE
================================================================ */
@media (max-width: 1000px) {
  .footer-g { grid-template-columns: 1fr 1fr 1fr; }
  .footer-g > *:first-child { grid-column: 1 / -1; }
  .about-g { grid-template-columns: 1fr; gap: 32px; }
  .faq-grid { grid-template-columns: 1fr 1fr; }
  .facts { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .g2 { grid-template-columns: 1fr; }
  .g3 { grid-template-columns: 1fr 1fr; }
  .g4 { grid-template-columns: 1fr 1fr; }
  .faq-grid { grid-template-columns: 1fr; }
  .footer-g { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .nav-list { display: none; }
  .nav-hb   { display: block; }
  .nav-stamp { display: none; }
  .hero { padding: 40px 0 34px; }
  .stats-in { flex-direction: column; gap: 3px; }
  .sp { border-right: none; padding: 2px 0; }
  .callout  { flex-direction: column; text-align: center; align-items: center; }
  .g3 { grid-template-columns: 1fr; }
  .g4 { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 420px) {
  .footer-g { grid-template-columns: 1fr; }
  .btns { flex-direction: column; }
  .btn  { justify-content: center; }
  .g4   { grid-template-columns: 1fr; }
}
