:root {
    --primary: #6B443A;
    --primary-hover: #8A6A57;
    --secondary: #D9C3A8;
    --bg-main: #F5F2EC;
    --bg-alt: #EADBC8;
    --text-dark: #2F2F2F;
    --white: #FFFFFF;
    --bg: var(--bg-main);
    --bg2: var(--bg-alt);
    --bg3: #E6D8C8;
    --bg4: var(--white);
    --dark: var(--primary);
    --dark2: var(--primary-hover);
    --gold: var(--secondary);
    --gold-l: #E9D8C3;
    --gold-d: var(--primary-hover);
    --gold-bg: var(--bg-alt);
    --txt: var(--text-dark);
    --txt2: #5E4F47;
    --txt3: #8A7A70;
    --bdr: rgba(107, 68, 58, .2);
    --bdr2: rgba(47, 47, 47, .08);
    --tr: .45s cubic-bezier(.25, .46, .45, .94);
    --shadow: 0 4px 24px rgba(0, 0, 0, .06);
    --shadow-lg: 0 12px 40px rgba(0, 0, 0, .08)
}

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

html {
    scroll-behavior: smooth
}

body {
    font-family: DM Sans, sans-serif;
    background: var(--bg);
    color: var(--txt);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased
}

::-webkit-scrollbar {
    width: 5px
}

::-webkit-scrollbar-track {
    background: var(--bg2)
}

::-webkit-scrollbar-thumb {
    background: var(--gold);
    border-radius: 3px
}

::selection {
    background: var(--gold);
    color: #fff
}

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

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

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

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    font-family: DM Sans, sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: var(--tr);
    position: relative
}

.btn-gold {
    background: var(--dark);
    color: #fff;
    clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 10px 100%, 0 calc(100% - 10px))
}

.btn-gold:hover {
    background: var(--dark2);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px #6b443a40
}

.btn-line {
    background: transparent;
    color: var(--dark);
    border: 1px solid var(--dark);
    clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 10px 100%, 0 calc(100% - 10px))
}

.btn-line:hover {
    background: var(--dark);
    color: #fff;
    transform: translateY(-2px)
}

.btn-wa {
    background: #25d366;
    color: #fff;
    border-radius: 50px;
    padding: 14px 26px
}

.btn-wa:hover {
    background: #20bd5a;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px #25d36640
}

.btn-wa svg {
    width: 17px;
    height: 17px;
    flex-shrink: 0
}

.label {
    font-family: Josefin Sans, sans-serif;
    text-transform: uppercase;
    letter-spacing: 4px;
    font-size: 11px;
    color: var(--gold);
    font-weight: 600;
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 12px
}

.label:before {
    content: "";
    width: 28px;
    height: 1px;
    background: var(--gold)
}

.label.center {
    justify-content: center
}

.label.center:before {
    display: none
}

.title {
    font-family: Playfair Display, serif;
    font-size: clamp(30px, 5vw, 50px);
    font-weight: 500;
    line-height: 1.12;
    margin-bottom: 18px;
    color: var(--dark)
}

.subtitle {
    font-size: 16px;
    color: var(--txt2);
    max-width: 540px;
    line-height: 1.8;
    font-weight: 300
}

.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: var(--tr);
    background: #f5f2ecc7;
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-bottom: 1px solid var(--bdr2)
}

.nav.scrolled {
    background: #f5f2ecf5;
    box-shadow: 0 2px 20px #0000000f
}

.nav-inner {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 76px;
    padding: 0 24px
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer
}

.brand-logo {
    display: block;
    height: 54px;
    width: auto;
    object-fit: contain
}

.logo-hex {
    width: 38px;
    height: 38px;
    background: var(--dark);
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    display: flex;
    align-items: center;
    justify-content: center
}

.logo-hex span {
    color: var(--gold-l);
    font-family: Playfair Display, serif;
    font-weight: 700;
    font-size: 15px
}

.logo-text {
    font-family: Josefin Sans, sans-serif;
    font-size: 17px;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--dark)
}

.logo-text small {
    display: block;
    font-size: 8px;
    letter-spacing: 3px;
    color: var(--gold);
    font-weight: 400;
    margin-top: -2px
}

