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

:root {
    --green-900: #0B1F0E;
    --green-800: #1B4332;
    --green-700: #2D6A4F;
    --green-600: #40916C;
    --green-500: #52B788;
    --green-400: #74C69D;
    --green-300: #95D18D;
    --green-200: #B7E4C7;
    --green-100: #D8F3DC;
    --cream-50: #FAFAF5;
    --cream-100: #F5F5EE;
    --cream-200: #EDEDE0;
    --cream-300: #E2E2D4;
    --text-primary: #1A1A16;
    --text-secondary: #4A4A42;
    --text-muted: #7A7A70;
    --white: #FFFFFF;
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-serif: 'Playfair Display', Georgia, serif;
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-sans);
    font-weight: 300;
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-primary);
    background-color: var(--cream-50);
    overflow-x: hidden;
}

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

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

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ─── Header ─── */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 0 24px;
    transition: background-color 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out), padding 0.3s var(--ease-out);
}

.site-header.scrolled {
    background-color: rgba(250, 250, 245, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 1px 0 rgba(27, 67, 50, 0.08);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 18px;
    font-weight: 400;
    letter-spacing: -0.02em;
    color: var(--white);
    transition: color 0.3s var(--ease-out);
}

.site-header.scrolled .logo {
    color: var(--green-800);
}

.logo-mark {
    color: var(--green-300);
    transition: color 0.3s var(--ease-out);
}

.site-header.scrolled .logo-mark {
    color: var(--green-700);
}

.logo-accent {
    color: var(--green-400);
}

.site-header.scrolled .logo-accent {
    color: var(--green-500);
}

/* ─── Nav ─── */
.nav-menu {
    display: flex;
    align-items: center;
    gap: 36px;
    list-style: none;
}

.nav-menu a {
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.8);
    transition: color 0.3s var(--ease-out);
    position: relative;
}

.site-header.scrolled .nav-menu a {
    color: var(--text-secondary);
}

.nav-menu a:hover {
    color: var(--white);
}

.site-header.scrolled .nav-menu a:hover {
    color: var(--green-700);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: currentColor;
    transition: width 0.3s var(--ease-out);
}

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

.nav-cta {
    padding: 8px 20px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 100px;
    transition: background-color 0.3s var(--ease-out), border-color 0.3s var(--ease-out), color 0.3s var(--ease-out) !important;
}

.nav-cta:hover {
    background-color: var(--white);
    border-color: var(--white);
    color: var(--green-800) !important;
}

.nav-cta::after {
    display: none;
}

.site-header.scrolled .nav-cta {
    border-color: var(--green-700);
    color: var(--green-700) !important;
}

.site-header.scrolled .nav-cta:hover {
    background-color: var(--green-700);
    border-color: var(--green-700);
    color: var(--white) !important;
}

/* ─── Nav Toggle ─── */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    width: 24px;
    padding: 4px 0;
}

.nav-toggle-line {
    display: block;
    width: 100%;
    height: 1.5px;
    background-color: var(--white);
    border-radius: 2px;
    transition: transform 0.3s var(--ease-out), opacity 0.3s var(--ease-out);
    transform-origin: center;
}

.site-header.scrolled .nav-toggle-line {
    background-color: var(--green-800);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-line:nth-child(1) {
    transform: translateY(6.5px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-line:nth-child(2) {
    opacity: 0;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-line:nth-child(3) {
    transform: translateY(-6.5px) rotate(-45deg);
}

/* ─── Hero ─── */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background-color: var(--green-900);
}

.hero-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        145deg,
        var(--green-900) 0%,
        var(--green-800) 30%,
        var(--green-700) 55%,
        var(--green-600) 75%,
        var(--green-500) 100%
    );
    z-index: 1;
}

.hero-gradient::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 60% at 20% 80%, rgba(116, 198, 157, 0.15) 0%, transparent 60%),
        radial-gradient(ellipse 60% 40% at 80% 20%, rgba(82, 183, 136, 0.1) 0%, transparent 50%);
}

.hero-gradient::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 780px;
    padding: 120px 24px 80px;
}

