/* ===== RESET & BASE ===== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --green-900: #0d1f15;
    --green-800: #1a3a2a;
    --green-700: #244d38;
    --green-600: #2d6348;
    --green-500: #3a7d5c;
    --green-400: #5a9e7a;
    --cream-100: #f5f0e8;
    --cream-200: #ebe4d6;
    --cream-300: #ddd5c4;
    --cream-50: #faf7f2;
    --white: #ffffff;
    --text-dark: #1a1a1a;
    --text-muted: #4a4a4a;
    --text-light: #6b6b6b;
    --font-serif: 'Playfair Display', Georgia, 'Times New Roman', serif;
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
    font-family: var(--font-sans);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--cream-50);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    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;
}

ul, ol {
    list-style: none;
}

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

/* ===== SKIP LINK ===== */
.skip-link {
    position: absolute;
    top: -100%;
    left: 16px;
    background: var(--green-800);
    color: var(--cream-100);
    padding: 8px 16px;
    z-index: 10000;
    border-radius: 4px;
    font-size: 14px;
}
.skip-link:focus {
    top: 16px;
}

/* ===== LOADER ===== */
.loader {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: var(--green-800);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.5s var(--ease-out), visibility 0.5s;
}
.loader.loaded {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}
.loader-inner {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    border-radius: 4px;
    transition: all 0.3s var(--ease-smooth);
    white-space: nowrap;
}
.btn-primary {
    background: var(--green-800);
    color: var(--cream-100);
}
.btn-primary:hover, .btn-primary:focus-visible {
    background: var(--green-700);
    transform: translateY(-1px);
    box-shadow: 0 8px 24px rgba(26, 58, 42, 0.25);
}
.btn-ghost {
    background: transparent;
    color: var(--cream-100);
    border: 1px solid rgba(245, 240, 232, 0.4);
}
.btn-ghost:hover, .btn-ghost:focus-visible {
    background: rgba(245, 240, 232, 0.1);
    border-color: rgba(245, 240, 232, 0.7);
}
.btn-light {
    background: var(--cream-100);
    color: var(--green-800);
}
.btn-light:hover, .btn-light:focus-visible {
    background: var(--white);
    transform: translateY(-1px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}
.btn-ghost-light {
    background: transparent;
    color: var(--cream-100);
    border: 1px solid rgba(245, 240, 232, 0.5);
}
.btn-ghost-light:hover, .btn-ghost-light:focus-visible {
    background: rgba(245, 240, 232, 0.1);
    border-color: var(--cream-100);
}
.btn-outline {
    background: transparent;
    color: var(--green-800);
    border: 1px solid var(--green-800);
}
.btn-outline:hover {
    background: var(--green-800);
    color: var(--cream-100);
}
.btn-full {
    width: 100%;
    justify-content: center;
}

/* ===== HEADER ===== */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: transparent;
    transition: background 0.4s var(--ease-smooth), box-shadow 0.4s var(--ease-smooth), padding 0.4s var(--ease-smooth);
    padding: 20px 0;
}
.site-header.scrolled {
    background: rgba(26, 58, 42, 0.97);
    box-shadow: 0 2px 20px rgba(0,0,0,0.15);
    padding: 12px 0;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* LOGO */
.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 1001;
}
.logo--footer .logo-mark {
    background: var(--cream-100);
    color: var(--green-800);
}
.logo-mark {
    width: 44px;
    height: 44px;
    background: var(--cream-100);
    color: var(--green-800);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-serif);
    font-size: 22px;
    font-weight: 700;
    border-radius: 8px;
    flex-shrink: 0;
    transition: transform 0.3s var(--ease-out);
}
.logo:hover .logo-mark {
    transform: rotate(-5deg) scale(1.05);
}
.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}
.logo-line-one {
    font-family: var(--font-serif);
    font-size: 17px;
    font-weight: 600;
    color: var(--cream-100);
    letter-spacing: 0.01em;
}
.logo-line-two {
    font-family: var(--font-sans);
    font-size: 11px;
    font-weight: 400;
    color: rgba(245, 240, 232, 0.7);
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

/* NAV */
.nav-toggle {
    display: none;
    width: 44px;
    height: 44px;
    position: relative;
    z-index: 1001;
}
.hamburger {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
}
.hamburger::before,
.hamburger::after,
.hamburger span {
    content: '';
    display: block;
    width: 22px;
    height: 1.5px;
    background: var(--cream-100);
    transition: all 0.3s var(--ease-smooth);
    transform-origin: center;
}
.nav-toggle[aria-expanded="true"] .hamburger::before {
    transform: rotate(45deg) translate(4px, -4px);
}
.nav-toggle[aria-expanded="true"] .hamburger::after {
    transform: rotate(-45deg) translate(4px, 4px);
}
.nav-toggle[aria-expanded="true"] .hamburger span {
    opacity: 0;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 8px;
}
.nav-menu a {
    padding: 8px 16px;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: rgba(245, 240, 232, 0.8);
    border-radius: 4px;
    transition: color 0.2s, background 0.2s;
}
.nav-menu a:hover {
    color: var(--cream-100);
    background: rgba(245, 240, 232, 0.08);
}
.nav-cta {
    background: var(--cream-100) !important;
    color: var(--green-800) !important;
    margin-left: 8px;
    font-weight: 600 !important;
}
.nav-cta:hover {
    background: var(--white) !important;
}

/* ===== HERO ===== */
.hero {
    min-height: 100vh;
    min-height: 100dvh;
    background: var(--green-800);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 120px 0 80px;
}
.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    width: 100%;
}
.hero-content {
    max-width: 540px;
}
.hero-eyebrow {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(245, 240, 232, 0.55);
    margin-bottom: 24px;
}
.hero-headline {
    font-family: var(--font-serif);
    font-size: clamp(40px, 5vw, 68px);
    font-weight: 400;
    line-height: 1.08;
    color: var(--cream-100);
    margin-bottom: 28px;
    letter-spacing: -0.01em;
}
.hero-headline em {
    font-style: italic;
    color: var(--green-400);
}
.hero-subheadline {
    font-size: 17px;
    line-height: 1.7;
    color: rgba(245, 240, 232, 0.72);
    margin-bottom: 40px;
    max-width: 440px;
}
.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 56px;
}
.hero-trust {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
}
.trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    font-weight: 500;
    color: rgba(245, 240, 232, 0.7);
    letter-spacing: 0.02em;
}
.trust-item svg {
    color: var(--green-400);
    flex-shrink: 0;
}

