/* =============================================
   JB's Straitline Fence Co. — Styles
   Classic & Elegant | Forest Green + Off-White
   ============================================= */

/* --- Reset & Base --- */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

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

body {
    font-family: 'Lora', Georgia, 'Times New Roman', serif;
    font-size: 16px;
    line-height: 1.7;
    color: #2C3E2D;
    background-color: #F5F2EB;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

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

a {
    color: inherit;
    text-decoration: none;
}

ul {
    list-style: none;
}

/* --- Typography --- */
h1, h2, h3, h4 {
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 700;
    line-height: 1.2;
    color: #1A2E1C;
}

h1 { font-size: clamp(2.4rem, 6vw, 4.5rem); }
h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.4rem); }
h4 { font-size: 1rem; }

p {
    color: #4A5D4B;
}

/* --- Utility --- */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.skip-link {
    position: absolute;
    top: -100%;
    left: 1rem;
    background: #2D5A3D;
    color: #F5F2EB;
    padding: 0.5rem 1rem;
    border-radius: 0 0 4px 4px;
    z-index: 1000;
    font-family: 'Lora', serif;
    font-size: 0.875rem;
}
.skip-link:focus {
    top: 0;
}

/* --- Section Shared --- */
.section-eyebrow {
    font-family: 'Lora', serif;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #2D5A3D;
    margin-bottom: 0.75rem;
}

.section-title {
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.05rem;
    max-width: 560px;
    line-height: 1.75;
}

.section-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.section-header .section-subtitle {
    margin: 0 auto;
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: 'Lora', serif;
    font-size: 0.95rem;
    font-weight: 600;
    padding: 0.85rem 1.75rem;
    border-radius: 4px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn-primary {
    background: #2D5A3D;
    color: #F5F2EB;
    border-color: #2D5A3D;
}
.btn-primary:hover {
    background: #1E4030;
    border-color: #1E4030;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(45, 90, 61, 0.3);
}

.btn-secondary {
    background: transparent;
    color: #F5F2EB;
    border-color: rgba(245, 242, 235, 0.5);
}
.btn-secondary:hover {
    background: rgba(245, 242, 235, 0.1);
    border-color: #F5F2EB;
}

.btn-outline-light {
    background: transparent;
    color: #F5F2EB;
    border-color: rgba(245, 242, 235, 0.6);
}
.btn-outline-light:hover {
    background: #F5F2EB;
    color: #2D5A3D;
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1rem;
}

.btn-full {
    width: 100%;
    justify-content: center;
}

/* =============================================
   HEADER
   ============================================= */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(245, 242, 235, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(45, 90, 61, 0.1);
    transition: box-shadow 0.3s ease;
}

.site-header.scrolled {
    box-shadow: 0 2px 20px rgba(26, 46, 28, 0.08);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    color: #1A2E1C;
    font-family: 'Playfair Display', serif;
}

.logo-icon {
    color: #2D5A3D;
    flex-shrink: 0;
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.15;
}

.logo-name {
    font-weight: 700;
    font-size: 1.05rem;
    letter-spacing: -0.01em;
}

.logo-tag {
    font-size: 0.7rem;
    font-family: 'Lora', serif;
    font-weight: 400;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #4A5D4B;
}

/* Nav */
.nav-menu {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.nav-menu a {
    font-family: 'Lora', serif;
    font-size: 0.9rem;
    font-weight: 500;
    color: #2C3E2D;
    padding: 0.4rem 0.85rem;
    border-radius: 4px;
    transition: all 0.2s ease;
}

.nav-menu a:hover {
    color: #2D5A3D;
    background: rgba(45, 90, 61, 0.06);
}

.nav-phone {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    color: #2D5A3D !important;
    font-weight: 600 !important;
    margin-left: 0.5rem;
    border: 1.5px solid #2D5A3D;
    border-radius: 4px;
    padding: 0.35rem 0.75rem !important;
}
.nav-phone:hover {
    background: #2D5A3D !important;
    color: #F5F2EB !important;
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    width: 40px;
    height: 40px;
    position: relative;
}

.hamburger {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 14px;
    display: block;
}
.hamburger::before,
.hamburger::after,
.hamburger span {
    content: '';
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    background: #1A2E1C;
    border-radius: 2px;
    transition: all 0.3s ease;
}
.hamburger::before { top: 0; }
.hamburger span { top: 50%; transform: translate(-50%, -50%); }
.hamburger::after { bottom: 0; }

.nav-toggle[aria-expanded="true"] .hamburger::before {
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
}
.nav-toggle[aria-expanded="true"] .hamburger span {
    opacity: 0;
}
.nav-toggle[aria-expanded="true"] .hamburger::after {
    bottom: 50%;
    transform: translateY(50%) rotate(-45deg);
}

/* =============================================
   HERO
   ============================================= */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 6rem 1.5rem 4rem;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        #1A3A25 0%,
        #2D5A3D 25%,
        #3A7D52 50%,
        #2D5A3D 75%,
        #1A3A25 100%
    );
    background-size: 400% 400%;
    animation: gradientShift 16s ease infinite;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.hero-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.06;
    background-image:
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 40px,
            rgba(245, 242, 235, 0.5) 40px,
            rgba(245, 242, 235, 0.5) 41px
        ),
        repeating-linear-gradient(
            90deg,
            transparent,
            transparent 40px,
            rgba(245, 242, 235, 0.5) 40px,
            rgba(245, 242, 235, 0.5) 41px
        );
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 800px;
}

