/* ePrintCity — shared stylesheet for interior pages (mirrors index.html design system) */
:root{
  --gutter:24px;
  --red:#CD0001;
  --accent:#CD0001;
  --black:#000000;
  --white:#ffffff;
  --gray-50:#f7f7f7;
  --gray-100:#eeeeee;
  --gray-300:#cccccc;
  --gray-600:#555555;
  --gray-700:#333333;
  --gray-800:#222222;
  --radius:10px;
  --shadow:0 10px 30px rgba(0,0,0,0.12);
  --shadow-sm:0 3px 10px rgba(0,0,0,0.08);
}
*{box-sizing:border-box;}
html{scroll-behavior:smooth;}
body{
  margin:0;
  font-family:'Roboto',Helvetica,Arial,sans-serif;
  color:var(--black);
  background:var(--white);
  -webkit-font-smoothing:antialiased;
}
img{max-width:100%;display:block;}
a{text-decoration:none;color:inherit;}
ul{margin:0;padding:0;list-style:none;}
.container{
  width:100%;
  max-width:1180px;
  margin:0 auto;
  padding:0 var(--gutter);
  box-sizing:border-box;
}
.visually-hidden{
  position:absolute;width:1px;height:1px;padding:0;margin:-1px;
  overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border:0;
}

/* ===== Top bar ===== */
.topbar{
  background:var(--black);
  color:var(--white);
  font-size:13px;
}
.topbar .container{
  display:flex;
  justify-content:flex-start;
  align-items:center;
  padding-top:6px;
  padding-bottom:6px;
  flex-wrap:wrap;
  gap:6px;
}
.topbar .badge{
  color:var(--accent);
  font-weight:700;
  letter-spacing:.03em;
}
.topbar .topbar-links{
  display:flex;
  gap:16px;
}
.topbar .topbar-links a:hover{ color:var(--accent); }

/* ===== Header / nav ===== */
header.site-header{
  background:var(--white);
  border-bottom:3px solid var(--red);
  position:sticky;
  top:0;
  z-index:50;
}
.nav-wrap{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  padding:16px 0;
  width:100%;
  box-sizing:border-box;
}
.logo-link{
  display:inline-flex;
  align-items:center;
  justify-content:flex-start;
  gap:0;
  flex-shrink:0;
  margin:0;
  padding:0;
}
.logo-link img{ display:none; }

.logo-text{
  font-family:'Roboto',Helvetica,Arial,sans-serif;
  font-weight:900;
  font-size:26px;
  letter-spacing:-0.01em;
  color:var(--black);
  line-height:1.1;
  white-space:nowrap;
  display:inline-block;
  margin:0;
  padding:0;
}
.logo-text .logo-print{ color:var(--red); }
.logo-text .logo-city{
  color:var(--black);
  margin-left:0.14em; /* visible gap between ePrint and City */
}
footer.site-footer .logo-text,
.footer-brand .logo-text{
  color:var(--white);
  font-size:26px; /* match header logo size */
  line-height:1.1;
  margin:0 0 16px;
  padding:0;
  display:inline-block;
  letter-spacing:-0.01em;
}
footer.site-footer .logo-text .logo-city,
.footer-brand .logo-text .logo-city{ color:var(--white); margin-left:0.14em; }
footer.site-footer .logo-text .logo-print,
.footer-brand .logo-text .logo-print{ color:var(--red); }
.footer-dml{
  margin-top:12px;
  color:#8a8a8a;
  font-size:13px;
  line-height:1.5;
}
.footer-dml strong{ color:#cfcfcf; font-weight:700; }

nav.primary-nav{
  display:flex;
  flex-wrap:nowrap;
  align-items:center;
  gap:14px;
  min-width:0;
}
nav.primary-nav a{
  font-weight:500;
  font-size:14px;
  white-space:nowrap;
  color:var(--black);
  padding:8px 2px;
  border-bottom:2px solid transparent;
  transition:border-color .15s, color .15s;
}
nav.primary-nav a:hover,
nav.primary-nav a.active{
  color:var(--red);
  border-bottom-color:var(--red);
}
.header-cta{
  display:flex;
  align-items:center;
  gap:10px;
}
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  font-weight:700;
  font-size:15px;
  padding:12px 22px;
  border-radius:6px;
  border:2px solid transparent;
  cursor:pointer;
  white-space:nowrap;
  transition:transform .1s ease, box-shadow .15s ease, background .15s ease;
}
.btn:active{ transform:translateY(1px); }
.btn-call{
  background:var(--red);
  color:var(--white);
  box-shadow:var(--shadow-sm);
}
.btn-call:hover{ background:var(--accent); }
.btn-email{
  background:var(--white);
  color:var(--black);
  border-color:var(--black);
}
.btn-email:hover{ border-color:var(--red); color:var(--red); }
.btn-outline-white{
  background:transparent;
  color:var(--white);
  border-color:var(--white);
}
.btn-outline-white:hover{ background:var(--white); color:var(--red); }
.header-cta .btn{ padding:10px 16px; font-size:14px; }
.icon{ width:18px; height:18px; flex-shrink:0; }

