    *,
    *::before,
    *::after {
        margin: 0;
        padding: 0;
        box-sizing: border-box
    }

    :root {
        --cream: #faf7f2;
        --beige: #f5f0e8;
        --warm-beige: #ede5d5;
        --sand: #d4c5a9;
        --copper: #b87333;
        --copper-light: #d4a574;
        --copper-dark: #8b5a2b;
        --charcoal: #2a2a2e;
        --dark: #1a1a1f;
        --text-dark: #1a1a1f;
        --text-medium: #5c5c6e;
        --text-light: #8a8a9a;
        --white: #ffffff;
        --warm-white: #fefcf8;
        --green: #006b3f;
        --green-light: #00913f;
        --nav-h: 70px;
        --pad-xl: 80px;
        --pad-lg: 60px;
        --pad-md: 40px;
        --pad-sm: 24px;
        --pad-xs: 16px
    }

    html {
        scroll-behavior: smooth;
        -webkit-text-size-adjust: 100%;
        text-size-adjust: 100%;
        overflow-x: hidden
    }

    body {
        font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
        background: var(--cream);
        color: var(--text-dark);
        overflow-x: hidden;
        line-height: 1.65;
        word-wrap: break-word;
        overflow-wrap: break-word
    }

    ::-webkit-scrollbar {
        width: 8px
    }

    ::-webkit-scrollbar-track {
        background: var(--charcoal)
    }

    ::-webkit-scrollbar-thumb {
        background: var(--copper);
        border-radius: 4px
    }

    img {
        max-width: 100%;
        height: auto;
        display: block
    }

    svg {
        max-width: 100%;
        height: auto
    }

    /* Preloader */
    #preloader {
        position: fixed;
        inset: 0;
        background: var(--charcoal);
        z-index: 10000;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        gap: 24px;
        transition: opacity .6s ease, visibility .6s ease
    }

    #preloader.hidden {
        opacity: 0;
        visibility: hidden;
        pointer-events: none
    }

    .preloader-logo {
        width: 100px;
        height: 100px
    }

    .preloader-text {
        font-family: Georgia, serif;
        font-size: clamp(1rem, 3vw, 1.4rem);
        font-weight: 700;
        color: var(--copper-light);
        letter-spacing: clamp(1px, 0.3vw, 3px);
        text-align: center
    }

    .preloader-bar {
        width: 180px;
        max-width: 80vw;
        height: 2px;
        background: rgba(184, 115, 51, .2);
        border-radius: 2px;
        overflow: hidden
    }

    .preloader-fill {
        width: 0%;
        height: 100%;
        background: linear-gradient(90deg, var(--copper), var(--copper-light));
        border-radius: 2px;
        transition: width .2s ease
    }

    /* Navigation */
    nav {
        position: fixed;
        inset: 0 0 auto 0;
        z-index: 1000;
        padding: 18px var(--pad-xl);
        display: flex;
        align-items: center;
        justify-content: space-between;
        transition: all .4s ease;
        gap: 16px
    }

    nav.scrolled {
        background: rgba(26, 26, 31, .96);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        padding: 12px var(--pad-xl);
        box-shadow: 0 4px 30px rgba(0, 0, 0, .3)
    }

    .nav-logo {
        display: flex;
        align-items: center;
        gap: 12px;
        text-decoration: none;
        flex-shrink: 0
    }

    .nav-logo svg {
        width: 48px;
        height: 48px;
        min-width: 48px
    }

    .nav-logo-text {
        font-family: Georgia, serif;
        font-size: clamp(0.95rem, 1.5vw, 1.2rem);
        font-weight: 700;
        color: var(--white);
        line-height: 1.0
    }

    .nav-logo-text span {
        display: block;
        font-size: clamp(0.55rem, 0.8vw, 0.6rem);
        font-family: 'Segoe UI', system-ui, sans-serif;
        font-weight: 400;
        color: var(--copper-light);
        letter-spacing: 2px;
        text-transform: uppercase;
        margin-top: 3px;
        white-space: nowrap
    }

    .nav-menu {
        display: flex;
        align-items: center;
        gap: clamp(16px, 2vw, 28px);
        list-style: none;
        flex-wrap: wrap;
        justify-content: flex-end
    }

    .nav-menu a {
        text-decoration: none;
        color: rgba(255, 255, 255, .85);
        font-size: clamp(0.7rem, 0.9vw, 0.78rem);
        font-weight: 500;
        letter-spacing: 1px;
        text-transform: uppercase;
        position: relative;
        transition: color .3s ease;
        white-space: nowrap
    }

    .nav-menu a:hover {
        color: var(--copper-light)
    }

    .nav-menu a::after {
        content: '';
        position: absolute;
        bottom: -5px;
        left: 0;
        width: 0;
        height: 2px;
        background: var(--copper);
        transition: width .3s ease
    }

    .nav-menu a:hover::after {
        width: 100%
    }

    .nav-cta {
        background: linear-gradient(135deg, var(--copper), var(--copper-light));
        color: var(--white) !important;
        padding: 10px 20px;
        border-radius: 6px;
        font-weight: 700 !important;
        transition: transform .3s ease, box-shadow .3s ease !important;
        border: none
    }

    .nav-cta::after {
        display: none !important
    }

    .nav-cta:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 25px rgba(184, 115, 51, .4)
    }

    .menu-toggle {
        display: none;
        flex-direction: column;
        gap: 5px;
        cursor: pointer;
        z-index: 1001;
        padding: 8px;
        min-width: 44px;
        min-height: 44px;
        align-items: center;
        justify-content: center;
        border-radius: 8px
    }

    .menu-toggle:active {
        background: rgba(255, 255, 255, .1)
    }

    .menu-toggle span {
        width: 26px;
        height: 2px;
        background: var(--white);
        transition: all .3s ease;
        border-radius: 2px
    }

    .menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px)
    }

    .menu-toggle.active span:nth-child(2) {
        opacity: 0
    }

    .menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px)
    }

    /* Hero */
    #hero {
        position: relative;
        height: 100vh;
        min-height: 600px;
        display: flex;
        align-items: center;
        overflow: hidden;
        background: var(--charcoal)
    }

    #hero-canvas {
        position: absolute;
        inset: 0;
        z-index: 1
    }

    .hero-overlay {
        position: absolute;
        inset: 0;
        background: linear-gradient(135deg, rgba(26, 26, 31, .9) 0%, rgba(42, 42, 46, .7) 40%, rgba(184, 115, 51, .12) 100%);
        z-index: 2
    }

    .hero-content {
        position: relative;
        z-index: 3;
        padding: 0 clamp(24px, 5vw, 80px);
        max-width: 900px;
        width: 100%
    }

    .hero-badge {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        background: rgba(184, 115, 51, .15);
        border: 1px solid rgba(184, 115, 51, .3);
        padding: clamp(6px, 1vw, 8px) clamp(14px, 2vw, 20px);
        border-radius: 50px;
        margin-bottom: clamp(16px, 3vw, 24px);
        opacity: 0;
        flex-wrap: nowrap
    }

    .hero-badge-dot {
        width: 8px;
        height: 8px;
        background: var(--copper);
        border-radius: 50%;
        animation: pulse 2s infinite;
        flex-shrink: 0
    }

    @keyframes pulse {

        0%,
        100% {
            opacity: 1;
            transform: scale(1)
        }

        50% {
            opacity: .5;
            transform: scale(1.5)
        }
    }

    .hero-badge span {
        color: var(--copper-light);
        font-size: clamp(0.65rem, 1vw, 0.72rem);
        font-weight: 600;
        letter-spacing: 2px;
        text-transform: uppercase
    }

    .hero-title {
        font-family: Georgia, serif;
        font-size: clamp(2rem, 5.5vw, 4.2rem);
        font-weight: 700;
        color: var(--white);
        line-height: 1.1;
        margin-bottom: clamp(16px, 2vw, 22px);
        opacity: 0;
        word-break: break-word
    }

    .hero-title .accent {
        background: linear-gradient(135deg, var(--copper), var(--copper-light));
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text
    }

    .hero-subtitle {
        font-size: clamp(0.9rem, 1.5vw, 1.05rem);
        color: rgba(255, 255, 255, .65);
        max-width: 560px;
        line-height: 1.7;
        margin-bottom: clamp(24px, 3vw, 38px);
        opacity: 0
    }

    .hero-actions {
        display: flex;
        gap: clamp(12px, 2vw, 18px);
        flex-wrap: wrap;
        opacity: 0
    }

    .btn-primary,
    .btn-outline {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        padding: clamp(12px, 1.5vw, 16px) clamp(20px, 2.5vw, 34px);
        border-radius: 8px;
        font-weight: 700;
        font-size: clamp(0.75rem, 1vw, 0.85rem);
        text-decoration: none;
        letter-spacing: .5px;
        text-transform: uppercase;
        border: none;
        cursor: pointer;
        transition: all .3s ease;
        position: relative;
        overflow: hidden;
        white-space: nowrap;
        min-height: 48px
    }

    .btn-primary {
        background: linear-gradient(135deg, var(--copper), var(--copper-light));
        color: var(--charcoal)
    }

    .btn-primary:hover {
        transform: translateY(-3px);
        box-shadow: 0 12px 35px rgba(184, 115, 51, .4)
    }

    .btn-primary::after {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .3), transparent);
        transition: left .5s ease
    }

    .btn-primary:hover::after {
        left: 100%
    }

    .btn-outline {
        background: transparent;
        color: var(--white);
        border: 2px solid rgba(255, 255, 255, .25)
    }

    .btn-outline:hover {
        border-color: var(--copper);
        color: var(--copper-light);
        background: rgba(184, 115, 51, .08)
    }

    .hero-stats {
        position: absolute;
        bottom: clamp(40px, 5vw, 60px);
        right: clamp(24px, 5vw, 80px);
        z-index: 3;
        display: flex;
        gap: clamp(24px, 3vw, 50px);
        opacity: 0;
        flex-wrap: wrap;
        justify-content: flex-end
    }

    .hero-stat {
        text-align: right;
        min-width: 80px
    }

    .hero-stat .num {
        font-family: Georgia, serif;
        font-size: clamp(1.5rem, 3vw, 2.5rem);
        font-weight: 700;
        color: var(--copper-light);
        line-height: 1
    }

    .hero-stat .label {
        font-size: clamp(0.6rem, 0.9vw, 0.7rem);
        color: rgba(255, 255, 255, .45);
        letter-spacing: 2px;
        text-transform: uppercase;
        margin-top: 5px
    }

    .hero-scroll {
        position: absolute;
        bottom: clamp(20px, 2vw, 30px);
        left: clamp(24px, 5vw, 80px);
        z-index: 3;
        display: flex;
        align-items: center;
        gap: 12px;
        opacity: 0
    }

    .scroll-indicator {
        width: 2px;
        height: 40px;
        background: linear-gradient(to bottom, var(--copper), transparent);
        position: relative;
        overflow: hidden
    }

    .scroll-indicator::after {
        content: '';
        position: absolute;
        top: -100%;
        width: 100%;
        height: 40%;
        background: var(--copper-light);
        animation: scrollDown 1.8s infinite
    }

    @keyframes scrollDown {
        0% {
            top: -40%
        }

        100% {
            top: 100%
        }
    }

    .hero-scroll span {
        font-size: clamp(0.55rem, 0.8vw, 0.65rem);
        color: rgba(255, 255, 255, .45);
        letter-spacing: 3px;
        text-transform: uppercase;
        writing-mode: vertical-lr;
        transform: rotate(180deg);
        white-space: nowrap
    }

    /* Marquee */
    .marquee {
        padding: clamp(16px, 2vw, 22px) 0;
        background: var(--charcoal);
        border-top: 1px solid rgba(184, 115, 51, .15);
        border-bottom: 1px solid rgba(184, 115, 51, .15);
        overflow: hidden
    }

    .marquee-track {
        display: flex;
        animation: marquee 25s linear infinite;
        width: max-content
    }

    @keyframes marquee {
        0% {
            transform: translateX(0)
        }

        100% {
            transform: translateX(-50%)
        }
    }

    .marquee-item {
        display: flex;
        align-items: center;
        gap: clamp(16px, 2vw, 28px);
        padding: 0 clamp(16px, 2vw, 28px);
        white-space: nowrap
    }

    .marquee-item span {
        font-family: Georgia, serif;
        font-size: clamp(1rem, 1.5vw, 1.2rem);
        font-weight: 600;
        color: rgba(255, 231, 127, 0.847);
        text-transform: uppercase;
        letter-spacing: clamp(2px, 0.5vw, 4px)
    }

    .marquee-diamond {
        width: 6px;
        height: 6px;
        background: var(--copper);
        transform: rotate(45deg);
        flex-shrink: 0
    }

    /* Sections */
    section {
        padding: clamp(60px, 8vw, 110px) clamp(var(--pad-xs), 5vw, var(--pad-xl));
        position: relative
    }

    .section-header {
        margin-bottom: clamp(40px, 5vw, 70px)
    }

    .section-tag {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        margin-bottom: 14px
    }

    .section-tag-line {
        width: 30px;
        height: 2px;
        background: var(--copper);
        flex-shrink: 0
    }

    .section-tag span {
        color: var(--copper);
        font-size: clamp(0.65rem, 0.9vw, 0.72rem);
        font-weight: 600;
        letter-spacing: 3px;
        text-transform: uppercase;
        white-space: nowrap
    }

    .section-title {
        font-family: Georgia, serif;
        font-size: clamp(1.6rem, 4vw, 3rem);
        font-weight: 700;
        color: var(--text-dark);
        line-height: 1.15;
        margin-bottom: 14px;
        word-break: break-word
    }

    .section-title .accent {
        background: linear-gradient(135deg, var(--copper), var(--copper-light));
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text
    }

    .section-desc {
        color: var(--text-medium);
        font-size: clamp(0.9rem, 1.3vw, 1.02rem);
        max-width: 560px;
        line-height: 1.7
    }

    /* About */
    #about {
        background: var(--cream)
    }

    .about-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: clamp(30px, 5vw, 70px);
        align-items: center
    }

    .about-image-wrap {
        position: relative;
        min-height: 300px
    }

    .about-img {
        width: 100%;
        height: clamp(280px, 40vw, 460px);
        object-fit: cover;
        border-radius: 14px;
        box-shadow: 0 20px 50px rgba(0, 0, 0, .12)
    }

    .about-border {
        position: absolute;
        inset: -12px;
        border: 2px solid var(--copper);
        border-radius: 18px;
        z-index: -1;
        opacity: .35
    }

    .about-badge {
        position: absolute;
        bottom: -16px;
        right: clamp(-16px, -2vw, 0);
        background: linear-gradient(135deg, var(--copper), var(--copper-light));
        color: var(--white);
        padding: clamp(12px, 1.5vw, 18px) clamp(14px, 2vw, 22px);
        border-radius: 12px;
        text-align: center;
        box-shadow: 0 10px 30px rgba(184, 115, 51, .3)
    }

    .about-badge .num {
        font-family: Georgia, serif;
        font-size: clamp(1.5rem, 2.5vw, 2rem);
        font-weight: 700;
        line-height: 1
    }

    .about-badge .txt {
        font-size: clamp(0.55rem, 0.8vw, 0.62rem);
        font-weight: 600;
        letter-spacing: 2px;
        text-transform: uppercase;
        margin-top: 4px;
        white-space: nowrap
    }

    .about-content h3 {
        font-family: Georgia, serif;
        font-size: clamp(1rem, 1.5vw, 1.1rem);
        color: var(--copper);
        margin-bottom: 14px;
        letter-spacing: 1px
    }

    .about-content h2 {
        font-family: Georgia, serif;
        font-size: clamp(1.5rem, 3.5vw, 2.4rem);
        font-weight: 700;
        line-height: 1.15;
        margin-bottom: 16px;
        word-break: break-word
    }

    .about-content p {
        color: var(--text-medium);
        line-height: 1.8;
        margin-bottom: 14px;
        font-size: clamp(0.9rem, 1.2vw, 1rem)
    }

    .about-features {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: clamp(10px, 1.5vw, 14px);
        margin-top: clamp(20px, 3vw, 26px)
    }

    .about-feat {
        display: flex;
        align-items: center;
        gap: 12px;
        padding: clamp(10px, 1.5vw, 14px) clamp(12px, 1.5vw, 16px);
        background: var(--warm-white);
        border-radius: 10px;
        border-left: 3px solid var(--copper);
        transition: transform .3s ease, box-shadow .3s ease
    }

    .about-feat:hover {
        transform: translateX(5px);
        box-shadow: 0 8px 20px rgba(0, 0, 0, .06)
    }

    .about-feat-icon {
        width: 32px;
        height: 32px;
        flex-shrink: 0;
        background: rgba(184, 115, 51, .1);
        border-radius: 8px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: .9rem
    }

    .about-feat span {
        font-size: clamp(0.75rem, 1vw, 0.82rem);
        font-weight: 600;
        white-space: nowrap
    }

    .about-counters {
        display: flex;
        gap: clamp(20px, 3vw, 36px);
        margin-top: clamp(20px, 3vw, 28px);
        padding-top: clamp(20px, 3vw, 26px);
        border-top: 1px solid var(--warm-beige);
        flex-wrap: wrap
    }

    .about-counter .num {
        font-family: Georgia, serif;
        font-size: clamp(1.5rem, 2.5vw, 2rem);
        font-weight: 700;
        color: var(--copper)
    }

    .about-counter .label {
        font-size: clamp(0.65rem, 0.9vw, 0.72rem);
        color: var(--text-light);
        margin-top: 4px;
        white-space: nowrap
    }

    /* Projects */
    #projects {
        background: var(--charcoal);
        color: var(--white)
    }

    #projects .section-title {
        color: var(--white)
    }

    #projects .section-desc {
        color: rgba(255, 255, 255, .55)
    }

    .projects-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr));
        gap: clamp(16px, 2vw, 22px)
    }

    .project-card {
        background: rgba(255, 255, 255, .03);
        border: 1px solid rgba(255, 255, 255, .07);
        border-radius: 14px;
        padding: clamp(24px, 3vw, 34px) clamp(18px, 2vw, 24px);
        text-align: center;
        transition: all .4s cubic-bezier(.25, 1, .5, 1);
        position: relative;
        overflow: hidden
    }

    .project-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 3px;
        background: linear-gradient(90deg, var(--copper), var(--copper-light));
        transform: scaleX(0);
        transform-origin: left;
        transition: transform .4s ease
    }

    .project-card:hover::before {
        transform: scaleX(1)
    }

    .project-card:hover {
        background: rgba(255, 255, 255, .06);
        border-color: rgba(184, 115, 51, .3);
        transform: translateY(-6px);
        box-shadow: 0 15px 40px rgba(0, 0, 0, .3)
    }

    .project-icon {
        width: clamp(48px, 6vw, 60px);
        height: clamp(48px, 6vw, 60px);
        margin: 0 auto clamp(12px, 1.5vw, 18px);
        background: linear-gradient(135deg, rgba(184, 115, 51, .2), rgba(184, 115, 51, .05));
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: clamp(1.2rem, 2vw, 1.6rem)
    }

    .project-num {
        font-family: Georgia, serif;
        font-size: clamp(1.8rem, 3vw, 2.4rem);
        font-weight: 700;
        color: var(--copper-light);
        line-height: 1;
        margin-bottom: 8px
    }

    .project-card h3 {
        font-family: Georgia, serif;
        font-size: clamp(0.9rem, 1.2vw, 1rem);
        margin-bottom: 8px;
        color: var(--white);
        word-break: break-word
    }

    .project-card p {
        color: rgba(255, 255, 255, .5);
        font-size: clamp(0.78rem, 1vw, 0.84rem);
        line-height: 1.6
    }

    .oven-banner {
        grid-column: 1 / -1;
        background: linear-gradient(135deg, rgba(184, 115, 51, .15), rgba(184, 115, 51, .05));
        border: 1px solid rgba(184, 115, 51, .25);
        border-radius: 16px;
        padding: clamp(20px, 3vw, 28px);
        display: flex;
        align-items: center;
        justify-content: center;
        gap: clamp(20px, 3vw, 30px);
        margin-top: 10px;
        flex-wrap: wrap
    }

    .oven-banner svg {
        width: clamp(48px, 6vw, 60px);
        height: clamp(48px, 6vw, 60px);
        color: var(--copper-light);
        flex-shrink: 0
    }

    .oven-info {
        max-width: 600px
    }

    .oven-info h3 {
        font-family: Georgia, serif;
        font-size: clamp(1rem, 1.5vw, 1.3rem);
        color: var(--white);
        margin-bottom: 6px;
        word-break: break-word
    }

    .oven-info p {
        color: rgba(255, 255, 255, .6);
        font-size: clamp(0.82rem, 1.1vw, 0.9rem);
        line-height: 1.6
    }

    /* Services */
    #services {
        background: var(--charcoal);
        color: var(--white)
    }

    #services .section-title {
        color: var(--white)
    }

    #services .section-desc {
        color: rgba(255, 255, 255, .55)
    }

    .services-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
        gap: clamp(16px, 2vw, 22px)
    }

    .service-card {
        background: rgba(255, 255, 255, .03);
        border: 1px solid rgba(255, 255, 255, .07);
        border-radius: 14px;
        padding: clamp(24px, 3vw, 34px) clamp(20px, 2.5vw, 28px);
        transition: all .4s cubic-bezier(.25, 1, .5, 1);
        position: relative;
        overflow: hidden
    }

    .service-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 3px;
        background: linear-gradient(90deg, var(--copper), var(--copper-light));
        transform: scaleX(0);
        transform-origin: left;
        transition: transform .4s ease
    }

    .service-card:hover::before {
        transform: scaleX(1)
    }

    .service-card:hover {
        background: rgba(255, 255, 255, .06);
        border-color: rgba(184, 115, 51, .3);
        transform: translateY(-6px);
        box-shadow: 0 15px 40px rgba(0, 0, 0, .3)
    }

    .service-icon {
        width: clamp(44px, 5vw, 52px);
        height: clamp(44px, 5vw, 52px);
        background: linear-gradient(135deg, rgba(184, 115, 51, .2), rgba(184, 115, 51, .05));
        border-radius: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: clamp(1.1rem, 1.5vw, 1.3rem);
        margin-bottom: clamp(14px, 2vw, 20px)
    }

    .service-card h3 {
        font-family: Georgia, serif;
        font-size: clamp(1rem, 1.3vw, 1.15rem);
        margin-bottom: 10px;
        word-break: break-word
    }

    .service-card p {
        color: rgba(255, 255, 255, .5);
        font-size: clamp(0.82rem, 1vw, 0.88rem);
        line-height: 1.65;
        margin-bottom: clamp(12px, 1.5vw, 16px)
    }

    .service-link {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        color: var(--copper-light);
        font-size: clamp(0.65rem, 0.9vw, 0.72rem);
        font-weight: 600;
        text-decoration: none;
        letter-spacing: 1px;
        text-transform: uppercase;
        transition: gap .3s ease;
        white-space: nowrap
    }

    .service-link:hover {
        gap: 12px
    }

    /* Weather */
    #weather {
        background: var(--beige)
    }

    .weather-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: clamp(30px, 5vw, 60px);
        align-items: center
    }

    .weather-img-wrap {
        position: relative
    }

    .weather-img {
        width: 100%;
        height: clamp(260px, 35vw, 440px);
        object-fit: cover;
        border-radius: 14px;
        box-shadow: 0 20px 50px rgba(0, 0, 0, .12)
    }

    .weather-border {
        position: absolute;
        inset: -12px;
        border: 2px solid var(--copper);
        border-radius: 18px;
        z-index: -1;
        opacity: .35
    }

    .weather-content h3 {
        font-family: Georgia, serif;
        font-size: clamp(1rem, 1.5vw, 1.1rem);
        color: var(--copper);
        margin-bottom: 14px;
        letter-spacing: 1px
    }

    .weather-content h2 {
        font-family: Georgia, serif;
        font-size: clamp(1.4rem, 3vw, 2.2rem);
        font-weight: 700;
        line-height: 1.2;
        margin-bottom: 16px;
        word-break: break-word
    }

    .weather-content p {
        color: var(--text-medium);
        line-height: 1.8;
        margin-bottom: 16px;
        font-size: clamp(0.9rem, 1.2vw, 1rem)
    }

    .weather-list {
        display: flex;
        flex-direction: column;
        gap: clamp(10px, 1.5vw, 14px);
        margin-top: clamp(16px, 2vw, 20px)
    }

    .weather-item {
        display: flex;
        align-items: flex-start;
        gap: clamp(10px, 1.5vw, 14px);
        padding: clamp(12px, 1.5vw, 16px);
        background: var(--warm-white);
        border-radius: 10px;
        border-left: 3px solid var(--copper)
    }

    .weather-icon {
        width: clamp(32px, 4vw, 36px);
        height: clamp(32px, 4vw, 36px);
        flex-shrink: 0;
        background: linear-gradient(135deg, var(--copper), var(--copper-light));
        border-radius: 8px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--white);
        font-size: clamp(0.8rem, 1.2vw, 1rem)
    }

    .weather-item div h4 {
        font-size: clamp(0.82rem, 1vw, 0.9rem);
        font-weight: 600;
        margin-bottom: 4px
    }

    .weather-item div p {
        font-size: clamp(0.75rem, 0.9vw, 0.82rem);
        color: var(--text-medium);
        margin: 0;
        line-height: 1.5
    }

    /* Process */
    #process {
        background: var(--beige)
    }

    .process-steps {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(min(100%, 220px), 1fr));
        gap: clamp(20px, 3vw, 28px);
        position: relative
    }

    .process-steps::before {
        content: '';
        position: absolute;
        top: 40px;
        left: clamp(40px, 5vw, 55px);
        right: clamp(40px, 5vw, 55px);
        height: 2px;
        background: linear-gradient(90deg, var(--copper), var(--copper-light), var(--copper));
        display: none
    }

    .process-step {
        text-align: center;
        position: relative
    }

    .process-num {
        width: clamp(60px, 7vw, 80px);
        height: clamp(60px, 7vw, 80px);
        margin: 0 auto clamp(12px, 1.5vw, 16px);
        background: var(--white);
        border: 2px solid var(--copper);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-family: Georgia, serif;
        font-size: clamp(1.2rem, 2vw, 1.6rem);
        font-weight: 700;
        color: var(--copper);
        position: relative;
        z-index: 2;
        transition: all .3s ease
    }

    .process-step:hover .process-num {
        background: var(--copper);
        color: var(--white);
        transform: scale(1.1);
        box-shadow: 0 10px 30px rgba(184, 115, 51, .3)
    }

    .process-step h3 {
        font-family: Georgia, serif;
        font-size: clamp(0.95rem, 1.2vw, 1.05rem);
        margin-bottom: 8px;
        word-break: break-word
    }

    .process-step p {
        color: var(--text-medium);
        font-size: clamp(0.78rem, 1vw, 0.84rem);
        line-height: 1.6
    }

    /* Gallery */
    #gallery {
        background: var(--cream)
    }

    .gallery-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
        gap: clamp(12px, 1.5vw, 16px)
    }

    .gallery-item {
        position: relative;
        border-radius: 12px;
        overflow: hidden;
        cursor: pointer;
        background: var(--warm-beige);
        min-height: clamp(180px, 25vw, 250px);
        border: 3px solid rgba(184, 115, 51, 0.3);
        box-shadow: 0 4px 15px rgba(0,0,0,0.08);
        transition: border-color .3s ease, box-shadow .3s ease
    }

    .gallery-item:first-child {
        grid-row: span 2
    }

    .gallery-item img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform .5s cubic-bezier(.25, 1, .5, 1);
        min-height: 180px
    }

    .gallery-item:hover img {
        transform: scale(1.13)
    }

    .gallery-item:hover {
        border-color: var(--copper);
        box-shadow: 0 8px 30px rgba(184, 115, 51, 0.25)
    }

    .gallery-overlay {
        position: absolute;
        inset: 0;
        background: linear-gradient(to top, rgba(26, 26, 31, .92) 0%, transparent 60%);
        display: flex;
        align-items: flex-end;
        padding: clamp(16px, 2vw, 22px);
        opacity: 0;
        transition: opacity .3s ease
    }

    .gallery-item:hover .gallery-overlay {
        opacity: 1
    }

    .gallery-overlay h4 {
        font-family: Georgia, serif;
        font-size: clamp(0.9rem, 1.2vw, 1rem);
        font-weight: 600;
        color: var(--white)
    }

    .gallery-overlay p {
        color: var(--copper-light);
        font-size: clamp(0.65rem, 0.9vw, 0.72rem);
        margin-top: 4px
    }

    /* Why Us */
    #why {
        background: var(--charcoal);
        color: var(--white)
    }

    #why .section-title {
        color: var(--white)
    }

    #why .section-desc {
        color: rgba(255, 255, 255, .55)
    }

    .why-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(min(100%, 240px), 1fr));
        gap: clamp(16px, 2vw, 22px)
    }

    .why-card {
        padding: clamp(24px, 3vw, 32px) clamp(18px, 2vw, 22px);
        text-align: center;
        background: rgba(255, 255, 255, .03);
        border: 1px solid rgba(255, 255, 255, .06);
        border-radius: 14px;
        transition: all .4s ease
    }

    .why-card:hover {
        background: rgba(184, 115, 51, .06);
        border-color: rgba(184, 115, 51, .2);
        transform: translateY(-8px)
    }

    .why-icon {
        width: clamp(48px, 6vw, 56px);
        height: clamp(48px, 6vw, 56px);
        margin: 0 auto clamp(10px, 1.5vw, 14px);
        background: linear-gradient(135deg, rgba(184, 115, 51, .2), rgba(184, 115, 51, .05));
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: clamp(1.1rem, 1.5vw, 1.3rem)
    }

    .why-card h3 {
        font-family: Georgia, serif;
        font-size: clamp(0.9rem, 1.2vw, 1.02rem);
        margin-bottom: 8px;
        color: var(--copper-light);
        word-break: break-word
    }

    .why-card p {
        color: rgba(255, 255, 255, .5);
        font-size: clamp(0.78rem, 1vw, 0.84rem);
        line-height: 1.6
    }

    /* Owner */
    #owner {
        background: var(--cream)
    }

    .owner-grid {
        display: grid;
        grid-template-columns: clamp(260px, 40vw, 380px) 1fr;
        gap: clamp(30px, 5vw, 60px);
        align-items: center
    }

    .owner-img-wrap {
        position: relative;
        display: flex;
        justify-content: center;
        width: 100%
    }

    .owner-img {
        width: 100%;
        max-width: 380px;
        height: clamp(320px, 40vw, 480px);
        object-fit: cover;
        border-radius: 16px;
        box-shadow: 0 25px 60px rgba(0, 0, 0, .15)
    }

    .owner-frame {
        position: absolute;
        inset: clamp(-12px, -1.5vw, -15px);
        border: 3px solid var(--copper);
        border-radius: 20px;
        z-index: -1;
        opacity: .3
    }

    .owner-badge {
        position: absolute;
        bottom: clamp(-16px, -2vw, -20px);
        left: 50%;
        transform: translateX(-50%);
        background: linear-gradient(135deg, var(--copper), var(--copper-light));
        color: var(--white);
        padding: clamp(10px, 1.5vw, 14px) clamp(20px, 3vw, 28px);
        border-radius: 12px;
        text-align: center;
        box-shadow: 0 10px 30px rgba(184, 115, 51, .4);
        white-space: nowrap
    }

    .owner-badge .name {
        font-family: Georgia, serif;
        font-size: clamp(1rem, 1.5vw, 1.2rem);
        font-weight: 700
    }

    .owner-badge .title {
        font-size: clamp(0.6rem, 0.9vw, 0.7rem);
        letter-spacing: 2px;
        text-transform: uppercase;
        margin-top: 2px;
        opacity: .9
    }

    .owner-content h3 {
        font-family: Georgia, serif;
        font-size: clamp(1rem, 1.5vw, 1.1rem);
        color: var(--copper);
        margin-bottom: 14px;
        letter-spacing: 1px
    }

    .owner-content h2 {
        font-family: Georgia, serif;
        font-size: clamp(1.5rem, 3.5vw, 2.4rem);
        font-weight: 700;
        line-height: 1.15;
        margin-bottom: clamp(14px, 2vw, 20px);
        word-break: break-word
    }

    .owner-content p {
        color: var(--text-medium);
        line-height: 1.8;
        margin-bottom: clamp(12px, 1.5vw, 16px);
        font-size: clamp(0.9rem, 1.2vw, 1.05rem)
    }

    .owner-stats {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(min(100%, 200px), 1fr));
        gap: clamp(14px, 1.5vw, 18px);
        margin-top: clamp(20px, 3vw, 28px)
    }

    .owner-stat {
        background: var(--warm-white);
        padding: clamp(14px, 2vw, 20px);
        border-radius: 12px;
        border-left: 4px solid var(--copper)
    }

    .owner-stat .ico {
        font-size: clamp(1.1rem, 1.5vw, 1.4rem);
        margin-bottom: 8px
    }

    .owner-stat h4 {
        font-family: Georgia, serif;
        font-size: clamp(0.95rem, 1.2vw, 1.1rem);
        color: var(--text-dark);
        margin-bottom: 4px;
        word-break: break-word
    }

    .owner-stat p {
        font-size: clamp(0.72rem, 0.9vw, 0.82rem);
        color: var(--text-medium);
        margin: 0;
        line-height: 1.5
    }

    .owner-quote {
        margin-top: clamp(20px, 3vw, 28px);
        padding: clamp(16px, 2vw, 24px);
        background: var(--warm-white);
        border-radius: 14px;
        border-left: 4px solid var(--copper);
        font-style: italic;
        color: var(--text-medium);
        line-height: 1.8;
        font-size: clamp(0.88rem, 1.1vw, 1rem)
    }

    .owner-quote span {
        display: block;
        font-size: clamp(0.78rem, 1vw, 0.85rem);
        color: var(--copper);
        font-style: normal;
        font-weight: 600;
        margin-top: 10px
    }

    /* Reviews */
    #reviews {
        background: var(--beige);
        overflow: hidden
    }

    .reviews-wrap {
        max-width: 920px;
        margin: 0 auto;
        position: relative;
        width: 100%
    }

    .reviews-slider {
        overflow: hidden
    }

    .reviews-track {
        display: flex;
        transition: transform .6s cubic-bezier(.25, 1, .5, 1)
    }

    .review-slide {
        min-width: 100%;
        padding: 0 clamp(8px, 1vw, 10px)
    }

    .review-card {
        background: var(--white);
        border: 1px solid var(--warm-beige);
        border-radius: 18px;
        padding: clamp(24px, 4vw, 42px);
        position: relative
    }

    .review-quote {
        position: absolute;
        top: clamp(14px, 2vw, 20px);
        right: clamp(14px, 2vw, 28px);
        font-size: clamp(2rem, 4vw, 3.5rem);
        color: rgba(184, 115, 51, .12);
        font-family: serif;
        line-height: 1
    }

    .review-stars {
        display: flex;
        gap: 4px;
        margin-bottom: clamp(12px, 1.5vw, 16px)
    }

    .review-stars span {
        color: var(--copper);
        font-size: clamp(0.8rem, 1.2vw, 1rem)
    }

    .review-text {
        font-size: clamp(0.9rem, 1.2vw, 1.08rem);
        line-height: 1.75;
        color: var(--text-dark);
        margin-bottom: clamp(16px, 2vw, 22px);
        font-style: italic
    }

    .review-author {
        display: flex;
        align-items: center;
        gap: clamp(10px, 1.5vw, 14px);
        flex-wrap: wrap
    }

    .review-avatar {
        width: clamp(40px, 5vw, 48px);
        height: clamp(40px, 5vw, 48px);
        border-radius: 50%;
        background: linear-gradient(135deg, var(--copper), var(--copper-light));
        display: flex;
        align-items: center;
        justify-content: center;
        font-family: Georgia, serif;
        font-weight: 700;
        font-size: clamp(0.8rem, 1vw, 0.95rem);
        color: var(--white);
        flex-shrink: 0
    }

    .review-author h4 {
        font-family: Georgia, serif;
        font-size: clamp(0.85rem, 1vw, 0.95rem);
        font-weight: 600
    }

    .review-author p {
        color: var(--text-light);
        font-size: clamp(0.7rem, 0.9vw, 0.78rem)
    }

    .review-tags {
        display: flex;
        gap: clamp(6px, 1vw, 8px);
        flex-wrap: wrap;
        margin-top: clamp(10px, 1.5vw, 14px)
    }

    .review-tag {
        padding: clamp(3px, 0.5vw, 4px) clamp(8px, 1vw, 12px);
        background: rgba(184, 115, 51, .1);
        border-radius: 20px;
        font-size: clamp(0.6rem, 0.8vw, 0.68rem);
        color: var(--copper);
        font-weight: 600;
        white-space: nowrap
    }

    .review-controls {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: clamp(14px, 2vw, 18px);
        margin-top: clamp(24px, 3vw, 34px);
        flex-wrap: wrap
    }

    .review-btn {
        width: clamp(40px, 5vw, 46px);
        height: clamp(40px, 5vw, 46px);
        border-radius: 50%;
        border: 2px solid var(--copper);
        background: transparent;
        color: var(--copper);
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: clamp(0.9rem, 1.2vw, 1.1rem);
        transition: all .3s ease;
        min-width: 44px;
        min-height: 44px
    }

    .review-btn:hover {
        background: var(--copper);
        color: var(--white)
    }

    .review-dots {
        display: flex;
        gap: clamp(5px, 0.8vw, 7px);
        flex-wrap: wrap;
        justify-content: center
    }

    .review-dot {
        width: 7px;
        height: 7px;
        border-radius: 50%;
        background: var(--sand);
        cursor: pointer;
        transition: all .3s ease;
        min-width: 7px;
        min-height: 7px
    }

    .review-dot.active {
        background: var(--copper);
        width: clamp(18px, 3vw, 22px);
        border-radius: 4px
    }

    /* CTA */
    #cta {
        padding: clamp(60px, 8vw, 90px) clamp(24px, 5vw, 80px);
        text-align: center;
        background: linear-gradient(135deg, var(--copper), var(--copper-light), var(--copper-dark));
        position: relative;
        overflow: hidden
    }

    #cta::before {
        content: '';
        position: absolute;
        inset: 0;
        background: repeating-linear-gradient(45deg, transparent, transparent 10px, rgba(255, 255, 255, .03) 10px, rgba(255, 255, 255, .03) 20px);
        animation: pattern 20s linear infinite
    }

    @keyframes pattern {
        0% {
            transform: translate(0, 0)
        }

        100% {
            transform: translate(40px, 40px)
        }
    }

    .cta-inner {
        position: relative;
        z-index: 2;
        max-width: 700px;
        margin: 0 auto
    }

    .cta-inner h2 {
        font-family: Georgia, serif;
        font-size: clamp(1.5rem, 4vw, 3rem);
        font-weight: 700;
        color: var(--white);
        margin-bottom: clamp(10px, 1.5vw, 14px);
        word-break: break-word
    }

    .cta-inner p {
        color: rgba(255, 255, 255, .8);
        font-size: clamp(0.9rem, 1.3vw, 1.05rem);
        margin-bottom: clamp(24px, 3vw, 32px)
    }

    .btn-dark {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        background: var(--charcoal);
        color: var(--copper-light);
        padding: clamp(14px, 1.5vw, 18px) clamp(24px, 3vw, 38px);
        border-radius: 8px;
        font-weight: 700;
        font-size: clamp(0.75rem, 1vw, 0.85rem);
        text-decoration: none;
        letter-spacing: .5px;
        text-transform: uppercase;
        border: none;
        cursor: pointer;
        transition: all .3s ease;
        white-space: nowrap;
        min-height: 48px
    }

    .btn-dark:hover {
        transform: translateY(-3px);
        box-shadow: 0 15px 40px rgba(0, 0, 0, .3)
    }

    /* Contact */
    #contact {
        background: var(--cream)
    }

    .contact-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: clamp(30px, 5vw, 55px);
        align-items: start
    }

    .contact-info h3 {
        font-family: Georgia, serif;
        font-size: clamp(1.4rem, 3vw, 1.9rem);
        font-weight: 700;
        margin-bottom: clamp(10px, 1.5vw, 14px);
        word-break: break-word
    }

    .contact-info>p {
        color: var(--text-medium);
        line-height: 1.7;
        margin-bottom: clamp(20px, 3vw, 30px);
        font-size: clamp(0.88rem, 1.1vw, 0.95rem)
    }

    .contact-item {
        display: flex;
        align-items: flex-start;
        gap: clamp(12px, 1.5vw, 16px);
        margin-bottom: clamp(14px, 1.5vw, 20px);
        padding: clamp(14px, 1.5vw, 18px);
        background: var(--warm-white);
        border: 1px solid var(--warm-beige);
        border-radius: 12px;
        transition: all .3s ease
    }

    .contact-item:hover {
        transform: translateX(8px);
        box-shadow: 0 8px 25px rgba(0, 0, 0, .06)
    }

    .contact-icon {
        width: clamp(38px, 4.5vw, 44px);
        height: clamp(38px, 4.5vw, 44px);
        flex-shrink: 0;
        background: linear-gradient(135deg, var(--copper), var(--copper-light));
        border-radius: 10px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: clamp(0.9rem, 1.2vw, 1.1rem);
        color: var(--white)
    }

    .contact-item h4 {
        font-size: clamp(0.65rem, 0.9vw, 0.75rem);
        font-weight: 600;
        letter-spacing: 1px;
        text-transform: uppercase;
        color: var(--copper);
        margin-bottom: 4px
    }

    .contact-item p,
    .contact-item a {
        font-size: clamp(0.82rem, 1vw, 0.9rem);
        color: var(--text-medium);
        text-decoration: none;
        line-height: 1.6;
        word-break: break-word
    }

    .contact-item a:hover {
        color: var(--copper)
    }

    .address-box {
        background: linear-gradient(135deg, rgba(184, 115, 51, .12), rgba(184, 115, 51, .05));
        border: 2px solid rgba(184, 115, 51, .3);
        padding: clamp(12px, 1.5vw, 16px);
        border-radius: 12px;
        margin-bottom: clamp(14px, 1.5vw, 20px)
    }

    .contact-form {
        background: var(--warm-white);
        border: 1px solid var(--warm-beige);
        border-radius: 18px;
        padding: clamp(24px, 3vw, 36px);
        box-shadow: 0 15px 40px rgba(0, 0, 0, .04)
    }

    .contact-form h3 {
        font-family: Georgia, serif;
        font-size: clamp(1.2rem, 2vw, 1.35rem);
        font-weight: 700;
        margin-bottom: clamp(16px, 2vw, 22px)
    }

    .form-row {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: clamp(12px, 1.5vw, 18px);
        margin-bottom: clamp(12px, 1.5vw, 18px)
    }

    .form-group {
        margin-bottom: clamp(12px, 1.5vw, 18px)
    }

    .form-group label {
        display: block;
        font-size: clamp(0.62rem, 0.85vw, 0.72rem);
        font-weight: 600;
        letter-spacing: 1px;
        text-transform: uppercase;
        color: var(--text-medium);
        margin-bottom: 8px
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        width: 100%;
        padding: clamp(12px, 1.5vw, 14px) clamp(14px, 1.5vw, 18px);
        background: var(--beige);
        border: 1.5px solid var(--warm-beige);
        border-radius: 10px;
        color: var(--text-dark);
        font-family: 'Segoe UI', system-ui, sans-serif;
        font-size: clamp(0.85rem, 1vw, 0.9rem);
        outline: none;
        transition: border-color .3s ease;
        min-height: 44px
    }

    .form-group input:focus,
    .form-group select:focus,
    .form-group textarea:focus {
        border-color: var(--copper)
    }

    .form-group textarea {
        resize: vertical;
        min-height: clamp(80px, 10vw, 120px)
    }

    .form-submit {
        width: 100%;
        padding: clamp(14px, 1.5vw, 16px);
        background: linear-gradient(135deg, var(--copper), var(--copper-light));
        color: var(--white);
        border: none;
        border-radius: 10px;
        font-family: 'Segoe UI', system-ui, sans-serif;
        font-size: clamp(0.8rem, 1vw, 0.85rem);
        font-weight: 700;
        letter-spacing: .5px;
        text-transform: uppercase;
        cursor: pointer;
        transition: all .3s ease;
        min-height: 48px
    }

    .form-submit:hover {
        transform: translateY(-2px);
        box-shadow: 0 10px 30px rgba(184, 115, 51, .3)
    }

    /* Map */
    #map-section {
        padding: 0;
        height: clamp(280px, 40vw, 400px);
        position: relative;
        overflow: hidden
    }

    #map-section iframe {
        width: 100%;
        height: 100%;
        border: none;
        filter: grayscale(.3) contrast(1.05)
    }

    .map-overlay {
        position: absolute;
        top: clamp(16px, 2vw, 30px);
        left: clamp(16px, 2vw, 30px);
        background: rgba(255, 255, 255, .96);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        padding: clamp(18px, 2vw, 24px);
        border-radius: 14px;
        box-shadow: 0 15px 40px rgba(0, 0, 0, .12);
        max-width: clamp(220px, 50vw, 280px);
        width: calc(100% - clamp(32px, 4vw, 60px))
    }

    .map-overlay h3 {
        font-family: Georgia, serif;
        font-size: clamp(0.85rem, 1.2vw, 1rem);
        font-weight: 700;
        margin-bottom: 8px
    }

    .map-overlay p {
        color: var(--text-medium);
        font-size: clamp(0.72rem, 0.9vw, 0.8rem);
        line-height: 1.5;
        margin-bottom: 12px
    }

    .map-overlay a {
        color: var(--copper);
        font-size: clamp(0.72rem, 0.9vw, 0.8rem);
        font-weight: 600;
        text-decoration: none
    }

    /* Footer */
    footer {
        background: var(--charcoal);
        padding: clamp(40px, 6vw, 70px) clamp(var(--pad-xs), 5vw, var(--pad-xl)) clamp(20px, 3vw, 28px);
        color: var(--white);
        border-top: 3px solid var(--copper)
    }

    .footer-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(min(100%, 220px), 1fr));
        gap: clamp(30px, 4vw, 45px);
        margin-bottom: clamp(30px, 4vw, 50px)
    }

    .footer-brand .nav-logo {
        margin-bottom: clamp(12px, 1.5vw, 16px)
    }

    .footer-brand p {
        color: rgba(255, 255, 255, .5);
        font-size: clamp(0.8rem, 1vw, 0.88rem);
        line-height: 1.6;
        margin-bottom: clamp(14px, 1.5vw, 18px)
    }

    .footer-social {
        display: flex;
        gap: clamp(8px, 1vw, 10px);
        flex-wrap: wrap
    }

    .footer-social a {
        width: clamp(36px, 4.5vw, 40px);
        height: clamp(36px, 4.5vw, 40px);
        border: 1px solid rgba(255, 255, 255, .1);
        border-radius: 8px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--white);
        text-decoration: none;
        font-size: clamp(0.75rem, 0.9vw, 0.85rem);
        transition: all .3s ease;
        min-width: 44px;
        min-height: 44px
    }

    .footer-social a:hover {
        border-color: var(--copper);
        background: var(--copper);
        color: var(--charcoal)
    }

    .footer-col h4 {
        font-family: Georgia, serif;
        font-size: clamp(0.75rem, 1vw, 0.82rem);
        font-weight: 700;
        letter-spacing: 1px;
        text-transform: uppercase;
        color: var(--copper-light);
        margin-bottom: clamp(14px, 1.5vw, 18px)
    }

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

    .footer-col li {
        margin-bottom: clamp(8px, 1vw, 10px)
    }

    .footer-col a {
        color: rgba(255, 255, 255, .5);
        text-decoration: none;
        font-size: clamp(0.8rem, 1vw, 0.88rem);
        transition: all .3s ease;
        display: block;
        padding: 2px 0
    }

    .footer-col a:hover {
        color: var(--copper-light);
        padding-left: 5px
    }

    .footer-news p {
        color: rgba(255, 255, 255, .5);
        font-size: clamp(0.78rem, 1vw, 0.85rem);
        line-height: 1.6;
        margin-bottom: clamp(10px, 1.5vw, 14px)
    }

    .news-form {
        display: flex;
        gap: clamp(8px, 1vw, 10px);
        flex-wrap: wrap
    }

    .news-form input {
        flex: 1;
        min-width: 120px;
        padding: clamp(10px, 1.2vw, 12px) clamp(12px, 1.5vw, 16px);
        background: rgba(255, 255, 255, .05);
        border: 1px solid rgba(255, 255, 255, .1);
        border-radius: 8px;
        color: var(--white);
        font-family: 'Segoe UI', system-ui, sans-serif;
        font-size: clamp(0.78rem, 1vw, 0.85rem);
        outline: none;
        min-height: 44px
    }

    .news-form input:focus {
        border-color: var(--copper)
    }

    .news-form input::placeholder {
        color: rgba(255, 255, 255, .3)
    }

    .news-form button {
        padding: clamp(10px, 1.2vw, 12px) clamp(14px, 1.5vw, 20px);
        background: var(--copper);
        color: var(--white);
        border: none;
        border-radius: 8px;
        font-weight: 700;
        font-size: clamp(0.72rem, 0.9vw, 0.8rem);
        cursor: pointer;
        transition: background .3s ease;
        min-height: 44px;
        white-space: nowrap
    }

    .news-form button:hover {
        background: var(--copper-light)
    }

    .footer-bottom {
        border-top: 1px solid rgba(255, 255, 255, .08);
        padding-top: clamp(20px, 3vw, 26px);
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
        gap: clamp(10px, 1.5vw, 12px)
    }

    .footer-bottom p {
        color: rgba(255, 255, 255, .35);
        font-size: clamp(0.7rem, 0.9vw, 0.78rem);
        text-align: center
    }

    .footer-bottom a {
        color: var(--copper-light);
        text-decoration: none;
        white-space: nowrap
    }

    /* WhatsApp */
    .wa-btn {
        position: fixed;
        bottom: clamp(16px, 2vw, 30px);
        right: clamp(16px, 2vw, 30px);
        width: 54px;
        height: 54px;
        background: #25d366;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        z-index: 999;
        box-shadow: 0 6px 20px rgba(37, 211, 102, .4);
        transition: transform .3s ease;
        text-decoration: none;
        animation: waPulse 2s infinite;
        min-width: 54px;
        min-height: 54px
    }

    @keyframes waPulse {

        0%,
        100% {
            box-shadow: 0 6px 20px rgba(37, 211, 102, .4)
        }

        50% {
            box-shadow: 0 6px 30px rgba(37, 211, 102, .6)
        }
    }

    .wa-btn:hover {
        transform: scale(1.1)
    }

    .wa-btn svg {
        width: clamp(24px, 3vw, 28px);
        height: clamp(24px, 3vw, 28px);
        fill: white
    }

    /* Back to Top */
    .back-top {
        position: fixed;
        bottom: clamp(16px, 2vw, 30px);
        right: calc(clamp(16px, 2vw, 30px) + 54px + 12px);
        width: 54px;
        height: 54px;
        background: var(--charcoal);
        border: 2px solid var(--copper);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--copper);
        font-size: 1rem;
        cursor: pointer;
        z-index: 999;
        opacity: 0;
        visibility: hidden;
        transition: all .3s ease;
        min-width: 54px;
        min-height: 54px
    }

    .back-top.visible {
        opacity: 1;
        visibility: visible
    }

    .back-top:hover {
        background: var(--copper);
        color: var(--white);
        transform: translateY(-3px)
    }

    /* Lightbox */
    .lightbox {
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, .95);
        z-index: 10000;
        display: flex;
        align-items: center;
        justify-content: center;
        opacity: 0;
        visibility: hidden;
        transition: all .3s ease;
        padding: clamp(40px, 5vw, 60px) clamp(16px, 3vw, 24px)
    }

    .lightbox.active {
        opacity: 1;
        visibility: visible
    }

    .lightbox img {
        max-width: 100%;
        max-height: 85vh;
        border-radius: 12px;
        object-fit: contain
    }

    .lightbox-close {
        position: absolute;
        top: clamp(16px, 2vw, 24px);
        right: clamp(16px, 2vw, 24px);
        width: clamp(40px, 5vw, 44px);
        height: clamp(40px, 5vw, 44px);
        background: rgba(255, 255, 255, .1);
        border: none;
        border-radius: 50%;
        color: white;
        font-size: clamp(1rem, 1.3vw, 1.2rem);
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        min-width: 44px;
        min-height: 44px
    }

    /* =========================================
   RESPONSIVE BREAKPOINTS
   ========================================= */

    /* Large Desktops (1400px+) - Default styles apply */

    /* Desktops (1200px - 1399px) */
    @media(max-width:1399px) {
        :root {
            --pad-xl: 60px
        }

        .hero-stats {
            gap: clamp(24px, 3vw, 40px)
        }

        .projects-grid {
            grid-template-columns: repeat(4, 1fr)
        }

        .services-grid {
            grid-template-columns: repeat(3, 1fr)
        }

        .why-grid {
            grid-template-columns: repeat(4, 1fr)
        }

        .footer-grid {
            grid-template-columns: 1.5fr 1fr 1fr 1.5fr
        }

        .process-steps::before {
            display: block
        }
    }

    /* Small Desktops / Large Tablets (1024px - 1199px) */
    @media(max-width:1199px) {
        :root {
            --pad-xl: 40px
        }

        nav {
            padding: 16px 32px
        }

        nav.scrolled {
            padding: 12px 32px
        }

        .nav-menu {
            gap: clamp(12px, 1.5vw, 20px)
        }

        .nav-menu a {
            font-size: 0.72rem
        }

        .hero-content {
            max-width: 700px
        }

        .hero-stats {
            right: 40px;
            gap: 24px
        }

        .hero-stat .num {
            font-size: 2rem
        }

        .projects-grid {
            grid-template-columns: repeat(2, 1fr)
        }

        .services-grid {
            grid-template-columns: repeat(2, 1fr)
        }

        .why-grid {
            grid-template-columns: repeat(2, 1fr)
        }

        .process-steps::before {
            display: none
        }

        .gallery-grid {
            grid-template-columns: repeat(2, 1fr);
            grid-template-rows: repeat(2, 220px)
        }

        .gallery-item:first-child {
            grid-row: span 2
        }

        .owner-grid {
            grid-template-columns: clamp(220px, 35vw, 300px) 1fr
        }

        .footer-grid {
            grid-template-columns: repeat(2, 1fr)
        }
    }

    /* Tablets Landscape (992px - 1023px) */
    @media(max-width:1023px) {
        :root {
            --pad-xl: 32px
        }

        .about-grid {
            gap: 40px
        }

        .weather-grid {
            gap: 40px
        }

        .contact-grid {
            gap: 40px
        }
    }

    /* Tablets Portrait (768px - 991px) */
    @media(max-width:991px) {
        :root {
            --pad-xl: 28px;
            --pad-lg: 40px;
            --pad-md: 32px;
            --pad-sm: 20px
        }

        nav {
            padding: 14px 24px
        }

        nav.scrolled {
            padding: 12px 24px
        }

        .menu-toggle {
            display: flex
        }

        .nav-menu {
            position: fixed;
            top: 0;
            right: 0;
            width: clamp(260px, 75vw, 300px);
            height: 100vh;
            height: 100dvh;
            background: var(--charcoal);
            flex-direction: column;
            justify-content: center;
            align-items: flex-start;
            padding: clamp(40px, 6vw, 60px) clamp(24px, 4vw, 40px);
            gap: clamp(16px, 2vw, 24px);
            transition: transform .35s ease;
            border-left: 1px solid rgba(255, 255, 255, .1);
            overflow-y: auto;
            z-index: 1001;
            transform: translateX(100%)
        }

        .nav-menu.active {
            transform: translateX(0)
        }

        .nav-menu a {
            font-size: 0.85rem;
            padding: 8px 0
        }

        .nav-cta {
            width: 100%;
            text-align: center;
            margin-top: 12px
        }

        .hero-content {
            padding: 0 24px
        }

        .hero-stats {
            display: none
        }

        .hero-scroll {
            left: 24px
        }

        .about-grid {
            grid-template-columns: 1fr;
            gap: clamp(30px, 4vw, 40px)
        }

        .about-image-wrap {
            min-height: clamp(220px, 30vw, 300px)
        }

        .about-img {
            height: clamp(220px, 30vw, 300px)
        }

        .about-features {
            grid-template-columns: 1fr 1fr
        }

        .projects-grid {
            grid-template-columns: repeat(2, 1fr)
        }

        .weather-grid {
            grid-template-columns: 1fr;
            gap: clamp(30px, 4vw, 40px)
        }

        .weather-img-wrap {
            order: 2
        }

        .weather-content {
            order: 1
        }

        .weather-img {
            height: clamp(200px, 30vw, 320px)
        }

        .process-steps {
            grid-template-columns: repeat(2, 1fr)
        }

        .gallery-grid {
            grid-template-columns: repeat(2, 1fr);
            grid-template-rows: clamp(180px, 25vw, 220px) clamp(180px, 25vw, 220px)
        }

        .gallery-item:first-child {
            grid-row: span 2
        }

        .owner-grid {
            grid-template-columns: 1fr;
            gap: clamp(30px, 4vw, 40px)
        }

        .owner-img-wrap {
            order: 1
        }

        .owner-content {
            order: 2
        }

        .owner-img {
            max-width: clamp(240px, 60vw, 320px);
            height: clamp(260px, 35vw, 380px)
        }

        .contact-grid {
            grid-template-columns: 1fr;
            gap: clamp(30px, 4vw, 40px)
        }

        .map-overlay {
            left: clamp(12px, 2vw, 16px);
            top: clamp(12px, 2vw, 16px);
            max-width: clamp(200px, 60vw, 250px)
        }

        #map-section {
            height: clamp(250px, 35vw, 350px)
        }

        .footer-grid {
            grid-template-columns: repeat(2, 1fr);
            gap: clamp(24px, 3vw, 36px)
        }

        .back-top {
            right: clamp(72px, 8vw, 80px)
        }
    }

    /* Large Phones (640px - 767px) */
    @media(max-width:767px) {
        :root {
            --pad-xs: 16px;
            --pad-sm: 20px;
            --pad-md: 28px
        }

        section {
            padding: clamp(40px, 7vw, 60px) var(--pad-sm)
        }

        .section-header {
            margin-bottom: clamp(30px, 5vw, 50px)
        }

        .section-desc {
            max-width: 100%
        }

        .about-features {
            grid-template-columns: 1fr
        }

        .about-counters {
            flex-direction: column;
            gap: clamp(14px, 2vw, 18px)
        }

        .about-counter {
            display: flex;
            align-items: center;
            gap: 12px
        }

        .about-counter .label {
            margin-top: 0
        }

        .projects-grid {
            grid-template-columns: 1fr
        }

        .services-grid {
            grid-template-columns: 1fr
        }

        .why-grid {
            grid-template-columns: 1fr
        }

        .process-steps {
            grid-template-columns: 1fr
        }

        .gallery-grid {
            grid-template-columns: 1fr;
            grid-template-rows: auto
        }

        .gallery-item {
            min-height: clamp(160px, 40vw, 200px)
        }

        .gallery-item:first-child {
            grid-row: span 1
        }

        .gallery-item img {
            min-height: 160px
        }

        .gallery-overlay {
            opacity: 1;
            background: linear-gradient(to top, rgba(26, 26, 31, .85) 0%, transparent 50%)
        }

        .review-card {
            padding: clamp(20px, 3vw, 28px)
        }

        .form-row {
            grid-template-columns: 1fr
        }

        .hero-actions {
            flex-direction: column;
            width: 100%
        }

        .hero-actions .btn-primary,
        .hero-actions .btn-outline {
            width: 100%;
            justify-content: center
        }

        .oven-banner {
            flex-direction: column;
            text-align: center;
            padding: clamp(16px, 2.5vw, 20px)
        }

        .owner-stats {
            grid-template-columns: 1fr
        }

        .review-controls {
            gap: clamp(10px, 1.5vw, 14px)
        }

        .footer-grid {
            grid-template-columns: 1fr;
            gap: clamp(20px, 3vw, 30px)
        }

        .footer-bottom {
            flex-direction: column;
            text-align: center;
            gap: 8px
        }

        .wa-btn {
            bottom: clamp(14px, 2vw, 18px);
            right: clamp(14px, 2vw, 18px);
            width: 50px;
            height: 50px;
            min-width: 50px;
            min-height: 50px
        }

        .back-top {
            bottom: clamp(14px, 2vw, 18px);
            right: calc(clamp(14px, 2vw, 18px) + 50px + 10px);
            width: 50px;
            height: 50px;
            min-width: 50px;
            min-height: 50px
        }

        .news-form {
            flex-direction: column
        }

        .news-form button {
            width: 100%
        }

        .map-overlay {
            max-width: calc(100% - 32px);
            left: 16px;
            top: 16px
        }

        #map-section {
            height: clamp(220px, 30vw, 280px)
        }

        .contact-form {
            padding: clamp(20px, 3vw, 28px)
        }
    }

    /* Small Phones (480px - 639px) */
    @media(max-width:639px) {
        :root {
            --pad-xs: 14px;
            --pad-sm: 16px
        }

        section {
            padding: clamp(36px, 6vw, 50px) var(--pad-xs)
        }

        nav {
            padding: 12px 16px
        }

        nav.scrolled {
            padding: 10px 16px
        }

        .nav-logo-text span {
            display: none
        }

        .nav-logo svg {
            width: 42px;
            height: 42px;
            min-width: 42px
        }

        .hero-title {
            font-size: clamp(1.6rem, 7vw, 2rem)
        }

        .hero-subtitle {
            font-size: 0.88rem
        }

        .hero-badge span {
            font-size: 0.6rem;
            letter-spacing: 1px
        }

        .marquee-item span {
            font-size: 0.9rem;
            letter-spacing: 2px
        }

        .section-title {
            font-size: clamp(1.4rem, 5vw, 1.8rem)
        }

        .about-img {
            height: clamp(200px, 35vw, 260px)
        }

        .about-badge {
            bottom: -12px;
            right: 0;
            padding: 12px 16px
        }

        .about-badge .num {
            font-size: 1.4rem
        }

        .about-badge .txt {
            font-size: 0.55rem
        }

        .project-card {
            padding: clamp(20px, 3vw, 28px) clamp(16px, 2vw, 20px)
        }

        .service-card {
            padding: clamp(20px, 3vw, 28px) clamp(16px, 2vw, 20px)
        }

        .why-card {
            padding: clamp(20px, 3vw, 28px) clamp(16px, 2vw, 20px)
        }

        .owner-img {
            height: clamp(220px, 35vw, 300px);
            max-width: 240px
        }

        .owner-badge {
            padding: 10px 20px
        }

        .owner-badge .name {
            font-size: 0.95rem
        }

        .owner-badge .title {
            font-size: 0.6rem
        }

        .review-card {
            padding: clamp(18px, 3vw, 24px)
        }

        .review-text {
            font-size: 0.9rem
        }

        .contact-info h3 {
            font-size: clamp(1.2rem, 4vw, 1.6rem)
        }

        .contact-form {
            padding: clamp(18px, 3vw, 24px)
        }

        .footer-grid {
            gap: clamp(18px, 2.5vw, 24px)
        }

        footer {
            padding: clamp(32px, 5vw, 40px) var(--pad-xs) clamp(16px, 2vw, 20px)
        }
    }

    /* Very Small Phones (360px - 479px) */
    @media(max-width:479px) {
        :root {
            --pad-xs: 12px;
            --pad-sm: 14px
        }

        section {
            padding: clamp(32px, 5vw, 44px) var(--pad-xs)
        }

        .hero-title {
            font-size: clamp(1.5rem, 8vw, 1.8rem);
            letter-spacing: -0.5px
        }

        .hero-subtitle {
            font-size: 0.85rem;
            line-height: 1.6
        }

        .hero-badge {
            padding: 6px 12px;
            gap: 8px
        }

        .hero-badge span {
            font-size: 0.58rem
        }

        .section-title {
            font-size: clamp(1.3rem, 5.5vw, 1.6rem)
        }

        .section-tag span {
            font-size: 0.6rem;
            letter-spacing: 2px
        }

        .section-tag-line {
            width: 24px
        }

        .about-img {
            height: clamp(180px, 35vw, 220px);
            border-radius: 10px
        }

        .about-border {
            inset: -8px;
            border-radius: 14px
        }

        .about-badge {
            padding: 10px 14px;
            bottom: -10px;
            right: 0
        }

        .about-badge .num {
            font-size: 1.3rem
        }

        .about-badge .txt {
            font-size: 0.5rem
        }

        .about-content h2 {
            font-size: clamp(1.3rem, 5vw, 1.6rem)
        }

        .about-content p {
            font-size: 0.88rem;
            line-height: 1.7
        }

        .about-feat {
            padding: 10px 12px;
            gap: 10px
        }

        .about-feat-icon {
            width: 28px;
            height: 28px;
            font-size: 0.8rem;
            border-radius: 6px
        }

        .about-feat span {
            font-size: 0.78rem
        }

        .project-icon {
            width: 44px;
            height: 44px;
            font-size: 1.1rem
        }

        .project-num {
            font-size: clamp(1.5rem, 5vw, 2rem)
        }

        .project-card h3 {
            font-size: 0.88rem
        }

        .project-card p {
            font-size: 0.78rem
        }

        .service-icon {
            width: 40px;
            height: 40px;
            font-size: 1rem;
            border-radius: 10px;
            margin-bottom: 14px
        }

        .service-card h3 {
            font-size: 0.95rem
        }

        .service-card p {
            font-size: 0.8rem
        }

        .weather-img {
            height: clamp(160px, 30vw, 220px)
        }

        .weather-item {
            padding: 12px;
            gap: 10px
        }

        .weather-icon {
            width: 30px;
            height: 30px;
            font-size: 0.8rem;
            border-radius: 6px
        }

        .weather-item div h4 {
            font-size: 0.82rem
        }

        .weather-item div p {
            font-size: 0.75rem
        }

        .process-num {
            width: 56px;
            height: 56px;
            font-size: 1.1rem;
            margin-bottom: 12px
        }

        .process-step h3 {
            font-size: 0.9rem
        }

        .process-step p {
            font-size: 0.78rem
        }

        .why-icon {
            width: 44px;
            height: 44px;
            font-size: 1.1rem
        }

        .why-card h3 {
            font-size: 0.9rem
        }

        .why-card p {
            font-size: 0.78rem
        }

        .owner-img {
            height: clamp(180px, 30vw, 240px);
            max-width: 200px
        }

        .owner-frame {
            inset: -8px
        }

        .owner-badge {
            padding: 8px 16px;
            bottom: -10px
        }

        .owner-badge .name {
            font-size: 0.88rem
        }

        .owner-badge .title {
            font-size: 0.55rem
        }

        .owner-content h2 {
            font-size: clamp(1.3rem, 5vw, 1.6rem)
        }

        .owner-content p {
            font-size: 0.88rem
        }

        .owner-stat {
            padding: 14px
        }

        .owner-stat h4 {
            font-size: 0.9rem
        }

        .owner-stat p {
            font-size: 0.75rem
        }

        .owner-quote {
            padding: 16px;
            font-size: 0.85rem
        }

        .owner-quote span {
            font-size: 0.78rem
        }

        .review-card {
            padding: clamp(16px, 3vw, 22px)
        }

        .review-quote {
            font-size: 1.8rem
        }

        .review-text {
            font-size: 0.88rem;
            line-height: 1.65
        }

        .review-avatar {
            width: 36px;
            height: 36px;
            font-size: 0.75rem
        }

        .review-author h4 {
            font-size: 0.85rem
        }

        .review-author p {
            font-size: 0.7rem
        }

        .review-tag {
            padding: 3px 8px;
            font-size: 0.58rem
        }

        .review-btn {
            width: 38px;
            height: 38px;
            font-size: 0.9rem
        }

        .contact-item {
            padding: 12px;
            gap: 10px
        }

        .contact-icon {
            width: 34px;
            height: 34px;
            font-size: 0.9rem;
            border-radius: 8px
        }

        .contact-item h4 {
            font-size: 0.65rem
        }

        .contact-item p,
        .contact-item a {
            font-size: 0.82rem
        }

        .contact-form {
            padding: 16px;
            border-radius: 14px
        }

        .contact-form h3 {
            font-size: 1.1rem;
            margin-bottom: 16px
        }

        .form-group input,
        .form-group select,
        .form-group textarea {
            padding: 10px 14px;
            font-size: 0.85rem;
            border-radius: 8px
        }

        .form-submit {
            padding: 14px;
            font-size: 0.82rem;
            border-radius: 8px
        }

        .map-overlay {
            padding: 14px;
            left: 12px;
            top: 12px;
            max-width: calc(100% - 24px)
        }

        .map-overlay h3 {
            font-size: 0.85rem
        }

        .map-overlay p {
            font-size: 0.72rem
        }

        .map-overlay a {
            font-size: 0.72rem
        }

        footer {
            padding: 28px var(--pad-xs) 14px
        }

        .footer-brand p {
            font-size: 0.82rem
        }

        .footer-col h4 {
            font-size: 0.72rem;
            margin-bottom: 12px
        }

        .footer-col a {
            font-size: 0.82rem
        }

        .footer-bottom {
            padding-top: 16px
        }

        .footer-bottom p {
            font-size: 0.68rem
        }

        .news-form input {
            padding: 10px 12px;
            font-size: 0.82rem
        }

        .news-form button {
            padding: 10px 14px;
            font-size: 0.72rem
        }

        .wa-btn {
            width: 46px;
            height: 46px;
            bottom: 14px;
            right: 14px
        }

        .wa-btn svg {
            width: 22px;
            height: 22px
        }

        .back-top {
            width: 38px;
            height: 38px;
            font-size: 0.85rem;
            bottom: 14px;
            right: 66px
        }

        .lightbox {
            padding: 32px 12px
        }

        .lightbox-close {
            width: 38px;
            height: 38px;
            top: 12px;
            right: 12px
        }

        .cta-inner h2 {
            font-size: clamp(1.3rem, 5.5vw, 1.8rem)
        }

        .cta-inner p {
            font-size: 0.88rem
        }

        .btn-dark {
            padding: 14px 24px;
            font-size: 0.78rem
        }

        .marquee {
            padding: 14px 0
        }

        .marquee-item {
            padding: 0 14px;
            gap: 14px
        }

        .marquee-item span {
            font-size: 0.82rem;
            letter-spacing: 2px
        }

        .marquee-diamond {
            width: 4px;
            height: 4px
        }
    }

    /* Extra Small Phones (< 360px) */
    @media(max-width:359px) {
        :root {
            --pad-xs: 10px;
            --pad-sm: 12px
        }

        .hero-title {
            font-size: 1.4rem
        }

        .hero-subtitle {
            font-size: 0.82rem
        }

        .btn-primary,
        .btn-outline {
            padding: 12px 16px;
            font-size: 0.72rem
        }

        .section-title {
            font-size: 1.2rem
        }

        .about-img {
            height: 160px
        }

        .project-num {
            font-size: 1.3rem
        }

        .project-icon {
            width: 40px;
            height: 40px;
            font-size: 1rem
        }

        .owner-img {
            height: 160px;
            max-width: 160px
        }

        .review-text {
            font-size: 0.84rem
        }

        .contact-form {
            padding: 14px
        }

        .footer-brand p {
            font-size: 0.78rem
        }

        .footer-col a {
            font-size: 0.78rem
        }

        .wa-btn {
            width: 44px;
            height: 44px
        }

        .back-top {
            width: 36px;
            height: 36px;
            right: 58px
        }
    }

    /* Landscape phones */
    @media(max-height:600px) and (orientation:landscape) {
        #hero {
            min-height: 500px;
            height: auto;
            padding: 120px 0 80px
        }

        .hero-stats {
            position: relative;
            bottom: auto;
            right: auto;
            margin-top: 30px;
            justify-content: flex-start;
            padding: 0 clamp(24px, 5vw, 80px)
        }

        .hero-scroll {
            display: none
        }

        .hero-content {
            padding: 0 clamp(24px, 5vw, 80px)
        }

        .nav-menu {
            padding: 30px 24px
        }

        .about-img {
            height: 240px
        }

        .weather-img {
            height: 240px
        }

        .owner-img {
            height: 240px;
            max-width: 200px
        }

        #map-section {
            height: 250px
        }
    }

    /* Prefers reduced motion */
    @media(prefers-reduced-motion:reduce) {

        *,
        *::before,
        *::after {
            animation-duration: 0.01ms !important;
            animation-iteration-count: 1 !important;
            transition-duration: 0.01ms !important;
            scroll-behavior: auto !important
        }

        .marquee-track {
            animation: none
        }

        .pulse {
            animation: none
        }
    }

    /* High contrast / Dark mode preference */
    @media(prefers-color-scheme:dark) {
        /* Keep the existing light theme as primary brand choice */
    }

    /* Print styles */
    @media print {

        nav,
        .wa-btn,
        .back-top,
        .lightbox,
        #hero-canvas,
        .marquee,
        .menu-toggle,
        .review-controls,
        .hero-scroll {
            display: none !important
        }

        section {
            padding: 20px 0;
            page-break-inside: avoid
        }

        body {
            background: #fff;
            color: #000
        }

        a {
            text-decoration: underline;
            color: #000
        }
    }
/* Form Validation Styles */
.input-error {
  border-color: #e53e3e !important;
  box-shadow: 0 0 0 2px rgba(229, 62, 62, 0.25) !important;
  background: rgba(229, 62, 62, 0.04) !important;
}
.field-error-msg {
  display: block;
  color: #e53e3e;
  font-size: 0.78rem;
  margin-top: 4px;
  font-weight: 500;
  letter-spacing: 0.01em;
}