.nav-links {
    display: flex;
    gap: 32px;
    list-style: none
}

.nav-links li a {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--txt2);
    transition: var(--tr);
    position: relative;
    cursor: pointer;
    padding: 4px 0
}

.nav-links li a:hover,
.nav-links li a.active {
    color: var(--dark)
}

.nav-links li a.active:after {
    content: "";
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--dark)
}

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

.nav-phone {
    color: var(--txt2);
    font-size: 12px;
    font-weight: 500;
    transition: var(--tr);
    display: flex;
    align-items: center;
    gap: 6px
}

.nav-phone:hover {
    color: var(--gold)
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
    background: none;
    border: none
}

.hamburger span {
    width: 22px;
    height: 1.5px;
    background: var(--dark);
    transition: var(--tr)
}

.mob-menu {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 998;
    background: #f5f2ecfa;
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 24px
}

.mob-menu.open {
    display: flex
}

.mob-menu a {
    font-family: Playfair Display, serif;
    font-size: 26px;
    color: var(--dark);
    transition: var(--tr);
    cursor: pointer
}

.mob-menu a:hover {
    color: var(--gold)
}

.mob-close {
    position: absolute;
    top: 22px;
    right: 22px;
    background: none;
    border: none;
    color: var(--dark);
    font-size: 32px;
    cursor: pointer
}

.page {
    display: none;
    opacity: 0;
    animation: pageIn .5s ease forwards
}

.page.active {
    display: block
}

@keyframes pageIn {
    0% {
        opacity: 0;
        transform: translateY(20px)
    }

    to {
        opacity: 1;
        transform: translateY(0)
    }
}

.fade-in {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .6s ease, transform .6s ease
}

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

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: var(--bg)
}

.hero:before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 60% 50% at 75% 50%, rgba(217, 195, 168, .22) 0%, transparent 70%)
}

.hero-grid-bg {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(0, 0, 0, .03) 1px, transparent 1px), linear-gradient(90deg, rgba(0, 0, 0, .03) 1px, transparent 1px);
    background-size: 80px 80px;
    -webkit-mask-image: radial-gradient(ellipse, black 30%, transparent 70%);
    mask-image: radial-gradient(ellipse, black 30%, transparent 70%)
}

.hero-inner {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: center;
    width: 100%
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 16px;
    background: var(--gold-bg);
    border: 1px solid var(--bdr);
    font-size: 10px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold-d);
    font-weight: 600;
    margin-bottom: 28px;
    font-family: Josefin Sans, sans-serif;
    border-radius: 2px
}

.hero-badge:before {
    content: "";
    width: 6px;
    height: 6px;
    background: var(--gold);
    border-radius: 50%;
    animation: pulse 2s infinite
}

@keyframes pulse {

    0%,
    to {
        opacity: 1
    }

    50% {
        opacity: .3
    }
}

.hero h1 {
    font-family: Playfair Display, serif;
    font-size: clamp(38px, 5.5vw, 64px);
    font-weight: 500;
    line-height: 1.06;
    margin-bottom: 24px;
    color: var(--dark)
}

.hero h1 .g {
    color: var(--gold)
}

.hero h1 .o {
    -webkit-text-stroke: 1.5px var(--txt3);
    color: transparent
}

.hero-desc {
    font-size: 16px;
    color: var(--txt2);
    line-height: 1.85;
    margin-bottom: 36px;
    max-width: none;
    font-weight: 300;
    white-space: nowrap
}

.hero-btns {
    display: flex;
    gap: 14px;
    flex-wrap: wrap
}

.hero-stats {
    display: flex;
    gap: 36px;
    margin-top: 52px;
    padding-top: 32px;
    border-top: 1px solid var(--bdr2)
}

.hero-stat b {
    font-family: Playfair Display, serif;
    font-size: 34px;
    color: var(--gold-d);
    font-weight: 500;
    display: block
}

.hero-stat span {
    font-size: 11px;
    color: var(--txt3);
    text-transform: uppercase;
    letter-spacing: 2px
}

.hero-visual {
    position: relative
}

.hero-imgs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    transform: perspective(1000px) rotateY(-4deg);
    transition: transform .6s
}

.hero-imgs:hover {
    transform: perspective(1000px) rotateY(0)
}