.nav-toggle{
  display:none;
  background:none;
  border:2px solid var(--black);
  border-radius:6px;
  padding:8px 10px;
  font-size:22px;
  line-height:1;
  cursor:pointer;
}

/* ===== Breadcrumb ===== */
.breadcrumb{
  font-size:13px;
  color:#cfcfcf;
  margin-bottom:14px;
}
.breadcrumb a{ color:#cfcfcf; }
.breadcrumb a:hover{ color:var(--white); }
.breadcrumb .sep{ margin:0 6px; color:#777; }
.breadcrumb .current{ color:var(--white); font-weight:500; }

/* ===== Hero (home / full offer) ===== */
.hero{
  background:var(--black);
  color:var(--white);
  padding:44px 0 56px;
}
.hero-grid{
  display:grid;
  grid-template-columns:1.15fr 0.85fr;
  gap:36px;
  align-items:start;
}
.hero-eyebrow{
  display:inline-block;
  background:var(--red);
  color:var(--white);
  font-weight:700;
  font-size:13px;
  letter-spacing:.06em;
  text-transform:uppercase;
  padding:6px 14px;
  border-radius:999px;
  margin-bottom:16px;
}
.hero h1{
  font-size:clamp(28px, 4.2vw, 46px);
  line-height:1.1;
  font-weight:900;
  margin:0 0 14px;
}
.hero h1 span{ color:var(--accent); }
.hero-sub{
  font-size:18px;
  color:#e8e8e8;
  max-width:560px;
  margin:0 0 26px;
  line-height:1.55;
}
.hero-cta-row{
  display:flex;
  flex-wrap:wrap;
  gap:14px;
  margin-bottom:28px;
}
.hero-cta-row .btn{ font-size:17px; padding:15px 28px; }
.trust-strip{
  display:flex;
  flex-wrap:wrap;
  gap:22px;
  font-size:14px;
  color:#cfcfcf;
}
.trust-strip li{
  display:flex;
  align-items:center;
  gap:8px;
}
.trust-strip .dot{
  width:8px;height:8px;border-radius:50%;background:var(--accent);flex-shrink:0;
}

/* ===== Page hero (interior pages, no big offer cards) ===== */
.page-hero{
  background:var(--black);
  color:var(--white);
  padding:34px 0 46px;
}
.page-hero .hero-eyebrow{ margin-bottom:14px; }
.page-hero h1{
  font-size:clamp(26px, 3.8vw, 42px);
  line-height:1.15;
  font-weight:900;
  margin:0 0 14px;
  max-width:820px;
}
.page-hero h1 span{ color:var(--accent); }
.page-hero .hero-sub{ max-width:700px; }
.page-hero .hero-cta-row{ margin-bottom:6px; }

/* ===== Above-the-fold cards ===== */
.hero-cards{
  display:flex;
  flex-direction:column;
  gap:18px;
}
.card{
  background:var(--white);
  color:var(--black);
  border-radius:var(--radius);
  box-shadow:var(--shadow);
  overflow:hidden;
}
.card-primary{
  border-top:6px solid var(--red);
}
.card-primary .card-head{
  background:var(--red);
  color:var(--white);
  padding:16px 22px;
}
.card-primary .card-head h2{
  margin:0;
  font-size:20px;
  font-weight:900;
  line-height:1.25;
}
.card-primary .card-body{
  padding:20px 22px 22px;
}
.card-shout{
  font-weight:900;
  font-size:19px;
  color:var(--red);
  margin:0 0 4px;
  letter-spacing:.01em;
}
.card-shout.secondary{
  font-weight:700;
  font-size:16px;
  color:var(--black);
  margin-bottom:14px;
}
.card-flags{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  margin:0 0 16px;
}
.flag{
  background:var(--black);
  color:var(--white);
  font-weight:700;
  font-size:12.5px;
  letter-spacing:.03em;
  text-transform:uppercase;
  padding:6px 10px;
  border-radius:5px;
}
.card-fineprint{
  display:grid;
  gap:6px;
  font-size:14.5px;
  color:var(--gray-800);
  margin:0 0 18px;
  padding:0;
  border-top:1px solid var(--gray-100);
  padding-top:14px;
}
.card-fineprint li{
  display:flex;
  gap:8px;
  align-items:flex-start;
}
.card-fineprint li em{
  font-style:normal;
  font-weight:700;
}
.card-fineprint .min-order{
  font-weight:900;
  color:var(--red);
  font-size:15.5px;
}
.card-cta{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
}
.card-cta .btn{ flex:1 1 auto; }

.card-secondary{
  display:flex;
  align-items:center;
  gap:16px;
  padding:18px 22px;
  border-left:6px solid var(--accent);
}
.card-secondary .icon-wrap{
  width:48px;
  height:48px;
  border-radius:50%;
  background:var(--red);
  display:flex;
  align-items:center;
  justify-content:center;
  flex-shrink:0;
}
.card-secondary .icon-wrap svg{ width:24px; height:24px; color:var(--white); }
.card-secondary h3{
  margin:0 0 3px;
  font-size:17px;
  font-weight:900;
}
.card-secondary p{
  margin:0;
  font-size:14px;
  color:var(--gray-600);
}

/* ===== Sections ===== */
section{ padding:64px 0; }
.section-alt{ background:var(--gray-50); }
.section-head{
  text-align:center;
  max-width:680px;
  margin:0 auto 40px;
}
.section-head.align-left{ text-align:left; margin:0 0 32px; }
.kicker{
  display:inline-block;
  color:var(--red);
  font-weight:700;
  font-size:13px;
  letter-spacing:.08em;
  text-transform:uppercase;
  margin-bottom:10px;
}
.section-head h2{
  font-size:clamp(24px,3vw,34px);
  font-weight:900;
  margin:0 0 12px;
  line-height:1.2;
}
.section-head p{
  color:var(--gray-600);
  font-size:16px;
  line-height:1.6;
  margin:0;
}

/* ===== Content / prose blocks (interior pages) ===== */
.content-grid{
  display:grid;
  grid-template-columns:1.4fr 1fr;
  gap:48px;
  align-items:start;
}
.prose h2{
  font-size:clamp(22px,2.6vw,28px);
  font-weight:900;
  margin:0 0 14px;
}
.prose h3{
  font-size:18px;
  font-weight:700;
  margin:26px 0 10px;
}
.prose p{
  font-size:15.5px;
  line-height:1.7;
  color:var(--gray-700);
  margin:0 0 16px;
}
.prose ul.check-list{
  display:grid;
  gap:10px;
  margin:0 0 18px;
}
.prose ul.check-list li{
  display:flex;
  gap:10px;
  align-items:flex-start;
  font-size:15px;
  line-height:1.55;
  color:var(--gray-800);
}
.prose ul.check-list li::before{
  content:"\2713";
  flex-shrink:0;
  width:20px;height:20px;
  border-radius:50%;
  background:var(--red);
  color:var(--white);
  font-size:12px;
  font-weight:700;
  display:flex;align-items:center;justify-content:center;
  margin-top:2px;
}

/* Sidebar quote / offer box */
.side-box{
  background:var(--white);
  border:1px solid var(--gray-100);
  border-top:5px solid var(--red);
  border-radius:var(--radius);
  padding:26px 24px;
  box-shadow:var(--shadow-sm);
  position:sticky;
  top:100px;
}
.side-box h3{
  margin:0 0 10px;
  font-size:18px;
  font-weight:900;
}
.side-box p{
  font-size:14.5px;
  color:var(--gray-600);
  line-height:1.6;
  margin:0 0 16px;
}
.side-box .min-order{
  display:block;
  font-weight:900;
  color:var(--red);
  font-size:15px;
  margin:0 0 16px;
}
.side-box .card-cta{ margin-bottom:14px; }
.side-box .side-flags{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
}

/* Services grid */
.services-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:22px;
}
.services-grid.cols-4{ grid-template-columns:repeat(4,1fr); }
.service-card{
  background:var(--white);
  border:1px solid var(--gray-100);
  border-radius:var(--radius);
  padding:26px 24px;
  box-shadow:var(--shadow-sm);
  transition:transform .15s ease, box-shadow .15s ease, border-color .15s ease;
}
.service-card:hover{
  transform:translateY(-4px);
  box-shadow:var(--shadow);
  border-color:var(--red);
}
.service-card .icon-badge{
  width:46px;height:46px;
  border-radius:10px;
  background:linear-gradient(135deg,var(--red),var(--accent));
  display:flex;align-items:center;justify-content:center;
  margin-bottom:16px;
}
.service-card .icon-badge svg{ width:24px;height:24px;color:var(--white); }
.service-card h3{
  margin:0 0 8px;
  font-size:18px;
  font-weight:700;
}
.service-card p{
  margin:0 0 14px;
  font-size:14.5px;
  color:var(--gray-600);
  line-height:1.55;
}
.service-card a.link-more{
  font-size:14px;
  font-weight:700;
  color:var(--red);
}
.service-card a.link-more:hover{ color:var(--accent); }

/* Why us / steps */
.steps-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:22px;
}
.step{
  text-align:center;
}
.step .step-num{
  width:56px;height:56px;
  margin:0 auto 16px;
  border-radius:50%;
  background:var(--black);
  color:var(--white);
  display:flex;align-items:center;justify-content:center;
  font-weight:900;
  font-size:20px;
  border:3px solid var(--red);
}
.step h3{
  font-size:16.5px;
  margin:0 0 8px;
  font-weight:700;
}
.step p{
  font-size:14px;
  color:var(--gray-600);
  margin:0;
  line-height:1.55;
}

