/* ===================================
   Gorsegner Brothers — Custom Styles
   =================================== */

:root {
    --c-accent:       #F9A42A;
    --c-accent-rgb:   249, 164, 42;
    --c-accent-hover: #e08e1a;
    --c-dark:         #111110;
    --c-dark-rgb:     17, 17, 16;
    --c-muted:        #9CA3AF;
    --c-muted-rgb:    156, 163, 175;
    --c-text:         #3D3D3D;
    --c-gray:         #F5F5F5;
}

/* Base */
html { scroll-behavior: smooth; overflow-x: clip; max-width: 100%; }

body {
    font-family: 'Heebo', sans-serif;
    color: var(--c-text);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: clip;
}

h1, h2, h3, h4, h5, h6,
nav, button, .font-lato {
    font-family: 'Lato', sans-serif;
}

/* Selection */
::selection {
    background-color: var(--c-accent);
    color: #fff;
}

/* Scrollbar */
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: #f1f1f1; }
::-webkit-scrollbar-thumb { background: var(--c-accent); border-radius: 5px; }
::-webkit-scrollbar-thumb:hover { background: var(--c-accent-hover); }
html, body {
    scrollbar-color: var(--c-accent) #f1f1f1;
    scrollbar-width: thin;
}

/* ===================================
   Animations
   =================================== */

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

.animate-fade-in-up {
    opacity: 0;
    animation: fadeInUp 0.7s ease-out forwards;
}

.animation-delay-100 { animation-delay: 0.1s; }
.animation-delay-200 { animation-delay: 0.2s; }
.animation-delay-300 { animation-delay: 0.3s; }
.animation-delay-400 { animation-delay: 0.4s; }
.animation-delay-500 { animation-delay: 0.5s; }
.animation-delay-600 { animation-delay: 0.6s; }

@keyframes fadeIn {
    from { opacity: 0; }
    to   { opacity: 1; }
}
.animate-fade-in { animation: fadeIn 0.6s ease-out forwards; }

/* Scroll-reveal */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.65s ease-out, transform 0.65s ease-out;
}
.reveal.active {
    opacity: 1;
    transform: translateY(0);
}
.reveal-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity 0.65s ease-out, transform 0.65s ease-out;
}
.reveal-left.active {
    opacity: 1;
    transform: translateX(0);
}
.reveal-right {
    opacity: 0;
    transform: translateX(40px);
    transition: opacity 0.65s ease-out, transform 0.65s ease-out;
}
.reveal-right.active {
    opacity: 1;
    transform: translateX(0);
}

/* Stagger delay on reveal children */
.reveal-stagger > *:nth-child(1) { transition-delay: 0s; }
.reveal-stagger > *:nth-child(2) { transition-delay: 0.1s; }
.reveal-stagger > *:nth-child(3) { transition-delay: 0.2s; }
.reveal-stagger > *:nth-child(4) { transition-delay: 0.3s; }
.reveal-stagger > *:nth-child(5) { transition-delay: 0.4s; }
.reveal-stagger > *:nth-child(6) { transition-delay: 0.5s; }


/* ===================================
   Top Utility Bar
   =================================== */

#topbar {
    background: var(--c-dark);
    color: #ffffff;
    font-family: 'Lato', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}
#topbar .topbar-inner {
    max-width: 72rem;
    margin: 0 auto;
    padding: 0 1.5rem;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}
#topbar a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.2s;
}
#topbar a:hover { color: var(--c-accent); }
.topbar-left,
.topbar-right {
    display: flex;
    align-items: center;
    gap: 14px;
}
.topbar-right {
    margin-right: 0;
}
.topbar-sep {
    color: rgba(255,255,255,0.3);
    margin: 0 0.6rem;
    font-weight: 300;
}
.topbar-item {
    display: flex;
    align-items: center;
    gap: 5px;
}
.topbar-social {
    display: flex;
    align-items: center;
    gap: 10px;
}
.topbar-addr-short { display: none; }
@media (max-width: 767px) {
    #topbar .topbar-inner {
        height: 40px;
    }
    #topbar .topbar-left .topbar-item:not(:first-child),
    #topbar .topbar-left .topbar-sep { display: none; }
    #topbar .topbar-right a svg { width: 20px; height: 20px; }
    .topbar-addr-full { display: none; }
    .topbar-addr-short { display: inline; }
}

/* ===================================
   Navigation
   =================================== */

#navbar {
    background: #fff;
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid rgba(0,0,0,0.06);
    transition: box-shadow 0.3s ease;
}

#navbar.nav-scrolled {
    box-shadow: 0 2px 20px rgba(0,0,0,0.10);
}

.nav-link {
    font-family: 'Lato', sans-serif;
    font-size: 0.8125rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--c-text);
    transition: color 0.2s;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 0.5rem 0;
    white-space: nowrap;
}
.nav-link:hover { color: var(--c-accent); }

/* Desktop dropdown */
.nav-dropdown { position: relative; }

