/* ═══════════════════════════════════════════════════════════════════════════════
   ORDERWEEDDC - NIKE x APPLE AESTHETIC
   Clean. Minimal. Premium. Deep SEO.
   ═══════════════════════════════════════════════════════════════════════════════ */

/* RESET & BASE */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
    --black: #000000;
    --white: #ffffff;
    --gray-50: #fafafa;
    --gray-100: #f5f5f5;
    --gray-200: #e5e5e5;
    --gray-300: #d4d4d4;
    --gray-400: #a3a3a3;
    --gray-500: #737373;
    --gray-600: #525252;
    --gray-700: #404040;
    --gray-800: #262626;
    --gray-900: #171717;
    --green: #059669;
    --green-light: #10b981;
    --green-dark: #047857;
    --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'SF Pro Text', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    background: var(--white);
    color: var(--black);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { cursor: pointer; border: none; background: none; font: inherit; }

/* ═══════════════════════════════════════════════════════════════════════════════
   APPLE-STYLE NAVIGATION (Blur + Minimal)
   ═══════════════════════════════════════════════════════════════════════════════ */

.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    background: rgba(255, 255, 255, 0.72);
    backdrop-filter: saturate(180%) blur(20px);
    -webkit-backdrop-filter: saturate(180%) blur(20px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    transition: var(--transition);
}

.nav.dark {
    background: rgba(0, 0, 0, 0.8);
    border-bottom-color: rgba(255, 255, 255, 0.1);
}

.nav.dark .nav-logo,
.nav.dark .nav-link,
.nav.dark .nav-phone { color: var(--white); }

.nav-inner {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-left { display: flex; align-items: center; gap: 40px; }

.nav-logo {
    font-size: 21px;
    font-weight: 600;
    letter-spacing: -0.02em;
}

.nav-logo span { color: var(--green); }

.nav-links { display: flex; gap: 32px; }

.nav-link {
    font-size: 12px;
    font-weight: 400;
    color: var(--gray-600);
    transition: var(--transition);
}

.nav-link:hover { color: var(--black); }
.nav-link.active { color: var(--black); font-weight: 500; }

.nav-right { display: flex; align-items: center; gap: 24px; }

.nav-phone {
    font-size: 12px;
    color: var(--gray-500);
    transition: var(--transition);
}

.nav-phone:hover { color: var(--black); }

.nav-cta {
    padding: 8px 20px;
    background: var(--black);
    color: var(--white);
    font-size: 12px;
    font-weight: 500;
    border-radius: 980px;
    transition: var(--transition);
}

.nav-cta:hover { background: var(--green); }

/* ═══════════════════════════════════════════════════════════════════════════════
   NIKE-STYLE HERO (Big Type, Video, Minimal)
   ═══════════════════════════════════════════════════════════════════════════════ */

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--black);
    overflow: hidden;
}

.hero-sm { min-height: 70vh; }
.hero-xs { min-height: 50vh; }

.hero-media {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.hero-video,
.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-video { opacity: 0.7; }
.hero-image { opacity: 0.6; }

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0.2) 40%, rgba(0,0,0,0.6) 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    padding: 0 24px;
    max-width: 1000px;
}

.hero-eyebrow {
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.02em;
    color: var(--green-light);
    margin-bottom: 16px;
    opacity: 0;
    animation: fadeUp 0.8s ease forwards;
}

.hero-title {
    font-size: clamp(56px, 12vw, 120px);
    font-weight: 700;
    letter-spacing: -0.04em;
    line-height: 0.95;
    color: var(--white);
    margin-bottom: 24px;
    opacity: 0;
    animation: fadeUp 0.8s ease 0.1s forwards;
}

.hero-title span { 
    display: block;
    font-weight: 300;
}

.hero-subtitle {
    font-size: 18px;
    font-weight: 400;
    color: rgba(255,255,255,0.8);
    max-width: 540px;
    margin: 0 auto 40px;
    line-height: 1.6;
    opacity: 0;
    animation: fadeUp 0.8s ease 0.2s forwards;
}

.hero-cta-group {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeUp 0.8s ease 0.3s forwards;
}

