

:root {
    --green-900: #1b3329;
    --green-800: #234231;
    --green-700: #2c5a42;
    --green-600: #357a53;
    --green-500: #43976a;
    --green-400: #6ab58a;
    --green-300: #9ed0b4;
    --green-200: #c8e5d5;
    --green-100: #e9f5ef;
    --green-50: #f5faf7;

    --earth-900: #1f1a15;
    --earth-800: #2f2821;
    --earth-700: #4a3f33;
    --earth-600: #655747;
    --earth-500: #8a7a68;
    --earth-400: #a99b88;
    --earth-300: #c9bfb2;
    --earth-200: #e4dfda;
    --earth-100: #f4f2ef;
    --earth-50: #faf9f7;

    --amber: #c17f24;
    --red: #c44040;
    --white: #ffffff;
    --black: #000000;

    --font-serif: 'Cormorant Garamond', Georgia, serif;
    --font-sans: 'DM Sans', -apple-system, sans-serif;

    --radius: 12px;
    --radius-lg: 20px;
    --radius-full: 999px;

    --shadow: 0 4px 12px rgba(0,0,0,0.08);
    --shadow-lg: 0 12px 32px rgba(0,0,0,0.12);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
    font-family: var(--font-sans);
    font-size: 16px;
    line-height: 1.6;
    color: var(--earth-800);
    background: var(--earth-50);
    -webkit-font-smoothing: antialiased;
}

img {
    display: block;
    max-width: 100%;
    height: auto;
    object-fit: cover;
}

a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }
svg { fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

h1, h2, h3 { font-family: var(--font-serif); font-weight: 500; line-height: 1.2; color: var(--earth-900); }
h1 { font-size: clamp(28px, 5vw, 48px); }
h2 { font-size: clamp(26px, 4vw, 38px); }
h3 { font-size: clamp(18px, 2.5vw, 22px); }
h4 { font-family: var(--font-sans); font-size: 13px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; color: var(--earth-500); }

.container { width: 100%; max-width: 1100px; margin: 0 auto; padding: 0 20px; }

.label {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--green-600);
    margin-bottom: 14px;
    position: relative;
    padding-left: 20px;
}
.label::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 12px;
    height: 2px;
    background: var(--green-500);
    border-radius: 1px;
}
.label-light { color: var(--green-300); }
.label-light::before { background: var(--green-400); }


.btn-primary, .btn-ghost {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 16px 28px;
    font-size: 15px;
    font-weight: 600;
    border-radius: var(--radius);
    transition: all 0.2s ease;
    min-height: 52px;
}

.btn-primary {
    background: var(--green-700);
    color: var(--white);
}
.btn-primary:hover {
    background: var(--green-600);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(44, 90, 66, 0.3);
}
.btn-primary:focus {
    outline: none;
    box-shadow: 0 0 0 3px var(--green-300);
}
.btn-primary svg { width: 18px; height: 18px; }

.btn-ghost {
    background: rgba(255,255,255,0.1);
    color: var(--white);
    border: 2px solid rgba(255,255,255,0.3);
    backdrop-filter: blur(8px);
}
.btn-ghost:hover {
    background: rgba(255,255,255,0.2);
    border-color: rgba(255,255,255,0.5);
}
.btn-ghost:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(255,255,255,0.3);
}

.btn-large { padding: 18px 32px; font-size: 16px; }
.btn-full { width: 100%; }


.topbar {
    background: var(--green-800);
    padding: 0;
    position: sticky;
    top: 0;
    z-index: 101;
}

.topbar-hidden {
    transform: translateY(-100%);
}

.topbar-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 1100px;
    margin: 0 auto;
    padding: 6px 20px;
    gap: 12px;
}

.topbar-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 12px;
    background: var(--green-600);
    color: var(--white);
    font-size: 11px;
    font-weight: 600;
    border-radius: var(--radius);
    transition: all 0.2s ease;
}

.topbar-badge:hover,
.topbar-badge:active {
    background: var(--green-500);
}
.topbar-badge:focus {
    outline: none;
    box-shadow: 0 0 0 3px var(--green-400);
}

.topbar-badge svg {
    width: 12px;
    height: 12px;
}

.topbar-text {
    font-size: 12px;
    color: rgba(255,255,255,0.7);
    display: none;
}

.topbar-phone {
    display: none;
}


.header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: #ffffff;
    border-bottom: 1px solid var(--earth-200);
    transition: box-shadow 0.2s ease;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
    padding: 0 20px;
    max-width: 1200px;
    margin: 0 auto;
    min-height: 64px;
}

.logo { display: flex; align-items: center; gap: 10px; }
.logo:focus {
    outline: none;
    opacity: 0.8;
}

.logo-img {
    height: 44px;
    width: auto;
}

.logo-img-large {
    height: 56px;
}

.mobile-menu-logo .logo-img {
    height: 48px;
}

.logo-dark {
    filter: invert(21%) sepia(12%) saturate(878%) hue-rotate(346deg) brightness(97%) contrast(89%);
}