.hero-imgs img {
    width: 100%;
    aspect-ratio: 3/4;
    object-fit: cover;
    border-radius: 6px;
    box-shadow: var(--shadow-lg)
}

.hero-imgs img:nth-child(2) {
    margin-top: 36px
}

.hero-float {
    position: absolute;
    bottom: -16px;
    left: -16px;
    background: #fff;
    border: 1px solid var(--bdr2);
    padding: 18px 22px;
    display: flex;
    align-items: center;
    gap: 14px;
    z-index: 3;
    border-radius: 6px;
    box-shadow: var(--shadow)
}

.hero-float-icon {
    width: 44px;
    height: 44px;
    background: var(--dark);
    display: flex;
    align-items: center;
    justify-content: center;
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%)
}

.hero-float b {
    font-size: 13px;
    color: var(--dark);
    display: block
}

.hero-float small {
    font-size: 10px;
    color: var(--txt3)
}

.marquee {
    padding: 22px 0;
    border-top: 1px solid var(--bdr2);
    border-bottom: 1px solid var(--bdr2);
    overflow: hidden;
    background: var(--bg2)
}

.marquee-track {
    display: flex;
    gap: 50px;
    animation: scroll 28s linear infinite;
    width: max-content
}

.marquee-item {
    font-family: Josefin Sans, sans-serif;
    font-size: 12px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--txt3);
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 50px
}

.marquee-item:after {
    content: "◆";
    color: var(--gold);
    font-size: 7px
}

@keyframes scroll {
    0% {
        transform: translate(0)
    }

    to {
        transform: translate(-50%)
    }
}

.home-about {
    padding: 110px 0;
    background: var(--bg)
}

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

.ha-img-wrap {
    position: relative
}

.ha-img {
    width: 100%;
    aspect-ratio: 4/5;
    object-fit: cover;
    border-radius: 6px;
    box-shadow: var(--shadow-lg)
}

.ha-badge {
    position: absolute;
    top: -18px;
    right: -18px;
    width: 110px;
    height: 110px;
    background: var(--dark);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%)
}

.ha-badge strong {
    font-family: Playfair Display, serif;
    font-size: 30px;
    color: var(--gold-l);
    line-height: 1
}

.ha-badge span {
    font-size: 8px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #ffffffb3;
    font-weight: 600
}

.ha-txt p {
    color: var(--txt2);
    margin-bottom: 16px;
    font-weight: 300;
    line-height: 1.85
}

.home-svc {
    padding: 110px 0;
    background: var(--bg2)
}

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

.svc-card {
    background: #fff;
    border: 1px solid var(--bdr2);
    padding: 36px 26px;
    position: relative;
    overflow: hidden;
    transition: var(--tr);
    cursor: pointer;
    border-radius: 4px
}

.svc-card:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--gold-l));
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--tr)
}

.svc-card:hover:before {
    transform: scaleX(1)
}

.svc-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--bdr)
}

.svc-num {
    font-family: Playfair Display, serif;
    font-size: 44px;
    color: #6b443a1f;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 16px
}

.svc-card h3 {
    font-family: Playfair Display, serif;
    font-size: 19px;
    font-weight: 500;
    margin-bottom: 10px;
    color: var(--dark)
}

.svc-card p {
    font-size: 13px;
    color: var(--txt2);
    line-height: 1.7;
    font-weight: 300;
    margin-bottom: 18px
}

.svc-link {
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold-d);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--tr);
    cursor: pointer
}

.svc-link:hover {
    gap: 14px;
    color: var(--gold)
}

.home-proj {
    padding: 110px 0;
    background: var(--bg)
}

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

.proj-card {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 4/3;
    background: var(--bg3);
    border-radius: 6px
}

.proj-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .7s ease
}

.proj-card:hover img {
    transform: scale(1.06)
}

.proj-ov {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(26, 23, 20, .88) 0%, rgba(26, 23, 20, .2) 50%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 24px;
    opacity: 0;
    transition: var(--tr)
}

.proj-card:hover .proj-ov {
    opacity: 1
}

.proj-ov .tag {
    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold-l);
    font-weight: 600;
    margin-bottom: 6px
}

.proj-ov h3 {
    font-family: Playfair Display, serif;
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 4px;
    color: #fff
}