.hero-eyebrow {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(245, 242, 235, 0.7);
    margin-bottom: 1.25rem;
}

.hero-headline {
    color: #F5F2EB;
    margin-bottom: 1.25rem;
    letter-spacing: -0.02em;
}

.hero-headline em {
    font-style: italic;
    color: #A8D5BA;
}

.hero-subheadline {
    font-size: clamp(1rem, 1.8vw, 1.2rem);
    color: rgba(245, 242, 235, 0.8);
    max-width: 580px;
    margin: 0 auto 2.25rem;
    line-height: 1.8;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.hero-trust {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(245, 242, 235, 0.75);
    font-size: 0.85rem;
    font-family: 'Lora', serif;
}

.trust-item svg {
    color: #A8D5BA;
}

.hero-scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: rgba(245, 242, 235, 0.5);
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    font-family: 'Lora', serif;
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, rgba(245,242,235,0.5), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
    0%, 100% { opacity: 1; transform: scaleY(1); }
    50% { opacity: 0.4; transform: scaleY(0.6); }
}

/* =============================================
   SERVICES
   ============================================= */
.services {
    padding: 6rem 0;
    background: #F5F2EB;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.service-card {
    background: #fff;
    border-radius: 8px;
    padding: 2rem;
    border: 1px solid rgba(45, 90, 61, 0.08);
    transition: all 0.35s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #2D5A3D, #3A7D52);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.35s ease;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(26, 46, 28, 0.1);
    border-color: transparent;
}

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

.service-icon {
    width: 56px;
    height: 56px;
    border-radius: 10px;
    background: rgba(45, 90, 61, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2D5A3D;
    margin-bottom: 1.25rem;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    background: #2D5A3D;
    color: #F5F2EB;
}

.service-title {
    margin-bottom: 0.6rem;
    color: #1A2E1C;
}

.service-desc {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #5A6B5A;
}

/* =============================================
   ABOUT
   ============================================= */
.about {
    padding: 6rem 0;
    background: #EDE8DD;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-image-wrapper {
    position: relative;
}

.about-image-wrapper img {
    width: 100%;
    height: 700px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 24px 64px rgba(26, 46, 28, 0.15);
}

.about-image-accent {
    position: absolute;
    bottom: -1.5rem;
    right: -1.5rem;
    width: 200px;
    height: 200px;
    background: #2D5A3D;
    border-radius: 8px;
    z-index: -1;
    opacity: 0.15;
}

.about-content .section-title {
    margin-bottom: 1.5rem;
}

.about-text {
    margin-bottom: 1.25rem;
    font-size: 1rem;
    line-height: 1.8;
}

.about-stats {
    display: flex;
    gap: 1.5rem;
    align-items: center;
    margin: 2rem 0;
    padding: 1.5rem 0;
    border-top: 1px solid rgba(45, 90, 61, 0.15);
    border-bottom: 1px solid rgba(45, 90, 61, 0.15);
}

.stat {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    flex: 1;
}

.stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 1.15rem;
    font-weight: 700;
    color: #2D5A3D;
}

.stat-label {
    font-size: 0.8rem;
    color: #5A6B5A;
    letter-spacing: 0.02em;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(45, 90, 61, 0.2);
}