.logo-mark {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: var(--green-700);
    color: var(--white);
    font-family: var(--font-serif);
    font-size: 20px;
    font-weight: 600;
    border-radius: var(--radius);
}

.logo-text {
    font-family: var(--font-serif);
    font-size: 20px;
    font-weight: 500;
    color: var(--earth-900);
}

.nav { display: none; gap: 28px; }
.nav a {
    font-family: var(--font-sans);
    font-size: 14px;
    font-weight: 500;
    color: var(--earth-700);
    letter-spacing: 0.01em;
    transition: color 0.2s;
    white-space: nowrap;
}
.nav a:hover { color: var(--green-600); }
.nav a:focus {
    outline: none;
    color: var(--green-600);
}

.header-right { display: flex; align-items: center; gap: 16px; }

.header-phone {
    display: none;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: var(--green-700);
    color: var(--white);
    font-size: 14px;
    font-weight: 600;
    border-radius: var(--radius);
}
.header-phone svg { width: 16px; height: 16px; }
.header-phone:hover { background: var(--green-600); }
.header-phone:focus {
    outline: none;
    box-shadow: 0 0 0 3px var(--green-300);
}

.menu-btn {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    width: 44px;
    height: 44px;
    padding: 10px;
}
.menu-btn span {
    display: block;
    height: 2px;
    background: var(--earth-800);
    border-radius: 1px;
    transition: all 0.3s ease;
}
.menu-btn:focus {
    outline: none;
    background: var(--earth-100);
    border-radius: var(--radius);
}
.menu-btn.active span:first-child { transform: rotate(45deg) translate(6px, 6px); }
.menu-btn.active span:last-child { transform: rotate(-45deg) translate(6px, -6px); }


.mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 102;
    background: var(--green-900);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    padding: 60px 40px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}
.mobile-menu.active { opacity: 1; visibility: visible; }

.mobile-menu-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    background: rgba(255,255,255,0.1);
    border-radius: var(--radius);
}

.mobile-menu-close:active {
    background: rgba(255,255,255,0.2);
}
.mobile-menu-close:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(255,255,255,0.3);
}

.mobile-menu nav {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.mobile-menu nav a {
    font-family: var(--font-sans);
    font-size: 18px;
    font-weight: 500;
    color: var(--white);
    padding: 10px 32px;
    text-align: center;
    transition: all 0.2s;
}

.mobile-menu nav a:active {
    color: var(--green-300);
}
.mobile-menu nav a:focus {
    outline: none;
    color: var(--green-300);
}

.mobile-menu-phone {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    font-size: 16px;
    font-weight: 600;
    color: var(--white);
    background: var(--green-700);
    border-radius: var(--radius);
    white-space: nowrap;
}

.mobile-menu-phone:active {
    background: var(--green-600);
}
.mobile-menu-phone:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(255,255,255,0.3);
}

.mobile-menu-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 0;
}

.mobile-menu-logo .logo-mark {
    background: rgba(255,255,255,0.15);
    color: var(--white);
    width: 44px;
    height: 44px;
    font-size: 24px;
    margin-left: -56px;
}

.mobile-menu-logo .logo-text {
    color: var(--white);
    font-size: 24px;
}


.hero {
    position: relative;
    min-height: 85vh;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.hero-media {
    position: absolute;
    inset: 0;
}

.hero-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 30%;
}

.hero-media::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(27, 51, 41, 0.2) 0%, rgba(27, 51, 41, 0.5) 50%, rgba(27, 51, 41, 0.92) 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
    padding: 80px 20px 32px;
    max-width: 600px;
}

.hero-label {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--green-300);
    margin-bottom: 16px;
}

.hero h1 { color: var(--white); margin-bottom: 16px; }

.hero-desc {
    font-size: 16px;
    color: rgba(255,255,255,0.85);
    margin-bottom: 24px;
    line-height: 1.7;
}

.hero-cta { display: flex; flex-wrap: wrap; gap: 12px; }

.hero-bottom {
    position: relative;
    z-index: 1;
    padding: 24px 20px 32px;
    border-top: 1px solid rgba(255,255,255,0.15);
}

.hero-stats { display: flex; gap: 32px; }

.hero-stat {
    position: relative;
    padding-right: 32px;
}

.hero-stat:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 32px;
    background: rgba(255,255,255,0.2);
}

.stat-value {
    display: block;
    font-family: var(--font-serif);
    font-size: 28px;
    font-weight: 500;
    color: var(--white);
}

.stat-label {
    font-size: 11px;
    color: rgba(255,255,255,0.6);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}


.trust-bar {
    background: linear-gradient(135deg, var(--green-700) 0%, var(--green-800) 100%);
    padding: 18px 20px;
    border-bottom: 1px solid var(--green-600);
}

.trust-bar-inner {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 16px 40px;
    max-width: 1100px;
    margin: 0 auto;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--white);
    font-size: 13px;
    font-weight: 500;
}
.trust-item svg {
    width: 20px;
    height: 20px;
    opacity: 0.9;
    color: var(--green-300);
}


.section-header {
    margin-bottom: 48px;
}