/* HERO IMAGE */
.hero-image-wrap {
    position: relative;
}
.hero-image-frame {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 40px 80px rgba(0,0,0,0.3);
}
.hero-image-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.hero-accent-bar {
    position: absolute;
    bottom: -20px;
    left: -20px;
    background: var(--cream-100);
    color: var(--green-800);
    padding: 16px 24px;
    border-radius: 8px;
    font-family: var(--font-serif);
    font-size: 15px;
    font-style: italic;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.2);
}
.accent-dot {
    width: 8px;
    height: 8px;
    background: var(--green-600);
    border-radius: 50%;
    flex-shrink: 0;
}
.hero-scroll-hint {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(245, 240, 232, 0.4);
    font-size: 11px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}
.hero-scroll-hint svg {
    animation: scrollBounce 1.8s ease-in-out infinite;
}
@keyframes scrollBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(6px); }
}

/* ===== SECTION COMMON ===== */
.section-header {
    margin-bottom: 64px;
}
.section-header--centered {
    text-align: center;
}
.section-eyebrow {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--green-600);
    margin-bottom: 16px;
}
.section-title {
    font-family: var(--font-serif);
    font-size: clamp(32px, 4vw, 52px);
    font-weight: 400;
    line-height: 1.12;
    color: var(--text-dark);
    letter-spacing: -0.015em;
}
.section-subtitle {
    font-size: 17px;
    color: var(--text-muted);
    margin-top: 16px;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

/* ===== SERVICES ===== */
.services {
    padding: 120px 0;
    background: var(--cream-50);
}
.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}
.service-card {
    background: var(--white);
    border: 1px solid var(--cream-200);
    border-radius: 12px;
    padding: 44px 36px;
    transition: all 0.35s var(--ease-smooth);
    position: relative;
    overflow: hidden;
}
.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--green-600);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.35s var(--ease-out);
}
.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 60px rgba(26, 58, 42, 0.1);
    border-color: transparent;
}
.service-card:hover::before {
    transform: scaleX(1);
}
.service-number {
    font-family: var(--font-serif);
    font-size: 48px;
    font-weight: 400;
    color: var(--cream-200);
    line-height: 1;
    margin-bottom: 20px;
    transition: color 0.3s;
}
.service-card:hover .service-number {
    color: var(--cream-300);
}
.service-icon {
    width: 52px;
    height: 52px;
    background: rgba(26, 58, 42, 0.07);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    color: var(--green-700);
    transition: background 0.3s;
}
.service-card:hover .service-icon {
    background: var(--green-800);
    color: var(--cream-100);
}
.service-title {
    font-family: var(--font-serif);
    font-size: 24px;
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 12px;
    letter-spacing: -0.01em;
}
.service-desc {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-muted);
    margin-bottom: 24px;
}
.service-link {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--green-700);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: gap 0.2s var(--ease-out);
}
.service-link:hover {
    gap: 14px;
}