.about-content .btn {
    margin-top: 0.5rem;
}

/* =============================================
   GALLERY
   ============================================= */
.gallery {
    padding: 6rem 0;
    background: #F5F2EB;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    grid-auto-rows: 280px;
}

.gallery-item {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

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

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(26, 46, 28, 0.8) 0%, transparent 60%);
    display: flex;
    align-items: flex-end;
    padding: 1.25rem;
    opacity: 0;
    transition: opacity 0.35s ease;
}

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

.gallery-overlay span {
    color: #F5F2EB;
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    font-weight: 600;
}

.gallery-item[data-cols="2"] {
    grid-column: span 2;
}

/* =============================================
   PROCESS
   ============================================= */
.process {
    padding: 6rem 0;
    background: #1A2E1C;
    position: relative;
    overflow: hidden;
}

.process::before {
    content: '';
    position: absolute;
    inset: 0;
    opacity: 0.04;
    background-image:
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 60px,
            rgba(245,242,235,0.5) 60px,
            rgba(245,242,235,0.5) 61px
        );
}

.process .section-eyebrow {
    color: #A8D5BA;
}

.process .section-title {
    color: #F5F2EB;
}

.process .section-header {
    margin-bottom: 4rem;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    position: relative;
}

.process-steps::before {
    content: '';
    position: absolute;
    top: 28px;
    left: 12.5%;
    right: 12.5%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(168, 213, 186, 0.3), rgba(168, 213, 186, 0.3), transparent);
}

.step-number {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: rgba(168, 213, 186, 0.2);
    line-height: 1;
    margin-bottom: 1rem;
}

.step-title {
    color: #F5F2EB;
    margin-bottom: 0.5rem;
    font-size: 1.15rem;
}

.step-desc {
    font-size: 0.9rem;
    color: rgba(245, 242, 235, 0.6);
    line-height: 1.7;
}

/* =============================================
   CTA BANNER
   ============================================= */
.cta-banner {
    position: relative;
    padding: 6rem 0;
    overflow: hidden;
}

.cta-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.cta-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cta-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(26, 46, 28, 0.92), rgba(45, 90, 61, 0.88));
}

.cta-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 680px;
    margin: 0 auto;
}

.cta-eyebrow {
    color: #A8D5BA !important;
}

.cta-title {
    color: #F5F2EB;
    margin-bottom: 1rem;
}