.section-header h2 { margin-bottom: 14px; }
.section-header p { font-size: 16px; color: var(--earth-500); max-width: 520px; line-height: 1.7; }

.section-header-center { text-align: center; }
.section-header-center .label { padding-left: 0; }
.section-header-center .label::before { display: none; }
.section-header-center p { margin: 0 auto; }

.section-header-light h2 { color: var(--white); }
.section-header-light p { color: rgba(255,255,255,0.75); }


.intro {
    padding: 80px 0;
    background: var(--white);
    position: relative;
}

.intro-grid {
    display: flex;
    flex-direction: column;
    gap: 48px;
}

.intro-content h2 { margin-bottom: 20px; }

.intro-lead {
    font-size: 18px;
    color: var(--earth-700);
    margin-bottom: 16px;
    line-height: 1.7;
}

.intro-content p {
    color: var(--earth-600);
    margin-bottom: 14px;
    line-height: 1.7;
}

.intro-images {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 16px;
}

.intro-img-1, .intro-img-2 {
    border-radius: var(--radius-lg);
    overflow: hidden;
    height: 240px;
    box-shadow: var(--shadow);
}

.intro-img-1 img, .intro-img-2 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.intro-img-1:hover img, .intro-img-2:hover img {
    transform: scale(1.03);
}


.services {
    padding: 80px 0;
    background: var(--earth-100);
    position: relative;
}

.services-grid {
    display: grid;
    gap: 16px;
}

.service-card {
    display: flex;
    flex-direction: column;
    background: var(--white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--earth-200);
    transition: all 0.3s ease;
    overflow: hidden;
}

.service-card:hover {
    border-color: var(--green-300);
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.service-img {
    height: 180px;
    overflow: hidden;
}

.service-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.service-card:hover .service-img img {
    transform: scale(1.05);
}

.service-content {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.service-card h3 { margin-bottom: 10px; }
.service-card p { font-size: 14px; color: var(--earth-500); line-height: 1.6; margin-bottom: 16px; flex: 1; }

.service-link {
    font-size: 14px;
    font-weight: 600;
    color: var(--green-700);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: all 0.2s ease;
}
.service-card:hover .service-link {
    color: var(--green-600);
    gap: 10px;
}
.service-card:focus {
    outline: none;
    border-color: var(--green-500);
    box-shadow: 0 0 0 3px var(--green-100);
}


.work {
    position: relative;
    padding: 80px 0;
    background: var(--green-900);
    overflow: hidden;
}

.work-bg {
    position: absolute;
    inset: 0;
}

.work-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.15;
}

.work > .container {
    position: relative;
    z-index: 1;
}

.work-cta {
    text-align: center;
    margin-top: 40px;
}

.btn-gallery {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    background: var(--green-600);
    color: var(--white);
    font-size: 15px;
    font-weight: 600;
    border-radius: var(--radius);
    transition: all 0.2s ease;
}

.btn-gallery svg {
    transition: transform 0.2s ease;
}

.btn-gallery:hover {
    background: var(--green-500);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.btn-gallery:hover svg {
    transform: translateX(4px);
}

.btn-gallery:focus {
    outline: none;
    box-shadow: 0 0 0 3px var(--green-400);
}

.work-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.work-item {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 1;
    box-shadow: 0 8px 24px rgba(0,0,0,0.3);
}

.work-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.work-item:hover img { transform: scale(1.08); }

.work-item figcaption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px 16px;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: var(--white);
    font-size: 13px;
    font-weight: 500;
}


.process {
    padding: 80px 0;
    background: var(--white);
}

.process-grid {
    display: grid;
    gap: 16px;
    counter-reset: process-counter;
}

.process-step {
    position: relative;
    padding: 28px 24px;
    background: var(--earth-50);
    border-radius: var(--radius-lg);
    border: 1px solid var(--earth-200);
    text-align: center;
    transition: all 0.3s ease;
}

.process-step:hover {
    border-color: var(--green-300);
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

.process-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: var(--green-700);
    color: var(--white);
    font-family: var(--font-serif);
    font-size: 20px;
    font-weight: 600;
    border-radius: 50%;
    margin-bottom: 16px;
}

.process-step h3 { margin-bottom: 8px; }
.process-step p { font-size: 14px; color: var(--earth-500); line-height: 1.6; }


.about {
    padding: 80px 0;
    background: var(--earth-100);
}

.about-grid {
    display: flex;
    flex-direction: column;
    gap: 40px;
    align-items: center;
}

.about-media {
    border-radius: var(--radius-lg);
    overflow: hidden;
    max-width: 400px;
    width: 100%;
    height: 300px;
    box-shadow: var(--shadow-lg);
}

.about-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-content h2 { margin-bottom: 4px; }

.about-title {
    font-size: 14px;
    color: var(--green-600);
    font-weight: 500;
    margin-bottom: 20px;
}

.about-content p {
    color: var(--earth-600);
    margin-bottom: 12px;
}

.about-content em {
    font-style: italic;
    color: var(--earth-700);
}

.about-creds {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
    padding-top: 28px;
    border-top: 1px solid var(--earth-200);
}

.cred {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    background: var(--white);
    border-radius: var(--radius);
    border: 1px solid var(--earth-200);
}
.cred svg { width: 18px; height: 18px; color: var(--green-600); }
.cred span { font-size: 13px; color: var(--earth-700); font-weight: 500; }


.cta {
    position: relative;
    padding: 100px 0;
    text-align: center;
    overflow: hidden;
}

.cta-bg {
    position: absolute;
    inset: 0;
}

.cta-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cta-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(27, 51, 41, 0.94) 0%, rgba(44, 90, 66, 0.90) 100%);
}

