@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&display=swap');

:root {
    --ink: #243025;
    --muted: #697064;
    --sage: #65765b;
    --sage-dark: #465540;
    --sage-soft: #eaf0e6;
    --cream: #f7f5ef;
    --paper: #fffdf9;
    --line: #e4e8df;
    --accent: #c98668;
    --white: #fff;
    --shadow: 0 18px 50px rgba(42, 52, 40, .08);
    --radius: 28px;
    --container: 1180px;
}

/* =========================================================
   Reset / Base
   ========================================================= */

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Manrope', Arial, sans-serif;
    color: var(--ink);
    background: var(--cream);
    line-height: 1.65;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
}

    body.menu-open {
        overflow: hidden;
    }

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

button,
input,
textarea,
select {
    font: inherit;
}

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

.container {
    width: min(calc(100% - 48px), var(--container));
    margin: auto;
}

.page {
    min-height: 100vh;
    overflow: clip;
}

/* =========================================================
   Header
   ========================================================= */

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 253, 249, .94);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(70, 85, 64, .08);
}

.navbar {
    height: 78px;
    width: min(calc(100% - 48px), var(--container));
    margin: auto;
    display: flex;
    align-items: center;
    gap: 30px;
}

.brand img {
    width: 164px;
    height: auto;
    max-height: 54px;
    max-width: 220px;
    object-fit: contain;
}

/* =========================================================
   Desktop Navigation
   ========================================================= */

.nav-menu {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-left: auto;
}

.nav-link,
.drop-button,
.lang {
    border: 0;
    background: transparent;
    color: #465044;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: .04em;
    padding: 12px 14px;
    border-radius: 999px;
    cursor: pointer;
}

    .nav-link:hover,
    .drop-button:hover,
    .lang:hover {
        background: var(--sage-soft);
        color: var(--sage-dark);
    }

/* =========================================================
   Desktop Dropdowns
   ========================================================= */

.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    min-width: 210px;
    padding: 8px;
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 18px;
    box-shadow: var(--shadow);
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: .2s;
}

.dropdown.open .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: none;
}

.dropdown-menu a {
    display: block;
    padding: 11px 13px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 400;
}

    .dropdown-menu a:hover {
        background: var(--sage-soft);
    }

/* =========================================================
   Language
   ========================================================= */

.nav-actions {
    display: flex;
    align-items: center;
}

.lang-wrap {
    position: relative;
}

.lang {
    border: 1px solid var(--line);
    padding: 10px 13px;
}

.lang-menu {
    position: absolute;
    right: 0;
    top: calc(100% + 8px);
    min-width: 130px;
    padding: 6px;
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 16px;
    box-shadow: var(--shadow);
    opacity: 0;
    visibility: hidden;
    transform: translateY(6px);
    transition: .2s;
}

.lang-wrap.open .lang-menu {
    opacity: 1;
    visibility: visible;
    transform: none;
}

.lang-menu button {
    display: block;
    width: 100%;
    border: 0;
    background: transparent;
    text-align: left;
    padding: 10px 11px;
    border-radius: 10px;
    font-size: 11px;
    font-weight: 400;
    cursor: pointer;
}

    .lang-menu button:hover,
    .lang-menu button.active {
        background: var(--sage-soft);
    }

/* =========================================================
   Mobile Toggle
   ========================================================= */

.mobile-toggle {
    display: none;
    margin-left: auto;
    width: 46px;
    height: 46px;
    border: 1px solid var(--line);
    background: var(--paper);
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
    position: relative;
    z-index: 1400;
}

    .mobile-toggle span {
        width: 17px;
        height: 1.7px;
        background: var(--sage-dark);
        transition: .25s;
    }

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

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

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

/* =========================================================
   Mobile Menu Backdrop
   ========================================================= */

.mobile-menu-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(20, 27, 20, .38);
    opacity: 0;
    visibility: hidden;
    transition: .25s;
    z-index: 1150;
}

    .mobile-menu-backdrop.open {
        opacity: 1;
        visibility: visible;
    }

/* =========================================================
   Mobile Menu
   ========================================================= */

.mobile-menu {
    position: fixed;
    inset: 0 0 0 auto;
    width: min(100%, 430px);
    height: 100dvh;
    min-height: 100vh;
    overflow-y: auto;
    background: var(--sage-dark);
    color: #fff;
    padding: 94px 28px 34px;
    transform: translateX(110%);
    transition: transform .32s cubic-bezier(.2, .8, .2, 1);
    z-index: 1200;
    overscroll-behavior: contain;
}

    .mobile-menu.open {
        transform: none;
    }

/* =========================================================
   Mobile Menu Header / Logo
   ========================================================= */