.cta-text {
    color: rgba(245, 242, 235, 0.75);
    font-size: 1.05rem;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.cta-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-actions .btn-outline-light:hover {
    background: #F5F2EB;
    color: #2D5A3D;
}

/* =============================================
   CONTACT
   ============================================= */
.contact {
    padding: 6rem 0;
    background: #F5F2EB;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-intro {
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    color: #4A5D4B;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.contact-icon {
    width: 44px;
    height: 44px;
    border-radius: 8px;
    background: rgba(45, 90, 61, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2D5A3D;
    flex-shrink: 0;
}

.contact-label {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #5A6B5A;
    margin-bottom: 0.2rem;
}

.contact-item address {
    font-style: normal;
    font-size: 0.95rem;
    color: #2C3E2D;
    line-height: 1.6;
}

.contact-item a {
    color: #2D5A3D;
    font-weight: 500;
    transition: color 0.2s ease;
}
.contact-item a:hover {
    color: #1A4030;
    text-decoration: underline;
}

.contact-map {
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid rgba(45, 90, 61, 0.1);
}

/* Form */
.contact-form-wrapper {
    background: #fff;
    border-radius: 12px;
    padding: 2.5rem;
    border: 1px solid rgba(45, 90, 61, 0.08);
    box-shadow: 0 8px 32px rgba(26, 46, 28, 0.06);
}

.form-title {
    font-size: 1.5rem;
    margin-bottom: 0.4rem;
}

.form-intro {
    font-size: 0.9rem;
    color: #5A6B5A;
    margin-bottom: 1.75rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group {
    margin-bottom: 1.1rem;
}

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: #2C3E2D;
    margin-bottom: 0.4rem;
    font-family: 'Lora', serif;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.7rem 0.9rem;
    border: 1.5px solid rgba(45, 90, 61, 0.2);
    border-radius: 6px;
    font-family: 'Lora', serif;
    font-size: 0.95rem;
    color: #1A2E1C;
    background: #F5F2EB;
    transition: all 0.2s ease;
    outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #2D5A3D;
    background: #fff;
    box-shadow: 0 0 0 3px rgba(45, 90, 61, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #9AAA99;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.btn-loading {
    display: none;
}

.btn[disabled] .btn-text { opacity: 0.5; }
.btn[disabled] .btn-loading { display: inline-flex; animation: spin 1s linear infinite; }

@keyframes spin {
    to { transform: rotate(360deg); }
}

.form-success {
    text-align: center;
    padding: 2rem 1rem;
}

.form-success .success-icon {
    margin: 0 auto 1rem;
}

.form-success h4 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: #1A2E1C;
}

.form-success p {
    font-size: 0.95rem;
    color: #5A6B5A;
    line-height: 1.7;
}

/* =============================================
   FOOTER
   ============================================= */
.site-footer {
    background: #1A2E1C;
    color: rgba(245, 242, 235, 0.7);
    padding: 4rem 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 3rem;
    padding-bottom: 3rem;
}

.logo-footer {
    color: #F5F2EB;
    margin-bottom: 1rem;
}

.footer-brand p {
    font-size: 0.9rem;
    line-height: 1.7;
    color: rgba(245, 242, 235, 0.55);
}

.footer-links h4,
.footer-contact h4 {
    color: #F5F2EB;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 1rem;
    font-family: 'Lora', serif;
}

.footer-links ul,
.footer-contact ul {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-links a,
.footer-contact a {
    font-size: 0.9rem;
    color: rgba(245, 242, 235, 0.55);
    transition: color 0.2s ease;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.footer-links a:hover,
.footer-contact a:hover {
    color: #A8D5BA;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    font-size: 0.88rem;
    color: rgba(245, 242, 235, 0.55);
}

.footer-contact svg {
    flex-shrink: 0;
    margin-top: 3px;
    color: #A8D5BA;
}

.footer-bottom {
    border-top: 1px solid rgba(245, 242, 235, 0.1);
    padding: 1.5rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.footer-bottom p {
    font-size: 0.8rem;
    color: rgba(245, 242, 235, 0.4);
}

.footer-bottom a {
    color: rgba(245, 242, 235, 0.5);
    transition: color 0.2s ease;
}
.footer-bottom a:hover {
    color: #A8D5BA;
}

/* =============================================
   SCROLL ANIMATIONS
   ============================================= */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

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

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

@media (max-width: 768px) {
    .nav-toggle {
        display: block;
    }

    .nav-menu {
        position: fixed;
        top: 72px;
        left: 0;
        right: 0;
        background: rgba(245, 242, 235, 0.98);
        backdrop-filter: blur(12px);
        flex-direction: column;
        padding: 1.5rem;
        gap: 0.25rem;
        border-bottom: 1px solid rgba(45, 90, 61, 0.1);
        transform: translateY(-120%);
        opacity: 0;
        transition: all 0.35s ease;
        pointer-events: none;
    }

    .nav-menu.open {
        transform: translateY(0);
        opacity: 1;
        pointer-events: all;
    }

    .nav-menu a {
        padding: 0.75rem 0.5rem;
        font-size: 1rem;
    }

    .nav-phone {
        margin-left: 0;
        justify-content: center;
        margin-top: 0.5rem;
    }

    .hero {
        min-height: 100svh;
        padding: 5rem 1.25rem 3rem;
    }

    .hero-actions {
        flex-direction: column;
        align-items: center;
    }

    .hero-actions .btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }

    .hero-trust {
        gap: 1rem;
    }

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

    .about-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .about-image-wrapper img {
        height: 400px;
    }

    .about-image-accent {
        display: none;
    }

    .about-stats {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }

    .stat-divider {
        width: 40px;
        height: 1px;
    }

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

    .gallery-item[data-cols="2"] {
        grid-column: span 1;
    }

    .process-steps {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

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

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

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

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }

    .services,
    .about,
    .gallery,
    .process,
    .contact {
        padding: 4rem 0;
    }

    .hero-headline {
        font-size: 2rem;
    }

    .service-card {
        padding: 1.5rem;
    }

    .contact-form-wrapper {
        padding: 1.5rem;
    }

    .cta-actions {
        flex-direction: column;
        align-items: center;
    }

    .cta-actions .btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
}