.hero-cta {
    padding: 16px 32px;
    font-size: 16px;
    font-weight: 500;
    border-radius: 980px;
    transition: var(--transition);
}

.hero-cta-primary {
    background: var(--white);
    color: var(--black);
}

.hero-cta-primary:hover {
    background: var(--green);
    color: var(--white);
    transform: scale(1.02);
}

.hero-cta-secondary {
    background: transparent;
    border: 2px solid rgba(255,255,255,0.5);
    color: var(--white);
}

.hero-cta-secondary:hover {
    border-color: var(--white);
    background: rgba(255,255,255,0.1);
}

.hero-phone {
    display: block;
    margin-top: 32px;
    font-size: 28px;
    font-weight: 300;
    letter-spacing: 0.02em;
    color: var(--white);
    opacity: 0;
    animation: fadeUp 0.8s ease 0.4s forwards;
}

@keyframes fadeUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ═══════════════════════════════════════════════════════════════════════════════
   APPLE-STYLE MARQUEE
   ═══════════════════════════════════════════════════════════════════════════════ */

.marquee {
    background: var(--black);
    overflow: hidden;
    white-space: nowrap;
    padding: 16px 0;
}

.marquee-light {
    background: var(--gray-50);
    border-top: 1px solid var(--gray-200);
    border-bottom: 1px solid var(--gray-200);
}

.marquee-light .marquee-text { color: var(--black); }

.marquee-green { background: var(--green); }

.marquee-inner {
    display: inline-flex;
    animation: scroll 40s linear infinite;
}

.marquee:hover .marquee-inner { animation-play-state: paused; }

.marquee-text {
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--white);
    padding: 0 48px;
}

.marquee-text span {
    opacity: 0.4;
    margin: 0 24px;
}

@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ═══════════════════════════════════════════════════════════════════════════════
   NIKE-STYLE STATS BAR
   ═══════════════════════════════════════════════════════════════════════════════ */

.stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    background: var(--gray-50);
}

.stat {
    padding: 48px 24px;
    text-align: center;
    border-right: 1px solid var(--gray-200);
}

.stat:last-child { border-right: none; }

.stat-value {
    font-size: 48px;
    font-weight: 700;
    letter-spacing: -0.03em;
    color: var(--black);
    line-height: 1;
}

.stat-label {
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--gray-500);
    margin-top: 8px;
}

/* ═══════════════════════════════════════════════════════════════════════════════
   SECTIONS (Apple Spacing)
   ═══════════════════════════════════════════════════════════════════════════════ */

.section {
    padding: 120px 48px;
    max-width: 1440px;
    margin: 0 auto;
}

.section-sm { padding: 80px 48px; }

.section-dark {
    background: var(--black);
    color: var(--white);
    max-width: none;
}

.section-gray {
    background: var(--gray-50);
    max-width: none;
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-eyebrow {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--green);
    margin-bottom: 16px;
}

.section-dark .section-eyebrow { color: var(--green-light); }

.section-title {
    font-size: 56px;
    font-weight: 700;
    letter-spacing: -0.03em;
    line-height: 1.05;
}

.section-subtitle {
    font-size: 18px;
    color: var(--gray-500);
    margin-top: 16px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.section-dark .section-subtitle { color: var(--gray-400); }

/* ═══════════════════════════════════════════════════════════════════════════════
   NIKE-STYLE CARDS (Services)
   ═══════════════════════════════════════════════════════════════════════════════ */

.cards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.card {
    background: var(--white);
    border-radius: 16px;
    padding: 32px;
    transition: var(--transition);
    border: 1px solid var(--gray-200);
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

.card-featured {
    background: var(--black);
    color: var(--white);
    border-color: var(--black);
}

.card-featured:hover {
    background: var(--gray-900);
}

.card-icon {
    width: 64px;
    height: 64px;
    background: var(--gray-100);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    color: var(--gray-600);
    margin-bottom: 24px;
}

.card-featured .card-icon {
    background: var(--green);
    color: var(--white);
}

.card-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
}

.card-rating {
    font-size: 14px;
    color: var(--gray-500);
    margin-bottom: 4px;
}

.card-featured .card-rating { color: var(--gray-400); }

.card-meta {
    font-size: 13px;
    color: var(--gray-400);
}

.card-price {
    font-size: 24px;
    font-weight: 700;
    margin-top: 16px;
}

.card-btn {
    display: inline-block;
    margin-top: 20px;
    padding: 12px 24px;
    background: var(--black);
    color: var(--white);
    font-size: 13px;
    font-weight: 500;
    border-radius: 980px;
    transition: var(--transition);
}

.card-btn:hover { background: var(--green); }

.card-featured .card-btn {
    background: var(--green);
}

.card-featured .card-btn:hover {
    background: var(--green-light);
}

/* ═══════════════════════════════════════════════════════════════════════════════
   NEIGHBORHOODS GRID (Nike Style)
   ═══════════════════════════════════════════════════════════════════════════════ */

.hoods-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.hood {
    position: relative;
    aspect-ratio: 4/3;
    border-radius: 16px;
    overflow: hidden;
    background: var(--gray-900);
}

.hood-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0.6;
    transition: var(--transition);
}