.mobile-brand {
    position: absolute;
    top: 13px;
    left: 28px;
    right: 88px;
    display: flex;
    align-items: center;
    height: 46px;
    margin: 0;
    padding: 0 !important;
    border: 0 !important;
}

    .mobile-brand a {
        display: inline-flex;
        align-items: center;
        width: auto;
        padding: 0 !important;
        border: 0 !important;
    }

    .mobile-brand img {
        width: 150px;
        height: auto;
        max-width: 100%;
        filter: brightness(0) invert(1);
    }

/* =========================================================
   Mobile Navigation Items
   ========================================================= */

.mobile-menu > a,
.mobile-menu > button {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: space-between;
    color: #fff;
    background: none;
    border: 0;
    border-bottom: 1px solid rgba(255, 255, 255, .13);
    padding: 17px 2px;
    font-size: 18px;
    font-weight: 500;
    text-align: left;
}

/* =========================================================
   Mobile Service Dropdowns
   ========================================================= */

.mobile-services {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows .25s ease;
}

    .mobile-services > div {
        overflow: hidden;
    }

    .mobile-services.open {
        grid-template-rows: 1fr;
    }

    .mobile-services a {
        display: flex;
        width: 100%;
        align-items: center;
        color: rgba(255, 255, 255, .82);
        padding: 11px 8px;
        border-bottom: 0;
        font-size: 14px;
        font-weight: 400;
    }

/* =========================================================
   Mobile Language
   ========================================================= */

.mobile-language {
    margin-top: 24px !important;
    border: 1px solid rgba(255, 255, 255, .25) !important;
    border-radius: 14px !important;
    padding: 14px 16px !important;
}

/* =========================================================
   Hero
   ========================================================= */

.hero {
    padding: 34px 0 78px;
    background: linear-gradient( 180deg, #fffdf9 0%, #f7f5ef 100% );
}

.hero-grid {
    display: grid;
    grid-template-columns: .92fr 1.08fr;
    align-items: center;
    gap: 54px;
}

.eyebrow {
    font-size: 11px;
    letter-spacing: .15em;
    text-transform: uppercase;
    font-weight: 500;
    color: var(--sage);
    margin-bottom: 15px;
}

.hero h1,
.page-hero h1 {
    font-size: clamp(24px, 2.8vw, 40px);
    line-height: 1.08;
    letter-spacing: -1.7px;
    font-weight: 600;
    max-width: 760px;
}

    .hero h1 em,
    .page-hero h1 em,
    .section-title em {
        font-style: normal;
        color: var(--sage);
    }

.lead {
    font-size: 16px;
    line-height: 1.75;
    color: var(--muted);
    max-width: 620px;
    margin-top: 22px;
    font-weight: 400;
}

.actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 19px;
    border-radius: 14px;
    border: 1px solid var(--sage-dark);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: .04em;
    transition: .2s;
}

.btn-primary {
    background: var(--sage-dark);
    color: #fff;
}

    .btn-primary:hover {
        background: #344130;
        transform: translateY(-2px);
    }

.btn-secondary {
    border-color: var(--line);
    background: #fff;
    color: var(--ink);
}

    .btn-secondary:hover {
        background: var(--sage-soft);
    }

.hero-photo {
    position: relative;
    min-width: 0;
}

    .hero-photo img {
        width: 100%;
        height: auto;
        aspect-ratio: 1.12 / 1;
        object-fit: cover;
        border-radius: 34px;
        box-shadow: var(--shadow);
    }

    .hero-photo::after {
        content: '';
        position: absolute;
        inset: auto -10px -10px auto;
        width: 90px;
        height: 90px;
        border-radius: 50%;
        background: var(--sage-soft);
        z-index: -1;
    }

.hero-badge {
    position: absolute;
    left: 20px;
    bottom: 20px;
    background: rgba(255, 253, 249, .94);
    backdrop-filter: blur(12px);
    padding: 16px 18px;
    border-radius: 18px;
    box-shadow: var(--shadow);
    max-width: 290px;
}

    .hero-badge strong {
        display: block;
        font-size: 14px;
        line-height: 1.35;
        font-weight: 500;
    }

    .hero-badge span {
        display: block;
        color: var(--muted);
        font-size: 10px;
        margin-top: 5px;
    }

/* =========================================================
   Sections
   ========================================================= */

.section {
    padding: 96px 0;
}

    .section.alt {
        background: #eef2eb;
    }

.section-head {
/*    max-width: 690px;*/
    margin-bottom: 42px;
}

.section-title {
    font-size: clamp(34px, 9.5vw, 36px);
    line-height: 1.1;
    letter-spacing: -1.2px;
    font-weight: 600;
}

