:root {
    --ink: #0d0d0d;
    --charcoal: #1a1a1a;
    --graphite: #2d2d2d;
    --cream: #f7f4ef;
    --bone: #ebe6dd;
    --parchment: #e0d9cc;
    --stone: #c4baa8;
    --wood: #1a4d2e;
    --wood-bright: #74a882;
    --wood-dark: #143d24;
    --wood-glow: rgba(26, 77, 46, 0.15);
    --forest: #1a4d2e;
    --falu: #8b2500;
    --text-primary: #1a1a1a;
    --text-secondary: #4a4a4a;
    --text-muted: #6b6b6b;
    --shadow-sm: 0 2px 6px rgba(26, 26, 26, 0.05);
    --shadow-md: 0 8px 24px rgba(26, 26, 26, 0.08);
    --shadow-lg: 0 16px 40px rgba(26, 26, 26, 0.12);
    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 16px;
    --radius-xl: 24px;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
    overflow-x: hidden;
}

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

body {
    font-family: 'DM Sans', -apple-system, sans-serif;
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 15px;
    background: var(--cream);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; }

h1, h2, h3, h4, .section-label, .hero-badge, .nav-link, .nav-cta, .btn, .process-number {
    font-family: 'Archivo', -apple-system, sans-serif;
}

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

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: var(--cream);
    transition: all 0.3s ease;
}

.header.scrolled {
    background: rgba(247, 244, 239, 0.95);
    backdrop-filter: blur(12px);
    box-shadow: var(--shadow-md);
}

.header-top {
    background: var(--charcoal);
    color: white;
    font-size: 13px;
    padding: 0.4rem 0;
}

.header-top-inner {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.25rem;
}

.header-top-badge {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-weight: 600;
}

.header-top-badge svg { width: 14px; height: 14px; color: var(--wood-bright); }

.header-top a {
    font-weight: 700;
    color: var(--wood-bright);
}

.header-main {
    padding: 14px 0;
    border-bottom: 1px solid var(--parchment);
}

.header.scrolled .header-main { padding: 8px 0; }

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

.logo {
    font-family: 'Archivo', sans-serif;
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--charcoal);
    letter-spacing: -0.01em;
}

.nav { display: flex; align-items: center; gap: 4px; }

.nav-link {
    padding: 8px 14px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-secondary);
    border-radius: var(--radius-sm);
    transition: all 0.2s;
}

.nav-link:hover {
    background: var(--bone);
    color: var(--charcoal);
}

.nav-cta {
    margin-left: 10px;
    padding: 9px 18px;
    background: var(--wood);
    color: white;
    font-weight: 600;
    font-size: 14px;
    border-radius: var(--radius-md);
    transition: all 0.25s ease;
    box-shadow: 0 4px 12px var(--wood-glow);
}

.nav-cta:hover {
    background: var(--wood-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(139, 105, 20, 0.35);
}

.nav-toggle {
    display: none;
    background: var(--bone);
    padding: 10px;
    border-radius: var(--radius-sm);
}

@media (min-width: 701px) {
    .nav-toggle { display: none; }
    .nav {
        position: static;
        flex-direction: row;
        max-height: none;
        opacity: 1;
        overflow: visible;
    }
}

@media (min-width: 701px) and (max-width: 900px) {
    .nav-link { padding: 8px 10px; font-size: 13px; }
    .nav-cta { padding: 8px 14px; font-size: 13px; margin-left: 8px; }
}

.nav-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    background: var(--charcoal);
    margin: 4px 0;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.nav-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(4px, 4px); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

@media (max-width: 700px) {
    .nav-toggle { display: block; }
    .nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--cream);
        flex-direction: column;
        padding: 0;
        gap: 0;
        box-shadow: var(--shadow-lg);
        border-radius: 0 0 var(--radius-md) var(--radius-md);
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        transition: all 0.3s ease;
    }
    .nav.open { max-height: 380px; opacity: 1; }
    .nav-link { width: 100%; text-align: left; padding: 14px 24px; border-radius: 0; font-size: 14px; min-height: 44px; }
    .nav-cta { width: calc(100% - 20px); text-align: center; margin: 10px; min-height: 44px; }
}