.cta-content {
    position: relative;
    z-index: 1;
    max-width: 600px;
    margin: 0 auto;
    padding: 0 20px;
}

.cta h2 { color: var(--white); margin-bottom: 16px; }
.cta p { font-size: 17px; color: rgba(255,255,255,0.85); margin-bottom: 28px; line-height: 1.7; }
.cta-buttons { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px; }


.contact {
    padding: 80px 0;
    background: var(--earth-50);
}

.contact-layout {
    display: flex;
    flex-direction: column;
    gap: 48px;
}

.contact-info h2 { margin-bottom: 12px; }
.contact-info > p { color: var(--earth-500); margin-bottom: 24px; }

.contact-cards {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 24px;
}

.contact-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px;
    background: var(--white);
    border: 1px solid var(--earth-200);
    border-radius: var(--radius);
    transition: all 0.2s ease;
}

a.contact-card:hover {
    border-color: var(--green-300);
    background: var(--green-50);
}
a.contact-card:focus {
    outline: none;
    border-color: var(--green-500);
    box-shadow: 0 0 0 3px var(--green-100);
}

.contact-card-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: var(--green-100);
    border-radius: var(--radius);
    flex-shrink: 0;
}
.contact-card-icon svg { width: 20px; height: 20px; color: var(--green-700); }

.contact-card strong { display: block; font-size: 15px; color: var(--earth-800); }
.contact-card span { font-size: 13px; color: var(--earth-400); }

.contact-hours {
    padding: 24px;
    background: linear-gradient(135deg, var(--green-50) 0%, var(--green-100) 100%);
    border-radius: var(--radius-lg);
    border: 1px solid var(--green-200);
}
.contact-hours h4 { margin-bottom: 10px; color: var(--green-800); font-size: 14px; }
.contact-hours p { font-size: 14px; color: var(--earth-600); line-height: 1.6; }


.contact-form {
    padding: 32px 24px;
    background: var(--white);
    border: 1px solid var(--earth-200);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
}

.contact-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--green-600), var(--green-400));
}

.contact-form h3 { margin-bottom: 24px; text-align: center; }

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-field { margin-bottom: 16px; }

.form-field label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--earth-600);
    margin-bottom: 8px;
}

.form-field input,
.form-field select,
.form-field textarea {
    width: 100%;
    padding: 12px 16px;
    font-family: inherit;
    font-size: 16px; 
    color: var(--earth-800);
    background: var(--earth-50);
    border: 1px solid var(--earth-200);
    border-radius: var(--radius);
    transition: all 0.2s;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
    outline: none;
    border-color: var(--green-500);
    background: var(--white);
    box-shadow: 0 0 0 3px var(--green-100);
}

.form-field textarea { resize: vertical; min-height: 100px; }

.form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.form-checkbox input {
    width: 18px;
    height: 18px;
    margin-top: 2px;
    flex-shrink: 0;
}

.form-checkbox label {
    font-size: 13px;
    color: var(--earth-500);
    margin-bottom: 0;
}


.footer {
    background: var(--green-900);
    color: var(--white);
}

.footer-top {
    padding: 60px 0 40px;
    display: flex;
    flex-direction: column;
    gap: 48px;
}

.footer-brand {
    max-width: 400px;
}

.footer .logo-img {
    background: var(--white);
    padding: 4px 8px;
    border-radius: 6px;
}

.logo-large .logo-mark { width: 44px; height: 44px; font-size: 24px; }
.logo-large .logo-text { font-size: 24px; }

.footer-tagline {
    font-size: 14px;
    color: var(--green-400);
    margin-top: 8px;
}

.footer-desc {
    font-size: 14px;
    color: rgba(255,255,255,0.6);
    line-height: 1.7;
    margin-top: 16px;
}

.footer-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 24px;
}

.footer-badges span {
    padding: 8px 14px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: var(--radius-full);
    font-size: 11px;
    font-weight: 600;
    color: rgba(255,255,255,0.75);
    transition: all 0.2s ease;
}

.footer-badges span:hover {
    background: rgba(255,255,255,0.12);
    color: rgba(255,255,255,0.9);
}

.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: var(--radius);
    color: rgba(255,255,255,0.7);
    transition: all 0.2s ease;
}

.footer-social a:hover {
    background: rgba(255,255,255,0.15);
    color: var(--white);
}

.footer-social a:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(255,255,255,0.3);
}

