/* ==========================================================================
   pages.css — shared company-grade styles for kashifibrar.com
   Self-contained: brand tokens + reset + components. Namespaced (site-*, sec-*,
   pg-*) so it never collides with the homepage's existing style.css classes.
   Brand locked: Poppins, #0066ff / #10b981 / #353535. Do not change tokens.
   ========================================================================== */

html { scroll-behavior: smooth; }

:root {
  --brand-black: #353535;
  --brand-gray-dark: #555555;
  --brand-gray-mid: #a3a3a3;
  --brand-gray-light: #e6e6e6;
  --brand-white: #ffffff;
  --accent-primary: #0066ff;
  --accent-hover: #0052cc;
  --accent-light: rgba(0, 102, 255, 0.1);
  --success-green: #10b981;
  --success-green-dark: #059669;
  --bg-white: #ffffff;
  --bg-light: #f8f9fc;
  --bg-warm: #fafaf8;
  --bg-dark: #353535;
  --border-light: #e6e6e6;
  --border-mid: #a3a3a3;
  --shadow-sm: 0 4px 6px rgba(0, 0, 0, .1);
  --shadow-md: 0 4px 15px rgba(0, 0, 0, .08);
  --shadow-lg: 0 10px 30px rgba(0, 0, 0, .1);
  --shadow-xl: 0 15px 40px rgba(0, 0, 0, .12);
  --gradient-accent: linear-gradient(135deg, #0066ff 0%, #0052cc 100%);
  --gradient-dark: linear-gradient(135deg, #353535 0%, #505050 100%);
  --radius: 16px;
  --maxw: 1200px;
  --header-h: 76px;
}

/* ---------- reset / base (scoped lightly, applies to new pages) ---------- */
.pg * { margin: 0; padding: 0; box-sizing: border-box; }
.pg {
  font-family: Poppins, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  color: var(--brand-gray-dark);
  line-height: 1.65;
  background: var(--bg-white);
  -webkit-font-smoothing: antialiased;
}
.pg h1, .pg h2, .pg h3, .pg h4 { color: var(--brand-black); line-height: 1.2; font-weight: 600; }
.pg a { color: var(--accent-primary); text-decoration: none; transition: color .2s ease; }
.pg a:hover { color: var(--accent-hover); }
.pg img { max-width: 100%; height: auto; display: block; }
.pg .sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
.sec { padding: 5rem 1.5rem; }
.sec--tight { padding: 3.5rem 1.5rem; }
.sec--dark { background: var(--bg-dark); }
.sec--light { background: var(--bg-light); }
.sec__inner { max-width: var(--maxw); margin: 0 auto; }
.sec__inner--narrow { max-width: 820px; margin: 0 auto; }
.eyebrow {
  display: inline-block; color: var(--accent-primary); font-weight: 600;
  letter-spacing: .08em; text-transform: uppercase; font-size: .8rem; margin-bottom: .75rem;
}
.sec h2.sec__title { font-size: clamp(1.8rem, 4vw, 2.6rem); margin-bottom: 1rem; }
.sec__lead { font-size: 1.1rem; max-width: 680px; color: var(--brand-gray-dark); }
.center { text-align: center; }
.center .sec__lead { margin-left: auto; margin-right: auto; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  font-family: inherit; font-weight: 600; font-size: 1rem; line-height: 1;
  padding: .9rem 1.6rem; border-radius: 999px; border: 2px solid transparent;
  cursor: pointer; transition: all .2s ease; text-align: center; white-space: nowrap;
}
.btn-primary { background: var(--accent-primary); color: #fff; }
.btn-primary:hover { background: var(--accent-hover); color: #fff; transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-ghost { background: transparent; color: var(--brand-black); border-color: var(--border-mid); }
.btn-ghost:hover { border-color: var(--accent-primary); color: var(--accent-primary); }
.btn-light { background: #fff; color: var(--brand-black); }
.btn-light:hover { color: var(--accent-primary); transform: translateY(-2px); }
.btn-lg { padding: 1.05rem 2rem; font-size: 1.05rem; }

/* ==========================================================================
   HEADER / NAV
   ========================================================================== */
.site-header {
  position: sticky; top: 0; z-index: 1000; background: rgba(255,255,255,.92);
  backdrop-filter: saturate(180%) blur(10px); border-bottom: 1px solid var(--border-light);
  transition: box-shadow .2s ease;
}
.site-header.is-scrolled { box-shadow: var(--shadow-sm); }
.site-header__inner {
  max-width: var(--maxw); margin: 0 auto; height: var(--header-h);
  display: flex; align-items: center; justify-content: space-between; padding: 0 1.5rem;
}
.site-logo { font-weight: 700; font-size: 1.3rem; color: var(--brand-black); letter-spacing: -.02em; }
.site-logo span { color: var(--accent-primary); }
.site-nav { display: flex; align-items: center; gap: 1.75rem; }
.nav-menu { display: flex; align-items: center; gap: 1.15rem; list-style: none; }
.nav-menu > li { position: relative; }
.nav-menu a, .nav-menu .dropdown-toggle {
  color: var(--brand-black); font-weight: 500; font-size: .98rem; background: none;
  border: none; font-family: inherit; cursor: pointer; display: inline-flex; align-items: center; gap: .35rem;
}
.nav-menu a:hover, .nav-menu .dropdown-toggle:hover { color: var(--accent-primary); }
.nav-menu a.is-active { color: var(--accent-primary); }
.has-dropdown .dropdown {
  position: absolute; top: calc(100% + 12px); left: 50%; transform: translateX(-50%) translateY(8px);
  background: #fff; border: 1px solid var(--border-light); border-radius: 12px; box-shadow: var(--shadow-lg);
  min-width: 190px; padding: .5rem; list-style: none; opacity: 0; visibility: hidden; transition: all .18s ease;
}
.has-dropdown:hover .dropdown, .has-dropdown.is-open .dropdown {
  opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0);
}
.dropdown li a { display: block; padding: .6rem .8rem; border-radius: 8px; font-weight: 500; }
.dropdown li a:hover { background: var(--accent-light); }
.nav-cta { padding: .65rem 1.25rem; font-size: .92rem; }
/* Hide booking CTA in desktop nav only; stays in mobile hamburger (<=900px) */
@media (min-width: 901px) { .nav-menu li.nav-cta-item { display: none; } }
.nav-toggle {
  display: none; width: 44px; height: 44px; border: none; background: none; cursor: pointer;
  flex-direction: column; justify-content: center; gap: 5px;
}
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--brand-black); transition: all .25s ease; }
.nav-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 900px) {
  .nav-toggle { display: flex; order: 3; }
  .site-nav { gap: .5rem; }
  .nav-menu {
    position: fixed; inset: var(--header-h) 0 auto 0; flex-direction: column; align-items: stretch;
    background: #fff; border-bottom: 1px solid var(--border-light); padding: 1rem 1.5rem 1.5rem;
    gap: .25rem; box-shadow: var(--shadow-lg); transform: translateY(-120%); transition: transform .28s ease; height: auto;
  }
  .site-nav.is-open .nav-menu { transform: translateY(0); }
  .nav-menu > li { width: 100%; }
  .nav-menu a, .nav-menu .dropdown-toggle { padding: .8rem 0; width: 100%; justify-content: space-between; font-size: 1.05rem; }
  .has-dropdown .dropdown {
    position: static; transform: none; opacity: 1; visibility: visible; box-shadow: none; border: none;
    min-width: 0; padding: 0 0 .5rem .75rem; max-height: 0; overflow: hidden; transition: max-height .25s ease;
  }
  .has-dropdown.is-open .dropdown { max-height: 200px; }
  .nav-cta { margin-top: .75rem; width: 100%; }
}

/* ==========================================================================
   HERO (homepage + page heroes)
   ========================================================================== */
.hero {
  background: radial-gradient(900px 500px at 80% -10%, rgba(0,102,255,.08), transparent 60%), var(--bg-white);
  padding: 4.5rem 1.5rem 4rem;
}
.hero__inner { max-width: var(--maxw); margin: 0 auto; display: grid; grid-template-columns: 1.1fr .9fr; gap: 3rem; align-items: center; }
.hero__badge {
  display: inline-flex; align-items: center; gap: .5rem; background: var(--accent-light); color: var(--accent-hover);
  font-weight: 600; font-size: .82rem; padding: .45rem .9rem; border-radius: 999px; margin-bottom: 1.25rem;
}
.hero h1 { font-size: clamp(2.1rem, 5vw, 3.4rem); margin-bottom: 1.25rem; letter-spacing: -.02em; }
.hero h1 .accent { color: var(--accent-primary); }
.hero__sub { font-size: 1.15rem; max-width: 560px; margin-bottom: 1.75rem; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 1rem; margin-bottom: 1.5rem; }
.hero__note { font-size: .9rem; color: var(--brand-gray-mid); }
.hero__media { position: relative; }
.hero__media img { border-radius: 24px; box-shadow: var(--shadow-xl); margin: 0 auto; }
.hero__chips { display: flex; flex-wrap: wrap; gap: .5rem; margin-top: 1.75rem; }
.hero__chips span {
  font-size: .85rem; font-weight: 500; color: var(--brand-gray-dark); background: #fff;
  border: 1px solid var(--border-light); padding: .4rem .85rem; border-radius: 999px; box-shadow: var(--shadow-sm);
}
@media (max-width: 860px) { .hero__inner { grid-template-columns: 1fr; gap: 2rem; } .hero__media { order: -1; max-width: 360px; margin: 0 auto; } }

/* page hero (inner pages) */
.page-hero { background: var(--gradient-dark); color: #fff; padding: 4rem 1.5rem 3.5rem; text-align: center; }
.page-hero h1 { color: #fff; font-size: clamp(2rem, 4.5vw, 3rem); margin-bottom: 1rem; }
.page-hero p { color: rgba(255,255,255,.85); max-width: 640px; margin: 0 auto; font-size: 1.1rem; }
.breadcrumbs { font-size: .85rem; margin-bottom: 1.25rem; color: rgba(255,255,255,.6); }
.breadcrumbs a { color: rgba(255,255,255,.85); }
.breadcrumbs a:hover { color: #fff; }

/* ==========================================================================
   TRUST BAND
   ========================================================================== */
.trust-band { background: var(--bg-light); border-top: 1px solid var(--border-light); border-bottom: 1px solid var(--border-light); padding: 2.25rem 1.5rem; }
.trust-band__inner { max-width: var(--maxw); margin: 0 auto; text-align: center; }
.trust-band__label { font-size: .8rem; letter-spacing: .1em; text-transform: uppercase; color: var(--brand-gray-mid); margin-bottom: 1.25rem; }
.logo-row { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 1rem 1.5rem; }
.logo-placeholder {
  height: 56px; min-width: 140px; display: flex; align-items: center; justify-content: center;
  border: 1px dashed var(--border-mid); border-radius: 10px; color: var(--brand-gray-mid);
  font-size: .82rem; font-weight: 500; background: #fff; padding: 0 1rem;
}

/* ==========================================================================
   CARD GRIDS (services, why-us, results, blog, case studies)
   ========================================================================== */
.grid { display: grid; gap: 1.5rem; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 980px) { .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; } }

.card {
  background: #fff; border: 1px solid var(--border-light); border-radius: var(--radius);
  padding: 2rem; transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); border-color: var(--accent-primary); }
.card__icon {
  width: 52px; height: 52px; border-radius: 13px; display: flex; align-items: center; justify-content: center;
  background: var(--gradient-accent); color: #fff; font-size: 1.3rem; margin-bottom: 1.1rem;
}
.card h3 { font-size: 1.2rem; margin-bottom: .6rem; }
.card p { font-size: .96rem; }
.card__link { display: inline-flex; align-items: center; gap: .4rem; margin-top: 1rem; font-weight: 600; font-size: .9rem; }

/* ==========================================================================
   PROCESS (Audit -> Build -> Handoff)
   ========================================================================== */
.process { counter-reset: step; }
.process__steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
@media (max-width: 860px) { .process__steps { grid-template-columns: 1fr; } }
.step { position: relative; background: #fff; border: 1px solid var(--border-light); border-radius: var(--radius); padding: 2rem 1.75rem; }
.step__num {
  counter-increment: step; width: 44px; height: 44px; border-radius: 50%; background: var(--accent-light);
  color: var(--accent-primary); font-weight: 700; display: flex; align-items: center; justify-content: center; margin-bottom: 1rem;
}
.step__num::before { content: counter(step); }
.step h3 { font-size: 1.15rem; margin-bottom: .5rem; }
.step p { font-size: .95rem; }

/* ==========================================================================
   RESULTS / METRICS (placeholders) + TESTIMONIALS (placeholders)
   ========================================================================== */
.metrics-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem; }
@media (max-width: 860px) { .metrics-row { grid-template-columns: repeat(2, 1fr); } }
.metric-card { text-align: center; background: #fff; border: 1px solid var(--border-light); border-radius: var(--radius); padding: 1.75rem 1rem; }
.metric-card .num { font-size: 2.2rem; font-weight: 700; color: var(--accent-primary); display: block; }
.metric-card .num.is-placeholder { color: var(--brand-gray-mid); }
.metric-card .lbl { font-size: .9rem; color: var(--brand-gray-dark); margin-top: .35rem; }

.quote-card { background: #fff; border: 1px solid var(--border-light); border-radius: var(--radius); padding: 2rem; }
.quote-card .stars { color: #f5b50a; margin-bottom: .75rem; letter-spacing: 2px; }
.quote-card blockquote { font-size: 1rem; color: var(--brand-gray-dark); font-style: italic; margin-bottom: 1.25rem; }
.quote-card .who { display: flex; align-items: center; gap: .75rem; }
.quote-card .avatar { width: 44px; height: 44px; border-radius: 50%; background: var(--bg-light); border: 1px dashed var(--border-mid); }
.quote-card .who strong { color: var(--brand-black); font-size: .92rem; }
.quote-card .who span { font-size: .82rem; color: var(--brand-gray-mid); }

.placeholder-tag {
  display: inline-block; background: #fff4d6; color: #92660a; border: 1px solid #f3d27a;
  font-size: .72rem; font-weight: 600; padding: .2rem .55rem; border-radius: 6px; margin-bottom: .75rem;
  letter-spacing: .02em;
}

/* ==========================================================================
   WHY US / FEATURE LIST
   ========================================================================== */
.feature { display: flex; gap: 1rem; align-items: flex-start; }
.feature__icon { flex-shrink: 0; width: 42px; height: 42px; border-radius: 10px; background: var(--accent-light); color: var(--accent-primary); display: flex; align-items: center; justify-content: center; font-size: 1.05rem; }
.feature h3 { font-size: 1.08rem; margin-bottom: .35rem; }
.feature p { font-size: .94rem; }

/* ==========================================================================
   FOUNDER
   ========================================================================== */
.founder { display: grid; grid-template-columns: 320px 1fr; gap: 2.5rem; align-items: center; }
@media (max-width: 760px) { .founder { grid-template-columns: 1fr; text-align: center; } }
.founder__pic img { border-radius: 20px; box-shadow: var(--shadow-lg); margin: 0 auto; }
.founder__body h2 { margin-bottom: 1rem; }
.founder__body p { margin-bottom: 1rem; }
.founder__sign { font-weight: 600; color: var(--brand-black); }

/* ==========================================================================
   CTA BAND
   ========================================================================== */
.cta-band { background: var(--gradient-accent); color: #fff; text-align: center; padding: 4rem 1.5rem; }
.cta-band h2 { color: #fff; font-size: clamp(1.7rem, 3.5vw, 2.4rem); margin-bottom: 1rem; }
.cta-band p { color: rgba(255,255,255,.9); max-width: 560px; margin: 0 auto 1.75rem; font-size: 1.1rem; }

/* ==========================================================================
   PROSE (legal pages, blog post body)
   ========================================================================== */
.prose { max-width: 760px; margin: 0 auto; overflow-wrap: anywhere; }
.prose a { word-break: break-word; }
.prose h2 { font-size: 1.5rem; margin: 2rem 0 .75rem; }
.prose h3 { font-size: 1.2rem; margin: 1.5rem 0 .5rem; }
.prose p, .prose li { font-size: 1rem; color: var(--brand-gray-dark); margin-bottom: 1rem; }
.prose ul, .prose ol { padding-left: 1.4rem; margin-bottom: 1rem; }
.prose li { margin-bottom: .5rem; }
.prose strong { color: var(--brand-black); }
.prose .muted { color: var(--brand-gray-mid); font-size: .9rem; }

/* ==========================================================================
   BLOG / ARTICLE
   ========================================================================== */
.article { max-width: 760px; margin: 0 auto; }
.post-meta { font-size: .9rem; color: var(--brand-gray-mid); margin-bottom: 1.5rem; }
.post-meta a { color: var(--accent-primary); }
.answer {
  background: var(--accent-light); border-left: 4px solid var(--accent-primary);
  border-radius: 0 12px 12px 0; padding: 1.1rem 1.35rem; margin: 0 0 1.75rem;
  font-size: 1.05rem; color: var(--brand-black);
}
.answer strong { color: var(--brand-black); }
.toc { background: var(--bg-light); border: 1px solid var(--border-light); border-radius: 12px; padding: 1.25rem 1.5rem; margin: 0 0 2rem; }
.toc h2 { font-size: 1rem; margin: 0 0 .6rem; }
.toc ol { margin: 0; padding-left: 1.2rem; }
.toc li { margin-bottom: .35rem; font-size: .95rem; }
.table-wrap { overflow-x: auto; margin: 1.25rem 0 1.75rem; -webkit-overflow-scrolling: touch; }
table.data { width: 100%; border-collapse: collapse; font-size: .94rem; min-width: 520px; }
table.data th, table.data td { border: 1px solid var(--border-light); padding: .7rem .85rem; text-align: left; vertical-align: top; }
table.data th { background: var(--bg-light); color: var(--brand-black); font-weight: 600; }
table.data tr:nth-child(even) td { background: #fcfcfd; }
.steps { counter-reset: s; list-style: none; padding: 0; margin: 1.25rem 0; }
.steps > li { position: relative; padding-left: 3rem; margin-bottom: 1.25rem; }
.steps > li::before { counter-increment: s; content: counter(s); position: absolute; left: 0; top: 0; width: 2rem; height: 2rem; border-radius: 50%; background: var(--gradient-accent); color: #fff; font-weight: 700; display: flex; align-items: center; justify-content: center; font-size: .9rem; }
.steps h3 { font-size: 1.1rem; margin-bottom: .3rem; }
.sources { font-size: .85rem; color: var(--brand-gray-dark); }
.sources li { margin-bottom: .5rem; word-break: break-word; }
.callout-note { background: var(--bg-warm); border: 1px solid var(--border-light); border-radius: 12px; padding: 1.1rem 1.35rem; margin: 1.5rem 0; font-size: .95rem; }

/* tool/platform chips (real stack — not client logos) */
.tool-chips { display: flex; flex-wrap: wrap; gap: .6rem; }
.tool-chips.center { justify-content: center; }
.tool-chips span { border: 1px solid var(--border-mid); border-radius: 999px; padding: .45rem .95rem; font-size: .85rem; font-weight: 600; color: var(--brand-gray-dark); background: #fff; }

/* featured (real) case study card */
.case-featured { background: var(--gradient-accent); color: #fff; border-radius: var(--radius); padding: 2.5rem; display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 2rem; align-items: center; }
.case-featured h3 { color: #fff; }
.case-featured p { color: rgba(255,255,255,.92); }
.case-featured .label { font-weight: 600; opacity: .9; margin-bottom: .4rem; }
.case-featured .stat { text-align: center; }
.case-featured .stat .big { font-size: 3rem; font-weight: 800; line-height: 1; }
.case-featured .stat .sub { opacity: .9; margin-top: .25rem; }
.case-featured a.btn-light { margin-top: 1.25rem; }
.real-badge { display:inline-block; background:#dcfce7; color:#166534; border:1px solid #86efac; font-size:.72rem; font-weight:700; padding:.2rem .55rem; border-radius:6px; letter-spacing:.02em; }

/* MOBILE FIX (2026-06): never clip long CTA button text on small screens */
@media (max-width: 600px) {
  .btn { white-space: normal; line-height: 1.25; }
}

/* mobile tap targets (>=44px) + footer breathing room */
@media (max-width: 900px) {
  .nav-menu > li > a, .nav-menu .dropdown-toggle { min-height: 44px; }
  .dropdown li a { min-height: 44px; display: flex; align-items: center; }
}
@media (max-width: 760px) {
  .footer-col li { margin-bottom: .4rem; }
  .footer-col a { display: flex; align-items: center; min-height: 44px; padding: .25rem 0; }
  .site-footer__brand .socials a { display: inline-flex; align-items: center; justify-content: center; min-width: 44px; min-height: 44px; margin-right: .35rem; }
  .site-footer__bottom { gap: .5rem; }
}

/* ==========================================================================
   CONTACT
   ========================================================================== */
.contact-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 2.5rem; align-items: start; }
@media (max-width: 820px) { .contact-grid { grid-template-columns: 1fr; } }
.form-field { margin-bottom: 1.1rem; }
.form-field label { display: block; font-weight: 600; font-size: .9rem; color: var(--brand-black); margin-bottom: .4rem; }
.form-field input, .form-field textarea {
  width: 100%; font-family: inherit; font-size: 1rem; color: var(--brand-black);
  padding: .85rem 1rem; border: 1px solid var(--border-light); border-radius: 10px; background: #fff;
}
.form-field input:focus, .form-field textarea:focus { outline: none; border-color: var(--accent-primary); box-shadow: 0 0 0 3px var(--accent-light); }
.contact-aside { background: var(--bg-light); border: 1px solid var(--border-light); border-radius: var(--radius); padding: 2rem; }
.contact-aside h3 { margin-bottom: .75rem; }
.contact-aside ul { list-style: none; }
.contact-aside li { display: flex; gap: .65rem; align-items: flex-start; margin-bottom: .85rem; font-size: .95rem; }
.contact-aside i { color: var(--accent-primary); margin-top: .2rem; }

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer { background: var(--bg-dark); color: rgba(255,255,255,.75); padding: 3.5rem 1.5rem 1.75rem; }
.site-footer__inner { max-width: var(--maxw); margin: 0 auto; }
.site-footer__top { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr 1fr; gap: 2rem; padding-bottom: 2.5rem; border-bottom: 1px solid rgba(255,255,255,.12); }
@media (max-width: 980px) { .site-footer__top { grid-template-columns: 1.4fr 1fr 1fr; gap: 2rem 1.5rem; } }
@media (max-width: 760px) { .site-footer__top { grid-template-columns: 1fr 1fr; gap: 2rem 1.5rem; } }
@media (max-width: 600px) {
  .site-footer { padding: 2.5rem 1.25rem 1.5rem; }
  .site-footer__top { grid-template-columns: 1fr 1fr; gap: 1.5rem 1.25rem; padding-bottom: 1.75rem; }
  .site-footer__brand { grid-column: 1 / -1; }
  .footer-col li { margin-bottom: .3rem; }
  .footer-col a { display: flex; align-items: center; min-height: 44px; padding: .25rem 0; }
  .site-footer__bottom { justify-content: center; text-align: center; }
}
.site-footer__brand .site-logo { color: #fff; display: inline-block; margin-bottom: .9rem; }
.site-footer__brand p { font-size: .92rem; max-width: 300px; margin-bottom: 1.1rem; }
.site-footer__brand .socials a { color: rgba(255,255,255,.7); font-size: 1.15rem; margin-right: 1rem; }
.site-footer__brand .socials a:hover { color: #fff; }
.footer-col h4 { color: #fff; font-size: .95rem; margin-bottom: 1rem; letter-spacing: .02em; }
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: .65rem; }
.footer-col a { color: rgba(255,255,255,.72); font-size: .92rem; }
.footer-col a:hover { color: #fff; }
.site-footer__bottom { display: flex; flex-wrap: wrap; gap: .75rem; justify-content: space-between; align-items: center; padding-top: 1.5rem; font-size: .85rem; color: rgba(255,255,255,.55); }
.site-footer__bottom a { color: rgba(255,255,255,.7); }

/* utility */
.mt-2 { margin-top: 2rem; } .mt-3 { margin-top: 3rem; } .mb-0 { margin-bottom: 0; }
