/* --------- Core --------- */
:root{
  --bg:#0b0d10;            /* header/footer background */
  --ink:#101418;           /* main text */
  --muted:#6b7684;
  --brand:#e86d1f; 
  --paper:#ffffff;
  --alt:#f6f7f9;
  --ring:#2f9cf1;
  --radius:14px;
  --container:1120px;
  --shadow:0 6px 20px rgba(16,20,24,.06);
  --font: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, "Apple Color Emoji","Segoe UI Emoji";
    
  --grid-gutter-x: 24px;   /* between columns */
  --grid-gutter-y: 24px;   /* between rows */
  --grid-pad-inline: 16px; /* left/right padding of the grid block */
  --grid-pad-block: 16px;  /* top/bottom padding of the grid block */
    
  --brand:#F97316;       /* orange like the phone */
  --brand-600:#EA580C;
  --brand-strong:#EA580C;
}
*{box-sizing:border-box}
html,body{margin:0;padding:0}
body{
  font-family:var(--font);
  color:var(--ink);
  line-height:1.6;
  background:var(--paper);
  text-rendering:optimizeLegibility;
}

/* --------- Helpers --------- */
.container{max-width:var(--container);margin:auto;padding:0 16px}
.section{padding:56px 0}
.section--alt{background:var(--alt)}
.section-title{font-size:clamp(1.5rem,2.5vw,2rem);margin:.2rem 0 1.2rem} 
.grid{display:grid;gap:16px}
.grid--two{grid-template-columns:1fr;gap:18px}
.grid--three{grid-template-columns:1fr;gap:18px}
@media (min-width:840px){.grid--two{grid-template-columns:1.2fr .8fr}.grid--three{grid-template-columns:repeat(3,1fr)}}

.card{
  background:#fff;border:1px solid #e8ebef;border-radius:var(--radius);
  padding:18px; box-shadow:var(--shadow);
}
.meta{color:var(--muted);font-size:.95rem}
.list{padding-left:1rem}
.badges{display:flex;flex-wrap:wrap;gap:8px;margin-top:8px}