.section-text {
    font-size: 14px;
    line-height: 1.8;
    color: var(--muted);
    max-width: 680px;
    margin-top: 16px;
    font-weight: 400;
}

/* =========================================================
   Split Sections
   ========================================================= */

.split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: center;
}

.photo-card img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 30px;
    box-shadow: var(--shadow);
}

.copy {
    max-width: 560px;
}

.bullets {
    display: grid;
    gap: 14px;
    margin-top: 28px;
}

.bullet {
    display: grid;
    grid-template-columns: 42px 1fr;
    gap: 13px;
    align-items: start;
    padding: 15px 0;
    border-top: 1px solid var(--line);
}

    .bullet i {
        width: 36px;
        height: 36px;
        border-radius: 50%;
        background: var(--sage-soft);
        display: grid;
        place-items: center;
        color: var(--sage-dark);
        font-style: normal;
        font-size: 10px;
        font-weight: 800;
    }

    .bullet strong {
        display: block;
        font-size: 13px;
        font-weight: 500;
    }

    .bullet span {
        display: block;
        color: var(--muted);
        font-size: 11px;
        margin-top: 2px;
    }

/* =========================================================
   Services
   ========================================================= */

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

.service-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(42, 52, 40, .04);
    transition: .25s;
}

    .service-card:hover {
        transform: translateY(-5px);
        box-shadow: var(--shadow);
    }

    .service-card img {
        width: 100%;
        aspect-ratio: 1.45 / 1;
        object-fit: cover;
    }

.service-body {
    padding: 21px;
}

    .service-body h3 {
        font-size: 20px;
        font-weight: 500;
        letter-spacing: -.25px;
    }

    .service-body p {
        font-size: 12px;
        color: var(--muted);
        line-height: 1.7;
        margin-top: 8px;
        min-height: 58px;
        font-weight: 400;
    }

.more {
    display: inline-block;
    margin-top: 16px;
    color: var(--sage-dark);
    font-size: 10px;
    font-weight: 500;
    letter-spacing: .08em;
}

/* =========================================================
   Values
   ========================================================= */

.values {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.value {
    padding: 27px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 22px;
}

.value-number {
    font-size: 12px;
    font-weight: 500;
    color: var(--sage);
    margin-bottom: 8px;
}

.value h3 {
    font-size: 16px;
    font-weight: 500;
}

.value p {
    font-size: 12px;
    color: var(--muted);
    margin-top: 8px;
    line-height: 1.7;
    font-weight: 400;
}

/* =========================================================
   CTA
   ========================================================= */

.cta {
    position: relative;
    overflow: hidden;
    min-height: 390px;
    border-radius: 30px;
    background: var(--sage-dark);
    color: #fff;
    display: flex;
    align-items: flex-end;
}

    .cta img {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        opacity: .68;
    }

    .cta::after {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient( 90deg, rgba(55, 67, 51, .92), rgba(55, 67, 51, .42) 58%, rgba(55, 67, 51, .12) );
    }

.cta-content {
    position: relative;
    z-index: 1;
    padding: 48px;
    max-width: 660px;
}

    .cta-content h2 {
        font-size: clamp(30px, 3.5vw, 46px);
        line-height: 1.08;
        letter-spacing: -1.1px;
        font-weight: 600;
    }

    .cta-content p {
        color: rgba(255, 255, 255, .76);
        font-size: 13px;
        margin: 17px 0 24px;
        max-width: 560px;
    }

/* =========================================================
   Page Hero
   ========================================================= */

.page-hero {
    padding: 72px 0 35px;
    background: #fffdf9;
}

.page-hero-grid {
    display: grid;
    grid-template-columns: .82fr 1.18fr;
    gap: 60px;
    align-items: center;
}

.page-hero-photo img {
    width: 100%;
    aspect-ratio: 1.35 / 1;
    object-fit: cover;
    border-radius: 30px;
    box-shadow: var(--shadow);
}

/* =========================================================
   Service Detail
   ========================================================= */

.service-detail {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 65px;
    align-items: center;
}

.detail-content h2 {
    font-size: clamp(30px, 3.5vw, 46px);
    letter-spacing: -1.1px;
    line-height: 1.1;
    font-weight: 600;
}

.detail-content > p {
    font-size: 14px;
    line-height: 1.85;
    color: var(--muted);
    margin-top: 18px;
    font-weight: 400;
}

.detail-image img {
    width: 100%;
    aspect-ratio: 1 / 1.05;
    object-fit: cover;
    border-radius: 30px;
    box-shadow: var(--shadow);
}

.service-highlights {
    display: grid;
    gap: 12px;
    margin-top: 25px;
}

.highlight {
    padding: 17px 18px;
    background: var(--sage-soft);
    border-radius: 16px;
}

    .highlight b {
        display: block;
        font-size: 14px;
        font-weight: 500;
    }

    .highlight span {
        display: block;
        color: var(--muted);
        font-size: 12px;
        margin-top: 4px;
    }

/* =========================================================
   Process
   ========================================================= */

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

.process-card {
    padding: 26px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 22px;
}

.step {
    font-size: 10px;
    color: var(--sage);
    font-weight: 500;
    letter-spacing: .12em;
}

.process-card h3 {
    font-size: 18px;
    margin-top: 22px;
    font-weight: 500;
    letter-spacing: -.2px;
}

.process-card p {
    font-size: 12px;
    color: var(--muted);
    margin-top: 7px;
    font-weight: 400;
}

/* =========================================================
   Gallery
   ========================================================= */

.gallery-intro {
    display: grid;
    grid-template-columns: 1fr .7fr;
    gap: 50px;
    align-items: end;
}

.gallery-showcase {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    grid-template-rows: 260px 220px;
    gap: 16px;
}

.gallery-feature {
    grid-row: span 2;
    position: relative;
    overflow: hidden;
    border-radius: 26px;
}

.gallery-tile {
    position: relative;
    overflow: hidden;
    border-radius: 22px;
}

    .gallery-feature img,
    .gallery-tile img,
    .gallery-item img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform .45s;
    }

    .gallery-feature:hover img,
    .gallery-tile:hover img,
    .gallery-item:hover img {
        transform: scale(1.04);
    }

