
:root {

    --dark: #17251f;
    --dark-2: #22372e;

    --green: #476a55;
    --green-light: #6f8f79;

    --cream: #f4f1e9;
    --cream-2: #e9e5d9;

    --white: #ffffff;

    --text: #26342d;
    --muted: #69736d;

    --gold: #b99a5d;

    --border: rgba(23, 37, 31, .12);

    --container: 1240px;

    --radius: 4px;

    --shadow:
        0 20px 60px rgba(23, 37, 31, .10);

}


/* =========================================================
   RESET
========================================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "DM Sans", sans-serif;
    color: var(--text);
    background: var(--white);
    line-height: 1.7;
}

img {
    width: 100%;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
textarea,
select {
    font: inherit;
}


/* =========================================================
   GLOBAL
========================================================= */

.container {
    width: min(
        calc(100% - 80px),
        var(--container)
    );

    margin: auto;
}

.section {
    padding: 110px 0;
}

.eyebrow {
    display: inline-block;

    color: var(--green);

    font-size: 12px;

    font-weight: 700;

    letter-spacing: 2.5px;

    margin-bottom: 18px;
}

h1,
h2,
h3 {
    font-family: "Playfair Display", serif;
    font-weight: 600;
    line-height: 1.12;
}

h2 {
    font-size: clamp(42px, 5vw, 68px);
}

p {
    color: var(--muted);
}

.btn {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    min-height: 54px;

    padding: 0 28px;

    font-size: 13px;

    font-weight: 700;

    letter-spacing: .5px;

    transition: .3s ease;
}

.btn-primary {
    background: var(--green);
    color: white;
}

.btn-primary:hover {
    background: var(--dark);
    transform: translateY(-2px);
}

.btn-outline {
    border: 1px solid rgba(255,255,255,.7);
    color: white;
}

.btn-outline:hover {
    background: white;
    color: var(--dark);
}

.btn-light {
    background: white;
    color: var(--dark);
}

.btn-light:hover {
    background: var(--cream);
    transform: translateY(-2px);
}


/* =========================================================
   TOP BAR
========================================================= */

.topbar {
    background: var(--dark);
    color: rgba(255,255,255,.75);

    font-size: 12px;
}

.topbar-inner {
    min-height: 42px;

    display: flex;

    align-items: center;

    justify-content: space-between;
}

.top-contact {
    display: flex;
    gap: 15px;
}

.top-contact a:hover {
    color: white;
}


/* =========================================================
   HEADER
========================================================= */

.header {
    position: absolute;

    z-index: 100;

    top: 28px;

    left: 0;

    width: 100%;

    color: white;

    transition: .3s ease;
}

.header.scrolled {
    position: fixed;

    top: 0;

    background: rgba(23,37,31,.96);

    backdrop-filter: blur(12px);

    box-shadow: 0 10px 30px rgba(0,0,0,.12);
}

.nav {
    min-height: 88px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 30px;
}

.logo {
    display: flex;

    flex-direction: column;

    line-height: 1;
}

.logo span {
    font-family: "Playfair Display", serif;

    font-size: 32px;

    letter-spacing: 1px;

    font-weight: 700;
}

.logo small {
    margin-top: 5px;

    font-size: 8px;

    letter-spacing: 3px;

    opacity: .8;
}

nav {
    display: flex;

    align-items: center;

    gap: 27px;

    margin-left: auto;
}

nav > a,
.nav-dropdown > a {
    font-size: 14px;

    font-weight: 500;

    letter-spacing: .5px;

    opacity: .9;

    transition: .2s;
}

nav > a:hover,
.nav-dropdown > a:hover,
nav > a.active {
    opacity: 1;
    color: #fff;
}

.nav-dropdown {
    position: relative;
}

.nav-dropdown > a {
    display: flex;
    gap: 5px;
}

.dropdown-menu {
    position: absolute;

    top: 28px;

    left: -20px;

    min-width: 210px;

    padding: 12px;

    background: white;

    color: var(--dark);

    opacity: 0;

    visibility: hidden;

    transform: translateY(10px);

    transition: .25s;

    box-shadow: var(--shadow);
}

.dropdown-menu a {
    display: block;

    padding: 9px 12px;

    font-size: 14px;
}