.hero {
    min-height: 100vh;
    padding-top: 140px;
    background: var(--charcoal);
    position: relative;
    display: flex;
    align-items: center;
}

.hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0.6) 100%);
}

.hero-content {
    max-width: 680px;
    padding: 2.5rem 0;
    text-align: center;
    margin: 0 auto;
    position: relative;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: rgba(255,255,255,0.12);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: var(--radius-sm);
    font-size: 0.6875rem;
    font-weight: 600;
    margin-bottom: 1.25rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.15);
}

.hero h1 {
    font-size: clamp(24px, 3.5vw, 36px);
    font-weight: 700;
    color: white;
    line-height: 1.2;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.hero-text {
    font-size: 0.9375rem;
    color: rgba(255,255,255,0.85);
    margin-bottom: 1.75rem;
    max-width: 480px;
    line-height: 1.65;
    margin-left: auto;
    margin-right: auto;
}

.hero-btns {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    font-size: 0.8125rem;
    font-weight: 600;
    border-radius: var(--radius-sm);
    transition: all 0.25s ease;
    letter-spacing: 0.01em;
}

.btn svg { width: 16px; height: 16px; }

.btn-primary {
    background: var(--wood);
    color: white;
    box-shadow: 0 4px 16px var(--wood-glow);
}

.btn-primary:hover {
    background: var(--wood-dark);
    transform: translateY(-3px);
    box-shadow: 0 8px 28px rgba(139, 105, 20, 0.4);
}

.btn-secondary {
    background: var(--charcoal);
    color: white;
}

.btn-secondary:hover {
    background: var(--ink);
    transform: translateY(-3px);
}

.btn-outline {
    background: white;
    color: var(--text-primary);
    border: 2px solid var(--parchment);
}

.btn-outline:hover {
    border-color: var(--charcoal);
    transform: translateY(-2px);
}

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

.trust-bar {
    background: var(--bone);
    padding: 1.25rem 0;
    border-bottom: 1px solid var(--parchment);
}

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

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    color: var(--text-primary);
}

.trust-icon {
    width: 36px;
    height: 36px;
    background: var(--charcoal);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
}

.trust-icon svg { width: 18px; height: 18px; color: var(--wood-bright); }
.trust-item span { font-size: 0.8125rem; font-weight: 600; }

@media (max-width: 700px) {
    .trust-bar { padding: 0.875rem 0; }
    .trust-items {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 0.5rem;
    }
    .trust-item {
        background: var(--cream);
        padding: 0.625rem 0.75rem;
        border-radius: var(--radius-sm);
        gap: 0.5rem;
    }
    .trust-icon {
        width: 32px;
        height: 32px;
    }
    .trust-icon svg { width: 16px; height: 16px; }
    .trust-item span { font-size: 0.75rem; }
}

.section { padding: 3.5rem 0; }

.section-header {
    text-align: center;
    max-width: 520px;
    margin: 0 auto 2rem;
}

.section-label {
    display: inline-block;
    font-size: 0.6875rem;
    font-weight: 700;
    color: var(--wood);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 0.625rem;
}