.proj-ov p {
    font-size: 11px;
    color: #ffffffb3
}

.cta {
    padding: 90px 0;
    background: var(--dark);
    text-align: center;
    position: relative;
    overflow: hidden
}

.cta:before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, rgba(217, 195, 168, .2), transparent 60%)
}

.cta-inner {
    position: relative;
    z-index: 2
}

.cta h2 {
    font-family: Playfair Display, serif;
    font-size: clamp(26px, 4vw, 42px);
    font-weight: 500;
    margin-bottom: 14px;
    color: #fff
}

.cta h2 span {
    color: var(--gold-l)
}

.cta p {
    font-size: 15px;
    color: #fff9;
    margin-bottom: 36px;
    font-weight: 300
}

.cta-btns {
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap
}

.cta .btn-gold {
    background: var(--gold);
    color: var(--dark)
}

.cta .btn-gold:hover {
    background: var(--gold-l)
}

.page-hero {
    padding: 140px 0 80px;
    background: var(--bg2);
    position: relative
}

.page-hero:before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 40% 40% at 50% 40%, rgba(217, 195, 168, .18), transparent 70%)
}

.page-hero-inner {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 700px;
    margin: 0 auto
}

.page-hero .subtitle {
    margin: 0 auto
}

.about-main {
    padding: 80px 0;
    background: var(--bg)
}

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

.about-main p {
    color: var(--txt2);
    margin-bottom: 16px;
    font-weight: 300;
    line-height: 1.85
}

.about-main strong {
    color: var(--gold-d)
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 28px
}

.af {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 14px;
    background: var(--bg2);
    border: 1px solid var(--bdr2);
    transition: var(--tr);
    border-radius: 4px
}

.af:hover {
    border-color: var(--bdr);
    background: var(--gold-bg)
}

.af-icon {
    width: 30px;
    height: 30px;
    min-width: 30px;
    background: var(--gold-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-d);
    font-size: 13px;
    border-radius: 4px
}

.af h4 {
    font-size: 12px;
    font-weight: 600;
    color: var(--dark)
}

.af p {
    font-size: 11px;
    color: var(--txt3);
    margin: 0 !important;
    line-height: 1.5
}

.vm {
    padding: 80px 0;
    background: var(--bg2)
}

.vm-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    margin-top: 48px
}

.vm-card {
    padding: 40px;
    border: 1px solid var(--bdr2);
    transition: var(--tr);
    background: #fff;
    border-radius: 6px
}

.vm-card:hover {
    border-color: var(--bdr);
    box-shadow: var(--shadow)
}

.vm-card h3 {
    font-family: Playfair Display, serif;
    font-size: 22px;
    margin-bottom: 14px;
    color: var(--gold-d)
}

.vm-card p {
    color: var(--txt2);
    font-weight: 300;
    line-height: 1.85
}

.wu-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    border: 1px solid var(--bdr2);
    margin-top: 56px;
    background: #fff;
    border-radius: 6px;
    overflow: hidden
}

.wu {
    padding: 42px 30px;
    border-right: 1px solid var(--bdr2);
    border-bottom: 1px solid var(--bdr2);
    transition: var(--tr)
}

.wu:nth-child(3n) {
    border-right: none
}

.wu:nth-last-child(-n+3) {
    border-bottom: none
}

.wu:hover {
    background: var(--gold-bg)
}

.wu-icon {
    width: 44px;
    height: 44px;
    background: var(--gold-bg);
    border: 1px solid var(--bdr);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: var(--gold-d);
    font-size: 18px;
    border-radius: 4px
}

.wu h3 {
    font-family: Playfair Display, serif;
    font-size: 17px;
    font-weight: 500;
    margin-bottom: 10px;
    color: var(--dark)
}

.wu p {
    font-size: 13px;
    color: var(--txt2);
    line-height: 1.7;
    font-weight: 300
}

.svc-detail {
    padding: 80px 0
}

.svc-detail:nth-child(2n) {
    background: var(--bg2)
}

.svc-detail:nth-child(odd) {
    background: var(--bg)
}

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

.sd-grid.rev {
    direction: rtl
}

.sd-grid.rev>* {
    direction: ltr
}

.sd-img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: var(--shadow-lg);
    transition: var(--tr)
}