.gallery-caption {
    position: absolute;
    left: 16px;
    right: 16px;
    bottom: 16px;
    padding: 10px 12px;
    border-radius: 12px;
    background: rgba(255, 253, 249, .9);
    backdrop-filter: blur(10px);
    font-size: 10px;
    font-weight: 800;
}

.gallery-toolbar {
    display: flex;
    gap: 8px;
    margin: 24px 0 18px;
}

.gallery-filter {
    border: 1px solid var(--line);
    background: #fff;
    border-radius: 999px;
    padding: 9px 14px;
    font-size: 10px;
    font-weight: 500;
    color: var(--muted);
    cursor: pointer;
}

    .gallery-filter.active {
        background: var(--sage-dark);
        color: #fff;
        border-color: var(--sage-dark);
    }

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 210px;
    gap: 14px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
}

    .gallery-item:nth-child(3),
    .gallery-item:nth-child(8) {
        grid-row: span 2;
    }

.gallery-note {
    margin-top: 24px;
    padding: 24px;
    border-radius: 22px;
    background: #eaf0e6;
    display: flex;
    justify-content: space-between;
    gap: 30px;
    align-items: center;
}

    .gallery-note strong {
        font-size: 16px;
    }

    .gallery-note p {
        font-size: 13px;
        color: var(--muted);
        max-width: 680px;
        font-weight: 400;
    }

/* =========================================================
   Contact
   ========================================================= */

.contact-grid {
    display: grid;
    grid-template-columns: .85fr 1.15fr;
    gap: 20px;
}

.contact-card,
.form-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 26px;
    padding: 32px;
}

.contact-card {
    background: var(--sage-dark);
    color: #fff;
}

    .contact-card h2,
    .form-card h2 {
        font-size: 30px;
        line-height: 1.1;
        font-weight: 600;
        letter-spacing: -.7px;
    }

    .contact-card p {
        color: rgba(255, 255, 255, .72);
        font-size: 12px;
        margin-top: 12px;
    }

.contact-list {
    display: grid;
    gap: 18px;
    margin-top: 30px;
}

.contact-item {
    display: grid;
    grid-template-columns: 38px 1fr;
    gap: 12px;
    align-items: start;
}

.contact-icon {
    width: 36px;
    height: 36px;
    border: 1px solid rgba(255, 255, 255, .22);
    border-radius: 50%;
    display: grid;
    place-items: center;
}

.contact-item strong {
    display: block;
    font-size: 10px;
    color: rgba(255, 255, 255, .58);
    text-transform: uppercase;
    letter-spacing: .08em;
}

.contact-item a,
.contact-item span {
    display: block;
    font-size: 13px;
    margin-top: 2px;
}

/* =========================================================
   Form
   ========================================================= */

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 24px;
}

.field {
    display: grid;
    gap: 7px;
}

    .field.full {
        grid-column: 1 / -1;
    }

    .field label {
        font-size: 10px;
        font-weight: 500;
        color: var(--muted);
    }

    .field input,
    .field textarea,
    .field select {
        width: 100%;
        border: 1px solid var(--line);
        border-radius: 13px;
        background: #fcfbf7;
        padding: 13px 14px;
        color: var(--ink);
        outline: 0;
        font-weight: 400;
    }

        .field input:focus,
        .field textarea:focus,
        .field select:focus {
            border-color: var(--sage);
        }

    .field textarea {
        min-height: 145px;
        resize: vertical;
    }