/* Trust band / stats */
.stats-band{
  background:var(--black);
  color:var(--white);
  padding:40px 0;
}
.stats-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:24px;
  text-align:center;
}
.stats-grid .stat-num{
  font-size:clamp(26px,3vw,38px);
  font-weight:900;
  color:var(--accent);
  margin-bottom:6px;
}
.stats-grid .stat-label{
  font-size:13.5px;
  color:#cfcfcf;
  letter-spacing:.02em;
}

/* FAQ */
.faq-list{
  display:grid;
  gap:14px;
  max-width:820px;
  margin:0 auto;
}
.faq-item{
  background:var(--white);
  border:1px solid var(--gray-100);
  border-radius:var(--radius);
  padding:20px 24px;
  box-shadow:var(--shadow-sm);
}
.faq-item h3{
  margin:0 0 8px;
  font-size:16.5px;
  font-weight:700;
  color:var(--black);
}
.faq-item p{
  margin:0;
  font-size:14.5px;
  line-height:1.6;
  color:var(--gray-600);
}

/* Coverage / service area */
.coverage-wrap{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:40px;
  align-items:center;
}
.coverage-list{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:10px 20px;
  margin-top:20px;
}
.coverage-list li{
  font-size:14.5px;
  display:flex;
  align-items:center;
  gap:8px;
  color:var(--gray-800);
}
.coverage-list li::before{
  content:"";
  width:7px;height:7px;
  background:var(--red);
  border-radius:50%;
  flex-shrink:0;
}
.coverage-note{
  background:var(--white);
  border:1px solid var(--gray-100);
  border-left:5px solid var(--red);
  border-radius:8px;
  padding:20px 22px;
  box-shadow:var(--shadow-sm);
}
.coverage-note h3{
  margin:0 0 8px;
  font-size:16px;
  font-weight:900;
}
.coverage-note p{
  margin:0 0 8px;
  font-size:14.5px;
  color:var(--gray-700);
  line-height:1.6;
}
.coverage-note p:last-child{ margin-bottom:0; }
.coverage-note strong{ color:var(--red); }