/* ===== ABOUT ===== */
.about {
    padding: 120px 0;
    background: var(--cream-100);
}
.about-container {
    display: grid;
    grid-template-columns: 560px 1fr;
    gap: 80px;
    align-items: center;
}
.about-image-side {
    position: relative;
}
.about-image-side img {
    width: 100%;
    height: 680px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 32px 64px rgba(0,0,0,0.12);
}
.about-badge {
    position: absolute;
    bottom: -24px;
    right: -24px;
    background: var(--green-800);
    color: var(--cream-100);
    padding: 24px 28px;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    box-shadow: 0 16px 48px rgba(0,0,0,0.2);
}
.badge-number {
    font-family: var(--font-serif);
    font-size: 36px;
    font-weight: 700;
    line-height: 1;
}
.badge-text {
    font-size: 12px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(245, 240, 232, 0.6);
}
.about-content-side {
    max-width: 500px;
}
.about-lead {
    font-size: 18px;
    line-height: 1.75;
    color: var(--text-dark);
    margin-bottom: 20px;
    font-weight: 400;
}
.about-content-side p {
    font-size: 15px;
    line-height: 1.75;
    color: var(--text-muted);
    margin-bottom: 16px;
}
.about-stats {
    display: flex;
    gap: 40px;
    margin: 36px 0 40px;
    padding: 28px 0;
    border-top: 1px solid var(--cream-200);
    border-bottom: 1px solid var(--cream-200);
}
.stat {
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.stat-number {
    font-family: var(--font-serif);
    font-size: 32px;
    font-weight: 600;
    color: var(--green-800);
    line-height: 1;
}
.stat-label {
    font-size: 12px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-light);
}

/* ===== GALLERY ===== */
.gallery {
    padding: 120px 0;
    background: var(--cream-50);
}
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto auto;
    gap: 20px;
}
.gallery-item {
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
}
.gallery-item--large {
    grid-row: span 2;
}
.gallery-item--large img {
    height: 100%;
    min-height: 500px;
}
.gallery-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.6s var(--ease-out);
}
.gallery-item:hover img {
    transform: scale(1.05);
}
.gallery-item--large img {
    height: 100%;
}
.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(26, 58, 42, 0.8) 0%, transparent 50%);
    display: flex;
    align-items: flex-end;
    padding: 24px;
    opacity: 0;
    transition: opacity 0.35s var(--ease-smooth);
}
.gallery-item:hover .gallery-overlay {
    opacity: 1;
}
.gallery-overlay span {
    font-family: var(--font-serif);
    font-size: 18px;
    color: var(--cream-100);
    font-style: italic;
}

/* ===== PROCESS ===== */
.process {
    padding: 120px 0;
    background: var(--green-800);
    position: relative;
    overflow: hidden;
}
.process::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 20% 50%, rgba(90, 158, 122, 0.12) 0%, transparent 60%);
    pointer-events: none;
}
.process .section-eyebrow {
    color: rgba(245, 240, 232, 0.5);
}
.process .section-title {
    color: var(--cream-100);
}
.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    position: relative;
}
.process-steps::before {
    content: '';
    position: absolute;
    top: 32px;
    left: 12.5%;
    right: 12.5%;
    height: 1px;
    background: rgba(245, 240, 232, 0.15);
}
.step-number {
    font-family: var(--font-serif);
    font-size: 56px;
    font-weight: 400;
    color: rgba(245, 240, 232, 0.12);
    line-height: 1;
    margin-bottom: 20px;
}
.step-title {
    font-family: var(--font-serif);
    font-size: 22px;
    font-weight: 500;
    color: var(--cream-100);
    margin-bottom: 10px;
}
.step-desc {
    font-size: 14px;
    line-height: 1.7;
    color: rgba(245, 240, 232, 0.6);
    max-width: 240px;
}