/* =========================================================
   Map
   ========================================================= */

.map {
    overflow: hidden;
    border-radius: 26px;
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
}

    .map iframe {
        width: 100%;
        height: 460px;
        border: 0;
    }

/* =========================================================
   Footer
   ========================================================= */

.footer {
    background: #3f4b3b;
    color: #fff;
    padding: 65px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 30px;
}

.footer-brand img {
    width: 160px;
/*    filter: brightness(0) invert(1);*/
}

.footer p,
.footer li,
.footer a {
    font-size: 11px;
    color: rgba(255, 255, 255, .72);
}

.footer h4 {
    font-size: 12px;
    margin-bottom: 14px;
}

.footer ul {
    list-style: none;
    display: grid;
    gap: 7px;
}

.footer a:hover {
    color: #fff;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    border-top: 1px solid rgba(255, 255, 255, .13);
    margin-top: 40px;
    padding-top: 17px;
    font-size: 9px;
    color: rgba(255, 255, 255, .52);
}

/* =========================================================
   Reveal Animations
   ========================================================= */

.reveal {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity .7s ease, transform .7s ease;
}

    .reveal.visible {
        opacity: 1;
        transform: none;
    }

/* =========================================================
   Lightbox
   ========================================================= */

.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(20, 25, 20, .88);
    display: none;
    align-items: center;
    justify-content: center;
    padding: 30px;
    z-index: 2000;
}

    .lightbox.open {
        display: flex;
    }

    .lightbox img {
        max-width: min(1100px, 92vw);
        max-height: 88vh;
        border-radius: 20px;
        object-fit: contain;
    }

.lightbox-close {
    position: absolute;
    top: 22px;
    right: 25px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, .3);
    background: transparent;
    color: #fff;
    font-size: 24px;
    cursor: pointer;
}

/* =========================================================
   Tablet
   ========================================================= */

