﻿/*
Theme Name: Rock Ridge Contracting Theme
Theme URI: https://rockridgecontractingllc.com/
Author: Rock Ridge Contracting
Author URI: https://rockridgecontractingllc.com/
Description: Custom WordPress theme for Rock Ridge Contracting, converted from static HTML.
Version: 1.0.0
License: GPlv2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: rock-ridge-theme
*/

/* Rock Ridge Contracting - Global Styles */

@import url('https://fonts.googleapis.com/css2?family=Bitter:wght@300;400;500;600;700&family=Manrope:wght@300;400;500;600;700;800&display=swap');

:root {
    /* Color Palette - Updated V2 (Photo Match) */
    --color-deep-slate: #1E293B;
    /* Charcoal Slate */
    --color-timber-brown: #A67B5B;
    /* Golden Cedar */
    --color-crisp-white: #FFFFFF;
    --color-warm-beige: #F9F8F6;
    --color-off-white: #FAF9F6;
    --color-forest-green: #3E4E42;
    --color-sky-blue: #90A4AE;
    --color-soft-clay: #D7CCC8;
    --color-text-body: #334155;
    /* Slate-tinted dark grey */
    --color-text-caption: #757575;

    /* Spacing */
    --spacing-section: 80px;
    --container-width: 1200px;

    /* Border Radius - SHARP MODE */
    --radius-card: 0px;
    --radius-btn: 0px;

    /* Shadows */
    --shadow-card: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-card-hover: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translate3d(0, 40px, 0);
    }

    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

@keyframes zoomIn {
    from {
        opacity: 0;
        transform: scale3d(0.95, 0.95, 0.95);
    }

    to {
        opacity: 1;
        transform: scale3d(1, 1, 1);
    }
}

.animate-fade-up {
    opacity: 0;
    /* JS will trigger this or we use intersection observer, for now simple animation on load */
    animation: fadeInUp 0.8s ease-out forwards;
}

.delay-100 {
    animation-delay: 0.1s;
}

.delay-200 {
    animation-delay: 0.2s;
}

.delay-300 {
    animation-delay: 0.3s;
}


* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    margin-top: 0 !important;
    /* Fix for WP Admin bar displacement */
}

body {
    font-family: 'Bitter', serif;
    color: var(--color-text-body);
    background-color: var(--color-crisp-white);
    line-height: 1.6;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Manrope', sans-serif;
    color: var(--color-deep-slate);
    line-height: 1.3;
}

h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

h2 {
    font-size: 2.25rem;
    font-weight: 700;
    font-style: italic;
    margin-bottom: 2rem;
}

h3 {
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--color-timber-brown);
    margin-bottom: 1rem;
}

p {
    margin-bottom: 1.5rem;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
    border-radius: var(--radius-card);
    height: auto;
    /* WP Fix */
}

/* Layout Utilities */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: var(--spacing-section) 0;
}

.bg-beige {
    background-color: var(--color-warm-beige);
}

.bg-white {
    background-color: var(--color-crisp-white);
}

.text-center {
    text-align: center;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

/* Components */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 30px;
    border-radius: var(--radius-btn);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: var(--color-timber-brown);
    color: var(--color-crisp-white);
    border: 2px solid var(--color-timber-brown);
}

.btn-primary:hover {
    background-color: var(--color-crisp-white);
    border-color: var(--color-crisp-white);
    color: var(--color-timber-brown);
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: transparent;
    color: var(--color-deep-slate);
    border: 2px solid var(--color-deep-slate);
}

.btn-secondary:hover {
    background-color: var(--color-deep-slate);
    color: var(--color-timber-brown);
    border-color: var(--color-deep-slate);
}

/* Card Component */
.card {
    background-color: var(--color-crisp-white);
    border-radius: var(--radius-card);
    box-shadow: var(--shadow-card);
    padding: 0;
    overflow: hidden;
    /* For image clipping */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.card:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: var(--shadow-card-hover);
    z-index: 2;
}

.card-image {
    width: 100%;
    height: 240px;
    object-fit: cover;
    border-radius: var(--radius-card) var(--radius-card) 0 0;
}

