:root {
    --falu-red: #B8342A;
    --falu-dark: #8C2820;
    --falu-light: #D64A3F;
    --cream: #F5F0E8;
    --cream-dark: #E8E0D4;
    --sand: #D4C4A8;
    --wood: #8B7355;
    --wood-dark: #5C4A3A;
    --charcoal: #1A1A1A;
    --charcoal-light: #2D2D2D;
    --slate: #4A4A4A;
    --font-display: 'Fraunces', Georgia, serif;
    --font-body: 'Plus Jakarta Sans', -apple-system, sans-serif;
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 2.5rem;
    --space-xl: 4rem;
    --space-2xl: 6rem;
    --space-3xl: 10rem;
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
    --shadow-md: 0 8px 30px rgba(0,0,0,0.12);
    --shadow-lg: 0 20px 60px rgba(0,0,0,0.2);
    --shadow-glow: 0 0 60px rgba(184, 52, 42, 0.3);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
    overflow-x: hidden;
    max-width: 100vw;
}

body {
    font-family: var(--font-body);
    font-weight: 400;
    line-height: 1.6;
    color: var(--charcoal);
    background: var(--cream);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    position: relative;
    width: 100%;
    max-width: 100vw;
}

section, header, footer, main, article, aside, nav {
    max-width: 100vw;
    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 {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    padding: 0 var(--space-md);
    overflow: hidden;
    box-sizing: border-box;
}

@media (min-width: 768px) {
    .container {
        padding: 0 var(--space-lg);
        max-width: 1400px;
    }
}

@media (min-width: 1440px) {
    .container {
        max-width: 1600px;
    }
}

.section-label {
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--falu-red);
    margin-bottom: var(--space-sm);
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 4vw, 3.5rem);
    font-weight: 600;
    line-height: 1.15;
    color: var(--charcoal);
    letter-spacing: -0.02em;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
    max-width: 100%;
}

.section-title--light {
    color: var(--cream);
}

.text-accent {
    color: var(--falu-red);
}

.text-cream {
    color: var(--sand);
}

.campaign-bar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1001;
    background: var(--falu-red);
    padding: 0.5rem 0;
    text-align: center;
    transition: transform 0.3s var(--ease-out);
}

.campaign-bar.hidden {
    transform: translateY(-100%);
}

.campaign-bar p {
    font-size: 0.8125rem;
    font-weight: 500;
    color: #fff;
    margin: 0;
}

.campaign-bar a {
    color: #fff;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.campaign-bar a:hover {
    opacity: 0.9;
}

.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1rem 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0,0,0,0.04);
    transition: all 0.4s var(--ease-out);
    overflow: visible;
}

.nav.scrolled {
    padding: 0.5rem 0;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    border-bottom-color: transparent;
}

.nav.has-campaign {
    top: 32px;
    transition: top 0.3s var(--ease-out), box-shadow 0.4s var(--ease-out);
}

.nav__inner {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 var(--space-md);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

@media (min-width: 768px) {
    .nav__inner {
        padding: 0 var(--space-lg);
        max-width: 1400px;
    }
}

@media (min-width: 1440px) {
    .nav__inner {
        max-width: 1600px;
    }
}

.nav__logo img {
    height: 40px;
    width: auto;
    transition: transform 0.3s var(--ease-out), opacity 0.3s;
}

.nav__logo:hover img {
    opacity: 0.85;
}

.nav__links {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
}

.nav__links a:not(.nav__cta) {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--charcoal);
    letter-spacing: 0.02em;
    position: relative;
    transition: color 0.3s;
}

.nav__links a:not(.nav__cta):hover {
    color: var(--falu-red);
}

.nav__links a:not(.nav__cta)::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--falu-red);
    transition: width 0.3s var(--ease-out);
}

.nav__links a:not(.nav__cta):hover::after {
    width: 100%;
}

