:root {
    --terracotta: #c93e28;
    --terracotta-deep: #9c321f;
    --beige: #eee5d6;
    --beige-warm: #e6d4bb;
    --offwhite: #f8f5ef;
    --forest: #3d4f35;
    --forest-deep: #253222;
    --clay: #6e4a35;
    --black: #271f1b;
    --muted: #6d625a;
    --border: #ded2c4;
    --shadow: 0 18px 50px rgba(110, 74, 53, .18);
    --shadow2: 0 28px 70px rgba(110, 74, 53, .28);
    --ease: cubic-bezier(.22, 1, .36, 1);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--offwhite);
    color: var(--black);
    font-family: Inter, system-ui, sans-serif;
    overflow-x: hidden;
}

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

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

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

.site-header {
    position: fixed;
    inset: 0 0 auto 0;
    z-index: 99;
    transition: .45s var(--ease);
}

.site-header.scrolled {
    background: rgba(248, 245, 239, .88);
    backdrop-filter: blur(18px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, .08);
    border-bottom: 1px solid rgba(222, 210, 196, .7);
}

.navbar {
    height: 82px;
    width: min(1240px, calc(100% - 40px));
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.brand img {
    height: 54px;
    width: auto;
}

.nav-menu {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 4px;
    margin: 0;
    padding: 0;
}

.nav-menu a {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 10px 16px;
    border-radius: 999px;
    font-size: 14px;
    letter-spacing: .03em;
    color: #fff;
    transition: .35s;
}

.scrolled .nav-menu a {
    color: var(--black);
}

.nav-menu a:hover {
    color: var(--terracotta);
    background: rgba(255, 255, 255, .16);
}

.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translate(-50%, 12px);
    min-width: 230px;
    padding: 10px;
    background: rgba(248, 245, 239, .75);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, .4);
    border-radius: 20px;
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transition: .35s;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    pointer-events: auto;
    transform: translate(-50%, 4px);
}

.dropdown-menu a {
    color: var(--black);
    display: block;
    border-radius: 14px;
}

.nav-cta,
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    font-weight: 600;
    transition: .4s var(--ease);
    border: 0;
}

.nav-cta {
    padding: 12px 22px;
    background: linear-gradient(135deg, var(--terracotta), var(--clay));
    color: #fff;
    font-size: 14px;
    box-shadow: var(--shadow);
}

.nav-cta:hover,
.btn:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 0 50px rgba(201, 62, 40, .22);
}

.menu-toggle {
    display: none;
    border: 0;
    background: transparent;
    color: #fff;
    font-size: 28px;
}

.scrolled .menu-toggle {
    color: var(--black);
}

.hero {
    position: relative;
    height: 100vh;
    min-height: 650px;
    overflow: hidden;
}

.hero-bg,
.hero-bg img,
.hero-overlay {
    position: absolute;
    inset: 0;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: kenburns 18s ease-out forwards;
}

.hero-overlay {
    background: linear-gradient(180deg, rgba(39, 31, 27, .08), rgba(39, 31, 27, .72)), rgba(39, 31, 27, .18);
}

.hero-content {
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding-bottom: 150px;
    color: #fff;
    margin-top: 80px;
}

.eyebrow {
    display: inline-flex;
    width: max-content;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: 999px;
    text-transform: uppercase;
    letter-spacing: .22em;
    font-size: 12px;
    margin-bottom: 28px;
}

.glass-dark {
    background: rgba(255, 255, 255, .1);
    border: 1px solid rgba(255, 255, 255, .16);
    backdrop-filter: blur(18px);
}

h1,
h2,
h3,
h4,
.font-display {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-weight: 500;
    letter-spacing: -.01em
}

h1 {
    font-size: clamp(54px, 9vw, 112px);
    line-height: .98;
    margin: 0 0 24px;
}

h2 {
    font-size: clamp(40px, 6vw, 60px);
    line-height: 1.04;
    margin: 0 0 28px;
}

h3 {
    font-size: 30px;
    margin: 0 0 12px;
}

em {
    font-style: normal;
    color: var(--terracotta);
}