.section-title {
    font-size: clamp(1.375rem, 3.5vw, 1.875rem);
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.625rem;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.section-desc {
    color: var(--text-muted);
    font-size: 0.9375rem;
    line-height: 1.65;
}

.services { background: var(--cream); }

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

.service-card {
    background: var(--bone);
    border: 1px solid var(--parchment);
    border-left: 3px solid transparent;
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: all 0.35s ease;
}

.service-card:hover {
    border-left-color: var(--wood);
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.service-img {
    aspect-ratio: 16/10;
    overflow: hidden;
}

.service-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.service-content { padding: 1.25rem; }

.service-content h3 {
    font-size: 0.9375rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.375rem;
}

.service-content p {
    font-size: 0.8125rem;
    color: var(--text-muted);
    line-height: 1.6;
}

@media (max-width: 920px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .services-grid { grid-template-columns: 1fr; } }

.process { background: var(--bone); }

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

.process-step {
    text-align: center;
    padding: 1.5rem 1.25rem;
    background: var(--cream);
    border-radius: var(--radius-md);
    border: 1px solid var(--parchment);
    transition: all 0.3s ease;
}

.process-step:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.process-number {
    width: 40px;
    height: 40px;
    background: var(--wood);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9375rem;
    font-weight: 700;
    margin: 0 auto 0.75rem;
    box-shadow: 0 4px 12px var(--wood-glow);
}

.process-step h4 {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.375rem;
}

.process-step p {
    font-size: 0.8125rem;
    color: var(--text-muted);
    line-height: 1.55;
}

@media (max-width: 900px) { .process-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .process-grid { grid-template-columns: 1fr; } }

.featured { background: var(--charcoal); padding: 0; }

.featured-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 60vh;
}

.featured-img { position: relative; }

.featured-img img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    cursor: pointer;
}

.featured-content {
    padding: 3rem 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: white;
}

.featured-content .section-label { color: var(--wood-bright); }
.featured-content .section-title { color: white; }
.featured-content p { color: rgba(255,255,255,0.8); margin-bottom: 0.875rem; font-size: 0.9375rem; line-height: 1.6; }

.featured-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.5rem;
    margin: 1.25rem 0;
}

.featured-gallery img {
    aspect-ratio: 4/3;
    object-fit: cover;
    border-radius: var(--radius-sm);
    opacity: 0.85;
    transition: all 0.3s ease;
    cursor: pointer;
}

.featured-gallery img:hover { opacity: 1; transform: scale(1.02); }

.featured-content .btn {
    align-self: flex-start;
}

@media (max-width: 700px) {
    .featured-inner { grid-template-columns: 1fr; }
    .featured-img { aspect-ratio: 16/9; }
    .featured-img img { position: relative; }
    .featured-content { padding: 2.5rem 1.5rem; }
    .featured-content .btn { align-self: stretch; justify-content: center; }
}

.about { background: var(--cream); }

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

.about-content .section-label,
.about-content .section-title { text-align: left; }
.about-content .section-title { margin-bottom: 0.75rem; }
.about-content > p { color: var(--text-secondary); margin-bottom: 0.875rem; font-size: 0.9375rem; line-height: 1.65; }

.about-list {
    margin: 1.25rem 0;
    background: var(--bone);
    border-radius: var(--radius-md);
    padding: 0.375rem;
}

.about-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.625rem 0.875rem;
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--text-primary);
    background: var(--cream);
    border-radius: var(--radius-sm);
    margin-bottom: 0.375rem;
}

.about-list li:last-child { margin-bottom: 0; }

.about-list-icon {
    width: 24px;
    height: 24px;
    background: var(--wood);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.about-list-icon svg { width: 12px; height: 12px; color: white; }

.about-btns { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 1.25rem; }

.about-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
}

.about-images img {
    border-radius: var(--radius-md);
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    box-shadow: var(--shadow-md);
    transition: all 0.35s ease;
    cursor: pointer;
}

.about-images img:hover { transform: scale(1.015); box-shadow: var(--shadow-lg); }
.about-images img:first-child { grid-column: span 2; aspect-ratio: 16/7; }

@media (max-width: 750px) {
    .about-grid { grid-template-columns: 1fr; gap: 1.75rem; }
    .about-images { order: -1; }
}

.gallery { background: var(--bone); }

.gallery-filters {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.375rem;
    margin-bottom: 1.5rem;
}

.filter {
    padding: 0.5rem 1rem;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-muted);
    background: var(--cream);
    border: 1px solid var(--parchment);
    border-radius: var(--radius-sm);
    transition: all 0.2s ease;
}