.instagram-section {
    padding: 80px 0;
    background: var(--white);
}

.footer-nav-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.footer-col {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-col h4 {
    font-size: 12px;
    color: rgba(255,255,255,0.4);
    margin-bottom: 8px;
}

.footer-col a {
    font-size: 14px;
    color: rgba(255,255,255,0.7);
    transition: color 0.2s;
}
.footer-col a:hover { color: var(--white); }
.footer-col a:focus {
    outline: none;
    color: var(--white);
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}

.footer-contact-item svg {
    flex-shrink: 0;
    color: var(--green-400);
    opacity: 0.8;
}

.footer-contact-item a,
.footer-contact-item span {
    font-size: 14px;
    color: rgba(255,255,255,0.8);
    line-height: 1.5;
}

.footer-contact-item a:hover { color: var(--white); }
.footer-contact-item a:focus {
    outline: none;
    color: var(--white);
}

.footer-bottom {
    padding: 24px 0;
    border-top: 1px solid rgba(255,255,255,0.1);
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
}

.footer-bottom p {
    font-size: 13px;
    color: rgba(255,255,255,0.4);
    margin: 0;
}

.footer-bottom a {
    font-size: 13px;
    color: rgba(255,255,255,0.4);
    transition: color 0.2s;
}
.footer-bottom a:hover { color: var(--white); }
.footer-bottom a:focus {
    outline: none;
    color: var(--white);
}


.page-hero {
    padding: 60px 0 50px;
    background: var(--earth-100);
}

.page-hero h1 {
    margin-bottom: 16px;
    max-width: 700px;
}

.page-hero p {
    font-size: 17px;
    color: var(--earth-600);
    max-width: 600px;
    line-height: 1.7;
}


.page-hero-bg {
    position: relative;
    padding: 100px 0 80px;
    background: var(--green-900);
    overflow: hidden;
}

.page-hero-media {
    position: absolute;
    inset: 0;
}

.page-hero-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 40%;
}

.page-hero-media::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(27, 51, 41, 0.7) 0%, rgba(27, 51, 41, 0.85) 100%);
}

.page-hero-bg .container {
    position: relative;
    z-index: 1;
}

.page-hero-bg h1 {
    color: var(--white);
}

.page-hero-bg p {
    color: rgba(255,255,255,0.85);
}


.btn-service {
    margin-top: 20px;
    padding: 12px 24px;
    font-size: 14px;
}


.not-found-service {
    padding: 60px 0;
    background: var(--green-50);
    border-top: 1px solid var(--green-100);
    border-bottom: 1px solid var(--green-100);
}

.not-found-content {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.not-found-content h2 {
    margin-bottom: 16px;
}

.not-found-content p {
    color: var(--earth-600);
    margin-bottom: 24px;
    line-height: 1.7;
}


.services-detail {
    padding: 60px 0;
    background: var(--white);
}

.service-detail-item {
    display: flex;
    flex-direction: column;
    gap: 32px;
    padding: 40px 0;
    border-bottom: 1px solid var(--earth-200);
}

.service-detail-item:last-child {
    border-bottom: none;
}

.service-detail-img {
    border-radius: var(--radius-lg);
    overflow: hidden;
    height: 300px;
}

.service-detail-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-detail-content h2 {
    margin-bottom: 16px;
}

.service-detail-content .lead {
    font-size: 17px;
    color: var(--earth-700);
    margin-bottom: 16px;
    line-height: 1.7;
}

.service-detail-content p {
    color: var(--earth-600);
    margin-bottom: 12px;
    line-height: 1.7;
}

.service-detail-content ul {
    list-style: none;
    margin-top: 20px;
}

.service-detail-content ul li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 10px;
    color: var(--earth-700);
}

.service-detail-content ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 8px;
    height: 8px;
    background: var(--green-500);
    border-radius: 50%;
}


.gallery-section {
    padding: 60px 0;
    background: var(--earth-50);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.gallery-item {
    border-radius: var(--radius);
    overflow: hidden;
    aspect-ratio: 1;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-item-featured {
    aspect-ratio: 4/3;
}

.gallery-item {
    cursor: pointer;
}


.lightbox {
    position: fixed;
    inset: 0;
    z-index: 200;
    background: rgba(0, 0, 0, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.lightbox.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-content {
    max-width: 90vw;
    max-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 85vh;
    object-fit: contain;
    border-radius: var(--radius);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border-radius: 50%;
    transition: all 0.2s ease;
}

.lightbox-close:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

.lightbox-close:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.3);
}

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border-radius: 50%;
    transition: all 0.2s ease;
}

.lightbox-prev {
    left: 20px;
}

.lightbox-next {
    right: 20px;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-50%) scale(1.1);
}

.lightbox-prev:focus,
.lightbox-next:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.3);
}

.lightbox-counter {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    font-weight: 500;
}

