/*
Theme Name: Dave's Canvas
Theme URI: https://davescomputers.com
Author: Dave's Computers
Author URI: https://davescomputers.com
Description: A minimal blank-canvas theme built for pasting custom HTML/CSS landing pages without theme styles overriding them. Strips default WordPress padding, margins, and content wrappers. Designed for Dave's Computers neighbor-city landing pages.
Version: 1.2.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: daves-canvas
*/

/* =========================================================================
   THEME RESET
   ========================================================================= */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; -moz-text-size-adjust: 100%; text-size-adjust: 100%; }
body { margin: 0; padding: 0; }
img { max-width: 100%; height: auto; display: block; }
html { margin-top: 0 !important; }
* html body { margin-top: 0 !important; }

/* =========================================================================
   DESIGN TOKENS
   ========================================================================= */
:root {
  --blue-900: #0a2540;
  --blue-800: #0f3a66;
  --blue-700: #1452a3;
  --blue-600: #1d6fd8;
  --blue-500: #2e88ff;
  --blue-100: #e7f0fb;
  --blue-50: #f4f8fd;
  --ink: #0e1a2b;
  --ink-soft: #4a5b72;
  --ink-mute: #748397;
  --line: #dde6f1;
  --bg: #ffffff;
  --bg-alt: #f7faff;
  --gold: #ffb547;
  --green: #1a8754;
  --red: #d83a3a;
  --radius: 10px;
  --radius-lg: 16px;
  --shadow-sm: 0 1px 2px rgba(10,37,64,.06), 0 1px 3px rgba(10,37,64,.04);
  --shadow-md: 0 4px 12px rgba(10,37,64,.08), 0 2px 4px rgba(10,37,64,.05);
  --shadow-lg: 0 12px 32px rgba(10,37,64,.12), 0 4px 8px rgba(10,37,64,.06);
  --font-display: 'Plus Jakarta Sans', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;
}

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@500;600;700;800&family=Inter:wght@400;500;600;700&display=swap');

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
a { color: var(--blue-700); text-decoration: none; }
a:hover { color: var(--blue-600); text-decoration: underline; }
img { max-width: 100%; height: auto; display: block; }
.container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }
.container-narrow { max-width: 820px; margin: 0 auto; padding: 0 24px; }
h1, h2, h3, h4 { font-family: var(--font-display); color: var(--blue-900); line-height: 1.2; letter-spacing: -.01em; }