.filter:hover { color: var(--text-primary); border-color: var(--stone); }
.filter.active { background: var(--charcoal); color: white; border-color: var(--charcoal); }

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.5rem;
}

.gallery-item {
    position: relative;
    aspect-ratio: 1;
    border-radius: var(--radius-sm);
    overflow: hidden;
    cursor: pointer;
}

.gallery-item.hidden { display: none; }

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

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

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 50%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 0.75rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay span { font-size: 0.625rem; font-weight: 700; color: var(--wood-bright); text-transform: uppercase; letter-spacing: 1px; }
.gallery-overlay p { font-size: 0.8125rem; color: white; margin-top: 0.125rem; }

@media (max-width: 968px) { .gallery-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 600px) { .gallery-grid { grid-template-columns: repeat(2, 1fr); } }

.gallery-item.gallery-hidden { display: none; }

.gallery-load-more {
    display: flex;
    justify-content: center;
    margin-top: 1.5rem;
}

.gallery-load-more .btn {
    min-width: 160px;
}

.gallery-load-more .btn span {
    display: inline;
    margin: 0;
    padding: 0;
}

.faq { background: var(--cream); }

.faq-list { max-width: 680px; margin: 0 auto; }

.faq-item {
    border: 1px solid var(--parchment);
    border-radius: var(--radius-sm);
    margin-bottom: 0.5rem;
    background: white;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover { border-color: var(--stone); }
.faq-item.open { border-color: var(--wood); box-shadow: var(--shadow-sm); }

.faq-question {
    width: 100%;
    padding: 1rem 1.25rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-primary);
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0.875rem;
    transition: color 0.2s;
}

.faq-question:hover { color: var(--wood); }
.faq-item.open .faq-question { color: var(--wood); }

.faq-question svg {
    width: 18px;
    height: 18px;
    color: var(--wood);
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.faq-item.open .faq-question svg { transform: rotate(180deg); }

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.faq-answer-inner {
    padding: 0 1.25rem 1rem;
    color: var(--text-muted);
    font-size: 0.8125rem;
    line-height: 1.7;
    border-top: 1px solid var(--parchment);
    padding-top: 1rem;
}

.faq-item.open .faq-answer { max-height: 300px; }

.contact { background: var(--bone); }

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 2.5rem;
    align-items: start;
}

.contact-info h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.875rem;
}

.contact-intro {
    background: var(--cream);
    border-radius: var(--radius-sm);
    padding: 0.875rem 1rem;
    margin-bottom: 0.875rem;
}

.contact-intro p { color: var(--text-secondary); font-size: 0.8125rem; line-height: 1.6; margin: 0; }

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.875rem;
    padding: 0.875rem;
    background: var(--cream);
    border-radius: var(--radius-sm);
    margin-bottom: 0.5rem;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.contact-item:hover { transform: translateX(3px); border-color: var(--wood); }

.contact-icon {
    width: 38px;
    height: 38px;
    background: var(--charcoal);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon svg { width: 18px; height: 18px; color: var(--wood-bright); }

.contact-text span {
    display: block;
    font-size: 0.6875rem;
    color: var(--text-muted);
    margin-bottom: 0.0625rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.contact-text a,
.contact-text p {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0;
}

.contact-text a:hover { color: var(--wood); }

.contact-social {
    margin-top: 1.25rem;
    padding-top: 1.25rem;
    border-top: 1px solid var(--border);
}

.contact-social-label {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.75rem;
}

.contact-social-links {
    display: flex;
    gap: 0.625rem;
}

.contact-social-links a {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    border: 1.5px solid var(--border);
    border-radius: 50%;
    color: var(--text-secondary);
    transition: all 0.25s ease;
}

.contact-social-links a:hover {
    background: var(--forest);
    border-color: var(--forest);
    color: white;
    transform: translateY(-2px);
}

.contact-social-links svg {
    width: 20px;
    height: 20px;
}

.contact-form-wrapper {
    background: white;
    border-radius: var(--radius-lg);
    padding: 1.75rem;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--parchment);
    position: relative;
    overflow: hidden;
}

.contact-form-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--charcoal), var(--wood), var(--charcoal));
}