.hood:hover .hood-bg {
    opacity: 0.8;
    transform: scale(1.05);
}

.hood-content {
    position: relative;
    z-index: 10;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 24px;
}

.hood-name {
    font-size: 24px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 4px;
}

.hood-count {
    font-size: 13px;
    color: rgba(255,255,255,0.7);
}

/* ═══════════════════════════════════════════════════════════════════════════════
   STRAINS GRID
   ═══════════════════════════════════════════════════════════════════════════════ */

.strains-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.strain {
    background: var(--white);
    border-radius: 16px;
    padding: 24px;
    border: 1px solid var(--gray-200);
    transition: var(--transition);
    text-align: center;
}

.strain:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

.strain-type {
    display: inline-block;
    padding: 6px 14px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    border-radius: 980px;
    margin-bottom: 16px;
}

.strain-type.indica { background: #ede9fe; color: #6d28d9; }
.strain-type.sativa { background: #fef3c7; color: #b45309; }
.strain-type.hybrid { background: #d1fae5; color: #047857; }

.strain-name {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
}

.strain-thc {
    font-size: 14px;
    color: var(--gray-500);
    margin-bottom: 16px;
}

.strain-effects {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    justify-content: center;
}

.strain-effect {
    padding: 6px 12px;
    background: var(--gray-100);
    font-size: 11px;
    font-weight: 500;
    color: var(--gray-600);
    border-radius: 980px;
}

/* ═══════════════════════════════════════════════════════════════════════════════
   FEATURES GRID (Apple Style)
   ═══════════════════════════════════════════════════════════════════════════════ */

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 48px;
}

.feature {
    text-align: center;
}

.feature-icon {
    font-size: 48px;
    margin-bottom: 24px;
}

.feature-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 12px;
}

.feature-text {
    font-size: 14px;
    color: var(--gray-500);
    line-height: 1.6;
}

.section-dark .feature-text { color: var(--gray-400); }

/* ═══════════════════════════════════════════════════════════════════════════════
   CTA SECTION (Nike Big Type)
   ═══════════════════════════════════════════════════════════════════════════════ */

.cta {
    padding: 160px 48px;
    text-align: center;
    background: var(--gray-50);
}

.cta-dark {
    background: var(--black);
    color: var(--white);
}

.cta-eyebrow {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--green);
    margin-bottom: 24px;
}

.cta-dark .cta-eyebrow { color: var(--green-light); }

.cta-title {
    font-size: 72px;
    font-weight: 700;
    letter-spacing: -0.03em;
    line-height: 1;
    margin-bottom: 24px;
}

.cta-subtitle {
    font-size: 18px;
    color: var(--gray-500);
    margin-bottom: 40px;
}

.cta-dark .cta-subtitle { color: var(--gray-400); }