@media (max-width: 1050px) {

    .nav-menu,
    .nav-actions {
        display: none;
    }

    .mobile-toggle {
        display: flex;
    }

    .navbar {
        height: 72px;
    }

    .hero-grid,
    .page-hero-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .hero {
        padding-top: 28px;
    }

        .hero h1,
        .page-hero h1 {
            max-width: 760px;
        }

    .hero-photo {
        max-width: 760px;
    }

    .split,
    .service-detail {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .copy {
        max-width: none;
    }

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

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

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

    .footer-grid {
        grid-template-columns: 1.4fr 1fr 1fr;
    }

        .footer-grid > div:last-child {
            grid-column: 2;
        }

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

/* =========================================================
   Mobile
   ========================================================= */

@media (max-width: 700px) {

    .container {
        width: min(calc(100% - 32px), 620px);
    }

    .navbar {
        width: calc(100% - 32px);
    }

    .brand img {
        width: 150px;
    }

    .mobile-menu {
        width: 100%;
        padding: 88px 22px 30px;
    }

    .mobile-brand {
        top: 13px;
        left: 22px;
        right: 80px;
        height: 46px;
    }

        .mobile-brand img {
            width: 145px;
        }

    .hero {
        padding: 24px 0 58px;
    }

    .hero-grid {
        gap: 28px;
    }

    .hero h1,
    .page-hero h1 {
        font-size: clamp(34px, 9.5vw, 46px);
        letter-spacing: -1px;
    }

    .hero .lead,
    .page-hero .lead {
        font-size: 14px;
        line-height: 1.7;
    }

    .hero-photo img {
        aspect-ratio: 1 / 1.03;
        border-radius: 24px;
    }

    .hero-badge {
        left: 12px;
        bottom: 12px;
        max-width: 240px;
        padding: 13px 14px;
    }

        .hero-badge strong {
            font-size: 12px;
        }

        .hero-badge span {
            font-size: 9px;
        }

    .actions {
        margin-top: 22px;
    }

    .btn {
        min-height: 45px;
        padding: 0 15px;
        font-size: 10px;
    }

    .section {
        padding: 68px 0;
    }

    .section-title {
        font-size: 32px;
        letter-spacing: -.8px;
    }

    .section-text {
        font-size: 13px;
    }

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

    .service-card img {
        aspect-ratio: 1.55 / 1;
    }

    .service-body {
        padding: 19px;
    }

        .service-body h3 {
            font-size: 20px;
        }

        .service-body p {
            min-height: auto;
            font-size: 11px;
        }

    .values {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .value {
        padding: 22px;
    }

    .value-number {
        margin-bottom: 22px;
    }

    .cta {
        min-height: 460px;
        border-radius: 24px;
    }

    .cta-content {
        padding: 30px 22px;
    }

        .cta-content h2 {
            font-size: 32px;
            letter-spacing: -.7px;
        }

    .gallery-intro {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .gallery-showcase {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 240px 170px;
    }

    .gallery-feature {
        grid-column: 1 / -1;
        grid-row: auto;
    }

    .gallery-grid {
        grid-template-columns: 1fr 1fr;
        grid-auto-rows: 170px;
    }

    .gallery-item:nth-child(3),
    .gallery-item:nth-child(8) {
        grid-row: span 1;
    }

    .gallery-note {
        display: grid;
        gap: 14px;
    }

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

    .field.full {
        grid-column: auto;
    }

    .contact-card,
    .form-card {
        padding: 24px;
    }

        .contact-card h2,
        .form-card h2 {
            font-size: 26px;
        }

    .map iframe {
        height: 360px;
    }

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

        .footer-grid > div:last-child {
            grid-column: auto;
        }

    .footer-bottom {
        flex-direction: column;
    }

    .page-hero {
        padding: 48px 0 25px;
    }

    .page-hero-photo img {
        aspect-ratio: 1 / 1;
        border-radius: 24px;
    }

    .service-detail {
        gap: 28px;
    }

    .detail-image {
        order: -1;
    }

        .detail-image img {
            aspect-ratio: 1 / 1;
            border-radius: 24px;
        }

    .detail-content h2 {
        font-size: 31px;
        letter-spacing: -.7px;
    }

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

    .process-card {
        padding: 22px;
    }
}

/* =========================================================
   Small Mobile
   ========================================================= */

@media (max-width: 390px) {

    .brand img {
        width: 138px;
    }

    .mobile-toggle {
        width: 42px;
        height: 42px;
    }

    .mobile-menu {
        padding-left: 20px;
        padding-right: 20px;
    }

    .mobile-brand {
        left: 20px;
        right: 72px;
    }

        .mobile-brand img {
            width: 138px;
        }

    .hero h1,
    .page-hero h1 {
        font-size: 36px;
    }

    .services-grid {
        gap: 12px;
    }

    .gallery-showcase {
        grid-template-rows: 210px 145px;
    }

    .gallery-grid {
        grid-auto-rows: 145px;
    }

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

        .footer-grid > div:last-child {
            grid-column: auto;
        }
}
/* =========================================================
           Articles
           ========================================================= */

.articles-toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    margin-bottom: 34px;
}

.articles-categories {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.article-filter {
    border: 1px solid var(--line);
    background: var(--paper);
    color: var(--muted);
    border-radius: 999px;
    padding: 9px 15px;
    font-size: 10px;
    font-weight: 500;
    cursor: pointer;
    transition: .2s;
}

    .article-filter:hover,
    .article-filter.active {
        background: var(--sage-dark);
        border-color: var(--sage-dark);
        color: #fff;
    }

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

.article-card {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 24px;
    box-shadow: 0 10px 30px rgba(42, 52, 40, .04);
    transition: .25s;
}

    .article-card:hover {
        transform: translateY(-5px);
        box-shadow: var(--shadow);
    }

.article-image {
    position: relative;
    overflow: hidden;
}

    .article-image img {
        width: 100%;
        aspect-ratio: 1.45 / 1;
        object-fit: cover;
        transition: transform .45s;
    }

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

.article-category {
    position: absolute;
    top: 15px;
    left: 15px;
    padding: 7px 10px;
    border-radius: 999px;
    background: rgba(255, 253, 249, .92);
    backdrop-filter: blur(10px);
    color: var(--sage-dark);
    font-size: 9px;
    font-weight: 600;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.article-body {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 22px;
}

.article-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--muted);
    font-size: 9px;
    margin-bottom: 11px;
}

    .article-meta span + span::before {
        content: '•';
        margin-right: 8px;
        color: var(--sage);
    }

.article-body h2 {
    font-size: 20px;
    line-height: 1.3;
    font-weight: 500;
    letter-spacing: -.35px;
}

    .article-body h2 a {
        transition: color .2s;
    }

        .article-body h2 a:hover {
            color: var(--sage);
        }

.article-excerpt {
    margin-top: 9px;
    color: var(--muted);
    font-size: 11px;
    line-height: 1.75;
}

.article-read {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    margin-top: auto;
    padding-top: 19px;
    color: var(--sage-dark);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: .07em;
    text-transform: uppercase;
}

    .article-read span {
        transition: transform .2s;
    }

.article-card:hover .article-read span {
    transform: translateX(4px);
}

.articles-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 7px;
    margin-top: 45px;
}

.page-number {
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    border: 1px solid var(--line);
    border-radius: 50%;
    background: var(--paper);
    color: var(--muted);
    font-size: 10px;
    cursor: pointer;
}

    .page-number:hover,
    .page-number.active {
        background: var(--sage-dark);
        border-color: var(--sage-dark);
        color: #fff;
    }

/* Featured article */

.featured-article {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    overflow: hidden;
    background: var(--sage-dark);
    border-radius: 28px;
    color: #fff;
    margin-bottom: 55px;
}

.featured-article-image {
    min-height: 400px;
}

    .featured-article-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.featured-article-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 48px;
}

.featured-label {
    font-size: 9px;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: rgba(255,255,255,.62);
    margin-bottom: 14px;
}

.featured-article-content h2 {
    font-size: clamp(28px, 3vw, 40px);
    line-height: 1.12;
    letter-spacing: -1px;
    font-weight: 600;
}

.featured-article-content p {
    margin-top: 15px;
    color: rgba(255,255,255,.72);
    font-size: 12px;
    line-height: 1.8;
}

.featured-article-content .btn {
    align-self: flex-start;
    margin-top: 25px;
    border-color: rgba(255,255,255,.3);
}

    .featured-article-content .btn:hover {
        background: rgba(255,255,255,.1);
        color: #fff;
    }

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

    .featured-article {
        grid-template-columns: 1fr;
    }

    .featured-article-image {
        min-height: 320px;
    }
}