/* ============ TOP UTILITY BAR ============ */
.utility-bar { background: #061b3f; color: #fff; font-size: 14px; padding: 11px 0; }
.utility-bar .container { display: flex; justify-content: space-between; align-items: center; gap: 24px; flex-wrap: wrap; }
.utility-bar a { color: #fff; font-weight: 500; text-decoration: none; }
.utility-bar a:hover { color: #4ade80; text-decoration: none; }
.utility-meta { display: flex; gap: 36px; flex-wrap: wrap; align-items: center; flex: 1; justify-content: space-between; }
.utility-item { display: inline-flex; align-items: center; gap: 10px; color: #fff; font-weight: 500; }
.utility-item svg { width: 16px; height: 16px; color: #fff; flex-shrink: 0; }
.utility-item strong { font-weight: 700; }

/* ============ HEADER ============ */
.site-header { background: linear-gradient(180deg, #0e3a8c 0%, #0a2f73 100%); box-shadow: 0 2px 12px rgba(0,0,0,.15); position: relative; }
.site-header .container { display: flex; align-items: center; justify-content: space-between; padding: 0 24px; gap: 24px; max-width: 1400px; position: relative; }
.logo { display: flex; align-items: center; text-decoration: none; padding: 14px 0; flex-shrink: 0; }
.logo:hover { text-decoration: none; }
.logo svg.logo-svg { height: 56px; width: auto; display: block; }
.nav { display: flex; align-items: stretch; gap: 0; flex: 1; justify-content: center; }
.nav-item { position: relative; display: flex; align-items: center; }
.nav-link { padding: 24px 14px; display: inline-flex; align-items: center; justify-content: center; gap: 8px; font-weight: 700; font-size: 13px; color: #fff; letter-spacing: .03em; text-transform: uppercase; text-decoration: none; transition: color .15s; border: 0; position: relative; white-space: nowrap; text-align: center; }
.nav-link:hover { color: #4ade80; text-decoration: none; }
.nav-link::after { content: ''; display: inline-block; width: 6px; height: 6px; border-right: 2px solid currentColor; border-bottom: 2px solid currentColor; transform: rotate(45deg) translate(-2px,-2px); margin-left: 2px; opacity: .85; transition: transform .2s; flex-shrink: 0; }
.nav-item.no-arrow .nav-link::after { display: none; }
.nav-item:hover .nav-link::after { transform: rotate(225deg) translate(-2px,-2px); }
.nav-icon { width: 22px; height: 22px; display: grid; place-items: center; flex-shrink: 0; }
.nav-icon svg { width: 20px; height: 20px; stroke: #fff; fill: none; stroke-width: 1.6; }
.dropdown { position: absolute; top: 100%; left: 0; background: #fff; border: 0; border-radius: 4px; box-shadow: 0 12px 32px rgba(0,0,0,.18); min-width: 280px; padding: 12px; opacity: 0; visibility: hidden; transform: translateY(8px); transition: all .18s ease; z-index: 50; }
.nav-item:hover .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown a { display: block; padding: 9px 14px; color: var(--ink); font-size: 14px; font-weight: 500; border-radius: 4px; text-transform: none; letter-spacing: 0; }
.dropdown a:hover { background: var(--blue-50); color: var(--blue-700); text-decoration: none; }
.dropdown-heading { font-family: var(--font-display); font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; color: var(--ink-mute); padding: 12px 14px 6px; margin-top: 4px; border-top: 1px solid var(--line); }
.dropdown-heading:first-child { margin-top: 0; border-top: 0; padding-top: 6px; }
.cta-header { background: #16a34a; color: #fff !important; padding: 24px 36px; font-family: var(--font-display); font-weight: 800; font-size: 14px; letter-spacing: .06em; text-transform: uppercase; display: inline-flex; align-items: center; gap: 10px; transition: background .18s; text-decoration: none; align-self: stretch; margin-right: -24px; flex-shrink: 0; }
.cta-header:hover { background: #15803d; text-decoration: none; color: #fff; }
.menu-toggle { display: none; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.18); color: #fff; padding: 10px 12px; border-radius: 6px; cursor: pointer; font-size: 18px; }
.header-phone-mobile { display: none; align-items: center; gap: 6px; background: #16a34a; color: #fff; padding: 9px 14px; border-radius: 8px; font-family: var(--font-display); font-weight: 800; font-size: 14px; letter-spacing: .01em; text-decoration: none; margin-left: auto; flex-shrink: 0; box-shadow: 0 2px 8px rgba(22,163,74,.4); transition: background .15s, transform .1s; }
.header-phone-mobile:hover { background: #15803d; color: #fff; text-decoration: none; }
.header-phone-mobile:active { transform: scale(.97); }
.header-phone-mobile svg { width: 14px; height: 14px; flex-shrink: 0; }
.site-stack { position: sticky; top: 0; z-index: 100; }

/* ============ MOBILE FLOATING PROMO BAR ============ */
.promo-bar { display: none; position: relative; z-index: 2; background: linear-gradient(90deg, #16a34a 0%, #15803d 100%); color: #fff; font-size: 13.5px; font-weight: 600; padding: 10px 44px 10px 16px; text-align: center; text-decoration: none; box-shadow: 0 2px 8px rgba(0,0,0,.18); animation: promoSlideDown .45s cubic-bezier(.2,.7,.3,1) .25s both; overflow: hidden; }
.promo-bar::before { content: ''; position: absolute; inset: 0; background-image: repeating-linear-gradient(45deg, rgba(255,255,255,.06) 0 12px, transparent 12px 24px); pointer-events: none; }
.promo-bar:hover { color: #fff; text-decoration: none; }
.promo-bar:active { transform: scale(.99); }
.promo-bar .promo-content { display: inline-flex; align-items: center; gap: 8px; position: relative; z-index: 1; flex-wrap: wrap; justify-content: center; line-height: 1.3; }
.promo-bar .promo-tag { background: #fff; color: #15803d; font-weight: 800; font-size: 11px; letter-spacing: .05em; padding: 3px 8px; border-radius: 4px; text-transform: uppercase; flex-shrink: 0; }
.promo-bar .promo-arrow { font-weight: 800; margin-left: 2px; display: inline-block; animation: nudgeRight 1.6s ease-in-out infinite; }
.promo-close { position: absolute; top: 50%; right: 10px; transform: translateY(-50%); width: 26px; height: 26px; background: rgba(255,255,255,.18); color: #fff; border: 0; border-radius: 50%; cursor: pointer; display: grid; place-items: center; font-size: 14px; line-height: 1; z-index: 2; transition: background .15s; font-family: var(--font-display); }
.promo-close:hover { background: rgba(255,255,255,.32); }
.promo-bar.dismissed { display: none !important; }
@keyframes promoSlideDown { from { transform: translateY(-100%); opacity: 0; } to { transform: translateY(0); opacity: 1; } }
@keyframes nudgeRight { 0%, 100% { transform: translateX(0); } 50% { transform: translateX(3px); } }

/* ============ HERO ============ */
.hero { position: relative; background: radial-gradient(1100px 500px at 80% -10%, rgba(46,136,255,.18), transparent 60%), radial-gradient(900px 600px at -10% 110%, rgba(20,82,163,.22), transparent 60%), linear-gradient(180deg, var(--blue-900) 0%, var(--blue-800) 100%); color: #fff; overflow: hidden; padding: 64px 0 80px; }
.hero::before { content: ''; position: absolute; inset: 0; background-image: linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px); background-size: 48px 48px; mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%); -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%); pointer-events: none; }
.hero .container { position: relative; display: grid; grid-template-columns: 1.1fr 1fr; gap: 48px; align-items: center; }
/* Centered hero variant for city landing pages */
.hero.hero-centered { padding: 80px 0 90px; text-align: center; }
.hero.hero-centered .container { display: block; }
.hero.hero-centered h1 { max-width: 18ch; margin: 0 auto 18px; }
.hero.hero-centered .hero-sub { margin: 0 auto 28px; }
.hero.hero-centered .hero-ctas { justify-content: center; }
.hero-eyebrow { display: inline-flex; align-items: center; gap: 8px; background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.18); backdrop-filter: blur(6px); padding: 6px 14px; border-radius: 999px; font-size: 13px; font-weight: 600; letter-spacing: .01em; margin-bottom: 22px; }
.hero-eyebrow .dot { width: 8px; height: 8px; background: #4ade80; border-radius: 50%; box-shadow: 0 0 0 4px rgba(74,222,128,.25); }
.hero h1 { font-size: clamp(34px, 4.4vw, 54px); color: #fff; font-weight: 800; margin-bottom: 18px; letter-spacing: -.02em; }
.hero h1 .accent { color: #7dd3fc; }
.hero h1 em { font-style: italic; color: #7dd3fc; font-weight: 600; }
.hero-sub { font-size: 18px; color: #cfe1f7; max-width: 540px; margin-bottom: 28px; }
.hero-trust { display: flex; flex-wrap: wrap; gap: 20px 28px; margin-bottom: 32px; }
.trust-item { display: flex; align-items: center; gap: 10px; font-size: 15px; font-weight: 500; color: #e6f0fb; }
.check { width: 22px; height: 22px; background: rgba(74,222,128,.18); border-radius: 50%; display: grid; place-items: center; flex-shrink: 0; }
.check::after { content: ''; width: 6px; height: 10px; border-right: 2px solid #4ade80; border-bottom: 2px solid #4ade80; transform: rotate(45deg) translate(-1px,-1px); }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 24px; }
.btn { display: inline-flex; align-items: center; gap: 10px; padding: 15px 26px; border-radius: 8px; font-weight: 700; font-size: 16px; font-family: var(--font-display); letter-spacing: -.005em; transition: all .18s ease; cursor: pointer; border: 0; }
.btn-primary { background: #fff; color: var(--blue-900); box-shadow: 0 4px 14px rgba(0,0,0,.18); }
.btn-primary:hover { background: var(--gold); color: var(--blue-900); transform: translateY(-1px); text-decoration: none; box-shadow: 0 8px 22px rgba(255,181,71,.4); }
.btn-secondary { background: rgba(255,255,255,.08); color: #fff; border: 1.5px solid rgba(255,255,255,.3); }
.btn-secondary:hover { background: rgba(255,255,255,.16); text-decoration: none; }
.btn-lg { padding: 17px 30px; font-size: 17px; }
.btn svg { width: 18px; height: 18px; }
.hero-stats { display: flex; gap: 32px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.14); }
.hero-stats .stat strong { display: block; font-family: var(--font-display); font-size: 28px; color: #fff; font-weight: 800; }
.hero-stats .stat span { font-size: 13px; color: #a8c4e6; text-transform: uppercase; letter-spacing: .05em; }

/* Hero card */
.hero-card { background: #fff; color: var(--ink); padding: 28px; border-radius: var(--radius-lg); box-shadow: 0 24px 60px rgba(0,0,0,.35); position: relative; }
.hero-card-title { font-size: 13px; text-transform: uppercase; letter-spacing: .07em; color: var(--ink-mute); font-weight: 700; margin-bottom: 14px; }
.hero-card h3 { font-size: 22px; margin-bottom: 16px; }
.hours-grid { display: grid; grid-template-columns: 1fr auto; gap: 8px 16px; font-size: 15px; margin-bottom: 20px; padding-bottom: 20px; border-bottom: 1px solid var(--line); }
.hours-grid .day { color: var(--ink-soft); }
.hours-grid .time { font-weight: 600; color: var(--ink); }
.hours-now { display: flex; align-items: center; gap: 8px; font-weight: 700; color: var(--green); font-size: 14px; margin-bottom: 16px; }
.hours-now::before { content: ''; width: 8px; height: 8px; background: var(--green); border-radius: 50%; animation: pulse 2s infinite; }
@keyframes pulse { 0%, 100% { box-shadow: 0 0 0 0 rgba(26,135,84,.6); } 50% { box-shadow: 0 0 0 6px rgba(26,135,84,0); } }
.address-block { font-size: 14px; color: var(--ink-soft); margin-bottom: 8px; }
.address-block strong { color: var(--ink); display: block; font-size: 15px; margin-bottom: 2px; }
.address-note { font-size: 13px; color: var(--ink-mute); font-style: italic; }
.address-link { display: inline-block; margin-top: 10px; font-weight: 600; font-size: 14px; }

/* ============ TRUST STRIP ============ */
.trust-strip { background: var(--bg-alt); border-bottom: 1px solid var(--line); padding: 24px 0; }
.trust-strip .container { display: flex; justify-content: space-around; align-items: center; gap: 24px; flex-wrap: wrap; }
.trust-strip .item { display: flex; align-items: center; gap: 12px; font-size: 14px; font-weight: 600; color: var(--ink-soft); }
.trust-strip .stars { color: var(--gold); font-size: 18px; letter-spacing: 1px; }
.trust-strip .item strong { color: var(--blue-900); font-size: 16px; }

/* ============ SECTIONS ============ */
section { padding: 72px 0; }
.section-head { text-align: center; max-width: 720px; margin: 0 auto 48px; }
.section-eyebrow { display: inline-block; font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--blue-700); margin-bottom: 12px; }
.section-head h2 { font-size: clamp(28px, 3.4vw, 40px); margin-bottom: 14px; }
.section-head p { font-size: 17px; color: var(--ink-soft); }

/* INTRO BLURB */
.intro { background: #fff; padding: 56px 0; }
.intro-grid { display: grid; grid-template-columns: 1.3fr 1fr; gap: 48px; align-items: center; }
.intro h2 { font-size: clamp(26px, 3vw, 34px); margin-bottom: 18px; }
.intro p { font-size: 16.5px; color: var(--ink-soft); margin-bottom: 14px; }
.intro p a { font-weight: 600; }
.intro-card { background: var(--blue-50); border-left: 4px solid var(--blue-600); border-radius: var(--radius); padding: 28px; }
.intro-card h4 { font-size: 18px; margin-bottom: 12px; display: flex; align-items: center; gap: 10px; }
.intro-card ul { list-style: none; }
.intro-card li { padding: 8px 0; padding-left: 28px; position: relative; font-size: 15px; color: var(--ink); }
.intro-card li::before { content: ''; position: absolute; left: 0; top: 12px; width: 18px; height: 18px; background: var(--blue-600); border-radius: 50%; display: grid; place-items: center; }
.intro-card li::after { content: ''; position: absolute; left: 5px; top: 16px; width: 4px; height: 8px; border-right: 2px solid #fff; border-bottom: 2px solid #fff; transform: rotate(45deg); }

/* SERVICES */
.services { background: var(--bg-alt); }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.service-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 28px; transition: all .25s ease; position: relative; overflow: hidden; }
.service-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--blue-700), var(--blue-500)); transform: scaleX(0); transform-origin: left; transition: transform .3s ease; }
.service-card:hover { border-color: var(--blue-500); transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.service-card:hover::before { transform: scaleX(1); }
.service-icon { width: 56px; height: 56px; border-radius: 12px; background: var(--blue-50); color: var(--blue-700); display: grid; place-items: center; margin-bottom: 18px; transition: all .25s; }
.service-card:hover .service-icon { background: var(--blue-700); color: #fff; }
.service-icon svg { width: 28px; height: 28px; }
.service-card h3 { font-size: 20px; margin-bottom: 10px; }
.service-card h3 a { color: inherit; }
.service-card h3 a:hover { color: var(--blue-700); text-decoration: none; }
.service-card p { color: var(--ink-soft); font-size: 15px; margin-bottom: 18px; }
.service-link { font-weight: 700; font-size: 14px; display: inline-flex; align-items: center; gap: 6px; color: var(--blue-700); }
.service-link::after { content: '→'; transition: transform .2s; }
.service-card:hover .service-link::after { transform: translateX(4px); }

/* PROCESS */
.process { background: #fff; }
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; position: relative; }
.process-grid::before { content: ''; position: absolute; top: 32px; left: 12.5%; right: 12.5%; height: 2px; background: linear-gradient(90deg, var(--blue-100), var(--blue-500), var(--blue-100)); z-index: 0; }
.step { text-align: center; position: relative; z-index: 1; }
.step-num { width: 64px; height: 64px; border-radius: 50%; background: #fff; border: 3px solid var(--blue-600); color: var(--blue-700); display: grid; place-items: center; font-family: var(--font-display); font-size: 24px; font-weight: 800; margin: 0 auto 16px; box-shadow: 0 6px 16px rgba(29,111,216,.18); }
.step h4 { font-size: 17px; margin-bottom: 6px; }
.step p { font-size: 14px; color: var(--ink-soft); }

/* TESTIMONIALS */
.testimonials { background: var(--blue-50); }
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testi { background: #fff; padding: 28px; border-radius: var(--radius-lg); box-shadow: var(--shadow-md); position: relative; display: flex; flex-direction: column; }
.testi::before { content: '"'; position: absolute; top: -8px; left: 18px; font-family: Georgia, serif; font-size: 88px; line-height: 1; color: var(--blue-100); font-weight: 700; }
.testi-stars { color: var(--gold); font-size: 16px; letter-spacing: 2px; margin-bottom: 12px; position: relative; }
.testi p { font-size: 15.5px; color: var(--ink); margin-bottom: 20px; line-height: 1.65; flex-grow: 1; position: relative; }
.testi-author { border-top: 1px solid var(--line); padding-top: 16px; }
.testi-author strong { display: block; font-family: var(--font-display); font-size: 15px; color: var(--blue-900); margin-bottom: 2px; }
.testi-author span { font-size: 13px; color: var(--ink-mute); }

/* MAP / LOCATION */
.location { background: #fff; }
.location-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 36px; align-items: stretch; }
.location-info { background: var(--blue-900); color: #fff; padding: 36px; border-radius: var(--radius-lg); display: flex; flex-direction: column; }
.location-info h3 { color: #fff; font-size: 24px; margin-bottom: 8px; }
.location-info .sub { color: #a8c4e6; font-size: 14px; margin-bottom: 24px; }
.info-row { display: flex; gap: 14px; padding: 14px 0; border-top: 1px solid rgba(255,255,255,.12); }
.info-row:last-child { border-bottom: 1px solid rgba(255,255,255,.12); }
.info-icon { width: 36px; height: 36px; background: rgba(255,255,255,.08); border-radius: 8px; display: grid; place-items: center; flex-shrink: 0; }
.info-icon svg { width: 18px; height: 18px; color: #7dd3fc; }
.info-content strong { display: block; color: #fff; font-size: 15px; margin-bottom: 2px; }
.info-content span, .info-content a { color: #cfe1f7; font-size: 14px; }
.info-content a { color: #7dd3fc; }
.location-cta { margin-top: 24px; }
.location-cta .btn-primary { width: 100%; justify-content: center; }
.map-frame { border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--line); box-shadow: var(--shadow-md); min-height: 420px; background: #e7eef7; }
.map-frame iframe { width: 100%; height: 100%; border: 0; min-height: 420px; }

/* CTA BAND */
.cta-band { background: linear-gradient(135deg, var(--blue-700), var(--blue-900)); color: #fff; text-align: center; padding: 64px 0; position: relative; overflow: hidden; }
.cta-band::before { content: ''; position: absolute; inset: 0; background-image: radial-gradient(circle at 20% 50%, rgba(125,211,252,.15), transparent 40%), radial-gradient(circle at 80% 50%, rgba(255,181,71,.1), transparent 40%); }
.cta-band .container { position: relative; }
.cta-band h2 { color: #fff; font-size: clamp(26px, 3.2vw, 36px); margin-bottom: 12px; }
.cta-band p { color: #cfe1f7; font-size: 17px; margin-bottom: 28px; }
.cta-band .btn-primary { font-size: 18px; padding: 17px 32px; }

/* =========================================================================
   CITY LANDING PAGE COMPONENTS (added for neighbor-city pages)
   ========================================================================= */

/* HEADS-UP DISCLOSURE CARD - drop-off only / no in-home service callouts */
.heads-up { padding: 56px 0 0; }
.heads-up-card { background: #fff8e8; border: 1px solid #f5d99c; border-left: 5px solid var(--gold); border-radius: var(--radius-lg); padding: 28px 32px; box-shadow: var(--shadow-md); display: flex; gap: 22px; align-items: flex-start; }
.heads-up-icon { width: 44px; height: 44px; border-radius: 50%; background: var(--gold); color: var(--blue-900); display: grid; place-items: center; flex-shrink: 0; }
.heads-up-icon svg { width: 24px; height: 24px; }
.heads-up-body h3 { font-size: 20px; margin-bottom: 8px; color: var(--blue-900); }
.heads-up-body p { font-size: 15.5px; color: var(--ink-soft); margin: 0; }
.heads-up-body p strong { color: var(--ink); }
.heads-up-body p + p { margin-top: 8px; }

/* SERVICES SPLIT - 2-column home/business comparison */
.services-split-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.services-split-col { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 32px; box-shadow: var(--shadow-sm); }
.services-split-col.home { border-top: 4px solid var(--blue-600); }
.services-split-col.business { border-top: 4px solid var(--green); }
.services-split-head { display: flex; align-items: center; gap: 14px; margin-bottom: 18px; padding-bottom: 18px; border-bottom: 1px solid var(--line); }
.services-split-head .ico { width: 48px; height: 48px; border-radius: 12px; display: grid; place-items: center; flex-shrink: 0; }
.services-split-col.home .services-split-head .ico { background: var(--blue-50); color: var(--blue-700); }
.services-split-col.business .services-split-head .ico { background: #d6f0e0; color: var(--green); }
.services-split-head .ico svg { width: 26px; height: 26px; }
.services-split-head h3 { font-size: 22px; margin: 0 0 4px; }
.services-split-head .sub { font-size: 13px; color: var(--ink-mute); text-transform: uppercase; letter-spacing: .06em; font-weight: 600; }
.services-split-list { list-style: none; padding: 0; margin: 0; }
.services-split-list li { padding: 10px 0 10px 28px; position: relative; font-size: 15.5px; color: var(--ink); border-bottom: 1px dashed var(--line); }
.services-split-list li:last-child { border-bottom: 0; }
.services-split-list li::before { content: ''; position: absolute; left: 0; top: 14px; width: 18px; height: 18px; border-radius: 50%; background: var(--blue-600); }
.services-split-col.business .services-split-list li::before { background: var(--green); }
.services-split-list li::after { content: ''; position: absolute; left: 5px; top: 18px; width: 4px; height: 8px; border-right: 2px solid #fff; border-bottom: 2px solid #fff; transform: rotate(45deg); }
.services-split-list li a { color: inherit; font-weight: 600; }
.services-split-list li a:hover { color: var(--blue-700); }

/* COMPARE TABLE - Us vs Geek Squad / In-home vs In-shop */
.compare { background: #fff; }
.compare-table { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); }
.compare-table table { width: 100%; border-collapse: collapse; }
.compare-table thead th { background: var(--blue-900); color: #fff; padding: 18px 20px; text-align: left; font-family: var(--font-display); font-size: 15px; font-weight: 700; letter-spacing: .01em; }
.compare-table thead th.us { background: var(--blue-700); }
.compare-table thead th.them { background: #4a5b72; font-weight: 600; }
.compare-table tbody td { padding: 16px 20px; border-top: 1px solid var(--line); font-size: 15px; vertical-align: top; }
.compare-table tbody td.label { font-weight: 700; color: var(--blue-900); width: 28%; background: var(--bg-alt); }
.compare-table tbody td.us { color: var(--ink); background: #f4faf6; }
.compare-table tbody td.them { color: var(--ink-soft); }
.compare-table tbody td .check-mark { color: var(--green); font-weight: 800; margin-right: 6px; }
.compare-table tbody td .x-mark { color: var(--red); font-weight: 800; margin-right: 6px; }
.compare-table tbody tr:nth-child(even) td.label { background: #eef4fb; }

/* DIRECTIONS CARD - simplified driving directions for city visitors */
.directions { background: var(--bg-alt); }
.directions-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 36px; align-items: stretch; }
.directions-steps { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 32px; box-shadow: var(--shadow-md); }
.directions-steps h3 { font-size: 22px; margin-bottom: 18px; color: var(--blue-900); }
.directions-meta { display: flex; gap: 16px; margin-bottom: 22px; padding-bottom: 22px; border-bottom: 1px solid var(--line); flex-wrap: wrap; }
.directions-meta .meta-pill { display: inline-flex; align-items: center; gap: 6px; padding: 6px 12px; background: var(--blue-50); color: var(--blue-700); border-radius: 999px; font-size: 13px; font-weight: 600; }
.directions-meta .meta-pill svg { width: 14px; height: 14px; }
.directions-list { list-style: none; padding: 0; margin: 0; counter-reset: step; }
.directions-list li { counter-increment: step; padding: 14px 0 14px 44px; position: relative; font-size: 15px; color: var(--ink); border-bottom: 1px dashed var(--line); }
.directions-list li:last-child { border-bottom: 0; }
.directions-list li::before { content: counter(step); position: absolute; left: 0; top: 12px; width: 30px; height: 30px; border-radius: 50%; background: var(--blue-700); color: #fff; display: grid; place-items: center; font-family: var(--font-display); font-weight: 800; font-size: 14px; }
.directions-list li strong { color: var(--blue-900); display: block; font-size: 15.5px; margin-bottom: 2px; }
.directions-map { background: var(--blue-900); border-radius: var(--radius-lg); padding: 28px; box-shadow: var(--shadow-md); display: flex; flex-direction: column; }
.directions-map h4 { color: #fff; font-size: 16px; text-transform: uppercase; letter-spacing: .08em; margin-bottom: 18px; font-weight: 700; }
.directions-map svg.route-svg { width: 100%; height: auto; flex: 1; min-height: 300px; }
.directions-map .route-legend { display: flex; gap: 24px; margin-top: 16px; padding-top: 16px; border-top: 1px solid rgba(255,255,255,.12); flex-wrap: wrap; }
.directions-map .legend-item { display: inline-flex; align-items: center; gap: 8px; color: #cfe1f7; font-size: 13px; }
.directions-map .legend-dot { width: 12px; height: 12px; border-radius: 50%; flex-shrink: 0; }
.directions-map .legend-dot.start { background: #4ade80; }
.directions-map .legend-dot.end { background: var(--gold); }

/* PRICING CARD - flat-rate price ladder */
.pricing { background: #fff; }
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.pricing-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 32px 28px; text-align: center; transition: all .25s ease; position: relative; }
.pricing-card.featured { border: 2px solid var(--blue-600); transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.pricing-card.featured::before { content: 'Most Common'; position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: var(--blue-700); color: #fff; padding: 4px 14px; border-radius: 999px; font-size: 11px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; }
.pricing-card:hover { border-color: var(--blue-500); box-shadow: var(--shadow-md); }
.pricing-card h3 { font-size: 20px; margin-bottom: 8px; color: var(--blue-900); }
.pricing-card .price { font-family: var(--font-display); font-size: 40px; font-weight: 800; color: var(--blue-700); margin: 12px 0 6px; line-height: 1; }
.pricing-card .price-note { font-size: 13px; color: var(--ink-mute); margin-bottom: 18px; text-transform: uppercase; letter-spacing: .04em; font-weight: 600; }
.pricing-card .price-includes { list-style: none; padding: 0; margin: 0 0 22px; text-align: left; }
.pricing-card .price-includes li { padding: 8px 0 8px 26px; position: relative; font-size: 14.5px; color: var(--ink-soft); }
.pricing-card .price-includes li::before { content: '✓'; position: absolute; left: 0; top: 8px; color: var(--green); font-weight: 800; }
.pricing-card .btn { width: 100%; justify-content: center; }
.pricing-disclaimer { text-align: center; font-size: 13px; color: var(--ink-mute); margin-top: 28px; max-width: 640px; margin-left: auto; margin-right: auto; font-style: italic; }

/* FAQ - accordion */
.faq { background: var(--bg-alt); }
.faq-list { max-width: 820px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; transition: box-shadow .2s; }
.faq-item:hover { box-shadow: var(--shadow-sm); }
.faq-item summary { padding: 20px 24px; cursor: pointer; font-family: var(--font-display); font-weight: 700; font-size: 16.5px; color: var(--blue-900); display: flex; justify-content: space-between; align-items: center; gap: 16px; list-style: none; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: '+'; font-size: 28px; line-height: 1; color: var(--blue-600); font-weight: 400; flex-shrink: 0; transition: transform .2s; }
.faq-item[open] summary::after { content: '−'; }
.faq-item[open] summary { border-bottom: 1px solid var(--line); }
.faq-answer { padding: 18px 24px 22px; font-size: 15.5px; color: var(--ink-soft); line-height: 1.65; }
.faq-answer p { margin-bottom: 10px; }
.faq-answer p:last-child { margin-bottom: 0; }
.faq-answer a { font-weight: 600; }

/* COUPON BANNER */
.coupon-band { background: #fff; padding: 56px 0; }
.coupon-card { max-width: 720px; margin: 0 auto; background: linear-gradient(135deg, #fff8e8 0%, #fff 100%); border: 2px dashed var(--gold); border-radius: var(--radius-lg); padding: 32px; display: flex; gap: 24px; align-items: center; box-shadow: var(--shadow-md); position: relative; }
.coupon-card::before, .coupon-card::after { content: ''; position: absolute; top: 50%; transform: translateY(-50%); width: 24px; height: 24px; background: var(--bg); border-radius: 50%; border: 2px dashed var(--gold); }
.coupon-card::before { left: -14px; }
.coupon-card::after { right: -14px; }
.coupon-amount { font-family: var(--font-display); font-size: 48px; font-weight: 900; color: var(--blue-900); line-height: 1; flex-shrink: 0; }
.coupon-amount .currency { font-size: 28px; vertical-align: top; }
.coupon-body { flex: 1; }
.coupon-body h3 { font-size: 20px; color: var(--blue-900); margin-bottom: 6px; }
.coupon-body p { font-size: 14.5px; color: var(--ink-soft); margin-bottom: 12px; }
.coupon-code { display: inline-block; background: var(--blue-900); color: var(--gold); padding: 8px 14px; border-radius: 6px; font-family: 'Courier New', monospace; font-weight: 700; letter-spacing: .12em; font-size: 14px; }
.coupon-body .coupon-fineprint { font-size: 12px; color: var(--ink-mute); margin-top: 10px; font-style: italic; }

/* WHO WE SERVE */
.serves { background: #fff; }
.serves-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; max-width: 960px; margin: 0 auto; }
.serves-pill { background: var(--blue-50); border: 1px solid var(--blue-100); color: var(--blue-900); padding: 14px 18px; border-radius: var(--radius); text-align: center; font-weight: 600; font-size: 14.5px; transition: all .2s; }
.serves-pill:hover { background: var(--blue-700); color: #fff; transform: translateY(-2px); border-color: var(--blue-700); }

/* LOCAL CONTENT GRID - small content tiles linking to nearby attractions/landmarks */
.local-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.local-tile { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 24px; transition: all .2s; }
.local-tile:hover { border-color: var(--blue-500); box-shadow: var(--shadow-md); transform: translateY(-2px); }
.local-tile h4 { font-size: 17px; color: var(--blue-900); margin-bottom: 10px; display: flex; align-items: center; gap: 10px; }
.local-tile h4 svg { width: 20px; height: 20px; color: var(--blue-700); flex-shrink: 0; }
.local-tile p { font-size: 14.5px; color: var(--ink-soft); line-height: 1.6; margin: 0; }

/* ============ FOOTER (live-site style) ============ */
.site-footer { position: relative; background: linear-gradient(180deg, #0e3a8c 0%, #0a2f73 100%); color: #d6e4fb; padding: 64px 0 0; font-size: 14.5px; overflow: hidden; }
.site-footer::before, .site-footer::after { content: ''; position: absolute; width: 360px; height: 360px; background-image: linear-gradient(135deg, transparent 0%, transparent 48%, rgba(255,255,255,.05) 48%, rgba(255,255,255,.05) 50%, transparent 50%, transparent 56%, rgba(255,255,255,.04) 56%, rgba(255,255,255,.04) 58%, transparent 58%, transparent 64%, rgba(255,255,255,.03) 64%, rgba(255,255,255,.03) 66%, transparent 66%); pointer-events: none; }
.site-footer::before { top: 0; right: -60px; }
.site-footer::after { bottom: 0; left: -60px; transform: rotate(180deg); }
.site-footer .container { position: relative; z-index: 2; }
.footer-main { display: grid; grid-template-columns: 1fr 1.4fr; gap: 64px; padding-bottom: 48px; }
.footer-left .footer-logo { display: inline-flex; align-items: center; margin-bottom: 22px; text-decoration: none; }
.footer-left .footer-logo:hover { text-decoration: none; }
.footer-logo svg.logo-svg { height: 64px; width: auto; display: block; }
.footer-tagline { color: #cfdcf2; font-size: 14.5px; line-height: 1.6; margin-bottom: 22px; max-width: 540px; }
.footer-map { border-radius: 8px; overflow: hidden; border: 1px solid rgba(255,255,255,.12); box-shadow: 0 8px 24px rgba(0,0,0,.18); margin-bottom: 28px; background: #e7eef7; }
.footer-map iframe { width: 100%; height: 280px; border: 0; display: block; }
.footer-left h4 { color: #fff; font-size: 13px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; margin-bottom: 14px; position: relative; padding-bottom: 8px; display: inline-block; }
.footer-left h4::after { content: ''; position: absolute; bottom: 0; left: 0; width: 100%; height: 2px; background: linear-gradient(90deg, #4ade80 0%, #22d3a4 60%, transparent 100%); border-radius: 2px; }
.footer-contact-info { display: flex; align-items: center; gap: 8px; font-size: 15px; color: #fff; font-weight: 500; margin-bottom: 24px; text-decoration: none; }
.footer-contact-info svg { width: 14px; height: 14px; color: #cfdcf2; }
.footer-contact-info:hover { color: #4ade80; text-decoration: none; }
.footer-address { display: flex; align-items: center; gap: 8px; font-size: 15px; color: #fff; text-decoration: none; }
.footer-address svg { width: 14px; height: 14px; color: #cfdcf2; flex-shrink: 0; }
.footer-address:hover { color: #4ade80; text-decoration: none; }
.footer-right { display: flex; flex-direction: column; }
.footer-social-bar { display: flex; align-items: center; justify-content: space-between; gap: 20px; margin-bottom: 36px; flex-wrap: wrap; }
.footer-social-title { color: #fff; font-size: 15px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; flex: 1; text-align: center; }
.social-row { display: flex; gap: 14px; }
.social-row a { width: 30px; height: 30px; display: grid; place-items: center; color: #fff; transition: all .2s ease; }
.social-row a svg { width: 20px; height: 20px; }
.social-row a:hover { color: #4ade80; transform: translateY(-2px); text-decoration: none; }
.footer-link-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 36px 48px; }
.footer-col h4 { color: #fff; font-size: 14px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; margin-bottom: 18px; position: relative; padding-bottom: 8px; display: inline-block; }
.footer-col h4::after { content: ''; position: absolute; bottom: 0; left: 0; width: 100%; height: 2px; background: linear-gradient(90deg, #4ade80 0%, #22d3a4 60%, transparent 100%); border-radius: 2px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul a, .footer-col ul li { color: #cfdcf2; font-size: 14.5px; text-decoration: none; transition: color .15s; }
.footer-col ul a:hover { color: #4ade80; text-decoration: none; }
.footer-col ul li.spacer { height: 6px; }
.see-more-btn { display: inline-block; margin-top: 18px; padding: 12px 28px; background: #06204a; color: #fff; font-size: 13px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; border-radius: 4px; transition: all .2s; }
.see-more-btn:hover { background: #4ade80; color: #06204a; text-decoration: none; transform: translateY(-1px); }
.areas-served { max-height: 0; overflow: hidden; transition: max-height .4s ease, padding .3s ease, margin .3s ease; padding: 0; margin: 0; grid-column: 1 / -1; }
.areas-served.open { max-height: 800px; padding-top: 24px; margin-top: 8px; border-top: 1px solid rgba(255,255,255,.12); }
.areas-served ul { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px 18px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.12); padding: 22px 0; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; font-size: 13.5px; color: #cfdcf2; }
.footer-bottom-links { display: flex; gap: 0; align-items: center; }
.footer-bottom-links a { color: #cfdcf2; padding: 0 14px; border-right: 1px solid rgba(255,255,255,.18); font-size: 13.5px; }
.footer-bottom-links a:last-child { border-right: 0; padding-right: 0; }
.footer-bottom-links a:first-child { padding-left: 0; }
.footer-bottom-links a:hover { color: #4ade80; text-decoration: none; }

/* ============ STICKY MOBILE CALL ============ */
.sticky-call { position: fixed; bottom: 16px; left: 16px; right: 16px; background: var(--blue-700); color: #fff; padding: 14px 20px; border-radius: 12px; font-weight: 700; font-size: 16px; text-align: center; box-shadow: 0 8px 24px rgba(20,82,163,.45); display: none; z-index: 90; align-items: center; justify-content: center; gap: 10px; }
.sticky-call:hover { background: var(--blue-800); text-decoration: none; }

/* ============ RESPONSIVE ============ */
@media (max-width: 980px) {
  .hero .container { grid-template-columns: 1fr; gap: 32px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .services-split-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: repeat(2, 1fr); gap: 32px 24px; }
  .process-grid::before { display: none; }
  .testi-grid { grid-template-columns: 1fr; }
  .location-grid { grid-template-columns: 1fr; }
  .directions-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; gap: 32px; }
  .pricing-card.featured { transform: none; }
  .serves-grid { grid-template-columns: repeat(3, 1fr); }
  .local-grid { grid-template-columns: 1fr; }
  .footer-main { grid-template-columns: 1fr; gap: 40px; }
  .footer-link-grid { gap: 32px; }
  .areas-served ul { grid-template-columns: repeat(3, 1fr); }
  .footer-social-bar { justify-content: center; }
  .footer-social-title { flex: none; text-align: left; }
  .intro-grid { grid-template-columns: 1fr; gap: 28px; }
  .nav { display: none; position: absolute; top: 100%; left: 0; right: 0; background: #0a2f73; flex-direction: column; align-items: stretch; padding: 12px; box-shadow: 0 12px 32px rgba(0,0,0,.3); border-top: 1px solid rgba(255,255,255,.08); z-index: 50; }
  .nav.open { display: flex; }
  .nav-link { width: 100%; padding: 14px 16px; white-space: normal; justify-content: flex-start; }
  .dropdown { position: static; box-shadow: none; border: 0; opacity: 1; visibility: visible; transform: none; padding-left: 16px; display: none; background: rgba(255,255,255,.04); }
  .dropdown a { color: #cfdcf2; }
  .dropdown a:hover { background: rgba(255,255,255,.08); color: #fff; }
  .nav-item.open .dropdown { display: block; }
  .menu-toggle { display: inline-block; }
  .cta-header { display: none; }
  .utility-bar { display: none; }
  .header-phone-mobile { display: inline-flex; }
  .promo-bar { display: block; }
  .sticky-call { display: none; }
  .site-header .container { padding: 0 16px; gap: 10px; }
  .logo { padding: 10px 0; }
  .logo svg.logo-svg { height: 40px; }
  body { padding-bottom: 0; }
  .heads-up-card { flex-direction: column; gap: 14px; padding: 22px; }
  .coupon-card { flex-direction: column; text-align: center; padding: 28px 22px; }
  .compare-table { font-size: 14px; }
  .compare-table tbody td { padding: 12px 14px; }
  .compare-table thead th { padding: 14px; font-size: 13px; }
}
@media (max-width: 600px) {
  .services-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr; }
  .footer-link-grid { grid-template-columns: 1fr; gap: 28px; }
  .areas-served ul { grid-template-columns: repeat(2, 1fr); }
  .serves-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 14px; }
  .footer-bottom-links { flex-wrap: wrap; }
  .hero { padding: 48px 0 56px; }
  section { padding: 56px 0; }
  .hero-stats { gap: 20px; }
  .hero-stats .stat strong { font-size: 22px; }
  .compare-table tbody td.label { width: 35%; font-size: 13px; }
}

/* =========================================================================
   WORDPRESS PAGE OVERRIDES
   ========================================================================= */
.page-id-7 div#page,
.page-id-19 div#page,
.page-id-14 div#page,
.page-id-48387 div#page { padding: 0; }
.page-id-7 .entry-content,
.page-id-19 .entry-content,
.page-id-14 .entry-content,
.page-id-48387 .entry-content { margin: 0; padding: 0; max-width: none; }
.page-id-7 .entry-content > *,
.page-id-19 .entry-content > *,
.page-id-14 .entry-content > *,
.page-id-48387 .entry-content > * { max-width: none; }
header.hero > .container { background: transparent; }
.site-footer section { padding: 0; }

/* =========================================================================
   HOMEPAGE PHOTO COMPONENTS (real-shop trust signals)
   ========================================================================= */

/* HERO PHOTO — replaces white hero-card with shop interior photo.
   Full bleed inside its column; subtle frame; small overlay caption. */
.hero-photo {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0,0,0,.45);
  aspect-ratio: 5 / 4;
  background: #0a1f3d;
}
.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hero-photo .photo-caption {
  position: absolute;
  left: 16px;
  bottom: 16px;
  right: 16px;
  background: rgba(10,37,64,.78);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  padding: 10px 14px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
  line-height: 1.35;
}
.hero-photo .photo-caption svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  color: #7dd3fc;
}

/* DROP-OFF STRIP — "How to find us when you arrive."
   Photo of window signage on the left, instructions on the right. */
.dropoff { background: var(--bg-alt); }
.dropoff-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  align-items: center;
}
.dropoff-photo {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4 / 3;
  background: #0a1f3d;
}
.dropoff-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.dropoff-body h2 {
  font-size: clamp(26px, 3vw, 34px);
  margin-bottom: 14px;
}
.dropoff-body .lede {
  font-size: 17px;
  color: var(--ink-soft);
  margin-bottom: 22px;
}
.dropoff-steps {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  counter-reset: dstep;
}
.dropoff-steps li {
  counter-increment: dstep;
  padding: 12px 0 12px 44px;
  position: relative;
  font-size: 15.5px;
  color: var(--ink);
  border-top: 1px solid var(--line);
}
.dropoff-steps li:first-child { border-top: 0; padding-top: 0; }
.dropoff-steps li:first-child::before { top: 0; }
.dropoff-steps li::before {
  content: counter(dstep);
  position: absolute;
  left: 0;
  top: 12px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--blue-700);
  color: #fff;
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 14px;
}
.dropoff-steps li strong {
  display: block;
  color: var(--blue-900);
  font-size: 15.5px;
  margin-bottom: 2px;
}
.dropoff-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 15px;
  color: var(--blue-700);
}
.dropoff-cta::after {
  content: '→';
  transition: transform .2s;
}
.dropoff-cta:hover::after { transform: translateX(4px); }

/* LOCATION PHOTO — storefront image swapped in instead of dark info card.
   Layered: photo at top, info card below it, both inside the left column. */
.location-photo {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  margin-bottom: 18px;
  aspect-ratio: 16 / 10;
  background: #0a1f3d;
}
.location-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.location-photo-caption {
  font-size: 13.5px;
  color: var(--ink-mute);
  font-style: italic;
  margin-top: -10px;
  margin-bottom: 18px;
  text-align: center;
  padding: 0 8px;
}
.location-stack { display: flex; flex-direction: column; }
/* RESPONSIVE for new photo components */
@media (max-width: 980px) {
  .dropoff-grid { grid-template-columns: 1fr; gap: 28px; }
  .hero-photo { aspect-ratio: 4 / 3; }
  .hero-photo .photo-caption { font-size: 12.5px; padding: 9px 12px; }
}