.nav-dropdown-panel {
    position: absolute;
    top: calc(100% + 4px);
    left: 50%;
    transform: translateX(-50%);
    min-width: 220px;
    background: #fff;
    border: 1px solid rgba(0,0,0,0.08);
    border-radius: 0;
    box-shadow: 0 8px 32px rgba(0,0,0,0.12);
    padding: 8px 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s;
    transform: translateX(-50%) translateY(4px);
    z-index: 200;
}

.nav-dropdown:hover .nav-dropdown-panel,
.nav-dropdown.open .nav-dropdown-panel {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.nav-dropdown-panel > a {
    display: block;
    padding: 10px 20px;
    font-family: 'Lato', sans-serif;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--c-text);
    transition: background 0.15s, color 0.15s;
    text-decoration: none;
}
.nav-dropdown-panel > a:hover {
    background: var(--c-gray);
    color: var(--c-accent);
}

.dropdown-arrow {
    display: inline-block;
    transition: transform 0.2s ease;
}
.nav-dropdown:hover .dropdown-arrow,
.nav-dropdown.open .dropdown-arrow {
    transform: rotate(180deg);
}

/* Mobile nav panel */
#mobile-nav-panel {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease-out;
    background: #fff;
    border-top: 1px solid rgba(0,0,0,0.06);
}
#mobile-nav-panel.open {
    max-height: calc(100vh - 60px);
    max-height: calc(100svh - 60px);
    overflow-y: auto;
}

/* Slide-panel screens wrapper */
.mobile-nav-screens {
    position: relative;
    overflow-x: hidden;
    overflow-x: clip;
    /* Safari fix: create a compositing layer so overflow correctly clips
       absolutely-positioned children with CSS transforms */
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
}

.mobile-screen { display: none; width: 100%; }
.mobile-screen.is-active { display: block; }
.mobile-screen.is-exiting {
    display: block;
    position: absolute;
    top: 0; left: 0; right: 0;
    pointer-events: none;
}

/* Forward: exit left / enter from right */
.mobile-screen.mnav-exit-left  { animation: mnavExitLeft  0.27s ease forwards; }
.mobile-screen.mnav-enter-right { animation: mnavEnterRight 0.27s ease forwards; }
/* Back: exit right / enter from left */
.mobile-screen.mnav-exit-right { animation: mnavExitRight 0.27s ease forwards; }
.mobile-screen.mnav-enter-left  { animation: mnavEnterLeft  0.27s ease forwards; }

@keyframes mnavExitLeft   { to { transform: translateX(-100%); } }
@keyframes mnavEnterRight { from { transform: translateX(100%); } to { transform: translateX(0); } }
@keyframes mnavExitRight  { to { transform: translateX(100%); } }
@keyframes mnavEnterLeft  { from { transform: translateX(-100%); } to { transform: translateX(0); } }

/* Top-level + county drill-down buttons */
.mobile-top-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 15px 20px;
    font-family: 'Lato', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: var(--c-text);
    background: none;
    border: none;
    border-bottom: 1px solid rgba(0,0,0,0.06);
    cursor: pointer;
    text-align: left;
    transition: color 0.15s, background 0.15s;
}
.mobile-top-btn:hover, .mobile-top-btn:active {
    color: var(--c-accent);
    background: var(--c-gray);
}

/* Sub-screen back header */
.mobile-screen-hd {
    background: var(--c-gray);
    border-bottom: 2px solid var(--c-accent);
}
.mobile-back-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    width: 100%;
    padding: 13px 16px;
    font-family: 'Lato', sans-serif;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--c-text);
    background: none;
    border: none;
    cursor: pointer;
    transition: color 0.15s;
}
.mobile-back-btn:hover { color: var(--c-accent); }

.mobile-nav-link {
    display: block;
    padding: 11px 20px;
    font-family: 'Lato', sans-serif;
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--c-text);
    text-decoration: none;
    border-bottom: 1px solid rgba(0,0,0,0.04);
    transition: color 0.15s, background 0.15s;
}
.mobile-nav-link:hover {
    color: var(--c-accent);
    background: var(--c-gray);
}
.mobile-nav-link:last-child { border-bottom: none; }

/* ===================================
   FAQ Accordion
   =================================== */

.faq-item {
    border: 1px solid rgba(0,0,0,0.1);
    border-radius: 0;
    overflow: hidden;
    transition: border-color 0.25s, box-shadow 0.25s;
    background: #fff;
}
.faq-item:hover { border-color: var(--c-muted); }
.faq-item.faq-open {
    border-color: var(--c-accent);
    box-shadow: 0 4px 20px rgba(249,164,42,0.12);
}

.faq-trigger {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 20px 24px;
    font-size: 1.0625rem;
    cursor: pointer;
    background: none;
    border: none;
    text-align: left;
    gap: 12px;
}

.faq-icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--c-gray);
    border-radius: 50%;
    transition: transform 0.3s ease, background 0.25s;
}
.faq-item.faq-open .faq-icon {
    transform: rotate(180deg);
    background: var(--c-accent);
}
.faq-item.faq-open .faq-icon svg { color: #fff; stroke: #fff; }

.faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease-out;
}
.faq-item.faq-open .faq-content { max-height: 600px; }

/* ===================================
   Buttons
   =================================== */