.sd-img:hover {
    transform: scale(1.02)
}

.sd-txt h3 {
    font-family: Playfair Display, serif;
    font-size: 28px;
    font-weight: 500;
    margin-bottom: 14px;
    color: var(--dark)
}

.sd-txt p {
    color: var(--txt2);
    font-weight: 300;
    line-height: 1.85;
    margin-bottom: 16px
}

.sd-list {
    list-style: none;
    margin-bottom: 24px
}

.sd-list li {
    font-size: 14px;
    color: var(--txt2);
    padding: 6px 0 6px 20px;
    position: relative
}

.sd-list li:before {
    content: "";
    position: absolute;
    left: 0;
    top: 14px;
    width: 8px;
    height: 2px;
    background: var(--gold);
    border-radius: 1px
}

.proj-filters {
    display: flex;
    gap: 8px;
    justify-content: center;
    margin-bottom: 48px;
    flex-wrap: wrap
}

.flt {
    padding: 8px 20px;
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    background: transparent;
    border: 1px solid var(--bdr2);
    color: var(--txt3);
    cursor: pointer;
    font-family: DM Sans, sans-serif;
    font-weight: 500;
    transition: var(--tr);
    border-radius: 2px
}

.flt.on,
.flt:hover {
    background: var(--dark);
    color: #fff;
    border-color: var(--dark)
}

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

.proj-full .proj-card:first-child {
    grid-column: span 2;
    grid-row: span 2;
    aspect-ratio: auto
}

.fac-features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    margin-top: 56px
}

.ff {
    background: #fff;
    border: 1px solid var(--bdr2);
    padding: 32px 24px;
    text-align: center;
    transition: var(--tr);
    border-radius: 6px
}

.ff:hover {
    border-color: var(--bdr);
    transform: translateY(-4px);
    box-shadow: var(--shadow)
}

.ff-icon {
    width: 52px;
    height: 52px;
    margin: 0 auto 18px;
    background: var(--gold-bg);
    border: 1px solid var(--bdr);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-d);
    font-size: 20px;
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%)
}

.ff h4 {
    font-family: Playfair Display, serif;
    font-size: 15px;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--dark)
}

.ff p {
    font-size: 12px;
    color: var(--txt2);
    line-height: 1.7;
    font-weight: 300
}

.fac-imgs {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 10px;
    margin-top: 48px;
    height: 300px
}

.fac-imgs img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 6px;
    transition: var(--tr);
    box-shadow: var(--shadow)
}

.fac-imgs img:hover {
    transform: scale(1.02)
}

.proc-timeline {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 56px
}

.proc-step {
    text-align: center;
    padding: 32px 20px;
    border: 1px solid var(--bdr2);
    transition: var(--tr);
    background: #fff;
    border-radius: 6px
}

.proc-step:hover {
    border-color: var(--bdr);
    box-shadow: var(--shadow)
}

.proc-num {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: var(--bg2);
    border: 1px solid var(--bdr);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: Playfair Display, serif;
    font-size: 26px;
    color: var(--gold-d);
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    transition: var(--tr)
}

.proc-step:hover .proc-num {
    background: var(--dark);
    color: var(--gold-l)
}

.proc-step h4 {
    font-family: Playfair Display, serif;
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 8px;
    color: var(--dark)
}

.proc-step p {
    font-size: 12px;
    color: var(--txt3);
    line-height: 1.65
}

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

.tst {
    background: #fff;
    border: 1px solid var(--bdr2);
    padding: 32px;
    transition: var(--tr);
    position: relative;
    border-radius: 6px
}

.tst:hover {
    border-color: var(--bdr);
    transform: translateY(-4px);
    box-shadow: var(--shadow)
}

.tst:before {
    content: '"';
    font-family: Playfair Display, serif;
    font-size: 72px;
    color: #6b443a1f;
    position: absolute;
    top: 12px;
    right: 20px;
    line-height: 1
}

.tst-stars {
    display: flex;
    gap: 2px;
    margin-bottom: 14px
}

.tst-stars span {
    color: var(--gold);
    font-size: 13px
}

.tst-text {
    font-size: 14px;
    color: var(--txt2);
    line-height: 1.8;
    font-style: italic;
    margin-bottom: 20px;
    font-weight: 300
}