.hero em,
.cta em {
    background: linear-gradient(135deg, #f2734f, #d6a47c);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero p {
    max-width: 700px;
    color: rgba(255, 255, 255, .86);
    font-size: 18px;
    line-height: 1.75;
    margin: 0 0 36px;
}

.hero-actions,
.button-row {
    display: flex ;
    flex-wrap: wrap;
    gap: 14px;
}

.btn {
    padding: 15px 28px;
}

.btn.primary {
    background: linear-gradient(135deg, var(--terracotta), var(--clay));
    color: #fff;
}

.btn.secondary {
    color: #fff;
    background: rgba(255, 255, 255, .12);
    border: 1px solid rgba(255, 255, 255, .32);
    backdrop-filter: blur(14px);
}

.btn.outline {
    border: 1px solid var(--border);
    color: var(--black);
    background: transparent;
}

.scroll-indicator {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255, 255, 255, .72);
    letter-spacing: .3em;
    text-transform: uppercase;
    font-size: 11px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    animation: float 6s infinite;
}

.scroll-indicator span {
    width: 1px;
    height: 42px;
    background: rgba(255, 255, 255, .45);
}

.section {
    padding: 120px 0;
}

.beige {
    background: linear-gradient(180deg, var(--offwhite), var(--beige));
}

.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
}

.align-center {
    align-items: center;
}

.image-card {
    border-radius: 34px;
    overflow: hidden;
    box-shadow: var(--shadow2);
}

.image-card img {
    width: 100%;
    height: 560px;
    object-fit: cover;
}

.section-label {
    color: var(--terracotta);
    text-transform: uppercase;
    letter-spacing: .32em;
    font-size: 12px;
    margin: 0 0 24px;
    font-weight: 700;
}

.intro p,
.split-head p,
.feature-card p,
.why-card p {
    color: var(--muted);
    line-height: 1.75;
    font-size: 17px;
}

.stats-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 42px;
    padding-top: 34px;
    border-top: 1px solid var(--border);
}

.stats-row strong {
    font-family: 'Cormorant Garamond';
    font-size: 44px;
    color: var(--terracotta);
    display: block;
}

.stats-row span {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: .12em;
    color: var(--muted);
}

.section-head {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 70px;
}

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

.feature-card {
    position: relative;
    padding: 38px;
    border-radius: 30px;
    background: #fffaf4;
    border: 1px solid rgba(222, 210, 196, .7);
    box-shadow: 0 8px 30px rgba(110, 74, 53, .06);
    transition: .6s var(--ease);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow2);
    border-color: rgba(201, 62, 40, .4);
}

.icon {
    width: 58px;
    height: 58px;
    border-radius: 18px;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, var(--terracotta), var(--clay));
    font-size: 26px;
    margin-bottom: 22px;
    color: #fff;
}

.split-head {
    display: grid;
    grid-template-columns: 1.4fr .8fr;
    gap: 48px;
    align-items: end;
    margin-bottom: 64px;
}

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

.why-card {
    min-height: 270px;
    border-radius: 30px;
    padding: 38px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    background: #fffaf4;
    border: 1px solid rgba(222, 210, 196, .7);
    transition: .6s var(--ease);
    overflow: hidden;
    position: relative;
}
.why-card.sec{
    background: var(--forest);
}
.why-card.sec span i{
    color: var(--offwhite);
}

.why-card.sec h3{
    color: #fff !important;
}
.why-card.sec  p{
    color: var(--offwhite) !important;
}
.why-card:before {
    content: "";
    position: absolute;
    width: 170px;
    height: 170px;
    border-radius: 50%;
    right: -60px;
    top: -60px;
    background: currentColor;
    opacity: .05;
    transition: .6s;
}

.why-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow2);
}

.why-card:hover:before {
    transform: scale(1.25);
}

.why-card span {
    font-size: 34px;
    margin-bottom: 24px;
}

.why-card.large {
    grid-row: span 2;
    min-height: 565px;
    background: linear-gradient(135deg, var(--terracotta), var(--clay));
    color: #fff;
}

.why-card.large p {
    color: rgba(255, 255, 255, .82);
}

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