.card-content {
    padding: 24px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.card-title {
    font-family: 'Manrope', sans-serif;
    font-size: 1.5rem;
    color: var(--color-deep-slate);
    /* Overriding user pref for strong contrast if needed, or stick to h3 global */
    margin-bottom: 0.5rem;
}

.card-body {
    font-size: 1rem;
    color: var(--color-text-body);
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.card-link {
    font-weight: 600;
    color: var(--color-timber-brown);
    margin-top: auto;
}

.card-link:hover {
    color: var(--color-deep-slate);
    text-decoration: underline;
}

/* Navigation */
.navbar {
    background-color: var(--color-deep-slate);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 1rem 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: block;
}

.logo img {
    height: 90px;
    /* Adjust based on logo aspect ratio */
    width: auto;
    display: block;
}

.nav-menu {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-link {
    color: var(--color-crisp-white);
    font-family: 'Manrope', sans-serif;
    font-weight: 500;
    font-size: 1rem;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--color-timber-brown);
}

/* Navbar Social Links */
.nav-social {
    display: flex;
    gap: 15px;
    margin-right: 20px;
    align-items: center;
}

.nav-social-link {
    color: var(--color-crisp-white);
    font-size: 1.4rem;
    transition: all 0.3s ease;
}

.nav-social-link:hover {
    color: var(--color-timber-brown);
    transform: translateY(-2px);
}

@media (max-width: 968px) {
    .nav-social {
        display: none;
        /* Hide on mobile to prevent clutter */
    }
}

/* Navbar Button Specifics */


/* Hero Section - V2 Premium */
.hero {
    position: relative;
    height: 900px;
    /* Fixed height so top and bottom are predictably bounded */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--color-crisp-white);
    background-attachment: scroll;
    /* Fixed removed so header doesn't cut off top */
    background-size: 100% auto;
    background-position: center top;
    background-repeat: no-repeat;
    background-color: var(--color-deep-slate);
    border-radius: 0;
    overflow: hidden;
}

/* Hero Background Slideshow */
.hero-slideshow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: 100% auto;
    background-position: center top;
    background-repeat: no-repeat;
    background-attachment: scroll;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

.hero-slide.active {
    opacity: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Gradient for better text readability */
    background: linear-gradient(to bottom, rgba(44, 62, 80, 0.1) 0%, rgba(44, 62, 80, 0.4) 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    padding: 20px;
}

.hero-title {
    font-size: 4.5rem;
    /* Larger title */
    font-weight: 700;
    color: var(--color-crisp-white);
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.6), 0 12px 24px rgba(0, 0, 0, 0.4), 0 24px 48px rgba(0, 0, 0, 0.25);
    opacity: 0;
    animation: fadeInUp 0.8s ease-out 0.2s forwards;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.4), 0 6px 12px rgba(0, 0, 0, 0.2);
    font-weight: 300;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out 0.4s forwards;
}

.hero-content .btn-outline-light {
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}


/* Our Philosophy Section */
.philosophy-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.philosophy-images {
    position: relative;
}

.image-stack {
    position: relative;
    padding: 40px 0 40px 40px;
}

.image-back {
    width: 70%;
    height: 300px;
    object-fit: cover;
    border-radius: 4px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.image-front {
    position: absolute;
    width: 65%;
    height: 280px;
    object-fit: cover;
    border-radius: 4px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    bottom: 0;
    right: 0;
    border: 4px solid var(--color-crisp-white);
}

.image-badge {
    position: absolute;
    width: 70px;
    height: 70px;
    background-color: var(--color-deep-slate);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    z-index: 10;
}

.image-badge i {
    color: var(--color-timber-brown);
    font-size: 1.8rem;
}

.section-label {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--color-timber-brown);
    margin-bottom: 1rem;
}

.philosophy-title {
    font-family: 'Manrope', sans-serif;
    font-size: 2.75rem;
    font-weight: 700;
    font-style: italic;
    color: var(--color-deep-slate);
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.philosophy-description {
    font-size: 1.1rem;
    color: var(--color-text-body);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.philosophy-features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.feature-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.feature-icon {
    flex-shrink: 0;
    width: 45px;
    height: 45px;
    background-color: var(--color-warm-beige);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon i {
    color: var(--color-timber-brown);
    font-size: 1.1rem;
}

.feature-text h4 {
    font-family: 'Manrope', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color-deep-slate);
    margin-bottom: 0.25rem;
}

.feature-text p {
    font-size: 0.95rem;
    color: var(--color-text-caption);
    margin-bottom: 0;
    line-height: 1.5;
}

/* Natural Resources Section */
.natural-resources-section {
    position: relative;
    height: 90vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

/* Background Slideshow */
.nr-slideshow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.nr-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
    z-index: 1;
}

.nr-slide.active {
    opacity: 1;
    z-index: 2;
}

.natural-resources-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(30, 41, 59, 0.75) 0%, rgba(30, 41, 59, 0.4) 50%, rgba(30, 41, 59, 0.1) 100%);
}

.natural-resources-content {
    position: relative;
    z-index: 1;
    max-width: 700px;
    padding: 0 40px;
}