.nav__cta {
    background: var(--falu-red);
    color: #fff;
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.03em;
    transition: all 0.3s var(--ease-out);
    position: relative;
    overflow: hidden;
}

.nav__cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.2) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.3s var(--ease-out);
}

.nav__cta:hover {
    background: var(--falu-light);
    color: #fff;
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 24px rgba(214, 74, 63, 0.4), 0 0 0 2px rgba(255,255,255,0.1);
}

.nav__cta:hover::before {
    opacity: 1;
}

.nav__toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    padding: 10px;
    min-width: 44px;
    min-height: 44px;
    justify-content: center;
    align-items: center;
    z-index: 1002;
    position: relative;
}

.nav__toggle span {
    width: 24px;
    height: 2px;
    background: var(--charcoal);
    transition: all 0.3s var(--ease-out);
}

.hero {
    position: relative;
    min-height: 100svh;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
}

@media (min-width: 768px) {
    .hero {
        align-items: center;
    }
}

.hero__bg {
    position: absolute;
    inset: 0;
    z-index: -2;
}

.hero__bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.85) 0%, rgba(26, 26, 26, 0.6) 50%, rgba(184, 52, 42, 0.4) 100%);
}

.hero__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero__content {
    padding: 6rem var(--space-md) 3rem;
    max-width: 100%;
}

@media (min-width: 768px) {
    .hero__content {
        padding: var(--space-3xl) var(--space-lg);
        max-width: 1100px;
    }
}

.hero__badge {
    display: inline-block;
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--sand);
    border: 1px solid var(--sand);
    padding: 0.375rem 0.75rem;
    margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
    .hero__badge {
        font-size: 0.75rem;
        letter-spacing: 0.2em;
        padding: 0.5rem 1rem;
        margin-bottom: var(--space-lg);
    }
}

.hero__title {
    margin-bottom: var(--space-lg);
}

.hero__title-line {
    display: block;
    font-family: var(--font-display);
    font-weight: 600;
    line-height: 1;
    letter-spacing: -0.03em;
}

.hero__title-line:first-child {
    font-size: clamp(2rem, 10vw, 6rem);
    color: var(--cream);
}

.hero__title-line--accent {
    font-size: clamp(1.75rem, 8vw, 4.5rem);
    color: var(--falu-red);
    margin-top: -0.05em;
}

.hero__desc {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
    max-width: 540px;
    margin-bottom: 2rem;
}

@media (min-width: 768px) {
    .hero__desc {
        font-size: 1.125rem;
        margin-bottom: var(--space-xl);
    }
}

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

@media (min-width: 768px) {
    .hero__actions {
        flex-direction: row;
        gap: var(--space-md);
    }
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    padding: 1rem 2rem;
    min-height: 48px;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    border-radius: 4px;
    transition: all 0.4s var(--ease-out);
}

.btn--primary {
    background: var(--falu-red);
    color: var(--cream);
}

.btn--primary:hover {
    background: var(--falu-dark);
    transform: translateY(-3px);
    box-shadow: var(--shadow-glow);
}

.btn--primary svg {
    transition: transform 0.3s var(--ease-out);
}

.btn--primary:hover svg {
    transform: translateX(4px);
}

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

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

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

.statement {
    padding: 4rem 0;
    background: var(--charcoal);
    position: relative;
}

.statement::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--falu-red);
}

.statement__inner {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.statement__text {
    font-family: var(--font-display);
    font-size: clamp(1.25rem, 3.5vw, 2.5rem);
    font-weight: 400;
    line-height: 1.4;
    color: var(--cream);
    max-width: 100%;
}

.statement__text em {
    font-style: italic;
    color: var(--falu-light);
}

.services {
    padding: 4rem 0;
    background: var(--cream);
}

.services__header {
    text-align: center;
    margin-bottom: 2rem;
}

.services__intro {
    max-width: 700px;
    margin: 1rem auto 0;
    color: var(--slate);
    font-size: 1.0625rem;
    line-height: 1.6;
}

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

.service-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}