.hero-eyebrow {
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--green-300);
    margin-bottom: 28px;
}

.hero-title {
    font-family: var(--font-sans);
    font-size: clamp(42px, 8vw, 88px);
    font-weight: 300;
    line-height: 1.05;
    letter-spacing: -0.03em;
    color: var(--white);
    margin-bottom: 28px;
}

.serif-italic {
    font-family: var(--font-serif);
    font-style: italic;
    font-weight: 500;
}

.hero-subtitle {
    font-size: clamp(16px, 2vw, 19px);
    font-weight: 300;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.75);
    max-width: 560px;
    margin: 0 auto 44px;
}

.hero-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 56px;
}

.hero-trust {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 28px;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.55);
    letter-spacing: 0.02em;
}

.trust-item svg {
    color: var(--green-400);
    opacity: 0.7;
}

.hero-scroll {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.4);
    animation: scrollBounce 2s ease-in-out infinite;
}

@keyframes scrollBounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(6px); }
}

/* ─── Buttons ─── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    border-radius: 100px;
    transition: all 0.3s var(--ease-out);
    white-space: nowrap;
}

.btn-primary {
    background-color: var(--white);
    color: var(--green-800);
}

.btn-primary:hover {
    background-color: var(--green-100);
    transform: translateY(-1px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.btn-ghost {
    background-color: transparent;
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-ghost:hover {
    border-color: var(--white);
    background-color: rgba(255, 255, 255, 0.08);
}

.btn-ghost-light {
    background-color: transparent;
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-ghost-light:hover {
    border-color: var(--white);
    background-color: rgba(255, 255, 255, 0.08);
}

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

/* ─── Section shared ─── */
section {
    padding: 120px 0;
}

.section-label {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--green-600);
    margin-bottom: 16px;
}

.section-title {
    font-family: var(--font-sans);
    font-size: clamp(32px, 5vw, 52px);
    font-weight: 300;
    line-height: 1.1;
    letter-spacing: -0.025em;
    color: var(--text-primary);
    margin-bottom: 20px;
}

.section-intro {
    font-size: 17px;
    font-weight: 300;
    line-height: 1.7;
    color: var(--text-secondary);
    max-width: 540px;
}

/* ─── Services ─── */
.services {
    background-color: var(--cream-50);
}

.services .container {
    max-width: 1200px;
}

.services .section-label,
.services .section-title,
.services .section-intro {
    margin-bottom: 64px;
}

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

.service-card {
    background-color: var(--white);
    border-radius: 16px;
    overflow: hidden;
    transition: transform 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out);
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 60px rgba(27, 67, 50, 0.08);
}

.service-number {
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.1em;
    color: var(--green-400);
    padding: 28px 28px 0;
}

.service-name {
    font-size: 20px;
    font-weight: 500;
    letter-spacing: -0.01em;
    color: var(--text-primary);
    padding: 8px 28px 0;
}

.service-desc {
    font-size: 14px;
    font-weight: 300;
    line-height: 1.7;
    color: var(--text-secondary);
    padding: 12px 28px 24px;
}

.service-image {
    padding: 0 28px 28px;
    border-radius: 12px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    transition: transform 0.6s var(--ease-out);
}

.service-card:hover .service-image img {
    transform: scale(1.03);
}

/* ─── About ─── */
.about {
    background-color: var(--white);
    padding: 120px 0;
}

.about-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-image-wrap {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
}

.about-image-wrap img {
    width: 100%;
    height: 560px;
    object-fit: cover;
    border-radius: 16px;
}

.about-image-accent {
    position: absolute;
    bottom: -16px;
    right: -16px;
    width: 120px;
    height: 120px;
    background-color: var(--green-100);
    border-radius: 16px;
    z-index: -1;
}

.about-content .section-title {
    margin-bottom: 28px;
}

.about-text {
    font-size: 16px;
    font-weight: 300;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 16px;
}