.cta-phone {
    display: block;
    font-size: 48px;
    font-weight: 300;
    letter-spacing: 0.02em;
    color: var(--green);
    margin-bottom: 40px;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-btn {
    padding: 18px 40px;
    font-size: 16px;
    font-weight: 500;
    border-radius: 980px;
    transition: var(--transition);
}

.cta-btn-primary {
    background: var(--black);
    color: var(--white);
}

.cta-btn-primary:hover {
    background: var(--green);
    transform: scale(1.02);
}

.cta-dark .cta-btn-primary {
    background: var(--white);
    color: var(--black);
}

.cta-btn-secondary {
    background: transparent;
    border: 2px solid var(--black);
    color: var(--black);
}

.cta-btn-secondary:hover {
    background: var(--black);
    color: var(--white);
}

.cta-dark .cta-btn-secondary {
    border-color: var(--white);
    color: var(--white);
}

.cta-dark .cta-btn-secondary:hover {
    background: var(--white);
    color: var(--black);
}

/* ═══════════════════════════════════════════════════════════════════════════════
   CONTENT (Articles, Legal)
   ═══════════════════════════════════════════════════════════════════════════════ */

.content {
    max-width: 720px;
    margin: 0 auto;
    padding: 120px 24px;
}

.content h1 {
    font-size: 48px;
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 24px;
}

.content h2 {
    font-size: 28px;
    font-weight: 600;
    margin: 48px 0 16px;
}

.content h3 {
    font-size: 20px;
    font-weight: 600;
    margin: 32px 0 12px;
}

.content p {
    font-size: 17px;
    line-height: 1.7;
    color: var(--gray-600);
    margin-bottom: 20px;
}

.content ul, .content ol {
    margin: 20px 0;
    padding-left: 24px;
}

.content li {
    font-size: 17px;
    line-height: 1.7;
    color: var(--gray-600);
    margin-bottom: 12px;
}

.content a {
    color: var(--green);
    text-decoration: underline;
}

.content a:hover { color: var(--green-dark); }

/* ═══════════════════════════════════════════════════════════════════════════════
   FAQ (Accordion)
   ═══════════════════════════════════════════════════════════════════════════════ */

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--gray-200);
}

.faq-q {
    width: 100%;
    padding: 24px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 18px;
    font-weight: 500;
    text-align: left;
    cursor: pointer;
}

.faq-q::after {
    content: '+';
    font-size: 24px;
    font-weight: 300;
    color: var(--gray-400);
    transition: var(--transition);
}

.faq-item.open .faq-q::after {
    transform: rotate(45deg);
}

.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.faq-item.open .faq-a {
    max-height: 500px;
}

.faq-a-inner {
    padding: 0 0 24px;
    font-size: 16px;
    line-height: 1.7;
    color: var(--gray-600);
}

/* ═══════════════════════════════════════════════════════════════════════════════
   FOOTER (Apple Style)
   ═══════════════════════════════════════════════════════════════════════════════ */

.footer {
    background: var(--gray-100);
    padding: 64px 48px 32px;
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr repeat(4, 1fr);
    gap: 64px;
    margin-bottom: 64px;
}

.footer-brand .nav-logo {
    font-size: 21px;
    margin-bottom: 16px;
}

.footer-brand p {
    font-size: 14px;
    color: var(--gray-500);
    line-height: 1.6;
    margin-bottom: 20px;
}

.footer-phone {
    font-size: 20px;
    font-weight: 500;
    color: var(--green);
}

.footer-col h4 {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--gray-500);
    margin-bottom: 20px;
}

.footer-col ul { list-style: none; }

.footer-col li { margin-bottom: 14px; }

.footer-col a {
    font-size: 14px;
    color: var(--gray-600);
    transition: var(--transition);
}

.footer-col a:hover { color: var(--black); }