.btn-primary {
    display: inline-flex;
    align-items: center;
    background: var(--c-accent);
    color: #fff;
    font-family: 'Lato', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 14px 32px;
    border-radius: 0;
    text-decoration: none;
    transition: background 0.2s;
    border: none;
    cursor: pointer;
}
.btn-primary:hover {
    background: var(--c-accent-hover);
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    background: transparent;
    color: var(--c-accent);
    font-family: 'Lato', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 13px 32px;
    border-radius: 0;
    border: 2px solid var(--c-accent);
    text-decoration: none;
    transition: background 0.2s, color 0.2s;
    cursor: pointer;
}
.btn-outline:hover {
    background: var(--c-accent);
    color: #fff;
}
/* ===================================
   Hero
   =================================== */

.hero-bg {
    position: relative;
    background-color: #2a2218;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.52);
}
.hero-content { position: relative; z-index: 1; }

/* ===================================
   Hero Panel
   =================================== */

.hero-panel {
    display: block;
    margin: 0 auto;
    background: rgba(139, 217, 223, 0.87);
    border-radius: 0;
    padding: 14px 20px;
    max-width: 360px;
    text-align: center;
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
}
@media (max-width: 639px) {
    .hero-panel { padding: 10px 12px; }
}

/* ===================================
   Service Cards
   =================================== */

.service-card {
    background: #fff;
    border-radius: 0;
    border: 1px solid rgba(0,0,0,0.07);
    overflow: hidden;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    display: flex;
    flex-direction: column;
}
.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.10);
}
.service-card-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
    background: var(--c-gray);
}
.service-card-body {
    padding: 20px 24px 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.service-card-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: 'Lato', sans-serif;
    font-size: 0.8125rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--c-accent);
    text-decoration: none;
    margin-top: auto;
    padding-top: 12px;
    transition: gap 0.2s;
}
.service-card-link:hover { gap: 10px; }

/* Hide description by default; reveal on hover */
.service-card-body p {
    overflow: hidden;
    max-height: 0;
    opacity: 0;
    margin-bottom: 0;
    transition: max-height 0.35s ease, opacity 0.3s ease, margin-bottom 0.3s ease;
}
.service-card:hover .service-card-body p {
    max-height: 120px;
    opacity: 1;
    margin-bottom: 12px;
}

/* ===================================
   Testimonial Cards
   =================================== */

.testimonial-card {
    background: #fff;
    border-radius: 0;
    border: 1px solid rgba(0,0,0,0.08);
    padding: 28px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
    gap: 14px;
    transition: box-shadow 0.25s;
}
.testimonial-card:hover {
    box-shadow: 0 6px 28px rgba(0,0,0,0.10);
}

/* ===================================
   Gallery Grid + Lightbox
   =================================== */

.gallery-item {
    overflow: hidden;
    border-radius: 0;
    cursor: pointer;
    aspect-ratio: 4/3;
    background: var(--c-gray);
}
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
    display: block;
}
.gallery-item:hover img { transform: scale(1.06); }

/* Lightbox */
#lightbox {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
}
#lightbox.hidden { display: none; }

.lightbox-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.92);
}
.lightbox-inner {
    position: relative;
    z-index: 1;
    max-width: 90vw;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}
#lightbox-image {
    max-width: 90vw;
    max-height: 80vh;
    object-fit: contain;
    border-radius: 0;
}
.lightbox-btn {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.12);
    border: none;
    color: #fff;
    width: 48px;
    height: 48px;
    border-radius: 0;
    cursor: pointer;
    font-size: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}
.lightbox-btn:hover { background: rgba(255,255,255,0.25); }
#lightbox-prev { left: 16px; }
#lightbox-next { right: 16px; }
#lightbox-close {
    position: fixed;
    top: 16px;
    right: 16px;
    background: rgba(255,255,255,0.12);
    border: none;
    color: #fff;
    width: 40px;
    height: 40px;
    border-radius: 0;
    cursor: pointer;
    font-size: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}
#lightbox-close:hover { background: rgba(255,255,255,0.25); }
#lightbox-counter {
    color: rgba(255,255,255,0.7);
    font-family: 'Lato', sans-serif;
    font-size: 0.85rem;
}

/* ===================================
   Value Props / Trust Icons
   =================================== */