.service-card__img {
    aspect-ratio: 4/3;
    overflow: hidden;
}

.service-card__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-card__content {
    padding: var(--space-md);
}

.service-card__content h3 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 500;
    margin-bottom: var(--space-xs);
    color: var(--charcoal);
}

.service-card__content p {
    font-size: 0.875rem;
    color: var(--slate);
    line-height: 1.6;
}

.services-list {
    padding: 3rem 0;
    background: var(--cream-dark);
}

.services-list__inner {
    background: #fff;
    border-radius: 12px;
    padding: 2rem;
    border-left: 4px solid var(--falu-red);
    box-shadow: var(--shadow-sm);
}

.services-list__inner h3 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--charcoal);
    margin-bottom: 1.5rem;
}

.services-list__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.5rem 2rem;
    list-style: none;
    margin-bottom: 1.5rem;
}

.services-list__grid li {
    color: var(--slate);
    font-size: 0.9375rem;
    padding: 0.375rem 0;
    border-bottom: 1px solid var(--cream-dark);
}

.services-list__more {
    font-family: var(--font-display);
    font-size: 1.125rem;
    font-style: italic;
    color: var(--charcoal);
    margin-bottom: 1rem;
}

.services-list__note {
    color: var(--slate);
    font-size: 0.875rem;
}

.services-list__note a {
    color: var(--falu-red);
    font-weight: 500;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.services-list__note a:hover {
    color: var(--falu-dark);
}

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

@media (max-width: 640px) {
    .services-list__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.25rem 1rem;
    }
    .services-list__inner {
        padding: 1.5rem;
    }
}

.projects {
    padding: 4rem 0;
    background: var(--charcoal);
    overflow: hidden;
}

.projects__header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: var(--space-md);
}

.projects .section-title {
    color: var(--cream);
}

.projects__filters {
    display: flex;
    gap: var(--space-xs);
    flex-wrap: wrap;
}

.filter-btn {
    padding: 0.625rem 1.25rem;
    min-height: 44px;
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--sand);
    background: transparent;
    border: 1px solid var(--slate);
    border-radius: 100px;
    transition: all 0.3s var(--ease-out);
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--falu-red);
    border-color: var(--falu-red);
    color: var(--cream);
}

.filter-btn:focus {
    outline: 2px solid var(--falu-light);
    outline-offset: 2px;
}

.projects__gallery {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: var(--space-sm);
    padding: 0 var(--space-md);
    max-width: 100%;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .projects__gallery {
        padding: 0 var(--space-lg);
        max-width: 1400px;
    }
}

@media (min-width: 1440px) {
    .projects__gallery {
        max-width: 1600px;
    }
}

.gallery-item {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    border-radius: 4px;
    cursor: pointer;
    background: var(--charcoal-light);
}

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

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

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s var(--ease-out);
}

.gallery-item:hover img,
.gallery-item:focus img {
    transform: scale(1.02);
}

.gallery-item:focus {
    outline: 2px solid var(--falu-red);
    outline-offset: 2px;
}

.gallery-item__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(26,26,26,0.9) 0%, transparent 60%);
    display: flex;
    align-items: flex-end;
    padding: var(--space-md);
    opacity: 0;
    transition: opacity 0.4s var(--ease-out);
}

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

.gallery-item__overlay span {
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--cream);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.projects__load-more {
    text-align: center;
    padding: 2rem var(--space-md);
}

.load-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 2rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--cream);
    background: transparent;
    border: 2px solid var(--slate);
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.load-more-btn:hover {
    border-color: var(--falu-red);
    background: var(--falu-red);
}

.load-more-btn span {
    opacity: 0.7;
}

.projects__instagram-feed {
    background: var(--charcoal-light);
    padding: 2rem 0;
    margin-top: 2rem;
}

.projects__instagram-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.projects__instagram-header p {
    color: var(--sand);
    font-size: 0.9375rem;
    margin: 0;
}