.project-card {
    position: relative;
    border-radius: 32px;
    overflow: hidden;
    box-shadow: var(--shadow);
    min-height: 520px;
}

.project-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    inset: 0;
}

.project-card:after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(39, 31, 27, .05), rgba(39, 31, 27, .78));
    z-index: 1;
}

.project-card>div {
    position: absolute;
    inset: auto 0 0 0;
    padding: 34px;
    color: #fff;
    z-index: 2;
}

.project-card span {
    text-transform: uppercase;
    letter-spacing: .25em;
    font-size: 12px;
    color: rgba(255, 255, 255, .82);
}

.project-card p {
    color: rgba(255, 255, 255, .82);
    line-height: 1.6;
}

.project-card a {
    border-bottom: 1px solid rgba(255, 255, 255, .42);
    padding-bottom: 4px;
}

.experience {
    position: relative;
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    padding: 150px 0;
    color: #fff;
}

.experience-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(39, 31, 27, .2), rgba(39, 31, 27, .74)), rgba(39, 31, 27, .45);
}

.experience-content {
    position: relative;
    text-align: center;
    max-width: 920px;
}

.experience-content .section-label {
    color: var(--beige);
}

.experience-points {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    max-width: 760px;
    margin: 50px auto 0;
}

.experience-points div,
.commitments div {
    border-radius: 20px;
    padding: 20px;
    text-align: left;
    color: #fff;
}

.sustainability {
    position: relative;
    background-size: cover;
    background-position: center;
    color: #fff;
}

.sustainability-overlay {
    position: absolute;
    inset: 0;
    background: rgba(110, 74, 53, .86);
}

.sustain-content {
    position: relative;
}

.beige-text {
    color: var(--beige);
}

.sustain-content h2 em {
    color: var(--beige-warm);
}

.counter-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    text-align: center;
}

.counter-grid strong {
    font-family: 'Cormorant Garamond';
    font-size: clamp(48px, 7vw, 82px);
    font-weight: 500;
}

.counter-grid span {
    font-family: 'Cormorant Garamond';
    font-size: 52px;
    color: var(--terracotta);
}

.counter-grid p {
    text-transform: uppercase;
    letter-spacing: .2em;
    color: rgba(238, 229, 214, .85);
    font-size: 12px;
}

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

.commitments div {
    text-align: center;
}

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

.gallery-grid figure {
    margin: 0;
    position: relative;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.gallery-grid .tall {
    grid-row: span 2;
}

.gallery-grid img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-grid figcaption {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: flex-end;
    padding: 24px;
    background: rgba(39, 31, 27, 0);
    color: #fff;
    text-transform: uppercase;
    letter-spacing: .2em;
    font-size: 12px;
    opacity: 0;
    transform: translateY(10px);
    transition: .5s;
}

.gallery-grid figure:hover figcaption {
    background: rgba(39, 31, 27, .45);
    opacity: 1;
    transform: translateY(0);
}

.text-link {
    border-bottom: 1px solid rgba(39, 31, 27, .35);
    padding-bottom: 4px;
}

.cta {
    position: relative;
    min-height: 620px;
    display: grid;
    place-items: center;
    text-align: center;
    overflow: hidden;
    color: #fff;
}

.cta>img,
.cta-overlay {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cta-overlay {
    background: linear-gradient(180deg, rgba(39, 31, 27, .7), rgba(37, 50, 34, .82));
}

.cta-content {
    position: relative;
    max-width: 820px;
}

.cta-content .section-label {
    color: var(--beige);
}

.cta-content p {
    font-size: 18px;
    line-height: 1.75;
    color: rgba(255, 255, 255, .85);
    max-width: 680px;
    margin: 0 auto 34px;
}

.cta .hero-actions {
    justify-content: center;
}

.footer {
    background: var(--forest-deep);
    color: #fff;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
    padding: 80px 0;
}

.footer-logo {
    display: inline-block;
    background: var(--offwhite);
    border-radius: 18px;
    padding: 12px;
    margin-bottom: 22px;
}

.footer-logo img {
    height: 60px;
}

.footer p {
    color: rgba(255, 255, 255, .7);
    line-height: 1.7;
}

.footer h4 {
    font-size: 28px;
    margin: 0 0 22px;
}

.footer a {
    display: block;
    color: rgba(255, 255, 255, .7);
    margin: 11px 0;
    transition: .3s;
}

.footer a:hover {
    color: var(--terracotta);
}

.socials {
    display: flex;
    gap: 10px;
}

.socials a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, .2);
}