@media (max-width: 767px) {
    .lightbox-prev,
    .lightbox-next {
        width: 44px;
        height: 44px;
        bottom: 80px;
        top: auto;
        transform: none;
    }

    .lightbox-prev {
        left: auto;
        right: 80px;
    }

    .lightbox-next {
        right: 20px;
    }

    .lightbox-prev:hover,
    .lightbox-next:hover {
        transform: scale(1.1);
    }

    .lightbox-close {
        top: 16px;
        right: 16px;
        width: 44px;
        height: 44px;
    }

    .lightbox-counter {
        bottom: 90px;
    }
}


.about-page {
    padding: 60px 0;
    background: var(--white);
}

.about-intro {
    display: flex;
    flex-direction: column;
    gap: 32px;
    margin-bottom: 60px;
}

.about-intro-img {
    border-radius: var(--radius-lg);
    overflow: hidden;
    height: 300px;
}

.about-intro-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-intro-content h2 {
    margin-bottom: 4px;
}

.about-intro-content .about-title {
    font-size: 14px;
    color: var(--green-600);
    font-weight: 500;
    margin-bottom: 20px;
}

.about-intro-content p {
    color: var(--earth-600);
    margin-bottom: 12px;
    line-height: 1.7;
}

.about-values {
    display: grid;
    gap: 24px;
    margin-bottom: 60px;
}

.about-value {
    padding: 28px;
    background: var(--earth-50);
    border-radius: var(--radius-lg);
    border: 1px solid var(--earth-200);
}

.about-value-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--green-100);
    border-radius: var(--radius);
    margin-bottom: 16px;
}

.about-value-icon svg {
    width: 24px;
    height: 24px;
    color: var(--green-700);
}

.about-value h3 {
    margin-bottom: 10px;
}

.about-value p {
    font-size: 14px;
    color: var(--earth-500);
    line-height: 1.6;
}

.about-text-section {
    margin-bottom: 48px;
}

.about-text-section h2 {
    margin-bottom: 20px;
}

.about-text-section p {
    color: var(--earth-600);
    margin-bottom: 12px;
    line-height: 1.7;
    max-width: 700px;
}

.about-images-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 60px;
}

.about-images-grid figure {
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 1;
}

.about-images-grid img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

section.about-creds-section {
    padding: 80px 0;
    background: var(--earth-100);
}

.about-creds-section h2 {
    margin-bottom: 28px;
    text-align: center;
}

.about-creds-grid {
    display: grid;
    gap: 16px;
}

.about-cred-card {
    padding: 24px;
    background: var(--green-50);
    border-radius: var(--radius-lg);
    border: 1px solid var(--green-100);
    text-align: center;
}

.about-cred-card svg {
    width: 32px;
    height: 32px;
    color: var(--green-600);
    margin-bottom: 12px;
}

.about-cred-card h4 {
    font-family: var(--font-sans);
    font-size: 15px;
    font-weight: 600;
    color: var(--earth-800);
    margin-bottom: 8px;
    text-transform: none;
    letter-spacing: 0;
}

.about-cred-card p {
    font-size: 13px;
    color: var(--earth-500);
}


.contact-page {
    padding: 60px 0;
    background: var(--earth-50);
}

.contact-page-grid {
    display: flex;
    flex-direction: column-reverse; 
    gap: 40px;
}

.contact-info-card {
    display: flex;
    gap: 16px;
    padding: 20px;
    background: var(--white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--earth-200);
    margin-bottom: 16px;
}

.contact-info-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--green-100);
    border-radius: var(--radius);
    flex-shrink: 0;
}

.contact-info-icon svg {
    width: 22px;
    height: 22px;
    color: var(--green-700);
}

.contact-info-card h3 {
    font-family: var(--font-sans);
    font-size: 13px;
    font-weight: 600;
    color: var(--earth-500);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 4px;
}

.contact-info-value {
    font-size: 18px;
    font-weight: 600;
    color: var(--earth-800);
    display: block;
}

.contact-info-card p {
    font-size: 14px;
    color: var(--earth-500);
    margin-top: 2px;
}

.contact-area-box {
    padding: 24px;
    background: var(--green-700);
    border-radius: var(--radius-lg);
    margin: 24px 0;
}

.contact-area-box h3 {
    color: var(--white);
    font-size: 16px;
    margin-bottom: 12px;
}

.contact-area-box p {
    color: rgba(255,255,255,0.8);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 8px;
}

.contact-area-box strong {
    color: var(--white);
}

.contact-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.contact-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    background: var(--white);
    border: 1px solid var(--earth-200);
    border-radius: var(--radius);
}

.contact-badge svg {
    width: 18px;
    height: 18px;
    color: var(--green-600);
}

.contact-badge span {
    font-size: 13px;
    color: var(--earth-700);
    font-weight: 500;
}

.contact-page-form .contact-form {
    max-width: none;
}

.form-intro {
    color: var(--earth-500);
    margin-bottom: 24px;
    font-size: 14px;
}