.value-icon {
    width: 96px;
    height: 96px;
    background: rgba(249,164,42,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    flex-shrink: 0;
    transition: background 0.3s ease, transform 0.3s ease;
}
.value-icon svg {
    transition: color 0.3s ease;
}
.value-card:hover .value-icon {
    background: rgba(249,164,42,0.22);
    transform: translateY(-4px) scale(1.08);
}
.value-card {
    transition: transform 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
    cursor: default;
    border-radius: 0;
    padding: 28px 20px;
}
.value-card:hover {
    transform: translateY(-6px);
    background: var(--c-accent);
    box-shadow: 0 8px 32px rgba(249, 164, 42, 0.3);
}
.value-card:hover h3,
.value-card:hover p {
    color: #1D1D1B;
}
.value-card:hover .value-icon {
    background: rgba(0, 0, 0, 0.15);
}
.value-card:hover .value-icon svg {
    color: #fff;
}

/* ===================================
   Process Steps
   =================================== */

.process-step {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}
.process-number {
    width: 48px;
    height: 48px;
    min-width: 48px;
    background: var(--c-accent);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Lato', sans-serif;
    font-weight: 800;
    font-size: 1.1rem;
}

/* ===================================
   Footer
   =================================== */

#footer {
    background: #ffffff;
    color: #111110;
}
#footer a {
    color: #111110;
    text-decoration: none;
    transition: color 0.2s;
}
#footer a:hover { color: var(--c-accent); }
.footer-heading {
    font-family: 'Lato', sans-serif;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-size: 0.95rem;
    color: #111110;
    margin-bottom: 16px;
}
#footer ul a,
#footer ul span {
    font-size: 1rem;
}
#footer .text-sm {
    font-size: 1rem !important;
}
#footer p.text-white\/55 {
    font-size: 0.95rem;
}

/* Social icons */
.social-icon {
    width: 36px;
    height: 36px;
    border-radius: 0;
    background: rgba(255,255,255,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.6);
    transition: background 0.2s, color 0.2s;
}
.social-icon:hover {
    background: var(--c-accent);
    color: #fff;
}

/* ===================================
   Misc Utilities
   =================================== */

.section-label {
    font-family: 'Lato', sans-serif;
    font-size: 0.8125rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--c-accent);
}

.section-title {
    font-family: 'Lato', sans-serif;
    font-weight: 700;
    color: var(--c-text);
    line-height: 1.2;
}

.divider-accent {
    width: 48px;
    height: 3px;
    background: var(--c-accent);
    border-radius: 0;
    margin: 12px auto 0;
}

.star-rating {
    color: var(--c-accent);
    font-size: 1rem;
    letter-spacing: 2px;
}

/* Why choose us box */
.why-box {
    border-left: 4px solid var(--c-accent);
    padding: 20px 24px;
    border-radius: 0;
    background: var(--c-gray);
}