.whatsapp-inline {
    display: inline-flex !important;
    background: #25D366;
    color: #fff !important;
    border-radius: 999px;
    padding: 10px 18px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, .1);
}

.footer-bottom .container {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding: 22px 0;
    font-size: 13px;
}

.whatsapp-float {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 120;
    background: #25D366;
    color: #fff;
    border-radius: 999px;
    padding: 14px 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 18px 45px rgba(37, 211, 102, .35);
    transition: .4s;
}

.whatsapp-float:before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 999px;
    background: #25D366;
    z-index: -1;
    animation: ping 1.8s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.05);
}

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 1s var(--ease), transform 1s var(--ease);
}

.reveal.in-view {
    opacity: 1;
    transform: translateY(0);
}

.img-zoom img {
    transition: transform 1.3s var(--ease), filter .8s var(--ease);
}

.img-zoom:hover img {
    transform: scale(1.08);
}

@keyframes kenburns {
    from {
        transform: scale(1);
    }

    to {
        transform: scale(1.12) translate(-1.5%, -1.5%);
    }
}

@keyframes float {

    0%,
    100% {
        transform: translate(-50%, 0);
    }

    50% {
        transform: translate(-50%, -12px);
    }
}

@keyframes ping {

    75%,
    100% {
        transform: scale(1.55);
        opacity: 0;
    }
}

@media(max-width:980px) {

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

    .menu-toggle {
        display: block;
    }

    .nav-menu.open {
        display: block;
        position: absolute;
        top: 82px;
        left: 20px;
        right: 20px;
        background: rgba(248, 245, 239, .96);
        backdrop-filter: blur(18px);
        border-radius: 22px;
        padding: 14px;
        box-shadow: var(--shadow);
    }

    .nav-menu.open li {
        display: block;
    }

    .nav-menu.open a {
        color: var(--black);
        border-radius: 14px;
    }

    .dropdown-menu {
        position: static;
        transform: none;
        opacity: 1;
        pointer-events: auto;
        box-shadow: none;
        background: transparent;
        padding: 0 0 0 20px;
    }

    .grid-2,
    .split-head,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .cards,
    .project-grid,
    .why-grid {
        grid-template-columns: 1fr 1fr;
    }

    .why-card.large {
        grid-row: auto;
        min-height: 300px;
    }

    .counter-grid,
    .commitments {
        grid-template-columns: 1fr 1fr;
    }

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

    .section {
        padding: 90px 0;
    }

    .experience {
        background-attachment: scroll;
    }

    .footer-bottom .container {
        flex-direction: column;
        text-align: center;
    }

    .footer-grid {
        gap: 30px;
    }

    .whatsapp-float b {
        display: none;
    }
}

@media(max-width:620px) {
    .container {
        width: min(100% - 28px, 1180px);
    }

    .navbar {
        width: min(100% - 28px, 1240px);
        height: 76px;
    }

    .brand img {
        height: 46px;
    }

    .hero {
        min-height: 720px;
    }

    .hero-content {
        padding-bottom: 100px;
    }

    .hero p {
        font-size: 16px;
    }

    .hero-actions,
    .button-row {
        flex-direction: column;
        align-items: stretch;
    }

    .btn {
        text-align: center;
    }

    .cards,
    .project-grid,
    .why-grid,
    .experience-points,
    .counter-grid,
    .commitments,
    .gallery-grid,
    .stats-row {
        grid-template-columns: 1fr;
    }

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

    .gallery-grid .tall {
        grid-row: auto;
    }

    .image-card img {
        height: 420px;
    }

    h1 {
        font-size: 52px;
    }

    h2 {
        font-size: 42px;
    }

    .footer-grid {
        padding: 60px 0;
    }

    .whatsapp-float {
        padding: 14px;
        right: 16px;
        bottom: 16px;
    }
}