.projects__instagram-header a {
    color: var(--cream);
    font-family: var(--font-display);
    font-weight: 500;
    transition: color 0.3s;
}

.projects__instagram-header a:hover {
    color: var(--falu-light);
}

.news {
    padding: 2.5rem 0 2.5rem;
    background: var(--charcoal);
}

.news .section-label {
    color: var(--falu-light);
    margin-bottom: 0.5rem;
}

.news .section-title {
    color: var(--cream);
    margin-bottom: 1.5rem;
}

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

.news__card {
    background: var(--charcoal-light);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.news__card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.3);
}

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

.news__card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s var(--ease-out);
}

.news__card:hover .news__card-img img {
    transform: scale(1.03);
}

.news__card-content {
    padding: var(--space-md);
}

.news__date {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--falu-light);
    margin-bottom: 0.5rem;
}

.news__card-content h3 {
    font-family: var(--font-display);
    font-size: 1.125rem;
    font-weight: 500;
    line-height: 1.3;
    color: var(--cream);
    margin-bottom: 0.75rem;
}

.news__card-content p {
    font-size: 0.875rem;
    color: var(--sand);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.news__read-more {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--falu-light);
    transition: color 0.3s ease, gap 0.3s ease;
    cursor: pointer;
    background: none;
    border: none;
    padding: 0;
}

.news__read-more:hover {
    color: var(--cream);
    gap: 0.75rem;
}

.news__read-more svg {
    width: 16px;
    height: 16px;
}

.news__actions {
    text-align: center;
    margin-top: 2rem;
}

.news__actions .btn {
    background: transparent;
    color: var(--cream);
    border: 2px solid var(--slate);
}

.news__actions .btn:hover {
    background: var(--falu-red);
    border-color: var(--falu-red);
}

.news-modal {
    position: fixed;
    inset: 0;
    z-index: 2000;
    background: rgba(26, 26, 26, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-md);
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s var(--ease-out);
}

.news-modal.active {
    opacity: 1;
    visibility: visible;
}

.news-modal__content {
    background: var(--charcoal-light);
    border-radius: 12px;
    max-width: 700px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    transform: translateY(20px);
    transition: transform 0.4s var(--ease-out);
}

.news-modal.active .news-modal__content {
    transform: translateY(0);
}

.news-modal__close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--cream);
    background: var(--charcoal);
    border: 1px solid var(--slate);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s var(--ease-out);
    z-index: 10;
}

.news-modal__close:hover {
    background: var(--falu-red);
    border-color: var(--falu-red);
}

.news-modal__image {
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
    border-radius: 12px 12px 0 0;
}

.news-modal__body {
    padding: var(--space-lg);
}

.news-modal__date {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--falu-light);
    margin-bottom: 0.75rem;
}

.news-modal__title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--cream);
    margin-bottom: 1.25rem;
    line-height: 1.3;
}

.news-modal__text {
    color: var(--sand);
    font-size: 1rem;
    line-height: 1.7;
}

.news-modal__text p {
    margin-bottom: 1rem;
}

.news-modal__text p:last-child {
    margin-bottom: 0;
}

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

@media (max-width: 640px) {
    .news__grid {
        grid-template-columns: 1fr;
    }

    .news-modal__content {
        max-height: 95vh;
    }

    .news-modal__body {
        padding: var(--space-md);
    }

    .news-modal__title {
        font-size: 1.25rem;
    }
}

.nav__links a.active {
    color: var(--falu-red);
}

.page-header {
    padding: 3rem 0;
    padding-top: calc(100px + 3rem);
    background: var(--charcoal);
    text-align: center;
}

.page-header .section-label {
    color: var(--falu-light);
}

.page-header__title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 600;
    color: var(--cream);
    margin-bottom: 1rem;
}

.page-header__desc {
    font-size: 1.125rem;
    color: var(--sand);
    max-width: 600px;
    margin: 0 auto;
}