.contact-form-wrapper h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

.contact-form-wrapper > p {
    color: var(--text-muted);
    margin-bottom: 1.25rem;
    font-size: 0.8125rem;
}

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

.form-group label {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.3125rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem 0.875rem;
    font-size: 0.8125rem;
    font-family: inherit;
    border: 1.5px solid var(--parchment);
    border-radius: var(--radius-sm);
    background: var(--cream);
    color: var(--text-secondary);
    transition: all 0.25s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--wood);
    background: white;
    box-shadow: 0 0 0 3px var(--wood-glow);
}

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

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

.form-note {
    margin-top: 0.875rem;
    font-size: 0.75rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.5rem 0.75rem;
    background: var(--cream);
    border-radius: var(--radius-sm);
}

.form-note svg { width: 14px; height: 14px; color: var(--wood); flex-shrink: 0; }

.contact-success {
    display: none;
    text-align: center;
    padding: 1.75rem;
}

.contact-success.active { display: block; }
.contact-success svg { width: 40px; height: 40px; color: #22c55e; margin: 0 auto 0.875rem; }
.contact-success h4 { font-size: 1rem; color: var(--text-primary); margin-bottom: 0.375rem; }
.contact-success p { color: var(--text-muted); font-size: 0.875rem; }

@media (max-width: 750px) {
    .contact-grid { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
}

#contact-form {
    max-width: 100%;
    overflow: hidden;
}

#contact-form .g-recaptcha {
    transform-origin: left center;
    max-width: 100%;
}

@media (max-width: 400px) {
    #contact-form .g-recaptcha {
        transform: scale(0.85);
    }
}

@media (max-width: 340px) {
    #contact-form .g-recaptcha {
        transform: scale(0.75);
    }
}

.footer {
    background: var(--charcoal);
    color: white;
    padding: 2.5rem 0 1.25rem;
}

.footer::before {
    content: '';
    height: 2px;
    background: var(--wood-bright);
}

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

.footer-logo {
    font-family: 'Archivo', sans-serif;
    font-size: 1.125rem;
    font-weight: 700;
    display: block;
    margin-bottom: 0.625rem;
}

.footer-brand p { font-size: 0.8125rem; opacity: 0.7; line-height: 1.6; max-width: 260px; }

.footer-col h4 {
    font-size: 0.625rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 0.875rem;
    color: var(--wood-bright);
}

.footer-col ul li { margin-bottom: 0.5rem; }

.footer-col a {
    font-size: 0.8125rem;
    opacity: 0.7;
    transition: all 0.2s ease;
}

.footer-col a:hover { opacity: 1; color: var(--wood-bright); }

.footer-bottom {
    padding-top: 1.25rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.875rem;
}

.footer-bottom p { font-size: 0.75rem; opacity: 0.5; }

.footer-locations { display: flex; gap: 0.375rem; }

.footer-locations span {
    font-size: 0.6875rem;
    opacity: 0.5;
    padding: 0.1875rem 0.5rem;
    background: rgba(255,255,255,0.05);
    border-radius: var(--radius-sm);
}

@media (max-width: 700px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 500px) {
    .footer-grid { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; text-align: center; }
    .footer-locations { justify-content: center; }
}

.instagram { background: var(--charcoal); }

.instagram .section-label { color: var(--wood-bright); }
.instagram .section-title { color: white; }
.instagram .section-desc { color: rgba(255,255,255,0.7); }

.instagram-feed {
    margin-bottom: 1.5rem;
    min-height: 280px;
    border-radius: var(--radius-md);
    overflow: hidden;
}