.dropdown-menu a:hover {
    background: var(--cream);
}

.nav-dropdown:hover .dropdown-menu {
    opacity: 1;

    visibility: visible;

    transform: translateY(0);
}

.nav-button {
    padding: 13px 22px;

    border: 1px solid rgba(255,255,255,.7);

    font-size: 14px;

    font-weight: 500;

    letter-spacing: 1px;

    transition: .3s;
}

.nav-button:hover {
    background: white;
    color: var(--dark);
}

.menu-toggle {
    display: none;

    border: 0;

    background: transparent;

    color: white;

    font-size: 26px;

    cursor: pointer;
}


/* =========================================================
   HERO
========================================================= */

.hero {
    position: relative;

    min-height: 850px;

    display: flex;

    align-items: center;

    color: white;

    background:
        linear-gradient(
            90deg,
            rgba(14,27,21,.82),
            rgba(14,27,21,.45),
            rgba(14,27,21,.20)
        ),
        url("one.jpg")
        center/cover;
}

.hero-content {
    position: relative;

    z-index: 2;

    padding-top: 0px;
}

.hero-label {
    display: inline-flex;

    padding: 8px 13px;

    border-left: 2px solid var(--gold);

    background: rgba(255,255,255,.08);

    font-size: 10px;

    letter-spacing: 3px;

    margin-bottom: 28px;
}

.hero h1 {
    max-width: 780px;

    font-size: clamp(56px, 7vw, 105px);

    letter-spacing: -2px;
    font-size:65px;

    margin-bottom: 28px;
}

.hero p {
    max-width: 570px;

    color: rgba(255,255,255,.78);

    font-size: 17px;

    line-height: 1.8;

    margin-bottom: 38px;
}

.hero-buttons {
    display: flex;

    gap: 12px;
}

.hero-bottom {
    position: absolute;

    bottom: 0;

    left: 0;

    width: 100%;

    display: grid;

    grid-template-columns: repeat(4,1fr);

    border-top: 1px solid rgba(255,255,255,.25);

    background: rgba(20,35,28,.45);

    backdrop-filter: blur(8px);
}

.hero-bottom > div {
    padding: 25px 35px;

    border-right: 1px solid rgba(255,255,255,.16);
}

.hero-bottom strong {
    display: block;

    font-family: "Playfair Display", serif;

    font-size: 30px;
}

.hero-bottom span {
    font-size: 11px;

    color: rgba(255,255,255,.7);

    text-transform: uppercase;

    letter-spacing: 1px;
}


/* =========================================================
   FEATURED
========================================================= */

.featured {
    background: var(--cream);
}

.section-intro {
    display: flex;

    justify-content: space-between;

    align-items: end;

    margin-bottom: 55px;
}

.section-intro h2 {
    font-size: clamp(48px,6vw,76px);
}

.location-text {
    font-size: 13px;

    margin-top: 10px;
}

.price-box {
    min-width: 180px;

    text-align: right;

    border-left: 1px solid var(--border);

    padding-left: 30px;
}

.price-box small,
.price-box span {
    display: block;

    color: var(--muted);

    font-size: 10px;

    letter-spacing: 1px;

    text-transform: uppercase;
}

.price-box strong {
    display: block;

    font-family: "Playfair Display", serif;

    font-size: 42px;

    color: var(--dark);
}

.featured-grid {
    display: grid;

    grid-template-columns: 1.15fr .85fr;

    gap: 70px;

    align-items: center;
}

.featured-image {
    position: relative;
}

.featured-image img {
    height: 590px;

    object-fit: cover;
}

.image-tag {
    position: absolute;

    left: 25px;

    bottom: 25px;

    background: white;

    padding: 10px 15px;

    font-size: 10px;

    letter-spacing: 1.5px;

    font-weight: 700;
}

.featured-content h3 {
    font-size: clamp(38px,4vw,58px);

    max-width: 550px;

    margin-bottom: 25px;
}

.featured-content > p {
    max-width: 560px;

    margin-bottom: 18px;
}

.project-stats {
    display: grid;

    grid-template-columns: repeat(3,1fr);

    border-top: 1px solid var(--border);

    border-bottom: 1px solid var(--border);

    margin: 38px 0;
}