.news-page {
    padding: 4rem 0;
    background: var(--cream);
}

.news__grid--full {
    grid-template-columns: repeat(3, 1fr);
}

.news-page .news__card {
    background: #fff;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

.news-page .news__card:hover {
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}

.news-page .news__date {
    color: var(--falu-red);
}

.news-page .news__card-content h3 {
    color: var(--charcoal);
}

.news-page .news__card-content p {
    color: var(--slate);
}

.news-page .news__read-more {
    color: var(--falu-red);
}

.news-page .news__read-more:hover {
    color: var(--falu-dark);
}

.news-cta {
    padding: 4rem 0;
    background: var(--falu-red);
}

.news-cta__inner {
    text-align: center;
}

.news-cta h2 {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    font-weight: 600;
    color: var(--cream);
    margin-bottom: 0.75rem;
}

.news-cta p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
}

.news-cta .btn--primary {
    background: var(--charcoal);
    color: var(--cream);
}

.news-cta .btn--primary:hover {
    background: var(--charcoal-light);
    box-shadow: 0 8px 24px rgba(0,0,0,0.3);
}

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

@media (max-width: 640px) {
    .news__grid--full {
        grid-template-columns: 1fr;
    }

    .page-header {
        padding-top: calc(100px + 2rem);
        padding-bottom: 2rem;
    }
}

.about {
    padding: 4rem 0;
    background: var(--cream);
    position: relative;
    overflow: hidden;
}

.about__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.about__content {
    padding-right: var(--space-xl);
}

.about__text {
    margin: var(--space-lg) 0;
}

.about__text p {
    margin-bottom: var(--space-md);
    color: var(--slate);
    font-size: 1.0625rem;
    line-height: 1.7;
}

.about__text strong {
    color: var(--charcoal);
}

.about__stats {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-lg);
    padding-top: var(--space-lg);
    border-top: 1px solid var(--cream-dark);
    max-width: 100%;
}

.stat__num {
    display: block;
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 600;
    color: var(--falu-red);
    line-height: 1;
}

.stat__label {
    font-size: 0.875rem;
    color: var(--slate);
    margin-top: var(--space-xs);
}

.about__image {
    position: relative;
    max-width: 100%;
}

.about__image img {
    width: 100%;
    max-width: 100%;
    border-radius: 8px;
    box-shadow: var(--shadow-lg);
}

.policies {
    padding: 3rem 0;
    background: var(--cream-dark);
}

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

.policy-card {
    background: #fff;
    padding: 1.5rem;
    border-radius: 8px;
    border-top: 3px solid var(--falu-red);
}

.policy-card h3 {
    font-family: var(--font-display);
    font-size: 1.125rem;
    font-weight: 500;
    color: var(--charcoal);
    margin-bottom: 0.75rem;
}

.policy-card p {
    font-size: 0.875rem;
    color: var(--slate);
    line-height: 1.6;
}

@media (max-width: 640px) {
    .policies__grid {
        grid-template-columns: 1fr;
    }
}

.contact {
    padding: 4rem 0;
    background: var(--charcoal);
    overflow: hidden;
}

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

.contact__info-side .section-label {
    color: var(--falu-light);
}

.contact__info-side .section-title {
    margin-bottom: 2rem;
}

.contact__details {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.contact__detail {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--sand);
    font-size: 0.9375rem;
    transition: color 0.3s ease;
}

.contact__detail:hover {
    color: var(--cream);
}

.contact__detail svg {
    flex-shrink: 0;
    color: var(--falu-red);
}

.contact__team {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
}

.contact__person {
    display: flex;
    flex-direction: column;
    padding: 1rem 1.25rem;
    background: var(--charcoal-light);
    border-radius: 8px;
    border-left: 3px solid var(--falu-red);
    transition: transform 0.3s ease;
}

.contact__person:hover {
    transform: translateX(4px);
}