.natural-resources-title {
    font-family: 'Manrope', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    font-style: italic;
    color: var(--color-crisp-white);
    line-height: 1.2;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.natural-resources-title .accent-text {
    color: var(--color-timber-brown);
}

/* Two-Color Header Accent Line */
h2 .accent-line {
    color: var(--color-timber-brown);
    display: block;
}

.natural-resources-description {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    margin-bottom: 2rem;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
}

.natural-resources-description em {
    font-style: italic;
}

.btn-outline-light {
    display: inline-flex;
    align-items: center;
    padding: 12px 28px;
    background: transparent;
    color: var(--color-crisp-white);
    border: 2px solid var(--color-crisp-white);
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.btn-outline-light:hover {
    background: var(--color-crisp-white);
    color: var(--color-deep-slate);
    transform: translateY(-2px);
}

/* Footer */
footer {
    background-color: var(--color-deep-slate);
    color: var(--color-crisp-white);
    padding: 60px 0 40px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-column h4 {
    font-family: 'Manrope', sans-serif;
    color: var(--color-warm-beige);
    margin-bottom: 1.2rem;
    font-size: 1.2rem;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #bdc3c7;
}

.footer-links a:hover {
    color: var(--color-crisp-white);
}

/* Trust Bar */
.trust-bar {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px 32px;
    padding: 20px 0;
    margin-bottom: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'Manrope', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.65);
    letter-spacing: 0.5px;
    text-transform: uppercase;
    white-space: nowrap;
}

.trust-item i {
    color: var(--color-timber-brown);
    font-size: 0.9rem;
    flex-shrink: 0;
}

.trust-separator {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    flex-shrink: 0;
}

@media (max-width: 600px) {
    .trust-bar {
        gap: 10px 20px;
        padding: 16px 0;
    }

    .trust-item {
        font-size: 0.7rem;
    }

    .trust-separator {
        display: none;
    }
}

.trust-logo {
    height: 32px;
    width: auto;
    border-radius: 0;
    filter: brightness(0) invert(1);
    /* Make it white to match text */
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.trust-logo:hover {
    opacity: 1;
}

/* Legal Links */
.legal-footer {
    text-align: center;
    margin-top: 20px;
}

.legal-links {
    display: flex;
    justify-content: center;
    gap: 15px;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.4);
    font-family: 'Manrope', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.legal-links a {
    transition: color 0.3s ease;
}

.legal-links a:hover {
    color: var(--color-timber-brown);
}

.copyright {
    text-align: center;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.3);
    font-size: 0.8rem;
}

/* FAQ Accordion â€” Architectural Ledger */
.faq-accordion {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 0;
    border-top: 1px solid var(--color-soft-clay);
}

.faq-item {
    border-bottom: 1px solid var(--color-soft-clay);
    background: transparent;
}

.faq-header {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 22px 0;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    transition: color 0.3s ease;
}

.faq-header:hover {
    color: var(--color-timber-brown);
}

.faq-header:hover .faq-question {
    color: var(--color-timber-brown);
}

.faq-number {
    font-family: 'Bitter', serif;
    font-style: italic;
    font-size: 1rem;
    font-weight: 400;
    color: var(--color-timber-brown);
    min-width: 28px;
    flex-shrink: 0;
}

.faq-question {
    font-family: 'Manrope', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color-deep-slate);
    flex: 1;
    transition: color 0.3s ease;
}

.faq-icon {
    color: var(--color-timber-brown);
    font-size: 0.9rem;
    flex-shrink: 0;
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-content-inner {
    padding: 0 0 24px 48px;
    border-left: 3px solid var(--color-timber-brown);
    margin-left: 12px;
}

.faq-content-inner p {
    color: var(--color-text-body);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 0;
}

/* Base style for toggle button (hidden on desktop) */
.menu-toggle {
    display: none;
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {

    /* Typography Scale Down */
    :root {
        --spacing-section: 40px;
    }

    h1,
    .hero-title {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 1.75rem;
    }

    /* Navigation - Mobile Menu */
    .navbar {
        padding: 15px 0;
    }

    .logo img {
        height: 60px;
    }

    .menu-toggle {
        display: block;
        /* Visible on mobile */
        background: none;
        border: none;
        color: var(--color-crisp-white);
        font-size: 1.5rem;
        cursor: pointer;
    }

    .nav-menu {
        display: none;
        /* Hidden by default */
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--color-deep-slate);
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
        align-items: flex-start;
    }

    .nav-menu.active {
        display: flex;
        /* Show when active */
    }

    .nav-menu li {
        width: 100%;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .nav-menu li:last-child {
        border-bottom: none;
    }

    .nav-link {
        display: block;
        padding: 15px 0;
        width: 100%;
    }

    .navbar .btn-primary {
        width: 100%;
        margin-top: 10px;
    }

    /* Spacing Adjustments */
    .hero {
        height: 500px;
        /* Fixed height for mobile */
        padding: 100px 0 60px;
        background-attachment: scroll !important;
        /* Disable parallax on mobile */
        background-position: center top !important;
    }

    .section {
        padding: 40px 0;
    }

    /* Layout Stacking */
    .grid-3,
    .about-grid,
    .contact-layout,
    .split-section {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .hero-content {
        padding: 0 15px;
    }

    .about-text,
    .about-img {
        order: unset;
        /* Reset order if needed */
    }

    /* Philosophy Section - Mobile */
    .philosophy-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .philosophy-images {
        order: 2;
    }

    .philosophy-content {
        order: 1;
    }

    .image-stack {
        padding: 20px;
        display: flex;
        justify-content: center;
    }

    .image-back {
        width: 80%;
        height: 220px;
    }

    .image-front {
        width: 60%;
        height: 200px;
        right: 5%;
    }

    .image-badge {
        width: 55px;
        height: 55px;
        left: 10%;
    }

    .image-badge i {
        font-size: 1.4rem;
    }

    .philosophy-title {
        font-size: 2rem;
    }

    .philosophy-description {
        font-size: 1rem;
    }

    /* Natural Resources Section - Mobile */
    .natural-resources-section {
        height: 70vh;
        min-height: 500px;
    }

    .natural-resources-overlay {
        background: linear-gradient(to bottom, rgba(30, 41, 59, 0.7) 0%, rgba(30, 41, 59, 0.6) 100%);
    }

    .natural-resources-content {
        padding: 0 20px;
    }

    .natural-resources-title {
        font-size: 2rem;
    }

    .natural-resources-description {
        font-size: 1rem;
    }
}

/* Cookie Consent Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(30, 41, 59, 0.95);
    /* Deep slate with slight transparency */
    backdrop-filter: blur(10px);
    color: var(--color-crisp-white);
    padding: 20px 0;
    z-index: 9999;
    transform: translateY(100%);
    transition: transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    border-top: 1px solid rgba(166, 123, 91, 0.3);
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

.cookie-text {
    font-family: 'Manrope', sans-serif;
    font-size: 0.95rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.9);
}

.cookie-text a {
    color: var(--color-timber-brown);
    text-decoration: underline;
    font-weight: 600;
}

.cookie-btns {
    display: flex;
    gap: 15px;
    flex-shrink: 0;
}

.btn-cookie-accept {
    background-color: var(--color-timber-brown);
    color: white;
    border: none;
    padding: 10px 24px;
    font-family: 'Manrope', sans-serif;
    font-weight: 700;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-cookie-accept:hover {
    background-color: #8a6549;
    transform: translateY(-2px);
}

@media screen and (max-width: 768px) {
    .cookie-container {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .cookie-btns {
        width: 100%;
        justify-content: center;
    }
}

/* --- About Page Styles --- */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

@media (max-width: 900px) {
    .about-grid {
        grid-template-columns: 1fr;
    }

    .about-text {
        order: 2;
    }

    .about-img {
        order: 1;
    }
}

.stat-box {
    background-color: var(--color-deep-slate);
    color: white;
    padding: 30px;
    text-align: center;
    border-bottom: 4px solid var(--color-timber-brown);
}

.stat-number {
    font-family: 'Manrope', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-timber-brown);
    margin-bottom: 10px;
}

/* --- Portfolio Page Styles --- */

/* Filter Bar */
.filter-bar {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 48px;
    flex-wrap: wrap;
    padding: 0 20px;
}

.filter-btn {
    background: none;
    border: 2px solid transparent;
    font-family: 'Manrope', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--color-text-body);
    cursor: pointer;
    padding: 10px 20px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.filter-btn:hover {
    color: var(--color-timber-brown);
}

.filter-btn.active {
    color: var(--color-timber-brown);
    border-bottom-color: var(--color-timber-brown);
}

/* Project Count */
.project-count {
    text-align: center;
    margin-bottom: 32px;
    font-size: 0.9rem;
    color: var(--color-text-caption);
    letter-spacing: 1px;
    text-transform: uppercase;
    font-family: 'Manrope', sans-serif;
    transition: opacity 0.3s ease;
}

/* Masonry Grid */
.portfolio-grid {
    column-count: 3;
    column-gap: 20px;
}

@media (max-width: 900px) {
    .portfolio-grid {
        column-count: 2;
    }
}

@media (max-width: 600px) {
    .portfolio-grid {
        column-count: 1;
        width: 100%;
    }

    .portfolio-item {
        width: 100% !important;
        margin-bottom: 20px;
    }

    .portfolio-img {
        width: 100% !important;
        height: auto !important;
        max-width: 100vw;
    }
}

/* Portfolio Item */
.portfolio-item {
    position: relative;
    margin-bottom: 20px;
    break-inside: avoid;
    overflow: hidden;
    border-radius: 0;
    cursor: pointer;
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.portfolio-item.filtering-out {
    opacity: 0;
    transform: translateY(10px);
}

.portfolio-item.filtering-hidden {
    display: none;
}

.portfolio-item.filtering-in {
    animation: portfolioFadeIn 0.5s ease forwards;
}

@keyframes portfolioFadeIn {
    from {
        opacity: 0;
        transform: translateY(15px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.portfolio-img {
    width: 100%;
    display: block;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Overlay */
.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(30, 41, 59, 0.85) 0%, rgba(30, 41, 59, 0) 30%, rgba(30, 41, 59, 0) 60%, rgba(30, 41, 59, 0.95) 100%);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
    opacity: 0;
    transition: opacity 0.4s ease;
    padding: 20px;
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-item:hover .portfolio-img {
    transform: scale(1.05);
}

.project-category {
    color: var(--color-timber-brown);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    transform: translateY(-10px);
    transition: transform 0.4s ease 0.05s;
    margin-bottom: auto;
}

.project-info {
    width: 100%;
}

.project-title {
    color: var(--color-crisp-white);
    font-family: 'Manrope', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 6px;
    transform: translateY(10px);
    transition: transform 0.4s ease 0.1s;
}

.project-location {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.85rem;
    font-weight: 500;
    font-style: italic;
    transform: translateY(10px);
    transition: transform 0.4s ease 0.15s;
}

.portfolio-item:hover .project-category,
.portfolio-item:hover .project-title,
.portfolio-item:hover .project-location {
    transform: translateY(0);
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 15, 25, 0.95);
    z-index: 9999;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.lightbox.active {
    display: flex;
    opacity: 1;
}

.lightbox-content {
    position: relative;
    max-width: 90vw;
    max-height: 85vh;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.lightbox-img {
    max-width: 90vw;
    max-height: 75vh;
    object-fit: contain;
    border: 0;
}

.lightbox-caption {
    color: white;
    text-align: center;
    margin-top: 16px;
    font-family: 'Manrope', sans-serif;
}

.lightbox-caption h3 {
    color: white;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.lightbox-caption p {
    color: var(--color-timber-brown);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 0;
}

.lightbox-close {
    position: absolute;
    top: -50px;
    right: 0;
    background: none;
    border: none;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    padding: 8px;
    line-height: 1;
    transition: color 0.3s ease;
}

.lightbox-close:hover {
    color: var(--color-timber-brown);
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 16px 20px;
    transition: background 0.3s ease, color 0.3s ease;
    z-index: 10;
}

.lightbox-nav:hover {
    background: rgba(255, 255, 255, 0.2);
    color: var(--color-timber-brown);
}

.lightbox-prev {
    left: -80px;
}

.lightbox-next {
    right: -80px;
}

@media (max-width: 900px) {
    .lightbox-prev {
        left: 10px;
    }

    .lightbox-next {
        right: 10px;
    }

    .lightbox-nav {
        padding: 12px 14px;
        font-size: 1.2rem;
    }
}

/* Counter indicator */
.lightbox-counter {
    position: absolute;
    top: -50px;
    left: 0;
    color: rgba(255, 255, 255, 0.5);
    font-family: 'Manrope', sans-serif;
    font-size: 0.85rem;
}

/* --- Process Page Styles --- */

/* Master Timeline Redesign â€” Architectural Ledger Style */
.timeline {
    position: relative;
    max-width: 900px;
    margin: 40px auto;
    padding: 40px 0;
}

.timeline::after {
    content: '';
    position: absolute;
    width: 1px;
    background-color: var(--color-timber-brown);
    top: 0;
    bottom: 0;
    left: 40px;
    opacity: 0.3;
}

.timeline-container {
    position: relative;
    margin-bottom: 60px;
    padding-left: 100px;
    width: 100%;
    box-sizing: border-box;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out forwards;
}

.timeline-dot {
    position: absolute;
    width: 20px;
    height: 20px;
    left: 30px;
    top: 12px;
    background-color: var(--color-warm-beige);
    border: 2px solid var(--color-timber-brown);
    border-radius: 50%;
    z-index: 1;
}

.timeline-content {
    background-color: var(--color-crisp-white);
    padding: 40px;
    border: 1px solid rgba(166, 123, 91, 0.1);
    border-left: 4px solid var(--color-timber-brown);
    position: relative;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.timeline-content:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-card-hover);
}

.step-number {
    font-family: 'Manrope', sans-serif;
    font-size: 1rem;
    font-weight: 800;
    color: var(--color-timber-brown);
    display: inline-block;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.timeline-content h3 {
    font-size: 1.75rem;
    margin-bottom: 15px;
    font-style: italic;
}

.timeline-content p {
    color: var(--color-text-body);
    font-size: 1.1rem;
    margin-bottom: 0;
    line-height: 1.6;
}

@media screen and (max-width: 768px) {
    .timeline::after {
        left: 20px;
    }

    .timeline-container {
        padding-left: 60px;
    }

    .timeline-dot {
        left: 10px;
    }

    .timeline-content {
        padding: 30px;
    }
}

/* --- Partners Page Styles --- */
.partner-card {
    background-color: var(--color-white);
    border: 1px solid #e2e8f0;
    padding: 40px 30px;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    height: 100%;
}

.partner-card:hover {
    border-color: var(--color-timber-brown);
    transform: translateY(-5px);
    box-shadow: var(--shadow-card-hover);
}

.partner-logo-container {
    height: 120px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.partner-logo {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.8;
    transition: all 0.4s ease;
}

.partner-card:hover .partner-logo {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.05);
}

.partner-role {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--color-timber-brown);
    font-weight: 700;
    margin-bottom: 12px;
    display: block;
}

.partner-name {
    font-family: 'Manrope', sans-serif;
    font-size: 1.4rem;
    color: var(--color-deep-slate);
    margin-bottom: 15px;
    font-weight: 700;
}

.partner-desc {
    color: var(--color-text-body);
    font-size: 0.95rem;
    margin-bottom: 30px;
    line-height: 1.7;
    flex-grow: 1;
}

.partner-link {
    text-decoration: none;
    color: var(--color-deep-slate);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.2s;
    padding: 8px 16px;
    border: 1px solid #e2e8f0;
    font-size: 0.9rem;
}

.partner-link:hover {
    color: var(--color-white);
    background-color: var(--color-timber-brown);
    border-color: var(--color-timber-brown);
}

/* --- JobTread Form Styles (Contact Page) --- */
/* Original JobTread CSS (Required for layout) */
@layer properties {
    @supports (((-webkit-hyphens:none)) and (not (margin-trim:inline))) or ((-moz-orient:inline) and (not (color:rgb(from red r g b)))) {

        .jtwf *,
        .jtwf :before,
        .jtwf :after,
        .jtwf ::backdrop {
            --tw-space-y-reverse: 0;
            --tw-divide-y-reverse: 0;
            --tw-border-style: solid;
            --tw-font-weight: initial;
            --tw-shadow: 0 0 #0000;
            --tw-shadow-color: initial;
            --tw-shadow-alpha: 100%;
            --tw-inset-shadow: 0 0 #0000;
            --tw-inset-shadow-color: initial;
            --tw-inset-shadow-alpha: 100%;
            --tw-ring-color: initial;
            --tw-ring-shadow: 0 0 #0000;
            --tw-inset-ring-color: initial;
            --tw-inset-ring-shadow: 0 0 #0000;
            --tw-ring-inset: initial;
            --tw-ring-offset-width: 0px;
            --tw-ring-offset-color: #fff;
            --tw-ring-offset-shadow: 0 0 #0000;
            --tw-blur: initial;
            --tw-brightness: initial;
            --tw-contrast: initial;
            --tw-grayscale: initial;
            --tw-hue-rotate: initial;
            --tw-invert: initial;
            --tw-opacity: initial;
            --tw-saturate: initial;
            --tw-sepia: initial;
            --tw-drop-shadow: initial;
            --tw-drop-shadow-color: initial;
            --tw-drop-shadow-alpha: 100%;
            --tw-drop-shadow-size: initial
        }
    }
}

@layer theme {
    .jtwf {
        /* Defaults - We will override these in the next block */
        --color-red-500: oklch(63.7% .237 25.331);
        --color-blue-500: oklch(62.3% .214 259.815);
        --color-gray-50: oklch(98.5% .002 247.839);
        --color-gray-200: oklch(92.8% .006 264.531);
        --color-gray-300: oklch(87.2% .01 258.338);
        --color-gray-500: oklch(55.1% .027 264.364);
        --color-white: #fff;
        --spacing: .25rem;
        --container-sm: 24rem;
        --text-xl: 1.25rem;
        --text-xl--line-height: calc(1.75/1.25);
        --font-weight-normal: 400;
        --font-weight-bold: 700;
        --radius-sm: .25rem;
        --default-transition-duration: .25s;
        --default-transition-timing-function: cubic-bezier(.4, 0, .2, 1)
    }
}

@layer base {

    .jtwf *,
    .jtwf :after,
    .jtwf :before,
    .jtwf ::backdrop {
        border-color: var(--color-gray-200, currentColor)
    }

    .jtwf ::file-selector-button {
        border-color: var(--color-gray-200, currentColor)
    }

    .jtwf * {
        box-sizing: border-box;
        border: 0 solid #e5e7eb
    }

    .jtwf button,
    .jtwf input,
    .jtwf optgroup,
    .jtwf select,
    .jtwf textarea {
        font-family: inherit;
        font-size: 100%;
        font-weight: inherit;
        line-height: inherit;
        color: inherit;
        margin: 0;
        padding: 0
    }
}

@layer components;

@layer utilities {
    .jtwf .mx-auto {
        margin-inline: auto
    }

    .jtwf .block {
        display: block
    }

    .jtwf .flex {
        display: flex
    }

    .jtwf .max-h-24 {
        max-height: calc(var(--spacing)*24)
    }

    .jtwf .w-full {
        width: 100%
    }

    .jtwf .max-w-full {
        max-width: 100%
    }

    .jtwf .max-w-sm {
        max-width: var(--container-sm)
    }

    .jtwf .min-w-0 {
        min-width: calc(var(--spacing)*0)
    }

    .jtwf .shrink-0 {
        flex-shrink: 0
    }

    .jtwf .grow {
        flex-grow: 1
    }

    .jtwf .cursor-pointer {
        cursor: pointer
    }

    .jtwf .appearance-none {
        appearance: none
    }

    .jtwf .items-center {
        align-items: center
    }

    .jtwf .gap-2 {
        gap: calc(var(--spacing)*2)
    }

    .jtwf :where(.space-y-2>:not(:last-child)) {
        --tw-space-y-reverse: 0;
        margin-block-start: calc(calc(var(--spacing)*2)*var(--tw-space-y-reverse));
        margin-block-end: calc(calc(var(--spacing)*2)*calc(1 - var(--tw-space-y-reverse)))
    }

    .jtwf :where(.divide-y>:not(:last-child)) {
        --tw-divide-y-reverse: 0;
        border-bottom-style: var(--tw-border-style);
        border-top-style: var(--tw-border-style);
        border-top-width: calc(1px*var(--tw-divide-y-reverse));
        border-bottom-width: calc(1px*calc(1 - var(--tw-divide-y-reverse)))
    }

    .jtwf .overflow-hidden {
        overflow: hidden
    }

    .jtwf .rounded-sm {
        border-radius: var(--radius-sm)
    }

    .jtwf .border {
        border-style: var(--tw-border-style);
        border-width: 1px
    }

    .jtwf .bg-white {
        background-color: var(--color-white)
    }

    .jtwf .p-2 {
        padding: calc(var(--spacing)*2)
    }

    .jtwf .p-4 {
        padding: calc(var(--spacing)*4)
    }

    .jtwf .px-4 {
        padding-inline: calc(var(--spacing)*4)
    }

    .jtwf .py-2 {
        padding-block: calc(var(--spacing)*2)
    }

    .jtwf .text-center {
        text-align: center
    }

    .jtwf .text-right {
        text-align: right
    }

    .jtwf .text-xl {
        font-size: var(--text-xl);
        line-height: var(--tw-leading, var(--text-xl--line-height))
    }

    .jtwf .font-bold {
        --tw-font-weight: var(--font-weight-bold);
        font-weight: var(--font-weight-bold)
    }

    .jtwf .font-normal {
        --tw-font-weight: var(--font-weight-normal);
        font-weight: var(--font-weight-normal)
    }

    .jtwf .text-gray-500 {
        color: var(--color-gray-500)
    }

    .jtwf .text-red-500 {
        color: var(--color-red-500)
    }

    .jtwf .shadow-sm {
        --tw-shadow: 0 1px 3px 0 var(--tw-shadow-color, #0000001a), 0 1px 2px -1px var(--tw-shadow-color, #0000001a);
        box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow)
    }

    .jtwf .shadow-xs {
        --tw-shadow: 0 1px 2px 0 var(--tw-shadow-color, #0000000d);
        box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow)
    }

    .jtwf .ring {
        --tw-ring-shadow: var(--tw-ring-inset, )0 0 0 calc(1px + var(--tw-ring-offset-width))var(--tw-ring-color, currentcolor);
        box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow)
    }

    .jtwf .ring-gray-200 {
        --tw-ring-color: var(--color-gray-200)
    }

    .jtwf .transition {
        transition-property: color, background-color, border-color, outline-color, text-decoration-color, fill, stroke, --tw-gradient-from, --tw-gradient-via, --tw-gradient-to, opacity, box-shadow, transform, translate, scale, rotate, filter, -webkit-backdrop-filter, backdrop-filter, display, content-visibility, overlay, pointer-events;
        transition-timing-function: var(--tw-ease, var(--default-transition-timing-function));
        transition-duration: var(--tw-duration, var(--default-transition-duration))
    }

    .jtwf .focus-within\:bg-white:focus-within {
        background-color: var(--color-white)
    }

    .jtwf .focus-within\:ring-3:focus-within {
        --tw-ring-shadow: var(--tw-ring-inset, )0 0 0 calc(3px + var(--tw-ring-offset-width))var(--tw-ring-color, currentcolor);
        box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow)
    }

    .jtwf .focus-within\:ring-blue-500:focus-within {
        --tw-ring-color: var(--color-blue-500)
    }

    @media (hover:hover) {
        .jtwf .hover\:bg-gray-50:hover {
            background-color: var(--color-gray-50)
        }

        .jtwf .hover\:brightness-95:hover {
            --tw-brightness: brightness(95%);
            filter: var(--tw-blur, )var(--tw-brightness, )var(--tw-contrast, )var(--tw-grayscale, )var(--tw-hue-rotate, )var(--tw-invert, )var(--tw-saturate, )var(--tw-sepia, )var(--tw-drop-shadow, )
        }
    }

    .jtwf .\[\&\:\:-webkit-date-and-time-value\]\:h-5::-webkit-date-and-time-value {
        height: calc(var(--spacing)*5)
    }

    @media (hover:hover) {
        .jtwf .hover\:\[\&\:not\(\:focus-within\)\]\:border-gray-300:hover:not(:focus-within) {
            border-color: var(--color-gray-300)
        }

        .jtwf .hover\:\[\&\:not\(\:focus-within\)\]\:bg-gray-50:hover:not(:focus-within) {
            background-color: var(--color-gray-50)
        }
    }
}

/* --- ROCK RIDGE CUSTOM OVERRIDES (Form) --- */
.jtwf {
    /* Branding Colors */
    --color-blue-500: #A67B5B;
    /* Timber Brown for active states */
    --color-gray-200: #D7CCC8;
    /* Soft Clay for borders */
    --color-gray-50: #FAF9F6;
    /* Off-white for hovers */
    --color-white: #FFFFFF;

    /* Sharp Mode */
    --radius-sm: 0px !important;
    /* No rounded corners */

    /* Typography */
    font-family: 'Bitter', serif;
    /* Body text */
    color: var(--color-text-body, #334155);
}

/* Headings/Labels override */
.jtwf .font-bold {
    font-family: 'Manrope', sans-serif !important;
    color: var(--color-deep-slate, #1E293B) !important;
    letter-spacing: 0.5px;
}

/* Inputs and Textareas */
.jtwf input,
.jtwf textarea,
.jtwf select {
    border-radius: 0px !important;
    font-family: 'Bitter', serif !important;
    border: 1px solid #D7CCC8 !important;
    /* Soft border */
    padding: 12px !important;
    /* Larger touch targets */
    box-shadow: none !important;
    /* Flat design */
}

.jtwf input:focus,
.jtwf textarea:focus,
.jtwf select:focus {
    border-color: #A67B5B !important;
    outline: none !important;
    box-shadow: 0 0 0 2px rgba(166, 123, 91, 0.2) !important;
}

/* Submit Button custom style */
.jtwf button[data-submit-button="true"] {
    background-color: #A67B5B !important;
    /* Timber Brown */
    color: #FFFFFF !important;
    border-radius: 0px !important;
    /* Sharp */
    padding: 12px 30px !important;
    font-family: 'Manrope', sans-serif !important;
    font-weight: 700 !important;
    font-size: 1rem !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
    border: 2px solid #A67B5B !important;
    transition: all 0.3s ease !important;
    box-shadow: none !important;
    width: 100%;
    /* Full width on mobile preferred usually, or keep original layout */
}

.jtwf button[data-submit-button="true"]:hover {
    background-color: transparent !important;
    color: #A67B5B !important;
    cursor: pointer;
}

/* Form Container enhancements */
.form-wrapper {
    max-width: 600px;
    margin: 0 auto;
    background: #fff;
    padding: 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    border: 1px solid #eee;
}

/* JobTread logo sizing fix in form */
.jtwf img {
    max-height: 60px !important;
    margin-bottom: 20px !important;
}

/* --- Service Sub-Page Styles --- */

.feature-list {
    list-style: none;
    margin-top: 30px;
}

.feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.feature-icon {
    width: 40px;
    height: 40px;
    background-color: var(--color-deep-slate);
    color: var(--color-timber-brown);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    flex-shrink: 0;
    /* Sharp edges */
    border-radius: 0;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 60px;
}

.gallery-img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    /* Sharp edges */
    border-radius: 0;
    transition: transform 0.5s ease;
}

.gallery-item {
    overflow: hidden;
}

.gallery-item:hover .gallery-img {
    transform: scale(1.05);
}

.split-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

@media (max-width: 900px) {
    .split-section {
        grid-template-columns: 1fr;
    }
}