/* ===== FAQ ===== */
.faq {
    padding: 120px 0;
    background: var(--cream-50);
}
.faq-container {
    display: grid;
    grid-template-columns: 380px 1fr;
    gap: 80px;
    align-items: start;
}
.faq-left {
    position: sticky;
    top: 120px;
}
.faq-intro {
    font-size: 15px;
    line-height: 1.75;
    color: var(--text-muted);
    margin-bottom: 32px;
}
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 2px;
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--cream-200);
}
.faq-item {
    border-bottom: 1px solid var(--cream-200);
}
.faq-item:last-child {
    border-bottom: none;
}
.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 22px 28px;
    text-align: left;
    font-size: 16px;
    font-weight: 500;
    color: var(--text-dark);
    transition: background 0.2s;
}
.faq-question:hover {
    background: var(--cream-50);
}
.faq-q-text {
    padding-right: 16px;
}
.faq-toggle {
    width: 24px;
    height: 24px;
    position: relative;
    flex-shrink: 0;
}
.faq-toggle::before,
.faq-toggle::after {
    content: '';
    position: absolute;
    background: var(--green-700);
    border-radius: 1px;
    transition: transform 0.3s var(--ease-out);
}
.faq-toggle::before {
    width: 14px;
    height: 1.5px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.faq-toggle::after {
    width: 1.5px;
    height: 14px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.faq-question[aria-expanded="true"] .faq-toggle::after {
    transform: translate(-50%, -50%) rotate(90deg);
}
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s var(--ease-out), padding 0.3s var(--ease-smooth);
}
.faq-answer.open {
    max-height: 200px;
}
.faq-answer p {
    padding: 0 28px 22px;
    font-size: 14px;
    line-height: 1.75;
    color: var(--text-muted);
}

/* ===== CTA BANNER ===== */
.cta-banner {
    padding: 100px 0;
    background: var(--green-800);
    position: relative;
    overflow: hidden;
}
.cta-container {
    position: relative;
    z-index: 1;
}
.cta-content {
    text-align: center;
    max-width: 640px;
    margin: 0 auto;
}
.cta-headline {
    font-family: var(--font-serif);
    font-size: clamp(32px, 4vw, 52px);
    font-weight: 400;
    color: var(--cream-100);
    line-height: 1.12;
    margin-bottom: 20px;
    letter-spacing: -0.01em;
}
.cta-sub {
    font-size: 17px;
    color: rgba(245, 240, 232, 0.65);
    line-height: 1.7;
    margin-bottom: 40px;
}
.cta-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ===== CONTACT ===== */
.contact {
    padding: 120px 0;
    background: var(--cream-100);
}
.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}
.contact-left {
    max-width: 480px;
}
.contact-intro {
    font-size: 15px;
    line-height: 1.75;
    color: var(--text-muted);
    margin-bottom: 40px;
}
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 28px;
}
.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}
.contact-icon {
    width: 44px;
    height: 44px;
    background: var(--green-800);
    color: var(--cream-100);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.contact-label {
    display: block;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-light);
    margin-bottom: 4px;
}
.contact-item a {
    font-size: 15px;
    color: var(--text-dark);
    line-height: 1.6;
    transition: color 0.2s;
}
.contact-item a:hover {
    color: var(--green-700);
}

/* FORM */
.contact-form {
    background: var(--white);
    border-radius: 12px;
    padding: 44px;
    border: 1px solid var(--cream-200);
    box-shadow: 0 16px 48px rgba(0,0,0,0.06);
}
.form-group {
    margin-bottom: 20px;
}
.form-group label {
    display: block;
    font-size: 13px;
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 8px;
    letter-spacing: 0.02em;
}
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    font-family: var(--font-sans);
    font-size: 15px;
    color: var(--text-dark);
    background: var(--cream-50);
    border: 1px solid var(--cream-200);
    border-radius: 6px;
    outline: none;
    transition: border-color 0.2s, box-shadow 0.2s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--green-600);
    box-shadow: 0 0 0 3px rgba(45, 99, 72, 0.12);
}
.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-light);
}
.form-group textarea {
    resize: vertical;
    min-height: 120px;
}
.form-note {
    font-size: 12px;
    color: var(--text-light);
    text-align: center;
    margin-top: 16px;
}
.form-success {
    text-align: center;
    padding: 48px 44px;
}
.success-icon {
    margin: 0 auto 20px;
    color: var(--green-700);
}
.success-title {
    font-family: var(--font-serif);
    font-size: 28px;
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 12px;
}
.form-success p {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 28px;
}

