/* ===================================
   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;
}
@media (max-width: 767px) {
    #topbar { display: none; }
}

/* ===================================
   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: 600px;
}

.mobile-nav-section-title {
    font-family: 'Lato', sans-serif;
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--c-muted);
    padding: 16px 20px 6px;
}

.mobile-nav-link {
    display: block;
    padding: 10px 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;
    }
}