@media (max-width: 479px) {
    .topbar-inner { padding: 5px 16px; }
    .topbar-badge { font-size: 10px; padding: 5px 10px; }
    .topbar-text { display: none; }

    .page-hero-bg { padding: 80px 0 60px; }
    .page-hero-bg h1 { font-size: 26px; }

    .hero { min-height: 90vh; }
    .hero-stats { gap: 20px; flex-wrap: wrap; }
    .hero-stat { padding-right: 20px; }
    .hero-stat:not(:last-child)::after { height: 24px; }
    .stat-value { font-size: 24px; }

    .service-img { height: 160px; }
    .service-content { padding: 20px; }

    .work-item { aspect-ratio: 4/3; }

    .process-grid { gap: 12px; }
    .process-step { padding: 20px 16px; }

    .about-media { height: 250px; }

    .form-grid { grid-template-columns: 1fr; }

    .footer-nav-grid { grid-template-columns: 1fr; gap: 24px; }
    .footer-bottom { flex-direction: column; text-align: center; }
}

@media (min-width: 480px) {
    .topbar-text { display: inline; }
    .work-grid { gap: 16px; }
}

@media (min-width: 768px) {
    .nav { display: flex; }
    .header-phone { display: flex; }
    .menu-btn { display: none; }

    .hero-content { padding: 120px 40px 40px; max-width: 560px; }
    .hero-bottom { padding: 24px 40px 48px; }
    .hero-stat { padding-right: 40px; }

    .intro { padding: 100px 0; }
    .intro-grid { flex-direction: row; align-items: center; gap: 64px; }
    .intro-content { flex: 1; }
    .intro-images { flex: 1; }
    .intro-img-1, .intro-img-2 { height: 280px; }

    .services { padding: 100px 0; }
    .services-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }

    .work { padding: 100px 0; }
    .work-grid { grid-template-columns: repeat(3, 1fr); gap: 20px; }

    .process { padding: 100px 0; }
    .process-grid { grid-template-columns: repeat(4, 1fr); gap: 20px; }

    .instagram-section { padding: 100px 0; }

    .about { padding: 100px 0; }
    .about-grid { flex-direction: row; align-items: center; gap: 64px; }
    .about-media { flex-shrink: 0; width: 340px; height: 400px; }
    .about-content { flex: 1; }
    .about-creds { gap: 16px; }

    .cta { padding: 120px 0; }

    .contact { padding: 100px 0; }
    .contact-layout { flex-direction: row; gap: 64px; }
    .contact-info { flex: 1; }
    .contact-form { flex: 1; max-width: 440px; padding: 40px 32px; }

    .footer-top { flex-direction: row; justify-content: space-between; padding: 80px 0 60px; }
    .footer-nav-grid { grid-template-columns: repeat(3, 1fr); gap: 48px; }

    
    .page-hero { padding: 80px 0 60px; }
    .page-hero-bg { padding: 120px 0 100px; }

    .service-detail-item {
        flex-direction: row;
        gap: 48px;
        align-items: center;
    }
    .service-detail-item:nth-child(even) { flex-direction: row-reverse; }
    .service-detail-img { flex: 0 0 480px; height: 380px; }
    .service-detail-content { flex: 1; }

    .gallery-grid { grid-template-columns: repeat(3, 1fr); gap: 16px; }

    .about-intro { flex-direction: row; gap: 48px; align-items: center; }
    .about-intro-img { flex: 0 0 320px; height: 380px; }
    .about-intro-content { flex: 1; }
    .about-values { grid-template-columns: repeat(3, 1fr); }
    .about-creds-grid { grid-template-columns: repeat(2, 1fr); }

    .contact-page-grid { flex-direction: row; gap: 60px; } 
    .contact-page-info { flex: 1; }
    .contact-page-form { flex: 1; max-width: 480px; }
}

@media (min-width: 1024px) {
    .gallery-grid { grid-template-columns: repeat(4, 1fr); }
    .about-creds-grid { grid-template-columns: repeat(4, 1fr); }

    .service-detail-img { flex: 0 0 520px; height: 420px; }
}

@media (min-width: 1200px) {
    .service-detail-img { flex: 0 0 560px; height: 450px; }
}

@media (min-width: 1024px) {
    .services-grid { grid-template-columns: repeat(3, 1fr); }
}


@media (pointer: coarse) {
    .btn-primary, .btn-ghost { min-height: 52px; }
    .contact-card { min-height: 72px; }

    .btn-primary:active {
        transform: scale(0.98);
        background: var(--green-800);
    }

    .service-card:active {
        transform: scale(0.99);
    }

    .contact-card:active {
        background: var(--green-50);
    }
}


@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content {
    animation: fadeInUp 0.6s ease forwards;
}

.hero-bottom {
    animation: fadeInUp 0.6s ease 0.15s forwards;
    opacity: 0;
}