/* Placeholder image block */
.img-placeholder {
    background: linear-gradient(135deg, #e8e0d4 0%, #d4c9b8 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(0,0,0,0.3);
    font-family: 'Lato', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

/* Loading spinner for forms */
.btn-loading { position: relative; pointer-events: none; }
.btn-loading span { visibility: hidden; }
.btn-loading::after {
    content: '';
    position: absolute;
    width: 20px; height: 20px;
    top: 50%; left: 50%;
    margin: -10px 0 0 -10px;
    border: 3px solid rgba(255,255,255,0.4);
    border-top-color: #fff;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ===================================
   Gallery Pagination Nav
   =================================== */

.gallery-nav-btn {
    width: 44px;
    height: 44px;
    border-radius: 0;
    background: var(--c-dark);
    color: #fff;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s, transform 0.15s;
    flex-shrink: 0;
}
.gallery-nav-btn:hover {
    background: var(--c-accent);
    transform: scale(1.05);
}
.gallery-nav-btn:disabled {
    opacity: 0.35;
    cursor: default;
    transform: none;
}

/* ===================================
   Map Section
   =================================== */

.map-section {
    display: block;
    line-height: 0;
}
.map-section iframe {
    width: 100%;
    display: block;
}

/* ===================================
   Responsive Helpers
   =================================== */

@media (max-width: 767px) {
    .section-py { padding-top: 60px; padding-bottom: 60px; }
}
@media (min-width: 768px) {
    .section-py { padding-top: 80px; padding-bottom: 80px; }
}

/* ===================================
   Animated Stat Cards (About Page)
   =================================== */

@keyframes moveDot {
    0%, 100% { top: 6px; left: 6px; }
    25%       { top: 6px; left: calc(100% - 16px); }
    50%       { top: calc(100% - 16px); left: calc(100% - 16px); }
    75%       { top: calc(100% - 16px); left: 6px; }
}

.stat-card {
    position: relative;
    overflow: hidden;
    background: #fff;
    border: 1px solid rgba(0,0,0,0.08);
    border-radius: 0;
    box-shadow: 0 2px 12px rgba(0,0,0,0.05);
}

.stat-item {
    position: relative;
    padding: 32px 24px;
    text-align: center;
}
.stat-item:not(:last-child) {
    border-right: 1px solid rgba(0,0,0,0.06);
}
@media (max-width: 767px) {
    .stat-item:not(:last-child) {
        border-right: none;
    }
    .stat-item:nth-child(-n+2) {
        border-bottom: 1px solid rgba(0,0,0,0.06);
    }
    .stat-item:nth-child(odd) {
        border-right: 1px solid rgba(0,0,0,0.06);
    }
}

.stat-dot {
    position: absolute;
    width: 10px;
    height: 10px;
    background: var(--c-accent);
    border-radius: 50%;
    box-shadow: 0 0 8px rgba(249,164,42,0.7);
    animation: moveDot 3s linear infinite;
    pointer-events: none;
}

.stat-number {
    font-family: 'Lato', sans-serif;
    font-weight: 900;
    font-size: 2.75rem;
    color: var(--c-accent);
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    font-family: 'Lato', sans-serif;
    font-weight: 600;
    font-size: 0.875rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--c-text);
    opacity: 0.65;
}

/* ===================================
   Value Card Premium (service pages)
   =================================== */

.value-card-premium {
    background: #fff;
    border: 1px solid rgba(0,0,0,0.08);
    border-radius: 0;
    border-top: 3px solid var(--c-accent);
    padding: 24px 22px;
    display: flex;
    flex-direction: column;
    gap: 0;
    box-shadow: 0 3px 18px rgba(0,0,0,0.12);
    transition: box-shadow 0.25s, transform 0.25s;
}
.value-card-premium:hover {
    box-shadow: 0 6px 28px rgba(249,164,42,0.12);
    transform: translateY(-3px);
}

.value-icon-premium {
    width: 44px;
    height: 44px;
    min-width: 44px;
    background: rgba(249,164,42,0.12);
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
}
.value-icon-premium svg {
    width: 22px;
    height: 22px;
    color: var(--c-accent);
}

/* ===================================
   Service Page Components (global)
   =================================== */

/* Wood type comparison cards */
.wood-type-card {
    background: #fff;
    border: 1px solid rgba(0,0,0,0.08);
    border-radius: 0;
    border-top: 4px solid var(--c-accent);
    padding: 28px 24px 32px;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.wood-type-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 32px rgba(249,164,42,0.12);
}
.wood-type-badge {
    display: inline-block;
    background: rgba(249,164,42,0.12);
    color: var(--c-accent);
    font-family: 'Lato', sans-serif;
    font-size: 0.95rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 5px 12px;
    border-radius: 0;
    margin-bottom: 14px;
}
.wood-check {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 8px;
}
.wood-check svg {
    flex-shrink: 0;
    margin-top: 2px;
}

/* Species grid cards */
.species-card {
    background: #fff;
    border: 1px solid rgba(0,0,0,0.07);
    border-radius: 0;
    padding: 20px;
    text-align: center;
    transition: box-shadow 0.2s;
}
.species-card:hover {
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}
.species-swatch {
    width: 100%;
    height: 80px;
    border-radius: 0;
    margin: 0 0 14px;
    border: 1px solid rgba(0,0,0,0.1);
    overflow: hidden;
    position: relative;
}
.species-swatch img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Scope of work numbered list */
.scope-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 16px 0;
    border-bottom: 1px solid rgba(0,0,0,0.06);
}
.scope-item:last-child { border-bottom: none; }
.scope-num {
    width: 32px;
    height: 32px;
    min-width: 32px;
    background: var(--c-accent);
    color: #fff;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Lato', sans-serif;
    font-weight: 800;
    font-size: 0.875rem;
}

/* Mid-page inline dark CTA banner */
.inline-cta {
    background: var(--c-dark);
    border-radius: 0;
    padding: 40px 36px;
}

/* Light outline button (for use on dark backgrounds) */
.btn-outline-light {
    display: inline-block;
    background: transparent;
    color: #fff;
    font-family: 'Lato', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 13px 32px;
    border-radius: 0;
    border: 2px solid rgba(255,255,255,0.35);
    text-decoration: none;
    transition: background 0.2s, border-color 0.2s;
    cursor: pointer;
    white-space: nowrap;
}
.btn-outline-light:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.65);
}

/* FAQ gray-bg override for service pages */
.service-faq .faq-item {
    background: var(--c-gray);
    border-color: rgba(0,0,0,0.06);
}

/* Finish comparison table (refinishing page) */
.finish-card {
    background: #fff;
    border: 1px solid rgba(0,0,0,0.08);
    border-radius: 0;
    border-top: 4px solid var(--c-accent);
    padding: 28px 24px 32px;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.finish-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 32px rgba(249,164,42,0.12);
}
.finish-badge {
    display: inline-block;
    background: rgba(249,164,42,0.12);
    color: var(--c-accent);
    font-family: 'Lato', sans-serif;
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 0;
    margin-bottom: 14px;
}
.finish-row {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 8px;
}
.finish-row svg { flex-shrink: 0; margin-top: 2px; }

/* Stain swatch grid */
.stain-swatch {
    border-radius: 0;
    height: 72px;
    border: 1px solid rgba(0,0,0,0.1);
    transition: transform 0.2s, box-shadow 0.2s;
    cursor: default;
}
.stain-swatch:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.14);
}

/* ===================================
   Mobile Fixes
   =================================== */

/* Service card descriptions: always visible on touch screens */
@media (max-width: 1023px) {
    .service-card-body p {
        max-height: 120px;
        opacity: 1;
        margin-bottom: 12px;
    }
}

/* Map iframe: reduce height on mobile */
@media (max-width: 767px) {
    .map-section iframe {
        height: 250px;
    }
}

/* inline-cta: adjust padding on small screens */
@media (max-width: 639px) {
    .inline-cta {
        padding: 36px 24px;
    }
}

/* Reveal animations: on mobile use opacity-only — force no horizontal translate at all states */
@media (max-width: 767px) {
    .reveal-left,
    .reveal-right {
        transform: none !important;
        transition: opacity 0.65s ease-out !important;
        width: 100%;
        max-width: 100%;
        overflow: hidden;
    }
    .reveal-left.active,
    .reveal-right.active {
        transform: none !important;
    }
}