@media (max-width: 700px) {
    .articles-toolbar {
        align-items: flex-start;
        flex-direction: column;
    }

    .articles-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .featured-article-image {
        min-height: 250px;
    }

    .featured-article-content {
        padding: 30px 24px;
    }

    .article-body {
        padding: 20px;
    }
}
/* =========================================================
           Article Details
           ========================================================= */

.article-page {
    background: var(--cream);
}

.article-header {
    padding: 72px 0 45px;
    background: #fffdf9;
}

.article-header-inner {
    max-width: 850px;
    margin: auto;
    text-align: center;
}

.article-header .eyebrow {
    margin-bottom: 18px;
}

.article-title {
    font-size: clamp(38px, 5vw, 62px);
    line-height: 1.08;
    letter-spacing: -1.7px;
    font-weight: 600;
}

.article-header-meta {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 22px;
    color: var(--muted);
    font-size: 10px;
}

    .article-header-meta span + span::before {
        content: '•';
        margin-right: 8px;
        color: var(--sage);
    }

.article-cover {
    width: min(calc(100% - 48px), 1120px);
    margin: 0 auto;
}

    .article-cover img {
        width: 100%;
        aspect-ratio: 1 / 1;
        object-fit: contain;
        display: block;
        border-radius: 24px;
    }

.article-content-section {
    padding: 75px 0 95px;
}

.article-layout {
    display: grid;
    grid-template-columns: 180px minmax(0, 720px) 180px;
    justify-content: center;
    gap: 55px;
    align-items: start;
}

.article-share {
    position: sticky;
    top: 105px;
}

.article-share-label {
    color: var(--muted);
    font-size: 9px;
    letter-spacing: .12em;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.share-list {
    display: flex;
    gap: 7px;
}

.share-button {
    width: 36px;
    height: 36px;
    display: grid;
    place-items: center;
    border: 1px solid var(--line);
    background: var(--paper);
    border-radius: 50%;
    color: var(--sage-dark);
    font-size: 10px;
    transition: .2s;
}

    .share-button:hover {
        background: var(--sage-dark);
        border-color: var(--sage-dark);
        color: #fff;
    }

.article-reading-info {
    position: sticky;
    top: 105px;
    padding: 19px;
    background: var(--sage-soft);
    border-radius: 18px;
}

    .article-reading-info strong {
        display: block;
        font-size: 12px;
        font-weight: 600;
    }

    .article-reading-info span {
        display: block;
        color: var(--muted);
        font-size: 10px;
        margin-top: 5px;
    }

.article-prose {
    min-width: 0;
}

.article-intro {
    color: var(--ink);
    font-size: 19px;
    line-height: 1.75;
    font-weight: 500;
    margin-bottom: 35px;
}

.article-prose p {
    color: var(--muted);
    font-size: 14px;
    line-height: 1.95;
    margin-bottom: 24px;
}

.article-prose h2 {
    color: var(--ink);
    font-size: 29px;
    line-height: 1.2;
    letter-spacing: -.7px;
    font-weight: 600;
    margin: 52px 0 18px;
}

.article-prose h3 {
    color: var(--ink);
    font-size: 19px;
    font-weight: 500;
    margin: 35px 0 12px;
}

.article-prose ul,
.article-prose ol {
    margin: 20px 0 28px 20px;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.9;
}

.article-prose li {
    padding-left: 6px;
    margin-bottom: 7px;
}

.article-prose blockquote {
    margin: 42px 0;
    padding: 27px 30px;
    border-left: 3px solid var(--sage);
    background: var(--sage-soft);
    border-radius: 0 18px 18px 0;
}

    .article-prose blockquote p {
        margin: 0;
        color: var(--sage-dark);
        font-size: 17px;
        line-height: 1.7;
        font-weight: 500;
    }

.article-inline-image {
    margin: 40px 0;
}

    .article-inline-image img {
        width: 100%;
        border-radius: 24px;
        box-shadow: var(--shadow);
    }

    .article-inline-image figcaption {
        margin-top: 9px;
        color: var(--muted);
        font-size: 9px;
        text-align: center;
    }

.article-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    margin-top: 45px;
    padding-top: 25px;
    border-top: 1px solid var(--line);
}