.instagram-links {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.instagram-links .btn {
    background: transparent;
    color: white;
    border: 1.5px solid rgba(255,255,255,0.3);
}

.instagram-links .btn:hover {
    background: white;
    color: var(--charcoal);
    border-color: white;
}

.instagram-links .btn svg {
    width: 18px;
    height: 18px;
}

.cta-banner {
    padding: 3.5rem 0;
    position: relative;
    overflow: hidden;
}

.cta-banner-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cta-banner-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(26, 77, 46, 0.88) 0%, rgba(20, 61, 36, 0.92) 100%);
}

.cta-banner-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    position: relative;
}

.cta-banner-content h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.1875rem;
}

.cta-banner-content p {
    color: rgba(255,255,255,0.85);
    font-size: 0.875rem;
    margin: 0;
}

.cta-banner-btns {
    display: flex;
    gap: 0.75rem;
    flex-shrink: 0;
}

.cta-banner .btn-primary {
    background: white;
    color: var(--wood);
    box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}

.cta-banner .btn-primary:hover {
    background: var(--cream);
    transform: translateY(-2px);
}

.cta-banner .btn-secondary {
    background: transparent;
    color: white;
    border: 1.5px solid rgba(255,255,255,0.4);
}

.cta-banner .btn-secondary:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.6);
}

@media (max-width: 768px) {
    .cta-banner { padding: 3rem 0; }
    .cta-banner-inner {
        flex-direction: column;
        text-align: center;
    }
    .cta-banner-btns {
        flex-direction: column;
        width: 100%;
    }
    .cta-banner-btns .btn {
        width: 100%;
        justify-content: center;
    }
}

.lightbox {
    position: fixed;
    inset: 0;
    z-index: 200;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0,0,0,0.96);
    opacity: 0;
    visibility: hidden;
    transition: all 0.25s ease;
}

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

.lightbox-close,
.lightbox-prev,
.lightbox-next {
    position: absolute;
    color: rgba(255,255,255,0.6);
    font-size: 1.25rem;
    padding: 0.875rem;
    transition: color 0.2s;
    z-index: 1;
}

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover { color: white; }

.lightbox-close { top: 0.75rem; right: 0.75rem; }
.lightbox-prev { left: 0.75rem; top: 50%; transform: translateY(-50%); }
.lightbox-next { right: 0.75rem; top: 50%; transform: translateY(-50%); }

.lightbox-img { max-width: 90vw; max-height: 90vh; object-fit: contain; border-radius: var(--radius-sm); }

.fade-in {
    opacity: 0;
    transform: translateY(16px);
    transition: all 0.5s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

@keyframes fadeIn {
    from { opacity: 0; transform: scale(0.98); }
    to { opacity: 1; transform: scale(1); }
}

@media (max-width: 480px) {
    html { scroll-padding-top: 70px; }
    .container { padding: 0 16px; }
    .section { padding: 2.25rem 0; }
    .hero { padding-top: 100px; }
    .hero-btns { flex-direction: column; width: 100%; }
    .hero-btns .btn { width: 100%; justify-content: center; min-height: 44px; }
    .instagram-links { flex-direction: column; }
    .instagram-links .btn { width: 100%; justify-content: center; }
    .nav-toggle { padding: 12px; min-width: 44px; min-height: 44px; }
    .filter { padding: 10px 14px; min-height: 44px; }
    .contact-item { padding: 12px; min-height: 44px; }
    .contact-social-links { gap: 0.75rem; }
    .form-group input,
    .form-group textarea {
        font-size: 16px;
        padding: 12px;
        min-height: 44px;
    }
    .form-group label { font-size: 0.8125rem; }
    .gallery-overlay { opacity: 0.85; }
    .gallery-item:active .gallery-overlay { opacity: 1; }
}

@media (max-width: 640px) {
    section,
    section > div,
    section > div > div {
        max-width: 100%;
        box-sizing: border-box;
        overflow-x: hidden;
    }
    .contact-grid > div {
        min-width: 0;
        max-width: 100%;
    }
}

::selection {
    background: var(--wood);
    color: white;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
    outline: 2px solid var(--wood);
    outline-offset: 2px;
}