.project-stats div {
    padding: 22px 10px;

    border-right: 1px solid var(--border);
}

.project-stats div:last-child {
    border-right: 0;
}

.project-stats strong {
    display: block;

    font-family: "Playfair Display", serif;

    font-size: 26px;
}

.project-stats span {
    font-size: 10px;

    color: var(--muted);

    text-transform: uppercase;

    letter-spacing: 1px;
}

.text-link {
    font-size: 12px;

    font-weight: 700;

    letter-spacing: 1px;

    border-bottom: 1px solid var(--dark);

    padding-bottom: 4px;
}


/* =========================================================
   ABOUT
========================================================= */

.about {
    background: white;
}

.about-grid {
    display: grid;

    grid-template-columns: .95fr 1.05fr;

    gap: 90px;

    align-items: center;
}

.about-image {
    position: relative;
}

.about-image img {
    height: 650px;

    object-fit: cover;
}

.experience-card {
    position: absolute;

    right: -35px;

    bottom: 35px;

    width: 190px;

    padding: 25px;

    background: var(--green);

    color: white;

    box-shadow: var(--shadow);
}

.experience-card strong {
    display: block;

    font-family: "Playfair Display", serif;

    font-size: 45px;

    line-height: 1;
}

.experience-card span {
    display: block;

    margin-top: 8px;

    font-size: 11px;

    line-height: 1.5;

    color: rgba(255,255,255,.75);
}

.about-content h2 {
    max-width: 600px;

    margin-bottom: 30px;
}

.about-content h2 em,
.location-content h2 em,
.contact-intro h2 em {
    color: var(--green);

    font-style: normal;
}

.about-content > p {
    max-width: 600px;

    margin-bottom: 17px;
}

.about-points {
    margin-top: 40px;
}

.about-points > div {
    display: grid;

    grid-template-columns: 45px 1fr;

    padding: 18px 0;

    border-top: 1px solid var(--border);
}

.about-points span {
    color: var(--gold);

    font-size: 11px;

    font-weight: 700;
}

.about-points strong {
    font-size: 14px;
}

.about-points p {
    grid-column: 2;

    font-size: 12px;

    margin-top: 3px;
}


/* =========================================================
   HIGHLIGHTS
========================================================= */

.highlights {
    background: var(--cream);
}

.center-heading {
    text-align: center;

    max-width: 720px;

    margin: auto;

    margin-bottom: 65px;
}

.center-heading h2 {
    margin-bottom: 20px;
}

.features-grid {
    display: grid;

    grid-template-columns: repeat(4,1fr);

    border-top: 1px solid var(--border);

    border-left: 1px solid var(--border);
}

.feature-card {
    position: relative;

    min-height: 270px;

    padding: 32px;

    border-right: 1px solid var(--border);

    border-bottom: 1px solid var(--border);

    background: rgba(255,255,255,.28);

    transition: .3s;
}

.feature-card:hover {
    background: white;

    transform: translateY(-5px);

    box-shadow: var(--shadow);
}

.feature-number {
    position: absolute;

    top: 25px;

    right: 25px;

    font-size: 10px;

    color: var(--gold);
}

.feature-icon {
    width: 48px;

    height: 48px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    background: var(--green);

    color: white;

    font-size: 18px;

    margin-bottom: 35px;
}

.feature-card h3 {
    font-size: 23px;

    margin-bottom: 12px;
}

.feature-card p {
    font-size: 13px;

    line-height: 1.7;
}


/* =========================================================
   LOCATION
========================================================= */

.location {
    background: var(--dark);

    color: white;
}

.location-grid {
    display: grid;

    grid-template-columns: .85fr 1.15fr;

    gap: 80px;

    align-items: stretch;
}

.location-content h2 {
    color: white;

    margin-bottom: 25px;
}

.location-content > p {
    color: rgba(255,255,255,.68);

    max-width: 550px;
}

.distance-list {
    display: grid;

    grid-template-columns: repeat(2,1fr);

    margin-top: 45px;

    border-top: 1px solid rgba(255,255,255,.15);
}

.distance-list div {
    padding: 20px 0;

    border-bottom: 1px solid rgba(255,255,255,.15);
}