.about-values {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.value-item {
    display: grid;
    grid-template-columns: auto 1fr auto 1fr;
    align-items: center;
    gap: 0 20px;
    padding: 16px 0;
    border-top: 1px solid var(--cream-200);
}

.value-label {
    font-size: 14px;
    font-weight: 500;
    color: var(--green-700);
    letter-spacing: 0.02em;
}

.value-divider {
    width: 32px;
    height: 1px;
    background-color: var(--green-300);
}

.value-desc {
    font-size: 14px;
    font-weight: 300;
    color: var(--text-muted);
    text-align: right;
}

/* ─── Service Area ─── */
.area {
    background-color: var(--cream-50);
}

.area-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.area-text .section-title {
    margin-bottom: 20px;
}

.area-desc {
    font-size: 16px;
    font-weight: 300;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 32px;
}

.area-locations {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px 32px;
}

.area-locations li {
    font-size: 14px;
    font-weight: 400;
    color: var(--text-primary);
    padding-left: 16px;
    position: relative;
}

.area-locations li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 9px;
    width: 5px;
    height: 5px;
    background-color: var(--green-400);
    border-radius: 50%;
}

.area-map {
    background-color: var(--cream-200);
    border-radius: 16px;
    padding: 48px;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.map-placeholder {
    text-align: center;
    color: var(--green-700);
}

.map-placeholder svg {
    margin: 0 auto 16px;
    opacity: 0.6;
}

.map-placeholder p {
    font-size: 15px;
    font-weight: 400;
    line-height: 1.6;
    color: var(--green-800);
}

/* ─── Process ─── */
.process {
    background-color: var(--white);
}

.process .section-label,
.process .section-title {
    text-align: center;
    margin-bottom: 64px;
}

.process .section-title {
    margin-bottom: 64px;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.process-step {
    text-align: center;
    padding: 40px 24px;
    position: relative;
}

.process-step:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 52px;
    right: -20px;
    width: 40px;
    height: 1px;
    background: linear-gradient(to right, var(--green-300), transparent);
}

.process-step:not(:first-child)::after {
    left: -20px;
    right: auto;
    background: linear-gradient(to left, var(--green-300), transparent);
}

.step-number {
    font-family: var(--font-serif);
    font-size: 48px;
    font-weight: 500;
    font-style: italic;
    color: var(--green-200);
    line-height: 1;
    margin-bottom: 20px;
}

.step-title {
    font-size: 18px;
    font-weight: 500;
    letter-spacing: -0.01em;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.step-desc {
    font-size: 14px;
    font-weight: 300;
    line-height: 1.7;
    color: var(--text-secondary);
}

/* ─── CTA Section ─── */
.cta-section {
    position: relative;
    padding: 120px 0;
    overflow: hidden;
    background-color: var(--green-800);
}

.cta-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        var(--green-900) 0%,
        var(--green-800) 50%,
        var(--green-700) 100%
    );
}

.cta-gradient::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 70% 50% at 80% 50%, rgba(82, 183, 136, 0.12) 0%, transparent 60%);
}

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

.cta-eyebrow {
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--green-400);
    margin-bottom: 20px;
}

.cta-title {
    font-family: var(--font-sans);
    font-size: clamp(32px, 5vw, 52px);
    font-weight: 300;
    line-height: 1.1;
    letter-spacing: -0.025em;
    color: var(--white);
    margin-bottom: 20px;
}

.cta-desc {
    font-size: 16px;
    font-weight: 300;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 40px;
}

.cta-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.cta-actions .btn-primary {
    background-color: var(--white);
    color: var(--green-800);
}

.cta-actions .btn-primary:hover {
    background-color: var(--green-100);
}

/* ─── Contact ─── */
.contact {
    background-color: var(--cream-50);
}

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.contact-info .section-title {
    margin-bottom: 20px;
}

.contact-desc {
    font-size: 16px;
    font-weight: 300;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 36px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-detail {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    font-size: 15px;
    font-weight: 300;
    color: var(--text-primary);
    transition: color 0.3s var(--ease-out);
}

.contact-detail:hover {
    color: var(--green-700);
}

.contact-detail svg {
    flex-shrink: 0;
    margin-top: 3px;
    color: var(--green-600);
}

/* ─── Form ─── */
.contact-form-wrap {
    background-color: var(--white);
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 4px 24px rgba(27, 67, 50, 0.04);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

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

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--text-muted);
}