.animate-on-scroll {
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.animate-on-scroll.animate-in {
    opacity: 1;
    transform: translateY(0);
}


.services-grid .animate-on-scroll:nth-child(1) { transition-delay: 0s; }
.services-grid .animate-on-scroll:nth-child(2) { transition-delay: 0.08s; }
.services-grid .animate-on-scroll:nth-child(3) { transition-delay: 0.16s; }
.services-grid .animate-on-scroll:nth-child(4) { transition-delay: 0.08s; }
.services-grid .animate-on-scroll:nth-child(5) { transition-delay: 0.16s; }
.services-grid .animate-on-scroll:nth-child(6) { transition-delay: 0.24s; }

.process-grid .animate-on-scroll:nth-child(1) { transition-delay: 0s; }
.process-grid .animate-on-scroll:nth-child(2) { transition-delay: 0.08s; }
.process-grid .animate-on-scroll:nth-child(3) { transition-delay: 0.16s; }
.process-grid .animate-on-scroll:nth-child(4) { transition-delay: 0.24s; }

.work-grid .animate-on-scroll:nth-child(1) { transition-delay: 0s; }
.work-grid .animate-on-scroll:nth-child(2) { transition-delay: 0.06s; }
.work-grid .animate-on-scroll:nth-child(3) { transition-delay: 0.12s; }
.work-grid .animate-on-scroll:nth-child(4) { transition-delay: 0.06s; }
.work-grid .animate-on-scroll:nth-child(5) { transition-delay: 0.12s; }
.work-grid .animate-on-scroll:nth-child(6) { transition-delay: 0.18s; }


::selection {
    background: var(--green-300);
    color: var(--green-900);
}


::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--earth-100);
}

::-webkit-scrollbar-thumb {
    background: var(--earth-400);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--earth-500);
}


.policy-section {
    padding: 60px 0 80px;
    background: var(--white);
}

.policy-content {
    max-width: 720px;
    margin: 0 auto;
}

.policy-content h2 {
    font-size: clamp(20px, 3vw, 24px);
    margin-top: 40px;
    margin-bottom: 16px;
    padding-top: 24px;
    border-top: 1px solid var(--earth-200);
}

.policy-content h2:first-child {
    margin-top: 0;
    padding-top: 0;
    border-top: none;
}

.policy-content p {
    color: var(--earth-600);
    margin-bottom: 14px;
    line-height: 1.7;
}

.policy-content ul {
    list-style: none;
    margin: 16px 0 24px;
}

.policy-content ul li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 10px;
    color: var(--earth-600);
    line-height: 1.6;
}

.policy-content ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 8px;
    height: 8px;
    background: var(--green-500);
    border-radius: 50%;
}

.policy-content a {
    color: var(--green-700);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.policy-content a:hover {
    color: var(--green-600);
}

.policy-content a:focus {
    outline: none;
    background: var(--green-100);
    border-radius: 2px;
}


@media (min-width: 480px) and (max-width: 767px) {
    .container { padding: 0 24px; }

    .hero-content { padding: 100px 24px 36px; }
    .hero-bottom { padding: 20px 24px 28px; }
    .hero-stats { gap: 24px; }
    .hero-stat { padding-right: 24px; }
    .stat-value { font-size: 26px; }

    .intro { padding: 64px 0; }
    .intro-images { gap: 12px; }
    .intro-img-1, .intro-img-2 { height: 200px; }

    .services { padding: 64px 0; }
    .services-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
    .service-img { height: 140px; }
    .service-content { padding: 18px; }
    .service-card h3 { font-size: 17px; }
    .service-card p { font-size: 13px; }

    .work { padding: 64px 0; }
    .work-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }

    .process { padding: 64px 0; }
    .process-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
    .process-step { padding: 24px 20px; }

    .about { padding: 64px 0; }
    .about-media { max-width: 320px; height: 280px; }

    .cta { padding: 80px 0; }

    .contact { padding: 64px 0; }
    .contact-layout { gap: 40px; }
    .contact-form { padding: 28px 24px; }

    .footer-top { padding: 48px 0 36px; }
    .footer-nav-grid { grid-template-columns: repeat(2, 1fr); gap: 28px; }

    
    .page-hero { padding: 48px 0 40px; }

    .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }

    .about-intro { gap: 28px; }
    .about-intro-img { height: 260px; }
    .about-values { grid-template-columns: 1fr; gap: 16px; }
    .about-images-grid { grid-template-columns: repeat(3, 1fr); gap: 12px; }
    .about-creds-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }

    .contact-page-grid { gap: 32px; flex-direction: column-reverse; }

    .page-hero-bg { padding: 80px 0 60px; }
    .not-found-service { padding: 48px 0; }
}


@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms;
        animation-iteration-count: 1;
        transition-duration: 0.01ms;
        scroll-behavior: auto;
    }

    .hero-content,
    .hero-bottom {
        animation: none;
        opacity: 1;
    }

    .service-card:hover,
    .process-step:hover,
    .work-item:hover img,
    .intro-img-1:hover img,
    .intro-img-2:hover img,
    .gallery-item:hover img {
        transform: none;
    }
}


.form-checkbox input:focus {
    outline: 2px solid var(--green-500);
    outline-offset: 2px;
}


.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--green-700);
    color: var(--white);
    padding: 8px 16px;
    z-index: 200;
    font-size: 14px;
    font-weight: 600;
    border-radius: 0 0 var(--radius) 0;
    transition: top 0.2s;
}

.skip-link:focus {
    top: 0;
    outline: none;
}