.distance-list strong {
    display: block;

    font-family: "Playfair Display", serif;

    color: var(--gold);

    font-size: 25px;
}

.distance-list span {
    color: rgba(255,255,255,.65);

    font-size: 11px;

    text-transform: uppercase;

    letter-spacing: 1px;
}

.map-card {
    min-height: 620px;

    position: relative;

    background:
        linear-gradient(
            rgba(29,48,39,.1),
            rgba(29,48,39,.55)
        ),
        url("https://images.unsplash.com/photo-1524666041070-9f8763d9d5f4?auto=format&fit=crop&w=1300&q=85")
        center/cover;
}

.map-overlay {
    position: absolute;

    left: 35px;

    right: 35px;

    bottom: 35px;

    padding: 30px;

    background: rgba(23,37,31,.9);

    backdrop-filter: blur(10px);
}

.map-pin {
    color: var(--gold);

    font-size: 25px;
}

.map-overlay h3 {
    font-size: 30px;

    margin-top: 10px;
}

.map-overlay p {
    color: rgba(255,255,255,.65);

    font-size: 12px;

    margin: 5px 0 20px;
}

.map-overlay a {
    font-size: 11px;

    font-weight: 700;

    letter-spacing: 1px;
}


/* =========================================================
   PORTFOLIO
========================================================= */

.portfolio {
    background: white;
}

.portfolio-heading {
    display: grid;

    grid-template-columns: 1fr 1fr;

    align-items: end;

    margin-bottom: 60px;
}

.portfolio-heading h2 {
    max-width: 550px;
}

.portfolio-heading p {
    max-width: 500px;

    margin-left: auto;
}

.portfolio-grid {
    display: grid;

    grid-template-columns: repeat(2,1fr);

    gap: 30px;
}

.project-card {
    border: 1px solid var(--border);

    background: white;

    transition: .3s;
}

.project-card:hover {
    box-shadow: var(--shadow);

    transform: translateY(-5px);
}

.project-card.large {
    grid-column: span 2;

    display: grid;

    grid-template-columns: 1.4fr .6fr;
}

.project-image {
    position: relative;

    overflow: hidden;
}

.project-image img {
    height: 350px;

    object-fit: cover;

    transition: .5s;
}

.project-card.large .project-image img {
    height: 450px;
}

.project-card:hover .project-image img {
    transform: scale(1.04);
}

.project-image > span {
    position: absolute;

    top: 20px;

    left: 20px;

    display: flex;

    align-items: center;

    justify-content: center;

    width: 38px;

    height: 38px;

    background: white;

    font-size: 11px;

    font-weight: 700;
}

.project-info {
    padding: 35px;
}

.project-info small {
    color: var(--green);

    font-size: 9px;

    letter-spacing: 2px;

    font-weight: 700;
}

.project-info h3 {
    font-size: 34px;

    margin: 12px 0 5px;
}

.project-info p {
    font-size: 12px;

    margin-bottom: 20px;
}

.project-info strong {
    font-size: 11px;

    letter-spacing: 1px;
}


/* =========================================================
   NUMBERS
========================================================= */

.numbers {
    padding: 70px 0;

    background: var(--green);

    color: white;
}

.numbers-grid {
    display: grid;

    grid-template-columns: repeat(4,1fr);
}

.numbers-grid > div {
    text-align: center;

    border-right: 1px solid rgba(255,255,255,.2);
}

.numbers-grid > div:last-child {
    border-right: 0;
}

.numbers strong {
    font-family: "Playfair Display", serif;

    font-size: 60px;

    line-height: 1;
}

.numbers strong span {
    color: var(--gold);
}

.numbers p {
    color: rgba(255,255,255,.7);

    margin-top: 10px;

    font-size: 11px;

    text-transform: uppercase;

    letter-spacing: 1.5px;
}


/* =========================================================
   CTA
========================================================= */

.cta {
    padding: 100px 0;

    background:
        linear-gradient(
            90deg,
            rgba(23,37,31,.92),
            rgba(23,37,31,.65)
        ),
        url("https://images.unsplash.com/photo-1500382017468-9049fed747ef?auto=format&fit=crop&w=2200&q=85")
        center/cover;

    color: white;
}