/* Contact page */
.contact-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:40px;
  align-items:start;
}
.contact-card{
  background:var(--white);
  border:1px solid var(--gray-100);
  border-radius:var(--radius);
  padding:28px 26px;
  box-shadow:var(--shadow-sm);
}
.contact-card h3{ margin:0 0 6px; font-size:17px; font-weight:900; }
.contact-card p{ margin:0 0 18px; font-size:14.5px; color:var(--gray-600); line-height:1.6; }
.contact-methods{ display:grid; gap:14px; }
.contact-methods li{
  display:flex;
  align-items:center;
  gap:12px;
  padding:14px 16px;
  border:1px solid var(--gray-100);
  border-radius:8px;
}
.contact-methods .icon-wrap{
  width:38px;height:38px;border-radius:50%;
  background:var(--red);
  display:flex;align-items:center;justify-content:center;flex-shrink:0;
}
.contact-methods .icon-wrap svg{ width:18px;height:18px;color:var(--white); }
.contact-methods a{ font-weight:700; color:var(--black); }
.contact-methods a:hover{ color:var(--red); }
.contact-methods span.label{ display:block; font-size:12.5px; color:var(--gray-600); }

/* Final CTA band */
.cta-band{
  background:linear-gradient(120deg,var(--red),var(--accent));
  color:var(--white);
  padding:54px 0;
  text-align:center;
}
.cta-band h2{
  font-size:clamp(24px,3.4vw,36px);
  font-weight:900;
  margin:0 0 12px;
}
.cta-band p{
  font-size:17px;
  margin:0 0 28px;
  color:#ffe6e6;
  max-width:560px;
  margin-left:auto;
  margin-right:auto;
}
.cta-band .cta-row{
  display:flex;
  gap:16px;
  justify-content:center;
  flex-wrap:wrap;
}
.cta-band .btn-call{
  background:var(--black);
}
.cta-band .btn-call:hover{ background:#1a1a1a; }
.cta-band .btn-email{
  background:transparent;
  border-color:var(--white);
  color:var(--white);
}
.cta-band .btn-email:hover{ background:var(--white); color:var(--red); }

/* Footer */
footer.site-footer{
  background:#0b0b0b;
  color:#cfcfcf;
  padding:56px 0 0;
  font-size:14.5px;
}
.footer-grid{
  display:grid;
  grid-template-columns:1.3fr 1fr 1fr 1fr;
  gap:36px;
  padding-bottom:40px;
  border-bottom:1px solid #262626;
}
.footer-brand img{ display:none; }
.footer-brand p{
  color:#a8a8a8;
  line-height:1.6;
  margin:0 0 14px;
}
.footer-badges{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
}
.footer-badges span{
  background:#1a1a1a;
  border:1px solid #2e2e2e;
  color:#e8e8e8;
  font-size:12px;
  font-weight:700;
  padding:5px 10px;
  border-radius:5px;
  text-transform:uppercase;
  letter-spacing:.03em;
}
footer h4{
  color:var(--white);
  font-size:14.5px;
  text-transform:uppercase;
  letter-spacing:.05em;
  margin:0 0 16px;
}
footer ul li{ margin-bottom:10px; }
footer ul li a{ color:#b8b8b8; transition:color .15s; }
footer ul li a:hover{ color:var(--accent); }
.footer-contact li{
  display:flex;
  gap:10px;
  align-items:flex-start;
}
.footer-contact .icon{ color:var(--accent); flex-shrink:0; margin-top:2px; }
.footer-bottom{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:22px 0;
  flex-wrap:wrap;
  gap:10px;
  font-size:13px;
  color:#8a8a8a;
}
.footer-bottom a{ color:#8a8a8a; }
.footer-bottom a:hover{ color:var(--accent); }

/* Sticky mobile call bar */
.mobile-cta-bar{
  display:none;
  position:fixed;
  bottom:0; left:0; right:0;
  z-index:60;
  background:var(--black);
  padding:10px 14px;
  box-shadow:0 -4px 18px rgba(0,0,0,.3);
  gap:10px;
}
.mobile-cta-bar .btn{ flex:1; font-size:15px; padding:13px 10px; }


/* Keep header single-line: hide secondary nav links before hamburger breakpoint */
nav.primary-nav a.nav-secondary{ display:none !important; }


/* ===== Responsive ===== */
@media (max-width:980px){
  .hero-grid{ grid-template-columns:1fr; }
  .content-grid{ grid-template-columns:1fr; }
  .side-box{ position:static; }
  .contact-grid{ grid-template-columns:1fr; }
  .services-grid{ grid-template-columns:repeat(2,1fr); }
  .services-grid.cols-4{ grid-template-columns:repeat(2,1fr); }
  .steps-grid{ grid-template-columns:repeat(2,1fr); gap:30px 20px; }
  .stats-grid{ grid-template-columns:repeat(2,1fr); gap:28px; }
  .coverage-wrap{ grid-template-columns:1fr; }
  .footer-grid{ grid-template-columns:1fr 1fr; gap:32px 24px; }
}
@media (max-width:800px){
  /* One mobile gutter for logo + footer + bars — literal px so cache/vars can't hide it */
  :root{ --gutter:24px; }

  .container{
    padding-left:max(24px, env(safe-area-inset-left)) !important;
    padding-right:max(24px, env(safe-area-inset-right)) !important;
  }

  .topbar .container{
    flex-direction:column;
    align-items:flex-start;
    max-width:100%;
    overflow:hidden;
    padding-top:8px;
    padding-bottom:8px;
  }

  header.site-header{ overflow-x:clip; }

  /* Header logo row: same side inset as footer (via .container only) */
  header.site-header > .container.nav-wrap,
  .container.nav-wrap,
  .nav-wrap{
    position:relative;
    display:flex;
    flex-wrap:nowrap;
    align-items:center;
    justify-content:space-between;
    gap:12px;
    width:100%;
    max-width:100%;
    min-width:0;
    box-sizing:border-box;
    margin:0 auto;
    padding-top:14px;
    padding-bottom:14px;
    padding-left:max(24px, env(safe-area-inset-left)) !important;
    padding-right:max(24px, env(safe-area-inset-right)) !important;
  }

  .logo-link{
    min-width:0;
    margin:0 !important;
    padding:0 !important;
    order:1;
  }
  .logo-text{
    font-size:24px;
    line-height:1.15;
  }
  .primary-nav{ order:3; }
  .logo-link img{ height:40px; max-width:140px; object-fit:contain; }
  .header-cta{ display:none !important; }

  nav.primary-nav{
    display:none;
    position:absolute;
    top:100%;
    left:0;
    right:0;
    width:100%;
    max-width:100%;
    box-sizing:border-box;
    background:var(--white);
    flex-direction:column;
    gap:0;
    border-top:1px solid var(--gray-100);
    box-shadow:var(--shadow);
    z-index:60;
  }
  nav.primary-nav.open{ display:flex; }
  nav.primary-nav a{
    padding:14px var(--gutter);
    border-bottom:1px solid var(--gray-100);
  }
  .nav-toggle{
    display:inline-flex !important;
    align-items:center;
    justify-content:center;
    order:2;
    margin-left:auto;
    margin-right:0;
    flex-shrink:0;
  }

  /* Footer: same gutter as header logo — single source */
  footer.site-footer{
    padding-top:40px;
  }
  footer.site-footer > .container,
  footer.site-footer .container.footer-grid,
  footer.site-footer .container.footer-bottom{
    padding-left:max(24px, env(safe-area-inset-left)) !important;
    padding-right:max(24px, env(safe-area-inset-right)) !important;
  }
  footer.site-footer .footer-brand .logo-text,
  footer.site-footer .logo-text{
    font-size:24px; /* match mobile header logo */
    margin:0 0 14px;
  }
  footer.site-footer .footer-grid{
    gap:28px;
    padding-bottom:28px;
  }
  footer.site-footer .footer-bottom{
    padding-top:18px;
    padding-bottom:18px;
  }

  /* Sticky call bar matches the same side inset */
  .mobile-cta-bar{
    display:flex;
    padding:10px var(--gutter);
  }

  body{ padding-bottom:72px; }
}
@media (max-width:640px){
  .services-grid{ grid-template-columns:1fr; }
  .services-grid.cols-4{ grid-template-columns:1fr; }
  .steps-grid{ grid-template-columns:1fr; }
  .stats-grid{ grid-template-columns:1fr 1fr; }
  .footer-grid{ grid-template-columns:1fr; }
  .hero, .page-hero{ padding:30px 0 40px; }
  .card-primary .card-head h2{ font-size:18px; }
  .hero-cta-row .btn{ flex:1 1 100%; }
}


/* Shared chrome: header logo row + footer use the same horizontal inset */
header.site-header > .container,
footer.site-footer > .container{
  padding-left:max(24px, env(safe-area-inset-left)) !important;
  padding-right:max(24px, env(safe-area-inset-right)) !important;
  box-sizing:border-box;
}
.logo-link{
  margin-left:0 !important;
  padding-left:0 !important;
}

/* Footer alignment — same horizontal rhythm as header/content */
footer.site-footer .container,
footer.site-footer .container.footer-grid,
footer.site-footer .container.footer-bottom{
  width:100%;
  max-width:1180px;
  margin:0 auto;
  padding-left:max(24px, env(safe-area-inset-left));
  padding-right:max(24px, env(safe-area-inset-right));
  box-sizing:border-box;
}
footer.site-footer .footer-grid{
  width:100%;
  box-sizing:border-box;
  gap:36px;
  padding-bottom:40px;
}
footer.site-footer .footer-bottom{
  width:100%;
  box-sizing:border-box;
  padding-top:22px;
  padding-bottom:22px;
}