.contact__name {
    color: var(--cream);
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.contact__phone {
    color: var(--sand);
    font-size: 0.875rem;
    transition: color 0.3s ease;
}

.contact__phone:hover {
    color: var(--cream);
}

.contact__email {
    color: var(--slate);
    font-size: 0.8125rem;
    margin-top: 0.25rem;
    transition: color 0.3s ease;
    word-break: break-all;
}

.contact__email:hover {
    color: var(--falu-light);
}

.contact__social {
    display: flex;
    gap: 1rem;
}

.contact__social a {
    color: var(--sand);
    font-size: 0.875rem;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border: 1px solid var(--slate);
    border-radius: 4px;
    transition: all 0.3s ease;
}

.contact__social a:hover {
    color: var(--cream);
    border-color: var(--falu-red);
    background: var(--falu-red);
}

.contact__form {
    background: var(--charcoal-light);
    padding: 2rem;
    border-radius: 12px;
}

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

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

.form-group label {
    display: block;
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--cream);
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    min-height: 48px;
    font-family: var(--font-body);
    font-size: 16px;
    color: var(--cream);
    background: var(--charcoal);
    border: 1px solid var(--slate);
    border-radius: 6px;
    transition: all 0.3s var(--ease-out);
}

.form-group input:hover,
.form-group textarea:hover {
    border-color: var(--sand);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--falu-red);
    box-shadow: 0 0 0 3px rgba(184, 52, 42, 0.15);
}

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

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

.contact__form .btn {
    margin-top: 0.5rem;
}

.form-message {
    padding: 0.75rem;
    border-radius: 6px;
    margin-top: 1rem;
    text-align: center;
    font-weight: 500;
}

.form-message.success {
    background: rgba(34, 197, 94, 0.15);
    color: #22c55e;
    border: 1px solid rgba(34, 197, 94, 0.3);
}

.form-message.error {
    background: rgba(239, 68, 68, 0.15);
    color: #ef4444;
    border: 1px solid rgba(239, 68, 68, 0.3);
}

.footer {
    background: #fff;
    border-top: 1px solid var(--cream-dark);
    padding: 3rem 0 2rem;
}

.footer__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--cream-dark);
    flex-wrap: wrap;
}

.footer__logo {
    background: #fff;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.footer__logo img {
    height: 45px;
    width: auto;
    display: block;
}

.footer__nav {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.footer__nav a {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--charcoal);
    transition: color 0.3s;
}

.footer__nav a:hover {
    color: var(--falu-red);
}

.footer__social {
    display: flex;
    gap: 0.75rem;
}

.footer__social a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--cream);
    border-radius: 50%;
    color: var(--charcoal);
    transition: all 0.3s ease;
}

.footer__social a:hover {
    background: var(--falu-red);
    color: #fff;
}

.footer__bottom {
    padding-top: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer__bottom p {
    font-size: 0.8125rem;
    color: var(--slate);
    margin: 0;
}

.footer__address {
    color: var(--slate);
}

.lightbox {
    position: fixed;
    inset: 0;
    z-index: 2000;
    background: rgba(26, 26, 26, 0.98);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s var(--ease-out);
}

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

.lightbox__close {
    position: absolute;
    top: var(--space-lg);
    right: var(--space-lg);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--cream);
    border: 1px solid var(--slate);
    border-radius: 50%;
    transition: all 0.3s var(--ease-out);
}

.lightbox__close:hover {
    background: var(--falu-red);
    border-color: var(--falu-red);
}

.lightbox__nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--cream);
    border: 1px solid var(--slate);
    border-radius: 50%;
    transition: all 0.3s var(--ease-out);
}

.lightbox__nav--prev {
    left: var(--space-lg);
}

.lightbox__nav--next {
    right: var(--space-lg);
}

.lightbox__nav:hover {
    background: var(--falu-red);
    border-color: var(--falu-red);
}

.lightbox__content {
    max-width: 90vw;
    max-height: 90vh;
}