.cta-inner {
    display: flex;

    justify-content: space-between;

    align-items: end;

    gap: 50px;
}

.cta h2 {
    font-size: clamp(45px,5vw,70px);

    margin-bottom: 20px;
}

.cta p {
    max-width: 600px;

    color: rgba(255,255,255,.7);
}


/* =========================================================
   CONTACT
========================================================= */

.contact {
    background: var(--cream);
}

.contact-grid {
    display: grid;

    grid-template-columns: .85fr 1.15fr;

    gap: 100px;
}

.contact-intro h2 {
    margin-bottom: 25px;
}

.contact-intro > p {
    max-width: 520px;
}

.contact-details {
    margin-top: 45px;
}

.contact-details > div {
    padding: 18px 0;

    border-top: 1px solid var(--border);
}

.contact-details span {
    display: block;

    font-size: 9px;

    color: var(--green);

    letter-spacing: 2px;

    font-weight: 700;
}

.contact-details a,
.contact-details p {
    font-size: 13px;

    margin-top: 3px;
}

.contact-form {
    padding: 50px;

    background: white;

    box-shadow: var(--shadow);
}

.form-row {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 20px;
}

.field {
    margin-bottom: 23px;
}

.field label {
    display: block;

    margin-bottom: 7px;

    font-size: 10px;

    letter-spacing: 1px;

    text-transform: uppercase;

    font-weight: 700;
}

.field input,
.field select,
.field textarea {
    width: 100%;

    padding: 14px 15px;

    border: 1px solid var(--border);

    background: #fafafa;

    color: var(--text);

    outline: none;

    resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
    border-color: var(--green);
}

.consent {
    display: flex;

    gap: 10px;

    align-items: flex-start;

    font-size: 10px;

    color: var(--muted);

    margin-bottom: 25px;
}

.consent input {
    margin-top: 4px;
}

.submit-btn {
    width: 100%;

    min-height: 55px;

    border: 0;

    background: var(--dark);

    color: white;

    font-weight: 700;

    font-size: 12px;

    letter-spacing: 1px;

    cursor: pointer;

    transition: .3s;
}

.submit-btn:hover {
    background: var(--green);
}


/* =========================================================
   FOOTER
========================================================= */

.footer {
    background: #101b16;

    color: white;
}

.footer-grid {
    display: grid;

    grid-template-columns: 1.5fr 1fr 1fr 1fr;

    gap: 70px;

    padding: 80px 0;
}

.footer-brand p {
    max-width: 310px;

    color: rgba(255,255,255,.55);

    font-size: 12px;

    margin-top: 25px;
}

.footer-logo {
    color: white;
}

.socials {
    display: flex;

    gap: 8px;

    margin-top: 25px;
}

.socials a {
    width: 35px;

    height: 35px;

    display: flex;

    justify-content: center;

    align-items: center;

    border: 1px solid rgba(255,255,255,.2);

    font-size: 11px;

    transition: .2s;
}

.socials a:hover {
    background: white;

    color: var(--dark);
}

.footer-column h4 {
    font-size: 11px;

    letter-spacing: 2px;

    text-transform: uppercase;

    margin-bottom: 22px;
}

.footer-column a,
.footer-column p {
    display: block;

    color: rgba(255,255,255,.55);

    font-size: 12px;

    margin-bottom: 10px;
}

.footer-column a:hover {
    color: white;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,.1);

    padding: 20px 0;
}

.footer-bottom-inner {
    display: flex;

    justify-content: space-between;

    gap: 20px;
}

.footer-bottom p,
.footer-bottom a {
    color: rgba(255,255,255,.4);

    font-size: 10px;
}

.footer-bottom-inner > div {
    display: flex;

    gap: 20px;
}


/* =========================================================
   FLOATING BUTTONS
========================================================= */

.floating-actions {
    position: fixed;

    z-index: 200;

    right: 20px;

    bottom: 20px;

    display: flex;

    flex-direction: column;

    gap: 10px;
}

.floating-actions a {
    width: 52px;

    height: 52px;

    border-radius: 50%;

    display: flex;

    align-items: center;

    justify-content: center;

    color: white;

    font-size: 19px;

    box-shadow: 0 8px 25px rgba(0,0,0,.2);
}

.float-call {
    background: var(--dark);
}