/* ======== ARTICLE TEMPLATE ======== */

/* --- Editorial Hero (slim, light background) --- */
.article-hero {
    scroll-margin-top: 0;
}
.article-breadcrumb ol {
    list-style: none;
    padding: 0;
    margin: 0;
}
.article-breadcrumb a {
    color: #9ca3af;
    text-decoration: none;
    transition: color 0.15s;
}
.article-category-pill {
    display: inline-block;
    font-family: 'Lato', sans-serif;
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--c-accent);
    background: rgba(249, 164, 42, 0.10);
    border-radius: 999px;
    padding: 0.25rem 0.75rem;
}
.article-dek {
    font-size: 1.0625rem;
    color: #6b7280;
    font-style: italic;
    line-height: 1.6;
    max-width: 560px;
    margin: 0 auto;
}
.article-byline {
    font-family: 'Lato', sans-serif;
    font-size: 0.8125rem;
    color: #9ca3af;
    letter-spacing: 0.02em;
}

/* --- Hero Image & Inline Image Captions --- */
.article-hero-image,
.article-inline-image {
    margin: 0;
}
.article-image-caption {
    display: block;
    font-size: 0.8125rem;
    color: #9ca3af;
    font-style: italic;
    text-align: center;
    margin-top: 0.625rem;
}

/* --- Key Takeaways Box --- */
.article-key-takeaways {
    background: rgba(249, 164, 42, 0.07);
    border-left: 4px solid var(--c-accent);
    border-radius: 0 0.75rem 0.75rem 0;
    padding: 1.375rem 1.5rem;
    margin: 2rem 0;
}
.article-key-takeaways__header {
    font-family: 'Lato', sans-serif;
    font-weight: 700;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--c-dark);
    margin-bottom: 0.75rem;
}
.article-key-takeaways ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
.article-key-takeaways ul li {
    color: var(--c-text);
    font-size: 0.9375rem;
    line-height: 1.6;
    padding-left: 1.25rem;
    position: relative;
}
.article-key-takeaways ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.6em;
    width: 6px;
    height: 6px;
    background: var(--c-accent);
    border-radius: 50%;
    flex-shrink: 0;
}

/* --- Table of Contents --- */
.article-toc {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 0.75rem;
    padding: 1.25rem 1.5rem;
    margin: 0 0 2rem;
}
.article-toc__header {
    font-family: 'Lato', sans-serif;
    font-weight: 700;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--c-dark);
    margin-bottom: 0.75rem;
}
.article-toc nav ul {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.375rem;
    list-style: none;
    padding: 0;
    margin: 0;
    counter-reset: toc-counter;
}
@media (min-width: 540px) {
    .article-toc nav ul {
        grid-template-columns: 1fr 1fr;
    }
}
.article-toc nav ul li {
    counter-increment: toc-counter;
    display: flex;
    align-items: baseline;
    gap: 0.375rem;
    font-size: 0.875rem;
    line-height: 1.45;
}
.article-toc nav ul li::before {
    content: counter(toc-counter) ".";
    font-family: 'Lato', sans-serif;
    font-weight: 700;
    color: var(--c-accent);
    font-size: 0.75rem;
    flex-shrink: 0;
    min-width: 1.25rem;
}
.article-toc nav ul li a {
    color: var(--c-text);
    text-decoration: none;
    transition: color 0.15s;
}
.article-toc nav ul li a:hover {
    color: var(--c-accent);
}

/* --- Article Prose Body --- */
.article-prose {
    max-width: 100%;
    font-size: 1.0625rem;
    line-height: 1.75;
    color: var(--c-text);
}
.article-prose h2 {
    font-family: 'Lato', sans-serif;
    font-weight: 800;
    color: var(--c-dark);
    font-size: 1.5rem;
    line-height: 1.25;
    margin-top: 3rem;
    margin-bottom: 1.125rem;
    padding-bottom: 0.5rem;
    border-bottom: 3px solid var(--c-accent);
    display: inline-block;
}
@media (min-width: 640px) {
    .article-prose h2 {
        font-size: 1.625rem;
    }
}
.article-prose h3 {
    font-family: 'Lato', sans-serif;
    font-weight: 700;
    color: var(--c-dark);
    font-size: 1.1875rem;
    line-height: 1.35;
    margin-top: 2rem;
    margin-bottom: 0.625rem;
}
.article-prose p {
    color: #4b5563;
    margin-bottom: 1.125rem;
}
.article-prose a {
    color: var(--c-accent);
    text-decoration: underline;
    text-underline-offset: 3px;
    text-decoration-color: rgba(249,164,42,0.5);
    transition: color 0.15s, text-decoration-color 0.15s;
}
.article-prose a:hover {
    color: var(--c-accent-hover);
    text-decoration-color: var(--c-accent-hover);
}
.article-prose ul,
.article-prose ol {
    padding-left: 1.5rem;
    margin-bottom: 1.125rem;
}
.article-prose ul { list-style: disc; }
.article-prose ol { list-style: decimal; }
.article-prose li {
    color: #4b5563;
    margin-bottom: 0.375rem;
    line-height: 1.7;
}
.article-prose .article-inline-image {
    margin: 2rem 0;
}