/* --------- Header / Nav --------- */
.site-header{background:var(--bg);color:#fff;position:sticky;top:0;z-index:50}
.nav{display:flex;align-items:center;justify-content:space-between;height:60px}
.brand{color:#fff;text-decoration:none;font-weight:700;letter-spacing:.2px}
.logo-dot{display:inline-block;width:14px;height:14px;border-radius:50%;background:var(--brand);margin-right:8px;vertical-align:-2px}

.primary-nav{display:none;gap:16px;align-items:center}
.primary-nav a{color:#cfe0ff;text-decoration:none}
.primary-nav a:hover,.primary-nav a:focus{color:#fff}
.nav-toggle{
  background:none;border:1px solid #3b424c;color:#fff;padding:7px 10px;border-radius:8px;cursor:pointer
}
.nav-toggle .bars{display:inline-block;width:18px;height:2px;background:#fff;box-shadow:0 6px 0 #fff,0 -6px 0 #fff}
@media (min-width:880px){
  .nav-toggle{display:none}
  .primary-nav{display:flex}
}

/* --------- Buttons --------- */
.btn{
  display:inline-block;background:var(--brand);color:#fff;text-decoration:none;
  padding:12px 18px;border-radius:12px;font-weight:700;border:none;cursor:pointer
}
.btn:hover,.btn:focus{background:var(--brand-600)}
.btn--ghost{background:transparent;border:2px solid #fff;color:#fff}
.btn--small{padding:8px 12px;border-radius:10px}
.btn--inverted{background:#fff;color:var(--bg)}

/* --------- Hero --------- */
.hero{position:relative;isolation:isolate}
.hero-img{width:100%;height:min(48vh,520px);object-fit:cover;display:block;filter:brightness(.65)}
.hero-inner{
  position:absolute;inset:0;display:grid;place-content:center;gap:12px;text-align:center;color:#fff;padding:16px
}
.hero-cta{display:flex;gap:12px;justify-content:center;flex-wrap:wrap}


/* Compact internal hero */
.hero--compact .hero-img{ height:min(28vh, 360px); }          /* reduced height */
@media (max-width: 720px){
  .hero--compact .hero-img{ height: 220px; }
}

/* Left-align internal hero copy */
.hero-inner--left{
  place-content:end start; text-align:left; padding-block:20px 28px;
}
.hero-inner--left h1{ margin: .2rem 0 .2rem; }
.hero-sub{ max-width: 60ch; opacity:.95; }

/* Breadcrumbs */
.crumbs{ display:flex; gap:.5rem; align-items:center; margin-bottom:.4rem; }
.crumbs a{ color:#cfe0ff; text-decoration:none; }
.crumbs a:hover{ color:#fff; text-decoration:underline; }
.crumbs span{ color:#cfe0ff; }
.crumb-current{ color:#fff; font-weight:600; }

/* Prose defaults for readable copy */
.prose h2{ margin:.2rem 0 .6rem; font-size:clamp(1.3rem,2.2vw,1.6rem); }
.prose h3{ margin:.8rem 0 .4rem; font-size:1.05rem; }
.prose p{ margin:.4rem 0 .6rem; }
.soft{ border:0; height:1px; background:#e8ebef; margin:12px 0; }

/* Outline-brand buttons for light sections (you already added this pattern) */
.btn--outline-brand{
  background:transparent; border:2px solid var(--brand); color:var(--brand);
}
.btn--outline-brand:hover,.btn--outline-brand:focus{
  background:var(--brand); color:#fff; border-color:transparent;
}

/* Keep ghost white on dark; switch to brand outline on light sections */
.btn--ghost{ background:transparent; border:2px solid #fff; color:#fff; }
.split .btn--ghost,
.section--cta-line .btn--ghost{
  border-color:var(--brand); color:var(--brand); background:transparent;
}
.split .btn--ghost:hover,
.section--cta-line .btn--ghost:hover,
.split .btn--ghost:focus,
.section--cta-line .btn--ghost:focus{
  background:var(--brand); color:#fff; border-color:transparent;
}



/* --------- Services icons --------- */
.service{text-align:center;border:1px dashed #e3e7ec;border-radius:var(--radius);padding:18px;background:#fff}
.icon{font-size:28px}

/* --------- Forms --------- */
.form .field{display:grid;gap:6px;margin-bottom:12px}
input,textarea{
  width:100%;padding:11px 12px;border:1px solid #cfd7e1;border-radius:10px;font:inherit
}
input:focus,textarea:focus{outline-color:var(--ring);border-color:var(--ring);box-shadow:0 0 0 3px rgba(47,156,241,.15)}
.form-note{color:var(--muted);font-size:.9rem;margin:.4rem 0 0}

/* --------- CTA band --------- */
.cta{background:linear-gradient(135deg,var(--bg),#131822);color:#fff;text-align:center}
.cta .btn{margin-top:8px}

/* --------- Footer --------- */
.site-footer{background:var(--bg);color:#b6c1cf;padding:28px 0;text-align:center}
.site-footer .small{font-size:.9rem;color:#92a0b3}
.site-footer a {
  color: #fff;
  text-decoration: none;
}

.site-footer a:hover {
  text-decoration: underline;
}

/* spacing + wrapping */
.site-footer {
  line-height: 1.8;
}

.site-footer a {
  display: inline-block;
  margin: 0 6px 6px 0;
}

/* optional: soften the dash */
.site-footer a::after {
  content: "–";
  margin-left: 6px;
  color: #6f7c8f;
}

/* remove dash on last item */
.site-footer a:last-child::after {
  content: "";
}

/* --------- Accessibility helpers --------- */
.skip{position:absolute;left:-9999px;top:auto}
.skip:focus{left:16px;top:10px;background:#fff;color:#000;padding:8px 10px;border-radius:8px;z-index:1000}
.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}


/* Popular Materials grid */
.grid--materials{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  column-gap: var(--grid-gutter-x);
  row-gap: var(--grid-gutter-y);
  padding: var(--grid-pad-block) var(--grid-pad-inline);
}

@media (max-width: 1000px){
  .grid--materials{ grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px){
  .grid--materials{ grid-template-columns: 1fr; }
}

/* Optional: make cards feel consistent in a grid */
.material{ display:flex; flex-direction:column; min-height: 180px; }
.material .material__meta{
  margin-top:auto;               /* pushes meta to the bottom */
  font-size:.9rem; opacity:.7;
}


/* Base card still works without any background */
.card.material{
  position: relative;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 1px 0 rgba(16,24,40,.04), 0 1px 3px rgba(16,24,40,.08);
  padding: 16px 18px;
  overflow: hidden;
}

/* Backgrounded variant */
.card--bg{
  color: #fff;                    /* switch text to light */
  background: #0b1220;           /* fallback if image fails */
}

/* the image (fills the card) */
.card__bg{
  position: absolute;
  inset: 0;
  z-index: 0;
}
.card__bg img{                    /* ensure cover behavior */
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(1.05);         /* subtle pop (optional) */
}

/* overlay to guarantee contrast */
.card--bg::after{
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(0,0,0,.35) 0%, rgba(0,0,0,.55) 100%);
}

/* content sits above the overlay */
.card__content{
  position: relative;
  z-index: 2;
}

/* optional: prefer higher contrast for users who ask for it */
@media (prefers-contrast: more){
  .card--bg::after{ background: rgba(0,0,0,.6); }
}

.card{ position:relative; } 

.card .content{ position:absolute; inset-inline:0; bottom:0; padding:14px; z-index:2; }

/* 1) Keep ONE overlay (this one). Remove/disable the generic .card::after */
.card--bg::after{
  content:"";
  position:absolute; inset:0; z-index:1; border-radius:var(--radius);
  /* a bit stronger at the bottom so white text pops */
  background:linear-gradient(180deg, rgba(0,0,0,.35) 0%, rgba(0,0,0,.75) 100%);
}

/* 2) Ensure the content (and badges) sits above the overlay and at the bottom */
.card__content{
  position:relative; z-index:2;
}




/* Make anchor-cards look/behave like cards */
.card--link{
  display:block;                   /* anchor becomes block */
  color:inherit;                   /* keep white text on image cards */
  text-decoration:none;            /* no underline on the whole card */
}
.card--link:focus-visible{
  outline:3px solid var(--ring);
  outline-offset:4px;
  border-radius:var(--radius);
}
/* Optional: underline just the title on hover/focus for affordance */
.card--link .card__content h3{
  text-decoration:underline;
  text-decoration-color: transparent;
  text-underline-offset:.2em;
  text-decoration-thickness:2px;
  transition: text-decoration-color .12s ease;
}
.card--link:hover .card__content h3,
.card--link:focus-visible .card__content h3{
  text-decoration-color: currentColor;
}

/* Put this AFTER any global link styles */
.grid--materials .card--link,
.grid--materials .card--link:link,
.grid--materials .card--link:visited,
.grid--materials .card--link:hover,
.grid--materials .card--link:focus {
  color: #fff;              /* keep text white on image cards */
  text-decoration: none;    /* no underlines */
}


.material .card__content{ /* for these image-cards, tuck content to the bottom */
  display:flex; flex-direction:column; gap:.4rem;
  min-height:180px;
}
.material .badges{ margin-top:auto; display:flex; gap:.5rem; }

/* 3) Orange badges (not buttons) */
.badge{
  display:inline-flex; align-items:center; gap:.35rem;
  padding:.35rem .6rem; border-radius:9999px;
  background:var(--brand); color:#fff; font-weight:600; font-size:.8rem; line-height:1;
  border:1px solid rgba(0,0,0,.15);
  box-shadow:0 6px 16px rgba(249,115,22,.25);
}
.badge--soft{
  background:rgba(249,115,22,.6);
  color: white;
  border:1px solid rgba(249,115,22,.35);
  box-shadow:none;
  font-weight: bold;
}

/* (optional) keep the grey meta style for non-image cards only */
.card:not(.card--bg) .meta{ color:var(--muted); }

/* Make the whole card a link but never underline its text */
.card--link{
  text-decoration: none;   /* removes underline on all text in the anchor */
  color: inherit;
}
.grid--materials .card--link { text-decoration: none !important; }
 

/* Ensure the title never gets underlined (overrides the earlier affordance rule) */
.card--link .card__content h3,
.card--link:hover .card__content h3,
.card--link:focus-visible .card__content h3{
  text-decoration: none;
}

/* tighter vertical rhythm options */ 
.section--tight{ padding:22px 0; }          /* smaller top+bottom */
.section--flush-bottom{ padding-bottom:12px; }
.section--flush-top{ padding-top:12px; margin-top: 0px; }

/* optional: stop last paragraph adding extra space */
.prose p:last-child{ margin-bottom:0; }



.areasServedMap {
	width: 100%; 
	height: 500px; 
	margin-left:auto; 
	margin-right:auto;
}


   
#map {
    position: relative;
}
#info {
    position: absolute;
    display: inline-block;
    height: auto;
    width: auto;
    z-index: 100;
    background-color: #333;
    color: #fff;
    text-align: center;
    border-radius: 4px;
    padding: 5px;
    left: 50%;
    transform: translateX(3%);
    visibility: hidden;
    pointer-events: none;
}
/* =========================
   Calculator (scoped, minimal)
   ========================= */
.calc.card{
  background:#0d1117; color:#fff;
  border:1px solid #1f2937; box-shadow:0 10px 30px rgba(0,0,0,.25);
}

/* Text & hints */
.calc h3,.calc label,.calc legend{ color:#fff; }
.calc .hint{ color:#cbd5e1; }

/* Inputs */
.calc input,.calc select,.calc textarea{
  background:#fff; color:#0b0d10;
  border:1px solid #e5e7eb; border-radius:10px;
  padding:11px 12px; font:inherit;
}
.calc input::placeholder,.calc textarea::placeholder{ color:#94a3b8; }
.calc input:focus,.calc select:focus,.calc textarea:focus{
  outline:0; border-color:#93c5fd;
  box-shadow:0 0 0 3px rgba(47,156,241,.18);
}

/* Segmented pills (mode + options) */
.calc .seg{ display:flex; gap:8px; margin-top: 15px; } /* put this right under the .calc .seg rule */
.calc .seg--50 .seg__btn{ flex:1 1 0; } /* two equal halves */
.calc .seg__btn{
  cursor:pointer; user-select:none;
  padding:.6rem .8rem; border-radius:10px;
  border:1px solid rgba(255,255,255,.18);
  background:rgba(255,255,255,.06); color:#e5e7eb; font-weight:600;
  transition:background .12s ease, transform .06s ease;
}
.calc .seg__btn:hover{ transform:translateY(-1px); }
.calc .seg__btn.is-active{ background:var(--brand); color:#fff; border-color:transparent; }

/* Layout helpers */
.calc__row.grid{ margin-top:.6rem; }
.calc #areaInputs .hint{ margin-top:.75rem; display:block; }
.calc [hidden]{ display:none !important; }


/* Results */
.calc__out{ margin-top:1rem; display:grid; gap:.75rem; }
.calc__card{
  background:#fff; color:#0f172a;
  border:1px solid #e5e7eb; border-radius:12px; padding:.85rem;
}
.calc__kv{ display:flex; justify-content:space-between; gap:1rem; }
.calc__kv span{ color:#475569; }

/* Badges */
.calc .badge{
  display:inline-flex; align-items:center; gap:.35rem;
  padding:.35rem .6rem; border-radius:9999px; font-weight:600; font-size:.8rem; line-height:1;
}
.calc .badge--brand{ background:var(--brand); color:#fff; }
.calc .badge--soft{ background:rgba(249,115,22,.12); color:#EA580C; border:1px solid rgba(249,115,22,.35); }
.calc .badge--ok{ background:#16a34a; color:#fff; }
.calc .badge--limit{ background:#ef4444; color:#fff; }

/* Nudges */
.calc .calc__warn{ margin-top:.4rem; color:#fdba74; font-weight:600; min-height:1.2em; }

/* Actions (Calculate / Use in quote)
   — identical style, equal width, no borders */
.calc .actions{ display:grid; grid-template-columns:1fr 1fr; gap:.5rem; margin-top: 12px; }
.calc .actions .btn{
  display:block; width:100%;
  background:var(--brand); color:#fff;
  border:0; border-radius:10px;
  padding:12px 18px; font-weight:700; cursor:pointer;
}
.calc .actions .btn:hover,
.calc .actions .btn:focus{ background:var(--brand-strong); }

/* Stack buttons on narrow screens */
@media (max-width:520px){
  .calc .actions{ grid-template-columns:1fr; }
}
    
    
    
    
    /* ===== Fat footer ===== */
.footer-fat{ background:var(--bg); color:#b6c1cf; padding:32px 0 20px; }
.footer-fat a{ color:#cfe0ff; text-decoration:none; }
.footer-fat a:hover{ color:#fff; }
.footer-fat h4{ color:#fff; margin:.2rem 0 .8rem; font-size:1rem; }
.footer-fat .small{ color:#9fb0c5; }

.footer-grid{
  display:grid; gap:22px;
  grid-template-columns: 1fr;
}
@media (min-width:880px){
  .footer-grid{ grid-template-columns: 1.2fr .8fr .8fr .9fr; }
}

.footer-brand{ display:grid; gap:.6rem; }
.footer-contact{ list-style:none; margin:0 0 .6rem; padding:0; }
.footer-contact li{ margin:.15rem 0; }

.footer-col .footer-list{ list-style:none; margin:0; padding:0; }
.footer-col .footer-list li{ margin:.25rem 0; }

.footer-tags{ display:flex; flex-wrap:wrap; gap:.4rem; }
.footer-legal{
  margin-top:16px; padding-top:14px; border-top:1px solid #1f2937;
  text-align:center;
}

    
 /* ===== Split blocks ===== */
.split .split__grid{
  display:grid; gap:28px; align-items:center;
  grid-template-columns: 1fr;
}
.split .split__media img{
  width:100%; height:100%; max-height:520px; object-fit:cover; border-radius:var(--radius);
  box-shadow:var(--shadow);
}
.split .split__content h2{ margin:.2rem 0 .6rem; }
.split .tick{ margin: .6rem 0 1rem; padding-left:1.1rem; }
.split .tick li{ margin:.2rem 0; list-style: "✓ "; }
.split .cta-row{ display:flex; gap:.6rem; flex-wrap:wrap; }

@media (min-width: 960px){
  .split .split__grid{ grid-template-columns: 1.05fr .95fr; }
  .split.split--reverse .split__grid{ grid-template-columns: .95fr 1.05fr; }
  .split.split--reverse .split__content{ order:2; }
  .split.split--reverse .split__media{ order:1; }
}

/* Small feature cards in split #2 */
.feature-cards{ display:grid; gap:12px; grid-template-columns:1fr; margin-top:.6rem; }
.feature{
  background:#fff; border:1px solid #e8ebef; border-radius:var(--radius); padding:14px; box-shadow:var(--shadow);
}
@media (min-width:800px){ .feature-cards{ grid-template-columns:repeat(3,1fr); } }

/* ===== Blue FAQ section ===== */
/* ===== Blue FAQ layout ===== */
.section--blue{ background:#163a8c; color:#fff; }
.section--blue h2{ color:#fff; }

.faq__grid{
  display:grid; gap:28px;
  grid-template-columns: 1fr;
}
@media (min-width:1000px){
  .faq__grid{ grid-template-columns: 1.1fr .9fr; align-items:start; }
}

/* Sticky media: fixed height, sticks to top while scrolling */
.faq__media{
  align-self:start;
  position: sticky;
  top: 80px;                      /* adjust for your header height */
  height: 460px;                  /* keeps size static */
  border-radius: var(--radius);
  background:#0f2f73;
  box-shadow: var(--shadow);
  overflow:hidden;
}
.faq__media img{
  width:100%; height:100%; object-fit:cover; display:block;
}
@media (max-width: 999px){
  .faq__media{ position:static; height: 280px; } /* disable sticky on small screens */
}

/* Accordion: single rectangle per item */
/* Accordion list */
.accordion{ display:grid; gap:12px; }

/* Each item has a visible rectangle/border */
.acc__item{
  border:1px solid rgba(255,255,255,.18);
  border-radius:12px;
  background:rgba(255,255,255,.04);
}

/* Question button */
.acc__btn{
  width:100%;
  display:flex; justify-content:space-between; align-items:center;
  text-align:left; padding:14px 16px;
  background:transparent; color:#fff; border:0; cursor:pointer; font-weight:700;
}
.acc__plus{ font-size:20px; transition: transform .15s ease; }
.acc__btn[aria-expanded="true"] .acc__plus{ transform: rotate(45deg); } /* + → × */

/* Answer is collapsed by default */
.acc__answer{
  overflow:hidden;
  max-height:0;
  opacity:0;
  transition:max-height .25s ease, opacity .2s ease;
}

/* Open state driven by aria-expanded on the ITEM */
.acc__item[aria-expanded="true"] .acc__answer{
  max-height:400px;      /* enough for 1–3 paras */
  opacity:1;
}

/* Divider + spacing inside the answer */
.acc__rule{ margin:0; border:0; height:1px; background:rgba(255,255,255,.25); }
.acc__body{ padding:12px 16px; }

/* Optional open-state tint */
.acc__item[aria-expanded="true"]{
  background:rgba(255,255,255,.10);
  border-color:rgba(255,255,255,.28);
}



/* ===== “Multi-purpose” CTA line ===== */
.section--cta-line{
  border-top:8px solid #0b0d10;
  border-bottom:8px solid #0b0d10;
  border-image: linear-gradient(90deg, #0b0d10, #e86d1f 35%, #0b0d10) 1;
  background:#f6f7f9;
}
.mp__grid{ display:grid; grid-template-columns: 1fr; gap:16px; align-items:center; }
.section--cta-line h2{ margin:.2rem 0 .6rem; }
.section--cta-line .cta-row{ display:flex; gap:.6rem; flex-wrap:wrap; }

/* Ghost button is designed for dark backgrounds.
   On light sections, flip it to brand outline. */
.section--cta-line .btn--ghost{
  border-color: var(--brand);
  color: var(--brand);
  background: transparent;
}

.section--cta-line .btn--ghost:hover,
.section--cta-line .btn--ghost:focus{
  background: var(--brand);
  color:#fff;
  border-color: transparent;
}

 /* Keep default ghost for dark sections (hero, .section--blue, .cta) */
.btn--ghost{
  background: transparent;
  border: 2px solid #fff;
  color: #fff;
}

/* Make ghost buttons readable on LIGHT sections */
.split .btn--ghost,
.section--cta-line .btn--ghost {
  border-color: var(--brand);
  color: var(--brand);
  background: transparent;
}
.split .btn--ghost:hover,
.section--cta-line .btn--ghost:hover,
.split .btn--ghost:focus,
.section--cta-line .btn--ghost:focus {
  background: var(--brand);
  color: #fff;
  border-color: transparent;
}
  
    /* ===== “Free 20-mile delivery” band ===== */
.delivery-band{
  background: linear-gradient(135deg, #0b0d10 0%, #131a24 100%); /* dark to match site */
  color:#fff;
  border-top:8px solid #0b0d10;
  border-image: linear-gradient(90deg, #0b0d10, var(--brand) 35%, #0b0d10) 1;
  padding: 22px 0;                 /* compact vertical rhythm */
}
.delivery-grid{
  display:grid;
  grid-template-columns: 1fr;
  align-items:center;
  gap:18px;
}
.delivery-copy h2{
  margin:.2rem 0 .4rem;
  font-size: clamp(1.3rem, 2.2vw, 1.8rem);
  color:#fff;
}
.delivery-band .meta{ color:#cfe0ff; }
.delivery-tags{ display:flex; flex-wrap:wrap; gap:.4rem; margin:.5rem 0 .8rem; }

/* Logo block on the right */
.delivery-brand{
  justify-self:end;
  width:min(250px, 36vw);
  aspect-ratio: 1.9 / 1;           /* wide logo feel */
  border-radius: 16px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: var(--shadow);
  display:grid; place-items:center;
  padding: 14px;
  position: relative;
  overflow:hidden;
}
.delivery-brand::after{            /* subtle radial to lift it */
  content:"";
  position:absolute; inset:-20%;
  background: radial-gradient(60% 60% at 70% 30%, rgba(255,255,255,.06), transparent 60%);
  pointer-events:none;
}
.delivery-brand img{
  width:100%; height:auto; display:block;
  filter: drop-shadow(0 6px 18px rgba(0,0,0,.25));
}

/* Layout at desktop */
@media (min-width: 900px){
  .delivery-grid{
    grid-template-columns: 1.1fr .9fr;  /* copy left, logo right */
  }
}

/* Make ghost button brand-outline on light sections is already handled,
   but ensure it’s readable on this dark band */
.delivery-band .btn--ghost{
  border-color:#fff; color:#fff; background:transparent;
}
.delivery-band .btn--ghost:hover,
.delivery-band .btn--ghost:focus{
  background:#fff; color:#0b0d10; border-color:transparent;
}


/* ===== GEO SEO material buttons ===== */
.matgrid{
  list-style:none; margin:12px 0 0; padding:0;
  display:grid; gap:12px;
  grid-template-columns: repeat(2, minmax(0,1fr));   /* mobile: 2 cols */
}
@media (min-width:720px){ .matgrid{ grid-template-columns: repeat(3, 1fr); } }
@media (min-width:1100px){ .matgrid{ grid-template-columns: repeat(4, 1fr); } }

.matbtn{
  --ring: rgba(249,115,22,.35);
  display:flex; flex-direction:column; align-items:center; gap:.55rem;
  padding:14px 10px;
  text-decoration:none; user-select:none; cursor:pointer;
  background:#0f131a;                          /* dark (not the same as calc) */
  color:#e8eef7;
  border:1px solid var(--ring);
  border-radius:14px;
  box-shadow: 0 1px 0 rgba(16,24,40,.04), 0 1px 3px rgba(16,24,40,.18);
  transition: transform .08s ease, box-shadow .18s ease,
              border-color .18s ease, background .18s ease;
  min-height: 82px;                             /* tidy block height */
}

.matbtn__arrow{
  width:38px; height:38px; border-radius:9999px; position:relative;
  background: radial-gradient(60% 60% at 65% 35%, rgba(249,115,22,.18), transparent 60%);
  border:2px solid var(--brand);
  box-shadow: 0 6px 16px rgba(249,115,22,.25);
}
.matbtn__arrow::after{
  content:"›"; position:absolute; inset:0; display:grid; place-items:center;
  font-size:18px; font-weight:700; color:var(--brand);
  transform: translateX(0); transition: transform .12s ease, color .12s ease;
}

.matbtn__text{
  font-weight:700; font-size:.98rem; line-height:1;
  white-space:nowrap; overflow:hidden; text-overflow:ellipsis;  /* one line only */
  max-width: 100%;
  color:#fff;
}

/* Hover / focus */
.matbtn:hover, .matbtn:focus-visible{
  transform: translateY(-2px);
  border-color: var(--brand-600);
  box-shadow: 0 10px 24px rgba(16,24,40,.24);
  background:#101722;
  outline:0;
}
.matbtn:hover .matbtn__arrow,
.matbtn:focus-visible .matbtn__arrow{
  background: var(--brand);
  border-color: transparent;
  box-shadow: 0 10px 28px rgba(249,115,22,.35);
}
.matbtn:hover .matbtn__arrow::after,
.matbtn:focus-visible .matbtn__arrow::after{
  color:#fff; transform: translateX(2px);
}

/* High-contrast users */
@media (prefers-contrast: more){
  .matbtn{ box-shadow:none; border-color:#cbd5e1; }
}
/* Allow multi-line labels that use the full button width */
.matbtn{
  display:flex;                 /* keep the vertical stack */
  flex-direction:column;
  align-items:center;           /* arrow stays centred */
}

.matbtn__text{
  font-weight:700;
  font-size:.98rem;
  line-height:1.15;
  /* was forcing one line — remove it */
  white-space: normal;          /* ⟵ allow wrapping */
  overflow: visible;
  text-overflow: clip;
  width: 100%;                  /* use full card width */
  text-align: center;           /* nice, centred lines */
  /* optional: prettier breaks */
  text-wrap: balance;
}

/* keep a little spacing between arrow and text */
.matbtn__arrow{ margin-bottom:.25rem; }

/* (optional) keep heights neat if some labels are long */
.matbtn{ min-height: 98px; }

/* Equal-height grid still applies */
.matgrid{
  list-style:none; margin:12px 0 0; padding:0;
  display:grid; gap:12px;
  grid-template-columns: repeat(2, minmax(0,1fr));
}
@media (min-width:720px){ .matgrid{ grid-template-columns: repeat(3, 1fr); } }
@media (min-width:1100px){ .matgrid{ grid-template-columns: repeat(4, 1fr); } }
.matgrid li{ display:flex; }                 /* allow child to fill height */

/* Button-card */
.matbtn{
  --ring: rgba(249,115,22,.35);
  background:#0f131a;                        /* dark card */
  color:#e8eef7;
  border:1px solid var(--ring);
  border-radius:14px;
  box-shadow: 0 1px 0 rgba(16,24,40,.04), 0 1px 3px rgba(16,24,40,.18);
  text-decoration:none; user-select:none;
  padding:14px; gap:.65rem;

  /* lock consistent height and layout: top text, flexible space, bottom CTA */
  display:grid;
  grid-template-rows: auto 1fr auto;
  height:100%;                               /* fill li */
  min-height: 112px;                         /* uniform boxes */
  transition: transform .08s ease, box-shadow .18s ease, border-color .18s ease, background .18s ease;
}

/* Label (top) */
.matbtn__text{
  font-weight:700;
  font-size: .98rem;
  line-height: 1.2;
  color:#fff;
  text-align:center;
  white-space:normal;                         /* allow wrapping full width */
  text-wrap: balance;
}

/* Spacer (middle) just holds space; no styles needed */
.matbtn__spacer{ }

/* CTA rectangle (bottom) */
.matbtn__cta{
  display:flex; align-items:center; justify-content:center;
  height: 36px;
  border-radius: 10px;
  border: 2px solid var(--brand);
  background: rgba(249,115,22,.08);
  color: var(--brand);
  font-weight: 800;
  letter-spacing:.2px;
  transition: background .14s ease, color .14s ease, border-color .14s ease;
}

/* Hover/focus states */
.matbtn:hover, .matbtn:focus-visible{
  transform: translateY(-2px);
  border-color: var(--brand-600);
  box-shadow: 0 10px 24px rgba(16,24,40,.24);
  background:#101722;
  outline:0;
}
.matbtn:hover .matbtn__cta,
.matbtn:focus-visible .matbtn__cta{
  background: var(--brand);
  color:#fff;
  border-color: transparent;
}
/* ===== Equal width + equal height ===== */
.matgrid{
  display: grid;
  gap: 12px;
  /* same-width cards across; wrap responsively */
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
}
@media (min-width: 1100px){
  /* force 4 across on wide screens; change to 3 if you prefer */
  .matgrid{ grid-template-columns: repeat(3, 1fr); }
}
.matgrid li{ display:flex; }                 /* let child fill width/height */
.matbtn{ width:100%; height: 130px; }        /* uniform box size */

/* ===== Typography tweaks ===== */
.matbtn__text{
  color:#fff;
  font-weight: 800;
  font-size: 1.05rem;       /* title a touch bigger */
  line-height: 1.25;
  text-align: center;
  white-space: normal;      /* allow wrapping */
}

/* CTA rectangle (smaller text) */
.matbtn__cta{
  width: 100%;
  height: 32px;             /* a bit shorter */
  font-size: .85rem;        /* smaller “See more” */
  font-weight: 700;
  letter-spacing: .15px;
}



.footerLogo {
    margin-top: 10px;
}