/* ===== FOOTER ===== */
.site-footer {
    background: var(--green-900);
    color: var(--cream-100);
    padding: 80px 0 0;
}
.footer-top {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 60px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(245, 240, 232, 0.1);
}
.footer-tagline {
    font-size: 14px;
    line-height: 1.7;
    color: rgba(245, 240, 232, 0.55);
    margin-top: 20px;
    max-width: 280px;
}
.footer-nav-title {
    font-family: var(--font-serif);
    font-size: 18px;
    font-weight: 500;
    color: var(--cream-100);
    margin-bottom: 20px;
}
.footer-nav ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.footer-nav a {
    font-size: 14px;
    color: rgba(245, 240, 232, 0.6);
    transition: color 0.2s;
}
.footer-nav a:hover {
    color: var(--cream-100);
}
.footer-contact address {
    font-style: normal;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.footer-contact p,
.footer-contact a {
    font-size: 14px;
    color: rgba(245, 240, 232, 0.6);
    line-height: 1.6;
    transition: color 0.2s;
}
.footer-contact a:hover {
    color: var(--cream-100);
}
.footer-bottom {
    padding: 28px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
}
.footer-bottom p {
    font-size: 13px;
    color: rgba(245, 240, 232, 0.4);
}
.footer-bottom a {
    color: rgba(245, 240, 232, 0.4);
    transition: color 0.2s;
}
.footer-bottom a:hover {
    color: var(--cream-100);
}

/* ===== SCROLL REVEAL (below fold only, progressive enhancement) ===== */
@media (prefers-reduced-motion: no-preference) {
    .reveal {
        opacity: 0;
        transform: translateY(24px);
        transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
    }
    .reveal.revealed {
        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; }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .hero-container {
        gap: 40px;
    }
    .about-container {
        gap: 48px;
    }
    .faq-container {
        gap: 48px;
    }
    .process-steps {
        gap: 24px;
    }
}

@media (max-width: 900px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: left;
    }
    .hero-image-wrap {
        max-width: 480px;
        margin: 0 auto;
    }
    .about-container {
        grid-template-columns: 1fr;
    }
    .about-image-side {
        max-width: 480px;
        margin: 0 auto;
    }
    .faq-container {
        grid-template-columns: 1fr;
    }
    .faq-left {
        position: static;
        max-width: none;
    }
    .contact-container {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    .footer-top {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }
    .nav-menu {
        position: fixed;
        inset: 0;
        background: rgba(13, 31, 21, 0.97);
        backdrop-filter: blur(16px);
        -webkit-backdrop-filter: blur(16px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 8px;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.35s var(--ease-smooth), visibility 0.35s;
    }
    .nav-menu.open {
        opacity: 1;
        visibility: visible;
    }
    .nav-menu a {
        font-size: 20px;
        padding: 12px 24px;
    }
    .nav-cta {
        margin-left: 0 !important;
        margin-top: 12px;
    }
    .hero {
        padding: 100px 0 80px;
        min-height: auto;
    }
    .hero-actions {
        flex-direction: column;
        gap: 12px;
    }
    .hero-actions .btn {
        justify-content: center;
    }
    .hero-scroll-hint {
        display: none;
    }
    .services-grid {
        grid-template-columns: 1fr;
    }
    .gallery-grid {
        grid-template-columns: 1fr 1fr;
    }
    .gallery-item--large {
        grid-row: span 1;
    }
    .gallery-item--large img {
        min-height: 280px;
    }
    .gallery-item img {
        height: 220px;
    }
    .process-steps {
        grid-template-columns: 1fr 1fr;
    }
    .process-steps::before {
        display: none;
    }
    .contact-form {
        padding: 28px;
    }
    .footer-top {
        grid-template-columns: 1fr;
        gap: 36px;
    }
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 20px;
    }
    .hero-headline {
        font-size: 36px;
    }
    .hero-trust {
        flex-direction: column;
        gap: 16px;
    }
    .services-grid {
        gap: 16px;
    }
    .service-card {
        padding: 32px 24px;
    }
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    .process-steps {
        grid-template-columns: 1fr;
    }
    .about-badge {
        right: 0;
        bottom: -16px;
    }
    .cta-actions {
        flex-direction: column;
        align-items: center;
    }
}