.tst-author {
    display: flex;
    align-items: center;
    gap: 12px
}

.tst-av {
    width: 40px;
    height: 40px;
    background: var(--dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: Playfair Display, serif;
    font-weight: 700;
    color: var(--gold-l);
    font-size: 14px;
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%)
}

.tst-author h4 {
    font-size: 13px;
    font-weight: 600;
    color: var(--dark)
}

.tst-author p {
    font-size: 11px;
    color: var(--txt3);
    margin-top: 1px
}

.ct-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 52px;
    margin-top: 48px
}

.ct-blocks {
    display: grid;
    gap: 20px
}

.ct-block {
    display: flex;
    gap: 14px;
    padding: 22px;
    background: #fff;
    border: 1px solid var(--bdr2);
    transition: var(--tr);
    border-radius: 6px
}

.ct-block:hover {
    border-color: var(--bdr);
    box-shadow: var(--shadow)
}

.ct-icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    background: var(--gold-bg);
    border: 1px solid var(--bdr);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-d);
    font-size: 15px;
    border-radius: 4px
}

.ct-block h4 {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--gold-d);
    font-family: Josefin Sans, sans-serif;
    margin-bottom: 4px
}

.ct-block p {
    font-size: 13px;
    color: var(--txt2);
    line-height: 1.7
}

.ct-block a {
    color: var(--dark);
    transition: var(--tr)
}

.ct-block a:hover {
    color: var(--gold)
}

.ct-form {
    background: #fff;
    border: 1px solid var(--bdr2);
    padding: 40px;
    border-radius: 6px;
    box-shadow: var(--shadow)
}

.ct-form h3 {
    font-family: Playfair Display, serif;
    font-size: 22px;
    font-weight: 500;
    margin-bottom: 6px;
    color: var(--dark)
}

.ct-form>p {
    font-size: 13px;
    color: var(--txt3);
    margin-bottom: 28px
}

.f-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px
}

.f-grp {
    margin-bottom: 14px
}

.f-grp label {
    display: block;
    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--txt3);
    margin-bottom: 6px;
    font-weight: 500
}

.f-grp input,
.f-grp select,
.f-grp textarea {
    width: 100%;
    padding: 12px 14px;
    background: var(--bg2);
    border: 1px solid var(--bdr2);
    color: var(--dark);
    font-family: DM Sans, sans-serif;
    font-size: 13px;
    transition: var(--tr);
    outline: none;
    border-radius: 4px
}

.f-grp input:focus,
.f-grp select:focus,
.f-grp textarea:focus {
    border-color: var(--dark2);
    box-shadow: 0 0 0 3px #6b443a1f
}

.f-grp textarea {
    resize: vertical;
    min-height: 100px
}

.f-grp select {
    cursor: pointer
}

.f-grp select option {
    background: #fff
}

.map-sec {
    height: 360px
}

.map-sec iframe {
    width: 100%;
    height: 100%;
    border: none;
    filter: grayscale(.3) brightness(1)
}

.footer {
    background: var(--dark);
    padding: 72px 0 0
}

.ft-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 52px;
    border-bottom: 1px solid rgba(255, 255, 255, .08)
}

.ft-brand p {
    font-size: 13px;
    color: #ffffff80;
    line-height: 1.8;
    margin-top: 14px;
    margin-bottom: 20px;
    font-weight: 300
}

.ft-social {
    display: flex;
    gap: 8px
}

.ft-social a {
    width: 36px;
    height: 36px;
    border: 1px solid rgba(255, 255, 255, .1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff80;
    transition: var(--tr);
    font-size: 13px;
    border-radius: 4px
}

.ft-social a svg {
    width: 16px;
    height: 16px;
    display: block
}

.ft-social a:hover {
    border-color: var(--gold);
    color: var(--gold-l);
    background: #d9c3a840
}

.footer .logo-hex {
    background: var(--gold)
}

.footer .logo-hex span {
    color: var(--dark)
}

.footer .logo-text {
    color: #fff
}

.footer .logo-text small {
    color: var(--gold-l)
}

.footer .brand-logo {
    height: 58px
}

.ft-col h4 {
    font-family: Josefin Sans, sans-serif;
    font-size: 10px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold-l);
    margin-bottom: 20px;
    font-weight: 600
}