.article-tag {
    padding: 7px 11px;
    border-radius: 999px;
    background: var(--sage-soft);
    color: var(--sage-dark);
    font-size: 9px;
    font-weight: 500;
}

/* Related articles */

.related-articles {
    background: #eef2eb;
}

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

.related-card {
    overflow: hidden;
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 22px;
    transition: .25s;
}

    .related-card:hover {
        transform: translateY(-4px);
        box-shadow: var(--shadow);
    }

    .related-card img {
        width: 100%;
        aspect-ratio: 1.45 / 1;
        object-fit: cover;
    }

.related-body {
    padding: 20px;
}

    .related-body span {
        font-size: 9px;
        color: var(--sage);
        text-transform: uppercase;
        letter-spacing: .1em;
    }

    .related-body h3 {
        margin-top: 8px;
        font-size: 18px;
        line-height: 1.35;
        font-weight: 500;
    }

    .related-body a {
        display: inline-block;
        margin-top: 13px;
        color: var(--sage-dark);
        font-size: 9px;
        font-weight: 600;
        letter-spacing: .08em;
        text-transform: uppercase;
    }

/* Back */

.article-back {
    margin-bottom: 28px;
}

    .article-back a {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        color: var(--muted);
        font-size: 10px;
        font-weight: 500;
        letter-spacing: .05em;
    }

        .article-back a:hover {
            color: var(--sage-dark);
        }

@media (max-width: 1050px) {

    .article-layout {
        grid-template-columns: 1fr;
        max-width: 760px;
    }

    .article-share {
        position: static;
        order: 2;
        display: flex;
        align-items: center;
        gap: 15px;
    }

    .article-share-label {
        margin-bottom: 0;
    }

    .article-reading-info {
        display: none;
    }
}

@media (max-width: 700px) {

    .article-header {
        padding: 48px 0 30px;
    }

    .article-title {
        font-size: 36px;
        letter-spacing: -1px;
    }

    .article-cover {
        width: calc(100% - 32px);
    }

        .article-cover img {
            aspect-ratio: 1 / 1;
            border-radius: 24px;
        }

    .article-content-section {
        padding: 55px 0 70px;
    }

    .article-intro {
        font-size: 17px;
    }

    .article-prose p,
    .article-prose ul,
    .article-prose ol {
        font-size: 13px;
    }

    .article-prose h2 {
        font-size: 27px;
        margin-top: 42px;
    }

    .article-prose blockquote {
        margin: 32px 0;
        padding: 22px;
    }

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

.footer-socials {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 22px;
}

    .footer-socials a {
        width: 38px;
        height: 38px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        border: 1px solid var(--sage-dark);
        border-radius: 50%;
        color: rgba(255, 255, 255, .72);
        background: transparent;
        text-decoration: none;
        transition: all .2s ease;
    }

        .footer-socials a i {
            font-size: 17px;
        }

        .footer-socials a:hover {
            color: var(--white);
            background: var(--sage);
            border-color: var(--sage);
            transform: translateY(-2px);
        }
.gallery-items-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
    width: 100%;
}

.gallery-tile {
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

    .gallery-tile img {
        display: block;
        width: 100%;
        height: 240px;
        object-fit: cover;
    }

@media (max-width: 768px) {
    .gallery-items-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 575px) {
    .gallery-items-grid {
        grid-template-columns: 1fr;
    }

    .gallery-tile img {
        height: 220px;
    }
}
.mobile-language-menu {
    margin-top: 0;
}

    .mobile-language-menu > div {
        overflow: hidden;
    }

    .mobile-language-menu a {
        padding: 10px 8px;
    }

        .mobile-language-menu a.active {
            color: #fff;
            font-weight: 600;
        }
.footer-developed {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
}

    .footer-developed a {
        display: inline-flex;
        align-items: center;
    }

    .footer-developed img {
        width: auto;
        height: 1.3em;
        max-width: none;
    }