.lightbox__content img {
    max-width: 100%;
    max-height: 85vh;
    object-fit: contain;
    border-radius: 4px;
}

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

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

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

@media (max-width: 1024px) {
    .services__grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .projects__gallery {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 640px) {
    .services__grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 968px) {
    .about__grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    .about__content {
        padding-right: 0;
    }
    .about__image {
        order: -1;
    }
    .contact__layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .contact__team {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
    .form-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767px) {
    .nav__links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 320px;
        height: 100vh;
        height: 100dvh;
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
        gap: 1.5rem;
        background: var(--charcoal);
        padding: 2rem;
        transition: right 0.4s var(--ease-out);
        z-index: 9999;
    }
    .nav__links.active {
        right: 0;
    }
    .nav__links a:not(.nav__cta) {
        font-size: 1.25rem;
        color: var(--cream);
    }
    .nav__links a::after {
        display: none;
    }
    .nav__links .nav__cta {
        margin-top: 1rem;
        background: var(--falu-red);
        color: #fff;
        padding: 0.75rem 1.5rem;
    }
    .nav__toggle {
        display: flex;
        z-index: 10000;
        position: relative;
    }
    .nav__toggle.active span {
        background: #fff;
    }
    .nav__toggle.active span:first-child {
        transform: rotate(45deg) translate(5px, 5px);
    }
    .nav__toggle.active span:last-child {
        transform: rotate(-45deg) translate(5px, -5px);
    }
    .services__grid {
        grid-template-columns: 1fr;
        gap: var(--space-md);
    }
    .projects__header {
        flex-direction: column;
        align-items: flex-start;
    }
    .projects__gallery {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-xs);
        padding: 0 var(--space-md);
    }
    .about__stats {
        flex-wrap: wrap;
        gap: var(--space-lg);
    }
    .footer__top {
        flex-direction: column;
        text-align: center;
    }
    .footer__nav {
        justify-content: center;
        gap: 1rem;
    }
    .footer__bottom {
        flex-direction: column;
        text-align: center;
    }
    .lightbox__nav {
        width: 44px;
        height: 44px;
    }
    .lightbox__nav--prev {
        left: var(--space-sm);
    }
    .lightbox__nav--next {
        right: var(--space-sm);
    }
}

@media (max-width: 480px) {
    :root {
        --space-lg: 1.5rem;
        --space-xl: 2rem;
        --space-2xl: 3rem;
        --space-3xl: 4rem;
    }
    .container {
        padding: 0 var(--space-sm);
    }
    .hero__content {
        padding: 3rem var(--space-sm) 2rem;
    }
    .section-title {
        font-size: 1.5rem;
    }
    .projects__gallery {
        grid-template-columns: repeat(2, 1fr);
        gap: 6px;
        padding: 0 var(--space-sm);
    }
    .services__grid {
        gap: var(--space-sm);
    }
    .service-card__content {
        padding: var(--space-sm);
    }
    .service-card__content h3 {
        font-size: 1rem;
    }
    .about__stats {
        flex-direction: column;
        align-items: flex-start;
        gap: var(--space-md);
    }
    .stat__num {
        font-size: 2rem;
    }
    .contact__form {
        padding: 1.25rem;
    }
    .contact__person {
        flex: 1;
        min-width: 0;
    }
    .footer__nav {
        gap: 0.75rem;
    }
}

@media (max-width: 428px) {
    #contact-form .g-recaptcha {
        transform: scale(0.9);
        transform-origin: left center;
    }
}

@media (max-width: 375px) {
    .container {
        padding: 0 0.75rem;
    }
    .hero__content {
        padding: 2.5rem 0.75rem 1.5rem;
    }
    .lightbox__nav {
        width: 40px;
        height: 40px;
    }
    .lightbox__close {
        width: 40px;
        height: 40px;
        top: var(--space-sm);
        right: var(--space-sm);
    }
    .filter-btn {
        padding: 0.75rem 1rem;
        font-size: 0.75rem;
    }
}
