/* Diggerman Dan, shared styles */
:root {
 --navy: #0a1d3a;
 --orange: #f47521;
 --blue: #1d6cd1;
 --light-grey: #f5f5f5;
 --border: #e5e7eb;
 --grey: #6b7280;
 --placeholder: #d1d5db;
}
* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
 font-family: 'Inter', system-ui, -apple-system, sans-serif;
 color: var(--navy);
 background: #fff;
 line-height: 1.6;
}
.container { max-width: 1140px; margin: 0 auto; padding: 0 32px; }
.container-narrow { max-width: 720px; margin: 0 auto; padding: 0 32px; }

/* MOCKUP NAV (not part of design, for clicking between mockup pages only) */
.mockup-nav {
 background: #1f2937; color: #fff; padding: 10px 20px;
 display: flex; align-items: center; gap: 16px; flex-wrap: wrap;
 font-family: 'Inter', monospace; font-size: 11px; letter-spacing: 1px;
 border-bottom: 2px dashed #f59e0b;
}
.mockup-nav .mockup-label {
 color: #f59e0b; font-weight: 600; text-transform: uppercase;
 letter-spacing: 2px; padding-right: 12px; border-right: 1px solid rgba(255,255,255,0.2);
}
.mockup-nav a {
 color: rgba(255,255,255,0.7); text-decoration: none; text-transform: uppercase;
 padding: 4px 10px; border-radius: 3px;
}
.mockup-nav a:hover { background: rgba(255,255,255,0.1); color: #fff; }
.mockup-nav a.current { background: #f59e0b; color: #1f2937; }

/* HEADER (transparent, sits over hero, scrolls with page) */
.site-header {
 position: absolute;
 top: 0; left: 0; right: 0;
 z-index: 10;
 background: transparent;
 padding: 22px 40px;
 display: flex; align-items: center; justify-content: space-between;
 max-width: 1280px; margin: 0 auto;
}
.site-header .brand { display: inline-flex; align-items: center; text-decoration: none; }
.site-header .brand img { height: 84px; width: auto; display: block; }
.main-nav { display: flex; gap: 32px; align-items: center; }
.main-nav > a, .main-nav .has-sub > a {
 color: #fff;
 text-decoration: none;
 font-family: 'Inter', sans-serif;
 font-size: 12px;
 font-weight: 500;
 letter-spacing: 1.5px;
 text-transform: uppercase;
 transition: color .2s ease;
 position: relative;
 padding: 6px 0;
 display: inline-flex; align-items: center; gap: 6px;
}
.main-nav > a:hover, .main-nav .has-sub:hover > a { color: var(--orange); }
.main-nav a.active { color: var(--orange); }
.main-nav a.active::after {
 content: ""; position: absolute; left: 0; right: 0; bottom: -2px;
 height: 2px; background: var(--orange);
}

/* DROPDOWN */
.main-nav .has-sub { position: relative; }
.main-nav .has-sub > a::after {
 content: ""; display: inline-block;
 width: 0; height: 0; margin-left: 2px;
 border-left: 4px solid transparent; border-right: 4px solid transparent;
 border-top: 4px solid currentColor; opacity: .7;
 transition: transform .2s ease;
}
.main-nav .has-sub:hover > a::after { transform: rotate(180deg); }
.main-nav .submenu {
 position: absolute; top: calc(100% + 14px); left: 50%; transform: translateX(-50%) translateY(-6px);
 min-width: 240px;
 background: rgba(10,29,58,0.85);
 backdrop-filter: blur(16px) saturate(140%);
 -webkit-backdrop-filter: blur(16px) saturate(140%);
 border: 1px solid rgba(255,255,255,0.12);
 border-radius: 12px;
 padding: 10px;
 box-shadow: 0 12px 30px rgba(0,0,0,0.35);
 opacity: 0; visibility: hidden; pointer-events: none;
 transition: opacity .2s ease, transform .2s ease, visibility .2s ease;
 z-index: 20;
}
.main-nav .submenu::before {
 content: ""; position: absolute; top: -16px; left: 0; right: 0; height: 16px;
}
.main-nav .has-sub:hover .submenu,
.main-nav .has-sub:focus-within .submenu {
 opacity: 1; visibility: visible; pointer-events: auto;
 transform: translateX(-50%) translateY(0);
}
.main-nav .submenu a {
 display: block; padding: 10px 14px;
 color: rgba(255,255,255,0.85);
 text-decoration: none;
 font-family: 'Inter', sans-serif;
 font-size: 12px; font-weight: 500;
 letter-spacing: 1.2px; text-transform: uppercase;
 border-radius: 8px;
 transition: background .15s ease, color .15s ease, padding-left .15s ease;
}
.main-nav .submenu a:hover {
 background: rgba(244,117,33,0.15);
 color: var(--orange);
 padding-left: 18px;
}
.header-cta {
 display: inline-flex; align-items: center; gap: 10px;
 padding: 12px 22px;
 background: rgba(255,255,255,0.10);
 backdrop-filter: blur(14px) saturate(140%);
 -webkit-backdrop-filter: blur(14px) saturate(140%);
 border: 1px solid rgba(255,255,255,0.28);
 border-radius: 999px;
 color: #fff;
 font-family: 'Inter', sans-serif;
 font-size: 12px;
 font-weight: 600;
 letter-spacing: 1.5px;
 text-transform: uppercase;
 text-decoration: none;
 box-shadow: 0 4px 18px rgba(0,0,0,0.18), inset 0 1px 0 rgba(255,255,255,0.25);
 transition: background .2s ease, border-color .2s ease, transform .2s ease;
}
.header-cta:hover {
 background: rgba(255,255,255,0.18);
 border-color: rgba(255,255,255,0.5);
 transform: translateY(-1px);
}
.header-cta svg { color: var(--orange); }
@media (max-width: 860px) {
 .site-header { padding: 16px 20px; }
 .site-header .brand img { height: 60px; }
 .main-nav { display: none; }
}

/* TYPOGRAPHY */
h1, h2, h3 { font-family: 'Montserrat', sans-serif; color: var(--navy); margin: 0; }
h1 { font-size: 44px; font-weight: 600; line-height: 1.18; letter-spacing: -0.5px; }
h2 { font-size: 36px; font-weight: 600; line-height: 1.18; letter-spacing: -0.3px; }
h3 { font-size: 20px; font-weight: 600; line-height: 1.3; letter-spacing: -0.2px; }
.pre-headline {
 font-family: 'Inter', sans-serif;
 font-size: 16px;
 font-weight: 500;
 color: var(--orange);
 letter-spacing: 3px;
 text-transform: uppercase;
 margin-bottom: 14px;
}
.accent-line { width: 36px; height: 2px; background: var(--orange); margin: 20px 0 14px; }
.accent-line.centered { margin-left: auto; margin-right: auto; }
.subhead { font-size: 14px; color: var(--grey); line-height: 1.7; max-width: 520px; margin: 0 auto; }
.section-intro { text-align: center; padding: 80px 32px 40px; }
.body-text { font-size: 14px; color: var(--grey); line-height: 1.7; }
p { color: var(--grey); }

/* BUTTONS */
.btn {
 display: inline-flex; align-items: center; gap: 8px;
 padding: 12px 26px;
 border-radius: 999px;
 font-family: 'Inter', sans-serif;
 font-size: 11px;
 font-weight: 500;
 letter-spacing: 1px;
 text-transform: uppercase;
 text-decoration: none;
 cursor: pointer;
 transition: transform .2s ease, background .2s ease, color .2s ease;
 border: none;
}
.btn-primary { background: var(--orange); color: #fff; }
.btn-primary:hover { background: #d65f10; transform: translateY(-2px); }
.btn-outline { background: #fff; color: var(--navy); border: 1px solid var(--navy); }
.btn-outline:hover { background: var(--navy); color: #fff; }
.btn-ghost { background: #fff; color: var(--navy); }
.btn-ghost:hover { background: var(--orange); color: #fff; }

/* CTA bar variant on orange background, ghost button hovers to navy so it doesn't disappear */
.cta-bar.on-orange { background: var(--orange); }
.cta-bar.on-orange h2 span.accent { color: var(--navy); }
.cta-bar.on-orange .btn-ghost:hover { background: var(--navy); color: #fff; }

/* FOOTER */
.site-footer {
 background: var(--navy);
 color: rgba(255,255,255,0.7);
 padding: 72px 32px 28px;
}
.site-footer .footer-cols {
 max-width: 1140px; margin: 0 auto;
 display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr;
 gap: 48px;
 padding-bottom: 48px;
 border-bottom: 1px solid rgba(255,255,255,0.12);
}
.site-footer .footer-brand img {
 height: 90px; width: auto; display: block; margin-bottom: 20px;
}
.site-footer .footer-brand p {
 color: rgba(255,255,255,0.6); font-size: 13px; line-height: 1.7;
 max-width: 320px; margin: 0 0 22px;
}
.site-footer .footer-social {
 display: flex; gap: 10px;
}
.site-footer .footer-social a {
 display: inline-flex; align-items: center; justify-content: center;
 width: 38px; height: 38px; padding: 0;
 border-radius: 50%;
 background: rgba(255,255,255,0.08);
 border: 1px solid rgba(255,255,255,0.18);
 color: #fff;
 transition: background .2s ease, border-color .2s ease, color .2s ease, transform .2s ease;
}
.site-footer .footer-social a:hover {
 background: var(--orange);
 border-color: var(--orange);
 color: #fff;
 padding-left: 0;
 transform: translateY(-2px);
}
.site-footer .footer-social svg { width: 16px; height: 16px; }
.site-footer h6 {
 font-family: 'Montserrat', sans-serif;
 color: #fff;
 font-size: 13px;
 letter-spacing: 2px;
 margin: 4px 0 18px;
 font-weight: 600;
 text-transform: uppercase;
 position: relative;
 padding-bottom: 12px;
}
.site-footer h6::after {
 content: ""; position: absolute; left: 0; bottom: 0;
 width: 28px; height: 2px; background: var(--orange);
}
.site-footer a {
 color: rgba(255,255,255,0.72); text-decoration: none; display: block;
 padding: 5px 0; font-size: 13px; transition: color .15s ease, padding-left .15s ease;
}
.site-footer a:hover { color: var(--orange); padding-left: 4px; }
.site-footer .footer-contact {
 list-style: none; padding: 0; margin: 0; font-size: 13px; color: rgba(255,255,255,0.72);
}
.site-footer .footer-contact li {
 display: flex; align-items: flex-start; gap: 10px;
 padding: 6px 0; line-height: 1.6;
}
.site-footer .footer-contact li iconify-icon,
.site-footer .footer-contact li svg {
 color: var(--orange); flex-shrink: 0; margin-top: 2px;
}
.site-footer .footer-contact a { display: inline; padding: 0; }
.footer-bottom {
 max-width: 1140px; margin: 0 auto; padding-top: 24px;
 font-size: 12px; color: rgba(255,255,255,0.45);
 display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px;
}
.footer-bottom a { color: rgba(255,255,255,0.55); display: inline-block; padding: 0 0 0 16px; font-size: 12px; }
.footer-bottom a:hover { color: var(--orange); }
@media (max-width: 860px) {
 .site-footer .footer-cols { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 520px) {
 .site-footer .footer-cols { grid-template-columns: 1fr; }
}

/* CTA BAR */
.cta-bar { background: var(--blue); padding: 48px 32px; }
.cta-bar .cta-inner {
 max-width: 1140px; margin: 0 auto;
 display: flex; justify-content: space-between; align-items: center; gap: 32px; flex-wrap: wrap;
}
.cta-bar .pre-headline { color: rgba(255,255,255,0.85); margin-bottom: 8px; }
.cta-bar h2 { color: #fff; font-size: 22px; }
.cta-bar h2 span.accent { color: var(--orange); }

/* HERO */
.hero { text-align: center; padding: 80px 32px 60px; background: #fff; }
.hero h1 { max-width: 720px; margin: 0 auto; }
.hero h1 .accent { color: var(--blue); }
.hero .subhead { padding-top: 4px; }
.hero.on-navy { background: var(--navy); }
.hero.on-navy .pre-headline { color: var(--orange); }
.hero.on-navy h1 { color: #fff; }
.hero.on-navy .subhead { color: rgba(255,255,255,0.75); }

/* PILLAR CARDS (Services/Home) */
.pillars { padding: 24px 32px 64px; max-width: 1140px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 18px; }
.pillar-card {
 background: #fff; border: 1px solid var(--border);
 border-top: 3px solid var(--orange);
 border-radius: 4px; overflow: hidden;
}
.pillar-card .pillar-image { aspect-ratio: 4/3; background: var(--placeholder); }
.pillar-card .pillar-body { padding: 22px; }
.pillar-card .pillar-num { font-size: 16px; color: var(--orange); font-weight: 500; letter-spacing: 2px; margin-bottom: 8px; }
.pillar-card h3 { font-size: 18px; margin-bottom: 10px; }
.pillar-card p { font-size: 12px; color: var(--grey); line-height: 1.7; margin: 0 0 14px; }
.pillar-card .learn-more {
 display: inline-flex; align-items: center; gap: 10px;
 text-decoration: none; color: var(--orange);
 font-size: 13px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase;
 transition: transform .25s ease; transform-origin: left center;
}
.pillar-card .learn-more:hover { transform: scale(1.08); }
.pillar-card .learn-more .arrow { transition: transform .25s ease; display: inline-block; }
.pillar-card .learn-more:hover .arrow { transform: translateX(4px); }
.pillar-card .learn-line { height: 1px; width: 60px; background: var(--orange); margin: 0 0 16px; }

/* GENERAL GRIDS */
.grid-3 { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 18px; }
.grid-4 { display: grid; grid-template-columns: 1fr 1fr 1fr 1fr; gap: 16px; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.card-orange-top {
 background: #fff; border: 1px solid var(--border);
 border-top: 3px solid var(--orange); border-radius: 4px; padding: 24px 22px;
}
.card-orange-top .card-num {
 font-family: 'Inter', sans-serif; font-size: 16px; color: var(--orange);
 font-weight: 500; letter-spacing: 2px; margin-bottom: 8px;
}
.card-orange-top h3 { margin-bottom: 12px; font-size: 18px; }
.card-orange-top p { font-size: 12px; color: var(--grey); line-height: 1.7; margin: 0; }

/* "WHY US" 3-COL */
.why-section { padding: 80px 32px; }
.why-section .why-intro { max-width: 1140px; margin: 0 auto 36px; }
.why-section .why-grid { max-width: 1140px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 0; }
.why-section .why-grid > div { padding: 0 28px; }
.why-section .why-grid > div:first-child { padding-left: 0; }
.why-section .why-grid > div:last-child { padding-right: 0; }
.why-section .why-grid > div + div { border-left: 1px solid rgba(0,0,0,0.1); }
.why-section .why-num {
 font-family: 'Montserrat', sans-serif; font-size: 56px; font-weight: 700;
 line-height: 1; color: var(--blue); margin-bottom: 14px;
}
.why-section h3 { font-size: 20px; margin-bottom: 0; }
.why-section .why-divider { width: 24px; height: 1px; background: var(--orange); margin: 14px 0; }
.why-section .why-text { font-size: 13px; color: var(--grey); line-height: 1.7; }
.why-section.on-navy { background: var(--navy); }
.why-section.on-navy h2, .why-section.on-navy h3 { color: #fff; }
.why-section.on-navy .why-text { color: rgba(255,255,255,0.75); }
.why-section.on-navy .why-num { color: var(--orange); }
.why-section.on-navy .why-grid > div + div { border-left-color: rgba(255,255,255,0.2); }
.why-section.on-blue { background: var(--blue); }
.why-section.on-blue h2, .why-section.on-blue h3 { color: #fff; }
.why-section.on-blue .why-text { color: rgba(255,255,255,0.85); }
.why-section.on-blue .why-num { color: var(--orange); }
.why-section.on-blue .why-grid > div + div { border-left-color: rgba(255,255,255,0.25); }

/* ZIG-ZAG */
.zigzag { padding: 56px 32px; }
.zigzag .zigzag-inner { max-width: 1140px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.zigzag.reverse .zigzag-inner > :first-child { order: 2; }
.zigzag .zigzag-image { aspect-ratio: 4/3; background: var(--placeholder); border-radius: 4px; }
.zigzag.light-grey { background: var(--light-grey); }
.zigzag .pre-headline { margin-bottom: 12px; }
.zigzag h2 { font-size: 28px; margin-bottom: 14px; }
.zigzag .accent-line { margin: 0 0 18px; }

/* GALLERY FILTER */
.filter-row { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; padding: 20px 32px 40px; }
.filter-btn {
 padding: 10px 22px; background: #fff; color: var(--navy);
 border: 1px solid #d4d8e0; border-radius: 999px;
 font-family: 'Inter', sans-serif; font-size: 11px; font-weight: 500;
 letter-spacing: 1px; text-transform: uppercase; cursor: pointer;
 transition: all .2s ease;
}
.filter-btn:hover { border-color: var(--navy); }
.filter-btn.active { background: var(--orange); color: #fff; border-color: var(--orange); }
.gallery-grid {
 max-width: 1140px; margin: 0 auto;
 display: grid; grid-template-columns: 1fr 1fr 1fr;
 gap: 14px; padding: 0 32px 40px;
}
.gallery-item {
 aspect-ratio: 4/3; background: var(--placeholder); border-radius: 4px;
 transition: opacity .25s ease, transform .25s ease;
}
.gallery-item:hover { transform: scale(1.02); }
.gallery-item.hidden { display: none; }

/* TRUST STRIP (below hero) */
.trust-strip {
 display: flex; justify-content: center; align-items: center; gap: 32px;
 padding: 18px 32px; background: rgba(255,255,255,0.06);
 font-size: 12px; letter-spacing: 1px; text-transform: uppercase; color: rgba(255,255,255,0.75);
 flex-wrap: wrap;
}
.trust-strip span { display: inline-flex; align-items: center; gap: 8px; }
.trust-strip .dot { width: 4px; height: 4px; border-radius: 50%; background: var(--orange); }

/* STATS ROW */
.stats-row {
 background: var(--navy); padding: 64px 32px; color: #fff;
}
.stats-row .stats-grid {
 max-width: 1140px; margin: 0 auto;
 display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px;
 text-align: center;
}
.stats-row .stat-num {
 font-family: 'Montserrat', sans-serif; font-size: 56px; font-weight: 700;
 color: var(--orange); line-height: 1; margin-bottom: 12px;
}
.stats-row .stat-label {
 font-size: 13px; color: rgba(255,255,255,0.75);
 letter-spacing: 2px; text-transform: uppercase;
}

/* REVIEWS SECTION (placeholder for 21st.dev) */
.reviews-placeholder {
 background: var(--light-grey); padding: 80px 32px; text-align: center;
}
.reviews-placeholder .reviews-grid {
 max-width: 1140px; margin: 36px auto 0;
 display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 18px;
}
.review-card {
 background: #fff; padding: 28px 24px; border-radius: 8px;
 border: 1px solid var(--border); text-align: left;
}
.review-stars { color: var(--orange); font-size: 18px; margin-bottom: 12px; letter-spacing: 2px; }
.review-text { font-size: 14px; color: var(--navy); line-height: 1.6; margin: 0 0 16px; font-style: italic; }
.review-author {
 display: flex; align-items: center; gap: 12px;
 font-size: 13px; color: var(--grey);
}
.review-avatar {
 width: 40px; height: 40px; border-radius: 50%;
 background: var(--placeholder); display: flex; align-items: center; justify-content: center;
 font-family: 'Montserrat'; font-weight: 600; color: var(--navy); font-size: 14px;
}
.placeholder-flag {
 display: inline-block; padding: 4px 12px; background: #fff3cd; color: #856404;
 border-radius: 4px; font-size: 11px; margin-top: 12px; font-style: italic;
}

/* FAQ ACCORDION */
.faq-section { padding: 80px 32px; }
.faq-section .faq-list { max-width: 820px; margin: 36px auto 0; }
.faq-item {
 border-bottom: 1px solid var(--border);
}
.faq-item summary {
 padding: 20px 0; cursor: pointer; list-style: none;
 display: flex; justify-content: space-between; align-items: center; gap: 16px;
 font-family: 'Montserrat'; font-size: 17px; font-weight: 600; color: var(--navy);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
 content: '+';
 color: var(--orange);
 font-size: 24px;
 font-weight: 400;
 width: 32px;
 height: 32px;
 display: inline-flex;
 align-items: center;
 justify-content: center;
 border-radius: 50%;
 flex-shrink: 0;
 transition: transform .2s, background .2s, color .2s;
}
.faq-item[open] summary::after {
 transform: rotate(45deg);
 background: var(--navy);
 color: #fff;
}
.faq-item .faq-body { padding: 0 0 20px; color: var(--grey); font-size: 14px; line-height: 1.7; }

/* PROCESS STEPS */
.process-grid {
 max-width: 1140px; margin: 36px auto 0;
 display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
}
.process-step {
 text-align: left; padding: 0;
}
.process-step .step-num {
 font-family: 'Montserrat'; font-size: 48px; font-weight: 700;
 color: var(--orange); line-height: 1; margin-bottom: 14px;
}
.process-step h3 { font-size: 16px; margin-bottom: 10px; }
.process-step p { font-size: 13px; line-height: 1.7; color: var(--grey); }

/* SERVICE AREAS */
.service-areas {
 background: var(--light-grey); padding: 80px 32px;
}
.areas-grid {
 max-width: 1140px; margin: 36px auto 0;
 display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px;
}
.area-tag {
 background: #fff; padding: 14px 18px; border-radius: 4px;
 border: 1px solid var(--border);
 font-family: 'Montserrat'; font-size: 14px; font-weight: 600; color: var(--navy);
 display: flex; align-items: center; gap: 10px;
 transition: border-color .2s ease, transform .2s ease;
 cursor: default;
}
.area-tag:hover { border-color: var(--orange); }
.area-tag iconify-icon,
.area-tag svg {
 color: var(--orange); font-size: 18px; flex-shrink: 0;
}

/* FIND US (map + hours) */
.find-us { padding: 80px 32px; background: var(--light-grey); }
.find-us-inner {
 max-width: 1140px; margin: 0 auto;
 display: grid; grid-template-columns: 1fr 1fr; gap: 48px;
 align-items: stretch;
}
.find-us-map {
 border-radius: 14px; overflow: hidden;
 border: 1px solid var(--border); background: #fff;
 min-height: 100%;
}
.find-us-map iframe { width: 100%; height: 100%; min-height: 100%; display: block; border: 0; }
.find-us-info .pre-headline { margin-bottom: 12px; }
.find-us-info h2 { font-size: 28px; margin-bottom: 14px; }
.find-us-info .accent-line { margin: 0 0 24px; }
.contact-blocks { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.contact-block .contact-label,
.find-us-info > .contact-label {
 font-family: 'Inter', sans-serif;
 font-size: 11px; font-weight: 500;
 color: var(--orange); letter-spacing: 2px; text-transform: uppercase;
 margin-bottom: 6px;
}
.contact-block .contact-value {
 font-family: 'Montserrat', sans-serif;
 font-size: 15px; color: var(--navy); font-weight: 600;
}
.contact-block .contact-value a { color: var(--navy); text-decoration: none; }
.contact-block .contact-value a:hover { color: var(--orange); }
.hours-list {
 list-style: none; padding: 0; margin: 12px 0 0;
 border: 1px solid var(--border); border-radius: 14px;
 overflow: hidden; background: #fff;
}
.hours-list li {
 display: flex; justify-content: space-between;
 padding: 12px 16px; border-bottom: 1px solid var(--border);
 font-size: 14px;
}
.hours-list li:last-child { border-bottom: none; }
.hours-list .day { font-family: 'Montserrat', sans-serif; font-weight: 600; color: var(--navy); }
.hours-list .time { color: var(--grey); }
.hours-list li.today {
 background: linear-gradient(to right, rgba(244,117,33,0.16), rgba(244,117,33,0));
 border-left: 3px solid var(--orange);
 padding-left: 13px;
 border-bottom-color: rgba(244,117,33,0.25);
}
.hours-list li.today .day { color: var(--orange); }
.hours-list li.today .time { color: var(--navy); font-weight: 600; }
.hours-list .today-tag {
 display: inline-block;
 margin-left: 8px;
 padding: 2px 8px;
 background: var(--orange);
 color: #fff;
 font-family: 'Inter', sans-serif;
 font-size: 9px;
 font-weight: 600;
 letter-spacing: 1px;
 text-transform: uppercase;
 border-radius: 3px;
 vertical-align: middle;
}

/* BULLET LIST */
.checklist { list-style: none; padding: 0; margin: 16px 0; }
.checklist li {
 padding: 8px 0 8px 28px;
 position: relative;
 font-size: 14px; line-height: 1.6; color: var(--navy);
}
.checklist li::before {
 content: '✓'; position: absolute; left: 0;
 width: 20px; height: 20px;
 background: var(--orange); color: #fff; border-radius: 50%;
 display: flex; align-items: center; justify-content: center; font-size: 12px; font-weight: 700;
 top: 8px;
}

/* PROJECT CARD (with caption) */
.project-card { display: block; }
.project-card .project-img {
 aspect-ratio: 4/3; background: var(--placeholder); border-radius: 4px;
 transition: transform .25s ease;
}
.project-card:hover .project-img { transform: scale(1.02); }
.project-card h4 { font-family: 'Montserrat'; font-size: 14px; margin: 12px 0 4px; color: var(--navy); }
.project-card .project-meta { font-size: 12px; color: var(--grey); }

/* RESPONSIVE */
@media (max-width: 900px) {
 .stats-row .stats-grid { grid-template-columns: 1fr 1fr; }
 .reviews-placeholder .reviews-grid { grid-template-columns: 1fr; }
 .process-grid, .areas-grid { grid-template-columns: 1fr 1fr; }
 .pillars, .grid-3, .grid-4, .why-section .why-grid, .gallery-grid { grid-template-columns: 1fr 1fr; }
 .zigzag .zigzag-inner { grid-template-columns: 1fr; }
 .zigzag.reverse .zigzag-inner > :first-child { order: 0; }
 .main-nav { display: none; }
 .why-section .why-grid > div + div { border-left: none; border-top: 1px solid rgba(0,0,0,0.1); padding: 28px 0 0; margin-top: 28px; }
 .find-us-inner { grid-template-columns: 1fr; gap: 32px; }
 .contact-blocks { grid-template-columns: 1fr; gap: 16px; }
 h1 { font-size: 32px; }
 h2 { font-size: 28px; }
 h3 { font-size: 18px; }
 .hero { padding: 104px 24px 48px; }
 .section-intro { padding: 56px 24px 28px; }
 .why-section, .service-areas, .faq-section, .find-us, .reviews-placeholder, .recent-projects-section { padding: 56px 24px; }
 .zigzag { padding: 44px 24px; }
 .cta-bar .cta-inner { flex-direction: column; align-items: flex-start; gap: 18px; }
}

@media (max-width: 600px) {
 .container, .container-narrow { padding: 0 20px; }
 .pillars, .grid-2, .grid-3, .grid-4, .why-section .why-grid, .gallery-grid { grid-template-columns: 1fr; }
 .process-grid { grid-template-columns: 1fr; }
 .pillars { padding: 16px 20px 48px; }
 h1 { font-size: 28px; }
 h2 { font-size: 24px; }
 .pre-headline { font-size: 13px; letter-spacing: 2px; }
 .hero { padding: 100px 20px 44px; }
 .section-intro { padding: 44px 20px 22px; }
 .why-section, .service-areas, .faq-section, .find-us, .reviews-placeholder, .recent-projects-section { padding: 44px 20px; }
 .zigzag { padding: 40px 20px; }
 .stats-row { padding: 48px 20px; }
 .stats-row .stats-grid { gap: 24px; }
 .stats-row .stat-num, .why-section .why-num { font-size: 44px; }
 .cta-bar { padding: 40px 20px; }
 .cta-bar h2 { font-size: 20px; }
 .site-footer { padding: 56px 20px 24px; }
 .footer-bottom { flex-direction: column; align-items: flex-start; gap: 8px; }
 .footer-bottom a { padding-left: 0; }
 .faq-item summary { font-size: 16px; }
}

@media (max-width: 400px) {
 .site-header { padding: 14px 16px; }
 .site-header .brand img { height: 52px; }
 .header-cta { padding: 10px 14px; font-size: 11px; gap: 8px; }
 h1 { font-size: 26px; }
}

/* MOBILE HERO + HEADER OVERRIDES
   (use !important to beat the inline hero padding and the Customizer rule that
   forces .hero h1 to 50px with no mobile breakpoint) */
@media (max-width: 900px) {
 /* Header phone becomes a compact icon-only button (number hidden) */
 .header-cta { width: 44px !important; height: 44px !important; padding: 0 !important; gap: 0 !important; font-size: 0 !important; letter-spacing: 0 !important; justify-content: center !important; }
 .header-cta svg { width: 18px !important; height: 18px !important; }
}
@media (max-width: 600px) {
 .hero h1 { font-size: 36px !important; line-height: 1.15 !important; text-align: center; }
 .hero .word-rotator { vertical-align: bottom; }
 body.home .hero { padding: 128px 20px 56px !important; }
}
@media (max-width: 400px) {
 .hero h1 { font-size: 30px !important; }
 body.home .hero { padding: 120px 18px 48px !important; }
}

/* TRUST STRIP: on mobile, cycle the badges one at a time on a single line
   instead of stacking them vertically */
@media (max-width: 600px) {
 .trust-strip { position: relative; display: block; height: 52px; padding: 0 20px !important; overflow: hidden; }
 .trust-strip > span { position: absolute; left: 0; right: 0; top: 0; bottom: 0; display: flex; align-items: center; justify-content: center; opacity: 0; animation: ddTrustCycle 12s infinite; }
 .trust-strip > span:nth-child(1) { animation-delay: 0s; }
 .trust-strip > span:nth-child(2) { animation-delay: 3s; }
 .trust-strip > span:nth-child(3) { animation-delay: 6s; }
 .trust-strip > span:nth-child(4) { animation-delay: 9s; }
}
@keyframes ddTrustCycle {
 0% { opacity: 0; transform: translateY(4px); }
 4% { opacity: 1; transform: translateY(0); }
 21% { opacity: 1; transform: translateY(0); }
 25% { opacity: 0; transform: translateY(-4px); }
 100% { opacity: 0; transform: translateY(-4px); }
}