/* --- Pull Quote --- */
.article-pullquote {
    border-left: 4px solid var(--c-accent);
    padding: 0.25rem 0 0.25rem 1.5rem;
    margin: 2.75rem 0;
    font-family: 'Lato', sans-serif;
    font-style: italic;
    font-size: 1.375rem;
    line-height: 1.5;
    color: var(--c-dark);
}
@media (min-width: 640px) {
    .article-pullquote { font-size: 1.5rem; }
}

/* --- Callout Box --- */
.article-callout {
    background: rgba(0, 0, 0, 0.03);
    border-radius: 0.75rem;
    padding: 1.375rem 1.5rem;
    margin: 2rem 0;
}
.article-callout p {
    margin: 0;
    color: var(--c-text);
    font-size: 0.9375rem;
    line-height: 1.65;
}
.article-callout strong {
    font-family: 'Lato', sans-serif;
    font-weight: 700;
    color: var(--c-dark);
}

/* --- Inline CTA Strip --- */
.article-inline-cta {
    border-top: 2px solid var(--c-accent);
    border-bottom: 2px solid var(--c-accent);
    background: #fff;
    padding: 1.25rem 1.375rem;
    margin: 2.5rem 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
}
.article-inline-cta p {
    margin: 0;
    font-size: 0.9375rem;
    line-height: 1.55;
    color: #6b7280;
}
.article-inline-cta strong {
    font-family: 'Lato', sans-serif;
    font-weight: 700;
    color: var(--c-dark);
}
.article-inline-cta a {
    font-family: 'Lato', sans-serif;
    font-weight: 700;
    color: var(--c-accent);
    text-decoration: none;
    white-space: nowrap;
    transition: color 0.15s;
}
.article-inline-cta a:hover {
    color: var(--c-accent-hover);
    text-decoration: underline;
}
.article-inline-cta .btn-primary {
    color: #fff;
    flex-shrink: 0;
}
.article-inline-cta .btn-primary:hover {
    color: #fff;
    text-decoration: none;
}

/* --- Author / Company Byline Card --- */
.article-author-card {
    border: 1px solid #e5e7eb;
    border-radius: 1rem;
    padding: 1.375rem 1.5rem;
    margin: 3rem 0 0;
    display: flex;
    align-items: flex-start;
    gap: 1.125rem;
}
.article-author-card__logo {
    width: 60px;
    height: 60px;
    flex-shrink: 0;
    border-radius: 0.5rem;
    overflow: hidden;
    background: var(--c-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.375rem;
}
.article-author-card__logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.article-author-card__body {
    flex: 1;
    min-width: 0;
}
.article-author-card__name {
    font-family: 'Lato', sans-serif;
    font-weight: 700;
    color: var(--c-dark);
    font-size: 0.9375rem;
    margin-bottom: 0.375rem;
}
.article-author-card__bio {
    color: #6b7280;
    font-size: 0.875rem;
    line-height: 1.6;
    margin-bottom: 0.5rem;
}
.article-author-card__links {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}
.article-author-card__links a {
    color: var(--c-accent);
    font-size: 0.875rem;
    text-decoration: underline;
    text-underline-offset: 2px;
    transition: color 0.15s;
}
.article-author-card__links a:hover {
    color: var(--c-accent-hover);
}

/* --- Post Card Grid (Related Articles) --- */
.post-card-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
}
@media (min-width: 640px) {
    .post-card-grid {
        grid-template-columns: 1fr 1fr;
    }
}
@media (min-width: 1024px) {
    .post-card-grid {
        grid-template-columns: 1fr 1fr 1fr;
    }
}

/* --- Post Card Horizontal --- */
.post-card-horizontal {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 1rem;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    color: inherit;
}
.post-card-horizontal:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}
.post-card-horizontal__thumb {
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: var(--c-gray);
    flex-shrink: 0;
}
.post-card-horizontal__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}
.post-card-horizontal:hover .post-card-horizontal__thumb img {
    transform: scale(1.04);
}
.post-card-horizontal__body {
    padding: 1.125rem 1.25rem 1.25rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}
.post-card-horizontal__category {
    font-family: 'Lato', sans-serif;
    font-size: 0.6875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.09em;
    color: var(--c-accent);
    margin-bottom: 0.5rem;
}
.post-card-horizontal__title {
    font-family: 'Lato', sans-serif;
    font-weight: 700;
    color: var(--c-dark);
    font-size: 1rem;
    line-height: 1.35;
    margin-bottom: 0.5rem;
}
.post-card-horizontal__excerpt {
    font-size: 0.875rem;
    color: #6b7280;
    line-height: 1.55;
    margin-bottom: 1rem;
    flex: 1;
}
.post-card-horizontal__cta {
    font-family: 'Lato', sans-serif;
    font-weight: 700;
    font-size: 0.875rem;
    color: var(--c-accent);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.2rem;
    margin-top: auto;
    transition: color 0.15s;
}
.post-card-horizontal:hover .post-card-horizontal__cta {
    color: var(--c-accent-hover);
    text-decoration: underline;
}