.float-whatsapp {
    background: #228b55;
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media(max-width:1100px) {

    .container {
        width: min(
            calc(100% - 45px),
            var(--container)
        );
    }

    nav {
        gap: 17px;
    }

    .features-grid {
        grid-template-columns: repeat(2,1fr);
    }

    .featured-grid,
    .about-grid,
    .location-grid,
    .contact-grid {
        gap: 50px;
    }

}


@media(max-width:900px) {

    .top-contact {
        display: none;
    }

    .menu-toggle {
        display: block;

        margin-left: auto;
    }

    nav {
        position: absolute;

        top: 80px;

        left: 0;

        right: 0;

        margin: 0;

        padding: 20px;

        flex-direction: column;

        align-items: stretch;

        background: var(--dark);

        display: none;
    }

    nav.show {
        display: flex;
    }

    nav > a,
    .nav-dropdown > a {
        padding: 10px;
    }

    .dropdown-menu {
        position: static;

        display: none;

        opacity: 1;

        visibility: visible;

        transform: none;

        box-shadow: none;

        background: rgba(255,255,255,.05);

        color: white;

        width: 100%;
    }

    .nav-dropdown:hover .dropdown-menu {
        display: block;
    }

    .nav-button {
        display: none;
    }

    .hero {
        min-height: 760px;
    }

    .hero-bottom {
        grid-template-columns: repeat(2,1fr);
    }

    .hero-bottom > div {
        padding: 17px 20px;
    }

    .featured-grid,
    .about-grid,
    .location-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .featured-image img,
    .about-image img {
        height: 500px;
    }

    .portfolio-heading {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .portfolio-heading p {
        margin-left: 0;
    }

    .portfolio-grid {
        grid-template-columns: 1fr;
    }

    .project-card.large {
        grid-column: span 1;

        display: block;
    }

    .project-card.large .project-image img {
        height: 350px;
    }

    .numbers-grid {
        grid-template-columns: repeat(2,1fr);

        gap: 35px;
    }

    .numbers-grid > div:nth-child(2) {
        border-right: 0;
    }

    .cta-inner {
        flex-direction: column;

        align-items: flex-start;
    }

    .footer-grid {
        grid-template-columns: repeat(2,1fr);
    }

}


@media(max-width:600px) {

    .container {
        width: calc(100% - 30px);
    }

    .section {
        padding: 75px 0;
    }

    .topbar {
        display: none;
    }

    .header {
        top: 0;
    }

    .nav {
        min-height: 75px;
    }

    .logo span {
        font-size: 27px;
    }

    .hero {
        min-height: 700px;
    }

    .hero-content {
        padding-top: 60px;
    }

    .hero h1 {
        font-size: 51px;

        letter-spacing: -1px;
    }

    .hero p {
        font-size: 14px;
    }

    .hero-buttons {
        flex-direction: column;

        align-items: stretch;

        max-width: 280px;
    }

    .hero-bottom {
        grid-template-columns: repeat(2,1fr);
    }

    .hero-bottom strong {
        font-size: 23px;
    }

    .hero-bottom span {
        font-size: 8px;
    }

    .section-intro {
        flex-direction: column;

        align-items: flex-start;

        gap: 25px;
    }

    .price-box {
        text-align: left;

        border-left: 0;

        border-top: 1px solid var(--border);

        padding-left: 0;

        padding-top: 20px;
    }

    .featured-image img,
    .about-image img {
        height: 400px;
    }

    .experience-card {
        right: 15px;

        bottom: 15px;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .distance-list {
        grid-template-columns: 1fr;
    }

    .map-card {
        min-height: 450px;
    }

    .portfolio-grid {
        gap: 20px;
    }

    .project-image img,
    .project-card.large .project-image img {
        height: 280px;
    }

    .project-info {
        padding: 25px;
    }

    .numbers-grid {
        grid-template-columns: 1fr 1fr;
    }

    .numbers strong {
        font-size: 43px;
    }

    .numbers p {
        font-size: 8px;
    }

    .contact-form {
        padding: 25px 20px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .footer-grid {
        grid-template-columns: 1fr;

        gap: 40px;
    }

    .footer-bottom-inner {
        flex-direction: column;
    }

}