.footer-bottom {
    padding-top: 32px;
    border-top: 1px solid var(--gray-300);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-legal {
    font-size: 13px;
    color: var(--gray-500);
}

.footer-links {
    display: flex;
    gap: 24px;
}

.footer-links a {
    font-size: 13px;
    color: var(--gray-500);
    transition: var(--transition);
}

.footer-links a:hover { color: var(--black); }

/* ═══════════════════════════════════════════════════════════════════════════════
   COVERAGE TAGS
   ═══════════════════════════════════════════════════════════════════════════════ */

.tags {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
}

.tag {
    padding: 12px 24px;
    background: var(--white);
    border: 1px solid var(--gray-200);
    font-size: 13px;
    font-weight: 500;
    border-radius: 980px;
    transition: var(--transition);
}

.tag:hover {
    background: var(--black);
    color: var(--white);
    border-color: var(--black);
}

/* ═══════════════════════════════════════════════════════════════════════════════
   DOMAINS SHOWCASE
   ═══════════════════════════════════════════════════════════════════════════════ */

.domains {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
}

.domain {
    padding: 10px 20px;
    background: var(--gray-800);
    border: 1px solid var(--gray-700);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.03em;
    color: var(--gray-400);
    border-radius: 8px;
    transition: var(--transition);
}

.domain:hover {
    background: var(--green);
    border-color: var(--green);
    color: var(--white);
}

/* ═══════════════════════════════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════════════════════════════ */

@media (max-width: 1200px) {
    .cards-grid { grid-template-columns: repeat(2, 1fr); }
    .strains-grid { grid-template-columns: repeat(2, 1fr); }
    .features-grid { grid-template-columns: repeat(2, 1fr); gap: 32px; }
}

@media (max-width: 768px) {
    .nav-inner { padding: 0 24px; }
    .nav-links { display: none; }
    .nav-phone { display: none; }
    
    .hero-title { font-size: 48px; }
    .hero-subtitle { font-size: 16px; }
    
    .section { padding: 80px 24px; }
    .section-title { font-size: 36px; }
    
    .stats { grid-template-columns: repeat(2, 1fr); }
    .stat { padding: 32px 16px; }
    .stat-value { font-size: 36px; }
    
    .cards-grid { grid-template-columns: 1fr; }
    .hoods-grid { grid-template-columns: 1fr; }
    .strains-grid { grid-template-columns: 1fr; }
    .features-grid { grid-template-columns: 1fr; }
    
    .cta { padding: 80px 24px; }
    .cta-title { font-size: 40px; }
    .cta-phone { font-size: 32px; }
    .cta-buttons { flex-direction: column; }
    
    .footer { padding: 48px 24px 24px; }
    .footer-grid { grid-template-columns: 1fr; gap: 40px; text-align: center; }
    .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
    
    .content { padding: 80px 24px; }
    .content h1 { font-size: 32px; }
}

/* ═══════════════════════════════════════════════════════════════════════════════
   GEO THEMES + HERO IMAGE SYSTEM (unique per geo page)
   ═══════════════════════════════════════════════════════════════════════════════ */

body.theme-georgetown { --accent-1: #0b1f3a; --accent-2: #d4a34a; --accent-ink: #f7f1e6; }
body.theme-dupont { --accent-1: #b0006d; --accent-2: #00b3a6; --accent-ink: #fff2f7; }
body.theme-capitolhill { --accent-1: #7a1b1b; --accent-2: #6b7280; --accent-ink: #f7f2f2; }
body.theme-ustreet { --accent-1: #5b21b6; --accent-2: #d97706; --accent-ink: #f7f2ff; }
body.theme-navyyard { --accent-1: #0f766e; --accent-2: #f97316; --accent-ink: #ecfdfb; }
body.theme-wharf { --accent-1: #111827; --accent-2: #b87333; --accent-ink: #f5f0ea; }
body.theme-zip { --accent-1: #0f172a; --accent-2: #22c55e; --accent-ink: #f0fdf4; }

.hero-geo {
    position: relative;
    color: var(--accent-ink, #fff);
    background-image: var(--hero-overlay), var(--hero-image);
    background-size: cover, cover;
    background-position: center, center;
    background-repeat: no-repeat, no-repeat;
}

.hero-geo::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, rgba(0,0,0,0.55), rgba(0,0,0,0.25));
    pointer-events: none;
}

.hero-geo .hero-content { position: relative; z-index: 2; }
.hero-geo .hero-title { color: var(--accent-ink, #fff); }
.hero-geo .hero-cta-primary { background: var(--accent-2); color: #111; }
.hero-geo .hero-cta-secondary { border-color: var(--accent-2); color: var(--accent-ink); }

.geo-accent { color: var(--accent-2); }
.geo-pill { background: color-mix(in srgb, var(--accent-2) 15%, #fff); color: #111; }


/* Geo/ZIP banner gallery */
.geo-banners {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
  align-items: stretch;
}
.geo-banner {
  width: 100%;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.18);
}