/* ── Service Overview Tabs ───────────────────────────── */
.svc-tab {
    padding: 0.75rem 1.25rem;
    font-family: 'Lato', sans-serif;
    font-weight: 700;
    font-size: 0.9375rem;
    color: var(--c-muted);
    border-bottom: 3px solid transparent;
    margin-bottom: -1px;
    transition: color 0.2s, border-color 0.2s;
    white-space: nowrap;
    background: none;
    cursor: pointer;
    line-height: 1.4;
}
.svc-tab:hover { color: var(--c-text); }
.svc-tab.active {
    color: var(--c-text);
    border-bottom-color: var(--c-accent);
}
.svc-panel { display: none; height: 100%; }
.svc-panel.active {
    display: flex;
    flex-direction: column;
    height: 100%;
}
@media (min-width: 1024px) {
    .svc-panel.active { flex-direction: row; }
}

/* ── Scroll-Driven Tab Track ── */
#svc-sticky {
    position: sticky;
    top: 0;
    height: 100vh;
    height: 100dvh;
    overflow: hidden;
    background: #fff;
    display: flex;
    flex-direction: column;
}
.svc-scroll-inner {
    flex: 1;
    min-height: 0;
    display: flex;
    flex-direction: column;
    max-width: 72rem;
    margin: 0 auto;
    padding: 2.5rem 1rem 1.5rem;
    width: 100%;
}
@media (min-width: 640px) {
    .svc-scroll-inner { padding-left: 1.5rem; padding-right: 1.5rem; }
}
@media (min-width: 768px) {
    .svc-scroll-inner { padding-top: 4rem; }
}
.svc-progress-wrap {
    height: 3px;
    background: #f3f4f6;
    border-radius: 9999px;
    overflow: hidden;
    margin-bottom: 1.25rem;
    flex-shrink: 0;
}
.svc-progress-fill {
    height: 100%;
    background: var(--c-accent);
    width: 0%;
    transition: width 0.12s linear;
}
.svc-tabs-nav {
    display: flex;
    border-bottom: 1px solid #e5e7eb;
    margin-bottom: 1.25rem;
    overflow-x: auto;
    flex-shrink: 0;
    scrollbar-width: none;
}
.svc-tabs-nav::-webkit-scrollbar { display: none; }
.svc-panel-wrap {
    flex: 1;
    min-height: 0;
    border: 1px solid #e5e7eb;
    border-radius: 0;
    overflow: hidden;
    box-shadow: 0 8px 32px 0 rgb(0 0 0 / 0.14);
    position: relative;
}
.svc-panel-img {
    overflow: hidden;
    background: #f3f4f6;
    flex-shrink: 0;
}
@media (max-width: 1023px) {
    .svc-panel-img { height: 28%; max-height: 180px; }
}
@media (min-width: 1024px) {
    .svc-panel-img {
        flex: 0 0 40%;
        max-height: 380px;
        align-self: center;
    }
}
.svc-panel-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.svc-panel-body {
    flex: 1;
    min-height: 0;
    overflow-y: auto;
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    align-items: center;
    scrollbar-width: none;
}
.svc-panel-body::-webkit-scrollbar { display: none; }
.svc-panel-body p { color: #374151; }
.svc-panel-body h2, .svc-panel-body h3 { color: #111827; }
@media (min-width: 768px) {
    .svc-panel-body { padding: 3.5rem 4rem; }
}

/* ── Stacked overview cards ── */
.svc-stack-card {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border: 1px solid #e5e7eb;
    box-shadow: 0 8px 32px 0 rgb(0 0 0 / 0.14);
}
.svc-stack-card-img {
    flex-shrink: 0;
    overflow: hidden;
    background: #f3f4f6;
    height: 12rem;
}
.svc-stack-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.svc-stack-card {
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.svc-stack-card:hover {
    transform: scale(1.02);
    box-shadow: 0 16px 48px 0 rgb(0 0 0 / 0.18);
}
@media (min-width: 768px) {
    .svc-stack-card { flex-direction: row; height: 380px; }
    .svc-stack-card--flip { flex-direction: row; }
    .svc-stack-card-img { flex: 0 0 42%; height: 100%; }
}
.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* ===================================
   Missing Tailwind-equivalent utilities
   (not in compiled tailwind.css — defined here
   so they apply site-wide without a rebuild)
   =================================== */

/* Font weight aliases used throughout templates */
.font-600 { font-weight: 600; }
.font-700 { font-weight: 700; }
.font-800 { font-weight: 800; }
.font-900 { font-weight: 900; }

/* Dark background color (same as --c-dark / var 'dark') */
.bg-gb-dark { background-color: var(--c-dark); }

/* CTA pulse animation on primary buttons */
@keyframes ctaPulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(249, 164, 42, 0.55); }
    50%       { box-shadow: 0 0 0 8px rgba(249, 164, 42, 0); }
}
.cta-pulse {
    animation: ctaPulse 2.4s ease-in-out infinite;
}
.cta-pulse:hover {
    animation: none;
}