.ft-col ul {
    list-style: none
}

.ft-col ul li {
    margin-bottom: 10px
}

.ft-col ul a {
    color: #ffffff80;
    font-size: 13px;
    font-weight: 300;
    transition: var(--tr);
    cursor: pointer
}

.ft-col ul a:hover {
    color: var(--gold-l)
}

.ft-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0
}

.ft-bottom p {
    font-size: 11px;
    color: #ffffff4d
}

.wa-float {
    position: fixed;
    bottom: 26px;
    right: 26px;
    z-index: 999;
    width: 56px;
    height: 56px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 25px #25d36659;
    transition: var(--tr);
    animation: bounce 3s ease-in-out infinite
}

.wa-float:hover {
    transform: scale(1.1);
    box-shadow: 0 10px 35px #25d36673
}

.wa-float svg {
    width: 26px;
    height: 26px;
    fill: #fff
}

@keyframes bounce {

    0%,
    to {
        transform: translateY(0)
    }

    50% {
        transform: translateY(-7px)
    }
}

.btt {
    position: fixed;
    bottom: 26px;
    right: 94px;
    z-index: 999;
    width: 40px;
    height: 40px;
    background: #fff;
    border: 1px solid var(--bdr2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark);
    cursor: pointer;
    transition: var(--tr);
    opacity: 0;
    pointer-events: none;
    font-size: 16px;
    border-radius: 4px;
    box-shadow: var(--shadow)
}

.btt.vis {
    opacity: 1;
    pointer-events: all
}

.btt:hover {
    background: var(--dark);
    color: #fff
}

@media(max-width:1024px) {

    .svc-grid,
    .fac-features,
    .wu-grid {
        grid-template-columns: repeat(2, 1fr)
    }

    .wu:nth-child(2n) {
        border-right: none
    }

    .proc-timeline {
        grid-template-columns: repeat(2, 1fr)
    }

    .ft-grid {
        grid-template-columns: 1fr 1fr
    }

    .proj-full {
        grid-template-columns: repeat(2, 1fr)
    }

    .proj-full .proj-card:first-child {
        grid-column: span 2;
        grid-row: auto
    }
}

@media(max-width:768px) {

    .nav-links,
    .nav-right .nav-phone,
    .nav-right .btn-wa {
        display: none
    }

    .hamburger {
        display: flex
    }

    .brand-logo {
        height: 46px
    }

    .footer .brand-logo {
        height: 52px
    }

    .hero-inner {
        grid-template-columns: 1fr;
        gap: 32px
    }

    .hero-visual {
        display: none
    }

    .hero-stats {
        gap: 20px
    }

    .hero-stat b {
        font-size: 26px
    }

    .ha-grid,
    .about-grid,
    .sd-grid,
    .sd-grid.rev,
    .ct-grid {
        grid-template-columns: 1fr;
        gap: 32px
    }

    .sd-grid.rev {
        direction: ltr
    }

    .svc-grid,
    .proj-grid,
    .proj-full,
    .tst-grid,
    .fac-features {
        grid-template-columns: 1fr
    }

    .proj-full .proj-card:first-child {
        grid-column: auto
    }

    .wu-grid {
        grid-template-columns: 1fr
    }

    .wu {
        border-right: none !important
    }

    .proc-timeline,
    .vm-grid {
        grid-template-columns: 1fr
    }

    .ft-grid {
        grid-template-columns: 1fr;
        gap: 28px
    }

    .ft-bottom {
        flex-direction: column;
        gap: 6px;
        text-align: center
    }

    .about-features,
    .f-row {
        grid-template-columns: 1fr
    }

    .ct-form {
        padding: 24px
    }

    .fac-imgs {
        grid-template-columns: 1fr;
        height: auto
    }

    .fac-imgs img {
        height: 180px
    }

    .cta-btns {
        flex-direction: column;
        align-items: center
    }

    .proj-ov {
        opacity: 1
    }

    .proj-filters {
        gap: 6px
    }

    .page-hero {
        padding: 120px 0 60px
    }
}

@media(max-width:768px) {
    .hero-desc {
        white-space: normal;
        max-width: 100%
    }
}