.form-group input,
.form-group select,
.form-group textarea {
    font-family: var(--font-sans);
    font-size: 15px;
    font-weight: 300;
    color: var(--text-primary);
    background-color: var(--cream-50);
    border: 1px solid var(--cream-300);
    border-radius: 8px;
    padding: 12px 16px;
    outline: none;
    transition: border-color 0.3s var(--ease-out), background-color 0.3s var(--ease-out);
    resize: vertical;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--green-500);
    background-color: var(--white);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-muted);
}

.form-note {
    font-size: 13px;
    font-weight: 300;
    color: var(--text-muted);
    text-align: center;
    margin-top: 4px;
}

.form-success {
    text-align: center;
    padding: 48px 24px;
    color: var(--green-700);
}

.form-success svg {
    margin: 0 auto 16px;
    color: var(--green-500);
}

.form-success h3 {
    font-size: 22px;
    font-weight: 500;
    letter-spacing: -0.01em;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.form-success p {
    font-size: 15px;
    font-weight: 300;
    color: var(--text-secondary);
}

/* ─── Footer ─── */
.site-footer {
    background-color: var(--green-900);
    color: var(--white);
    padding: 64px 0 0;
}

.footer-inner {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand .logo {
    color: var(--white);
    margin-bottom: 16px;
}

.footer-brand .logo-mark {
    color: var(--green-400);
}

.footer-tagline {
    font-size: 14px;
    font-weight: 300;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.5);
    max-width: 280px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    font-size: 14px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.6);
    transition: color 0.3s var(--ease-out);
}

.footer-links a:hover {
    color: var(--white);
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-contact a {
    font-size: 14px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.6);
    transition: color 0.3s var(--ease-out);
}

.footer-contact a:hover {
    color: var(--white);
}

.footer-contact span:not(a) {
    font-size: 14px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.5);
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 0;
    font-size: 13px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.35);
}

/* ─── Reduced motion ─── */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }
    html { scroll-behavior: auto; }
    .hero-scroll { animation: none; }
}

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

    .about-layout,
    .area-content,
    .contact-layout {
        gap: 48px;
    }

    .about-image-wrap img {
        height: 420px;
    }
}

@media (max-width: 768px) {
    section {
        padding: 80px 0;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 72px;
        left: 0;
        right: 0;
        background-color: rgba(250, 250, 245, 0.98);
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
        flex-direction: column;
        gap: 0;
        padding: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s var(--ease-out), padding 0.4s var(--ease-out);
        box-shadow: none;
    }

    .nav-menu.open {
        max-height: 400px;
        padding: 24px 0;
        box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
    }

    .nav-menu a {
        color: var(--text-secondary) !important;
        padding: 12px 24px;
        font-size: 14px;
    }

    .nav-menu a:hover {
        color: var(--green-700) !important;
        background-color: var(--cream-100);
    }

    .nav-cta {
        border-color: var(--green-700) !important;
        color: var(--green-700) !important;
        margin: 8px 24px;
        text-align: center;
        width: calc(100% - 48px);
    }

    .nav-cta:hover {
        background-color: var(--green-700) !important;
        color: var(--white) !important;
    }

    .site-header.scrolled .nav-toggle-line {
        background-color: var(--green-800);
    }

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

    .about-layout,
    .area-content,
    .contact-layout {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .about-image-wrap img {
        height: 360px;
    }

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

    .process-step:not(:last-child)::after,
    .process-step:not(:first-child)::after {
        display: none;
    }

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

    .footer-inner {
        grid-template-columns: 1fr;
        gap: 32px;
    }

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

    .hero-content {
        padding: 100px 24px 80px;
    }

    .hero-trust {
        flex-direction: column;
        gap: 12px;
    }

    .area-locations {
        grid-template-columns: 1fr;
    }

    .contact-form-wrap {
        padding: 28px;
    }
}

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

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

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

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

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