:root {
    --green: #102a23;
    --green-2: #173a30;
    --green-3: #21483b;

    --olive: #69795b;
    --gold: #b89b5e;
    --gold-light: #d4bb82;

    --cream: #f5f2eb;
    --cream-2: #fbfaf7;

    --white: #ffffff;
    --ink: #17211d;
    --muted: #6d756f;

    --line: #e4e5df;

    --container: 1180px;
    --radius: 24px;

    --shadow: 0 25px 70px rgba(16, 42, 35, .10);
}

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

html {
    scroll-behavior: smooth;
}

body {
    direction: rtl;
    font-family: "Heebo", Arial, sans-serif;
    color: var(--ink);
    background: var(--cream-2);
    line-height: 1.7;
    overflow-x: hidden;
}

body.menu-open {
    overflow: hidden;
}

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

button,
input {
    font: inherit;
}

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


/* =====================================================
   HEADER
===================================================== */

.site-header {
    position: fixed;
    z-index: 100;
    top: 0;
    right: 0;
    left: 0;
    color: #fff;
    transition: .3s ease;
}

.floating-contact {
    position: fixed;
    z-index: 90;
    right: 22px;
    bottom: 22px;

    display: flex;
    flex-direction: column;
    gap: 10px;
}

.floating-contact-button {
    min-width: 122px;
    min-height: 48px;

    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;

    padding: 0 15px;
    border-radius: 12px;

    color: #fff;
    font-size: 12px;
    font-weight: 700;
    box-shadow: 0 10px 25px rgba(0, 0, 0, .2);
    transition: transform .2s ease, box-shadow .2s ease;
}

.floating-contact-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 30px rgba(0, 0, 0, .25);
}

.floating-contact-button span {
    font-size: 19px;
    line-height: 1;
}

.floating-whatsapp {
    background: #1b9b61;
}

.floating-call {
    background: var(--green-3);
}

.header-inner {
    min-height: 92px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 30px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.brand-symbol {
    width: 42px;
    height: 42px;

    display: flex;
    align-items: flex-end;
    justify-content: center;

    gap: 3px;
    padding: 7px;

    border: 1px solid rgba(255,255,255,.18);
    border-radius: 11px;

    background: rgba(255,255,255,.06);
}

.brand-symbol span {
    width: 5px;
    border-radius: 5px;

    background: var(--gold-light);
}

.brand-symbol span:nth-child(1) {
    height: 13px;
}

.brand-symbol span:nth-child(2) {
    height: 21px;
}

.brand-symbol span:nth-child(3) {
    height: 28px;
}

.brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.05;
}

.brand-text strong {
    font-size: 21px;
    font-weight: 800;
    letter-spacing: -.5px;
}

.brand-text small {
    margin-top: 5px;

    color: rgba(255,255,255,.48);

    font-size: 9px;
    font-weight: 400;
}

.desktop-nav {
    display: flex;
    align-items: center;
    gap: 34px;
}

.desktop-nav a {
    color: rgba(255,255,255,.72);
    font-size: 14px;
    font-weight: 500;

    transition: .25s;
}

.desktop-nav a:hover {
    color: #fff;
}

.header-contact {
    display: flex;
    align-items: center;
    gap: 20px;
}

.header-contact > a:first-child {
    color: rgba(255,255,255,.7);
    font-size: 13px;
    direction: ltr;
}

.header-button {
    min-height: 44px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 10px;

    padding: 0 18px;

    border: 1px solid rgba(255,255,255,.16);
    border-radius: 10px;

    background: rgba(255,255,255,.06);

    color: #fff;
    font-size: 13px;
    font-weight: 700;

    transition: .25s;
}

.header-button:hover {
    background: #fff;
    color: var(--green);
}

.menu-toggle {
    display: none;

    width: 44px;
    height: 44px;

    border: 1px solid rgba(255,255,255,.15);
    border-radius: 10px;

    background: rgba(255,255,255,.06);

    cursor: pointer;
}

.menu-toggle span {
    display: block;

    width: 19px;
    height: 2px;

    margin: 4px auto;

    background: #fff;

    transition: .25s;
}

.mobile-menu {
    display: none;
}


/* =====================================================
   HERO
===================================================== */

.hero {
    position: relative;

    min-height: 820px;

    display: flex;
    align-items: center;

    overflow: hidden;

    color: #fff;

    background:
        radial-gradient(
            circle at 80% 30%,
            rgba(106,137,111,.18),
            transparent 30%
        ),
        linear-gradient(
            125deg,
            #0b211b 0%,
            #102a23 55%,
            #0b201b 100%
        );
}

.hero-background {
    position: absolute;
    inset: 0;

    opacity: .16;

    background-image:
        linear-gradient(
            90deg,
            transparent 49.5%,
            rgba(255,255,255,.08) 50%,
            transparent 50.5%
        ),
        linear-gradient(
            0deg,
            transparent 49.5%,
            rgba(255,255,255,.08) 50%,
            transparent 50.5%
        );

    background-size: 120px 120px;
}

.hero-grid-lines {
    position: absolute;

    width: 700px;
    height: 700px;

    left: -250px;
    bottom: -330px;

    border: 1px solid rgba(255,255,255,.08);
    border-radius: 50%;

    box-shadow:
        0 0 0 80px rgba(255,255,255,.025),
        0 0 0 160px rgba(255,255,255,.018);
}

.hero-inner {
    position: relative;
    z-index: 2;

    padding-top: 100px;

    display: grid;
    grid-template-columns: 1.03fr .97fr;

    gap: 80px;

    align-items: center;
}

.hero-content {
    max-width: 650px;
}

.eyebrow {
    display: inline-flex;
    align-items: center;

    gap: 10px;

    padding: 7px 13px;

    border: 1px solid rgba(255,255,255,.13);
    border-radius: 100px;

    background: rgba(255,255,255,.045);

    color: rgba(255,255,255,.62);

    font-size: 12px;
}

.eyebrow span {
    width: 7px;
    height: 7px;

    border-radius: 50%;

    background: var(--gold-light);

    box-shadow:
        0 0 0 5px rgba(212,187,130,.09);
}

.hero h1 {
    margin-top: 23px;
    margin-bottom: 27px;

    font-size: clamp(54px, 6.2vw, 82px);
    line-height: .97;

    font-weight: 800;

    letter-spacing: -3px;
}

.hero h1 em {
    color: var(--gold-light);
    font-style: normal;
}

.hero-description {
    max-width: 570px;

    margin-bottom: 34px;

    color: rgba(255,255,255,.58);

    font-size: 18px;
    font-weight: 300;

    line-height: 1.9;
}

.hero-actions {
    display: flex;
    align-items: center;

    gap: 12px;
}

.button {
    min-height: 52px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 12px;

    padding: 0 25px;

    border-radius: 11px;

    font-size: 14px;
    font-weight: 700;

    transition:
        transform .25s,
        background .25s,
        box-shadow .25s;
}

.button:hover {
    transform: translateY(-2px);
}

.button-primary {
    color: var(--green);
    background: #fff;

    box-shadow: 0 15px 35px rgba(0,0,0,.14);
}

.button-primary:hover {
    background: var(--gold-light);
}

.button-ghost {
    border: 1px solid rgba(255,255,255,.2);

    color: #fff;

    background: rgba(255,255,255,.035);
}

.button-ghost:hover {
    background: rgba(255,255,255,.09);
}

.hero-stats {
    display: flex;
    align-items: center;

    gap: 22px;

    margin-top: 53px;
}

.stat {
    display: flex;
    flex-direction: column;
}

.stat strong {
    color: #fff;

    font-size: 20px;
    font-weight: 800;
}

.stat span {
    color: rgba(255,255,255,.38);

    font-size: 10px;
}

.stat-divider {
    width: 1px;
    height: 34px;

    background: rgba(255,255,255,.13);
}


/* HERO VISUAL */

.hero-visual {
    position: relative;

    min-height: 530px;

    display: grid;
    place-items: center;
}

.architectural-lines {
    position: absolute;

    width: 500px;
    height: 500px;

    border: 1px solid rgba(255,255,255,.08);
    border-radius: 50%;

    box-shadow:
        0 0 0 65px rgba(255,255,255,.018),
        0 0 0 130px rgba(255,255,255,.012);
}

.property-card {
    position: relative;
    z-index: 3;

    width: min(100%, 430px);

    overflow: hidden;

    border: 1px solid rgba(255,255,255,.13);
    border-radius: 25px;

    background: rgba(255,255,255,.075);

    backdrop-filter: blur(20px);

    box-shadow:
        0 40px 100px rgba(0,0,0,.3);
}

.property-card-top {
    height: 72px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 0 25px;

    border-bottom: 1px solid rgba(255,255,255,.09);

    color: rgba(255,255,255,.62);

    font-size: 11px;
}

.property-status {
    padding: 5px 9px;

    border-radius: 100px;

    color: var(--gold-light);

    background: rgba(212,187,130,.09);
}

.property-building {
    position: relative;

    height: 270px;

    overflow: hidden;

    background:
        linear-gradient(
            180deg,
            #25473d 0%,
            #17362e 60%,
            #10251f 100%
        );
}

.building-sky {
    position: absolute;
    top: 35px;
    right: 35px;

    width: 110px;
    height: 110px;

    border: 1px solid rgba(255,255,255,.09);
    border-radius: 50%;

    box-shadow:
        0 0 0 25px rgba(255,255,255,.015);
}

.building {
    position: absolute;

    right: 50%;
    bottom: -1px;

    width: 210px;
    height: 225px;

    transform: translateX(50%);

    padding: 12px 13px;

    background: #d6d1c5;

    box-shadow: 0 0 40px rgba(0,0,0,.25);
}

.building-floor {
    height: 39px;

    display: grid;
    grid-template-columns: repeat(4, 1fr);

    gap: 8px;

    padding: 5px 0;

    border-bottom: 1px solid rgba(0,0,0,.08);
}

.building-floor i {
    display: block;

    background:
        linear-gradient(
            135deg,
            #6f8b86,
            #263f3a
        );

    box-shadow:
        inset 0 0 0 1px rgba(255,255,255,.12);
}

.property-info {
    display: grid;
    grid-template-columns: repeat(3, 1fr);

    padding: 21px 24px;

    background: rgba(5,15,12,.35);
}

.property-info div {
    display: flex;
    flex-direction: column;
}

.property-info small {
    color: rgba(255,255,255,.34);
    font-size: 9px;
}

.property-info strong {
    color: #fff;
    font-size: 13px;
}

.floating-note {
    position: absolute;
    z-index: 5;

    display: flex;
    align-items: center;

    gap: 10px;

    padding: 12px 15px;

    border: 1px solid rgba(255,255,255,.12);
    border-radius: 14px;

    background: rgba(16,42,35,.88);

    backdrop-filter: blur(16px);

    box-shadow: 0 20px 50px rgba(0,0,0,.22);
}

.floating-note strong,
.floating-note small {
    display: block;
}

.floating-note strong {
    color: #fff;
    font-size: 11px;
}

.floating-note small {
    color: rgba(255,255,255,.38);
    font-size: 8px;
}

.note-icon {
    width: 35px;
    height: 35px;

    display: grid;
    place-items: center;

    border-radius: 10px;

    color: #a7d0b2;

    background: rgba(117,189,140,.08);

    font-weight: 800;
}

.note-icon.gold {
    color: var(--gold-light);
    background: rgba(212,187,130,.09);
}

.note-top {
    top: 43px;
    right: -20px;
}

.note-bottom {
    bottom: 40px;
    left: -15px;
}


/* HERO BOTTOM */

.hero-bottom {
    position: absolute;
    z-index: 3;

    right: 0;
    bottom: 0;
    left: 0;

    border-top: 1px solid rgba(255,255,255,.08);

    background: rgba(0,0,0,.08);
}

.hero-bottom .container {
    min-height: 62px;

    display: flex;
    align-items: center;

    gap: 22px;

    color: rgba(255,255,255,.34);

    font-size: 10px;
}

.hero-bottom-line {
    width: 30px;
    height: 1px;

    background: rgba(255,255,255,.15);
}


/* =====================================================
   GENERAL
===================================================== */

.section {
    padding: 120px 0;
}

.section-label {
    display: flex;
    align-items: center;

    gap: 10px;

    color: var(--green);

    font-size: 12px;
    font-weight: 800;
}

.section-label > span {
    color: var(--gold);

    font-size: 10px;
    letter-spacing: 1px;
}

.section-label.inline {
    margin-bottom: 18px;
}

.section-label.light {
    color: #fff;
}

.section-label.centered {
    justify-content: center;
}

.section-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;

    gap: 50px;

    margin-bottom: 55px;
}

.section-heading.compact {
    margin-bottom: 42px;
}

.section-heading h2,
.intro-content h2,
.expertise-content h2,
.profile-content h2,
.center-heading h2 {
    font-size: clamp(38px, 4.4vw, 55px);

    line-height: 1.07;

    font-weight: 800;

    letter-spacing: -1.5px;
}

.section-heading h2 span,
.intro-content h2 span,
.expertise-content h2 span,
.profile-content h2 span,
.center-heading h2 span {
    color: var(--olive);
}

.section-heading > p {
    max-width: 400px;

    color: var(--muted);

    font-size: 14px;

    line-height: 1.9;
}


/* =====================================================
   INTRO
===================================================== */

.intro-section {
    background: var(--cream-2);
}

.intro-grid {
    display: grid;

    grid-template-columns: .7fr 1.3fr;

    gap: 100px;
}

.intro-content {
    max-width: 780px;
}

.intro-content h2 {
    margin-bottom: 25px;
}

.intro-lead {
    margin-bottom: 17px;

    color: var(--ink);

    font-size: 18px;

    line-height: 1.95;
}

.intro-content > p:not(.intro-lead) {
    color: var(--muted);

    font-size: 14px;

    line-height: 2;
}

.intro-points {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 15px 25px;

    margin-top: 35px;
}

.intro-points div {
    display: flex;
    align-items: center;

    gap: 12px;
}

.intro-points span {
    width: 29px;
    height: 29px;

    display: grid;
    place-items: center;

    border-radius: 50%;

    color: var(--gold);

    background: #f0eadc;

    font-size: 9px;
    font-weight: 800;
}

.intro-points strong {
    font-size: 13px;
}


/* =====================================================
   SERVICES
===================================================== */

.services-section {
    background: #fff;
}

.services-grid {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 15px;
}

.service-card {
    position: relative;

    min-height: 335px;

    padding: 30px;

    border: 1px solid var(--line);
    border-radius: var(--radius);

    background: #fff;

    overflow: hidden;

    transition: .3s ease;
}

.service-card:hover {
    transform: translateY(-7px);

    border-color: rgba(105,121,91,.25);

    box-shadow: var(--shadow);
}

.service-card.service-featured {
    color: #fff;

    border-color: transparent;

    background:
        radial-gradient(
            circle at 100% 0,
            rgba(184,155,94,.2),
            transparent 40%
        ),
        var(--green);
}

.service-number {
    position: absolute;

    top: 25px;
    left: 25px;

    color: #c7cbc6;

    font-size: 10px;
    font-weight: 700;
}

.service-featured .service-number {
    color: rgba(255,255,255,.25);
}

.service-icon {
    width: 54px;
    height: 54px;

    display: grid;
    place-items: center;

    margin-bottom: 34px;

    border-radius: 15px;

    color: var(--green);

    background: #eef1eb;
}

.service-featured .service-icon {
    color: var(--gold-light);
    background: rgba(212,187,130,.09);
}

.service-icon svg {
    width: 25px;
    height: 25px;
}

.service-card h3 {
    margin-bottom: 12px;

    font-size: 20px;
}

.service-card p {
    color: var(--muted);

    font-size: 13px;

    line-height: 1.9;
}

.service-featured p {
    color: rgba(255,255,255,.52);
}

.service-card > a {
    position: absolute;

    right: 30px;
    bottom: 27px;

    display: inline-flex;
    align-items: center;

    gap: 8px;

    color: var(--green);

    font-size: 12px;
    font-weight: 800;
}

.service-featured > a {
    color: var(--gold-light);
}

.service-card > a span {
    transition: .2s;
}

.service-card > a:hover span {
    transform: translateX(-4px);
}


/* =====================================================
   EXPERTISE
===================================================== */

.expertise-section {
    background: var(--cream);
}

.expertise-grid {
    display: grid;

    grid-template-columns: .9fr 1.1fr;

    gap: 100px;

    align-items: center;
}

.expertise-visual {
    position: relative;

    min-height: 500px;

    display: grid;
    place-items: center;
}

.blueprint-grid {
    position: absolute;

    inset: 30px;

    opacity: .5;

    background-image:
        linear-gradient(
            rgba(105,121,91,.1) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(105,121,91,.1) 1px,
            transparent 1px
        );

    background-size: 32px 32px;

    transform: rotate(-3deg);
}

.blueprint-card {
    position: relative;
    z-index: 2;

    width: 390px;
    min-height: 420px;

    padding: 25px;

    border: 1px solid rgba(16,42,35,.13);
    border-radius: 20px;

    background:
        linear-gradient(
            135deg,
            #e7eadf,
            #f8f7f1
        );

    box-shadow: 0 30px 80px rgba(16,42,35,.1);

    transform: rotate(-3deg);
}

.blueprint-header {
    display: flex;
    align-items: center;
    justify-content: space-between;

    padding-bottom: 15px;

    border-bottom: 1px solid rgba(16,42,35,.1);

    color: var(--green);

    font-size: 11px;
    font-weight: 700;
}

.map-area {
    position: relative;

    height: 280px;

    margin-top: 15px;

    overflow: hidden;

    background:
        linear-gradient(
            30deg,
            transparent 48%,
            rgba(105,121,91,.14) 49%,
            transparent 50%
        ),
        linear-gradient(
            -30deg,
            transparent 48%,
            rgba(105,121,91,.14) 49%,
            transparent 50%
        );

    background-size: 90px 70px;
}

.map-line {
    position: absolute;

    height: 1px;

    background: rgba(105,121,91,.4);

    transform-origin: right center;
}

.line-1 {
    top: 70px;
    right: 20px;

    width: 300px;

    transform: rotate(-14deg);
}

.line-2 {
    top: 170px;
    right: -10px;

    width: 360px;

    transform: rotate(8deg);
}

.line-3 {
    top: 125px;
    right: 80px;

    width: 250px;

    transform: rotate(42deg);
}

.map-point {
    position: absolute;

    width: 14px;
    height: 14px;

    display: grid;
    place-items: center;

    border: 1px solid var(--green);
    border-radius: 50%;

    background: #fff;
}

.map-point span {
    width: 5px;
    height: 5px;

    border-radius: 50%;

    background: var(--gold);
}

.point-1 {
    top: 60px;
    right: 70px;
}

.point-2 {
    top: 165px;
    right: 210px;
}

.point-3 {
    top: 95px;
    right: 290px;
}

.point-4 {
    bottom: 35px;
    right: 145px;
}

.map-caption {
    display: flex;
    flex-direction: column;

    gap: 2px;

    padding-top: 12px;

    border-top: 1px solid rgba(16,42,35,.1);
}

.map-caption strong {
    color: var(--green);

    font-size: 13px;
}

.map-caption small {
    color: var(--muted);

    font-size: 9px;
}

.expertise-content > p {
    max-width: 630px;

    margin: 23px 0 30px;

    color: var(--muted);

    font-size: 15px;

    line-height: 2;
}

.areas-list {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 11px;
}

.area {
    display: flex;
    align-items: center;

    gap: 10px;

    padding: 13px 15px;

    border: 1px solid rgba(16,42,35,.08);
    border-radius: 10px;

    background: rgba(255,255,255,.55);
}

.area span {
    color: var(--gold);

    font-size: 9px;
    font-weight: 800;
}

.area strong {
    color: var(--green);

    font-size: 12px;
}


/* =====================================================
   EXPERTISE LIST
===================================================== */

.expertise-list-section {
    background: #fff;
}

.expertise-columns {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 50px;
}

.expertise-column {
    padding-top: 25px;

    border-top: 2px solid var(--green);
}

.expertise-column h3 {
    margin-bottom: 22px;

    color: var(--green);

    font-size: 18px;
}

.expertise-column ul {
    list-style: none;
}

.expertise-column li {
    position: relative;

    padding: 8px 20px 8px 0;

    color: var(--muted);

    font-size: 13px;

    line-height: 1.7;
}

.expertise-column li::before {
    content: "";

    position: absolute;

    top: 18px;
    right: 0;

    width: 6px;
    height: 6px;

    border-radius: 50%;

    background: var(--gold);
}


/* =====================================================
   PROFILE
===================================================== */

.profile-section {
    background: var(--cream);
}

.profile-grid {
    display: grid;

    grid-template-columns: 1.1fr .9fr;

    gap: 110px;

    align-items: center;
}

.profile-content > p {
    max-width: 620px;

    margin: 25px 0 30px;

    color: var(--muted);

    font-size: 15px;

    line-height: 2;
}

.credentials {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 13px;
}

.credential {
    display: grid;

    grid-template-columns: 27px 1fr;

    column-gap: 10px;

    align-items: center;

    padding: 14px;

    border: 1px solid rgba(16,42,35,.09);
    border-radius: 12px;

    background: rgba(255,255,255,.52);
}

.credential > span {
    grid-row: span 2;

    width: 27px;
    height: 27px;

    display: grid;
    place-items: center;

    border-radius: 50%;

    color: var(--green);

    background: #e4eadf;

    font-size: 10px;
}

.credential strong {
    font-size: 11px;
}

.credential small {
    color: var(--muted);

    font-size: 9px;
}

.profile-card {
    position: relative;

    min-height: 480px;

    display: flex;
    flex-direction: column;

    justify-content: space-between;

    padding: 30px;

    border-radius: 25px;

    overflow: hidden;

    color: #fff;

    background:
        radial-gradient(
            circle at 100% 0,
            rgba(184,155,94,.18),
            transparent 35%
        ),
        var(--green);

    box-shadow: 0 35px 90px rgba(16,42,35,.17);
}

.profile-card::after {
    content: "ל";

    position: absolute;

    left: -55px;
    bottom: -90px;

    color: rgba(255,255,255,.035);

    font-size: 350px;

    font-family: "Assistant", sans-serif;

    font-weight: 800;
}

.profile-card-top,
.profile-card-bottom {
    position: relative;
    z-index: 2;

    display: flex;
    align-items: center;
    justify-content: space-between;
}

.profile-card-top {
    color: rgba(255,255,255,.45);

    font-size: 10px;
}

.profile-card-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
}

.profile-card-bottom strong {
    color: #fff;

    font-size: 22px;
}

.profile-card-bottom span {
    color: var(--gold-light);

    font-size: 11px;
}

.profile-initial {
    position: relative;
    z-index: 2;

    width: 150px;
    height: 150px;

    display: grid;
    place-items: center;

    margin: auto;

    border: 1px solid rgba(255,255,255,.12);
    border-radius: 50%;

    color: var(--gold-light);

    background: rgba(255,255,255,.035);

    font-size: 90px;
    font-weight: 800;

    box-shadow:
        0 0 0 35px rgba(255,255,255,.018),
        0 0 0 70px rgba(255,255,255,.012);
}


/* =====================================================
   CLIENTS
===================================================== */

.clients-section {
    background: #fff;
}

.center-heading {
    max-width: 650px;

    margin: 0 auto 55px;

    text-align: center;
}

.center-heading h2 {
    margin-top: 10px;
}

.center-heading p {
    margin-top: 17px;

    color: var(--muted);

    font-size: 14px;
}

.clients-grid {
    display: grid;

    grid-template-columns: repeat(4, 1fr);

    border-top: 1px solid var(--line);
    border-right: 1px solid var(--line);
}

.clients-grid div {
    min-height: 90px;

    display: grid;
    place-items: center;

    padding: 15px;

    border-left: 1px solid var(--line);
    border-bottom: 1px solid var(--line);

    color: #7c817d;

    font-size: 13px;
    font-weight: 600;

    text-align: center;

    transition: .25s;
}

.clients-grid div:hover {
    color: var(--green);

    background: var(--cream-2);
}


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

.cta-section {
    position: relative;

    overflow: hidden;

    padding: 100px 0;

    color: #fff;

    background:
        radial-gradient(
            circle at 90% 20%,
            rgba(184,155,94,.15),
            transparent 30%
        ),
        var(--green);
}

.cta-pattern {
    position: absolute;

    width: 700px;
    height: 700px;

    left: -350px;
    top: -300px;

    border: 1px solid rgba(255,255,255,.07);
    border-radius: 50%;

    box-shadow:
        0 0 0 90px rgba(255,255,255,.02),
        0 0 0 180px rgba(255,255,255,.012);
}

.cta-grid {
    position: relative;
    z-index: 2;

    display: grid;

    grid-template-columns: 1.1fr .9fr;

    gap: 100px;

    align-items: center;
}

.cta-content h2 {
    margin: 17px 0 20px;

    font-size: clamp(40px, 4.8vw, 62px);

    line-height: 1.04;

    letter-spacing: -2px;

    font-weight: 800;
}

.cta-content h2 span {
    color: var(--gold-light);
}

.cta-content > p {
    max-width: 550px;

    margin-bottom: 30px;

    color: rgba(255,255,255,.5);

    font-size: 15px;

    line-height: 1.9;
}

.cta-actions {
    display: flex;

    gap: 12px;

    flex-wrap: wrap;
}

.button-light {
    color: var(--green);

    background: #fff;
}

.button-light:hover {
    background: var(--gold-light);
}

.button-outline-light {
    border: 1px solid rgba(255,255,255,.2);

    color: #fff;

    background: rgba(255,255,255,.04);
}

.button-outline-light:hover {
    background: rgba(255,255,255,.1);
}

.contact-card {
    padding: 28px;

    border: 1px solid rgba(255,255,255,.1);
    border-radius: 22px;

    background: rgba(255,255,255,.055);

    backdrop-filter: blur(15px);
}

.contact-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;

    padding-bottom: 20px;

    border-bottom: 1px solid rgba(255,255,255,.09);
}

.contact-card-header strong {
    font-size: 15px;
}

.contact-card-header span {
    color: var(--gold-light);

    font-size: 11px;
    font-weight: 700;
}

.contact-row {
    display: flex;

    gap: 13px;

    padding: 16px 0;

    border-bottom: 1px solid rgba(255,255,255,.07);
}

.contact-icon {
    width: 37px;
    height: 37px;

    display: grid;
    place-items: center;

    flex-shrink: 0;

    border-radius: 10px;

    color: var(--gold-light);

    background: rgba(212,187,130,.08);

    font-size: 12px;
}

.contact-row small,
.contact-row a,
.contact-row strong {
    display: block;
}

.contact-row small {
    color: rgba(255,255,255,.32);

    font-size: 9px;
}

.contact-row a,
.contact-row strong {
    color: #fff;

    font-size: 13px;
}

.contact-row a {
    direction: ltr;
    text-align: right;
}

.contact-button {
    min-height: 49px;

    display: flex;
    align-items: center;
    justify-content: center;

    gap: 10px;

    margin-top: 20px;

    border-radius: 10px;

    color: var(--green);

    background: #fff;

    font-size: 13px;
    font-weight: 800;

    transition: .25s;
}

.contact-button:hover {
    background: var(--gold-light);
}


/* =====================================================
   FOOTER
===================================================== */

.footer {
    padding: 65px 0 25px;

    color: #fff;

    background: #091a15;
}

.footer-top {
    display: grid;

    grid-template-columns: 1.5fr .8fr .9fr 1fr;

    gap: 55px;

    padding-bottom: 50px;
}

.footer .brand-text strong {
    font-size: 20px;
}

.footer-brand p {
    max-width: 290px;

    margin-top: 18px;

    color: rgba(255,255,255,.32);

    font-size: 11px;

    line-height: 1.9;
}

.footer-column {
    display: flex;
    flex-direction: column;

    align-items: flex-start;

    gap: 8px;
}

.footer-column h4 {
    margin-bottom: 9px;

    color: rgba(255,255,255,.75);

    font-size: 12px;
}

.footer-column a,
.footer-column span {
    color: rgba(255,255,255,.35);

    font-size: 11px;

    transition: .2s;
}

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

.footer-contact a {
    direction: ltr;
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 20px;

    padding-top: 22px;

    border-top: 1px solid rgba(255,255,255,.07);

    color: rgba(255,255,255,.24);

    font-size: 9px;
}

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


/* =====================================================
   INTERIOR PAGES
===================================================== */

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

.inner-hero {
    min-height: 470px;
    display: flex;
    align-items: flex-end;
    padding: 150px 0 82px;
    color: #fff;
    background:
        radial-gradient(circle at 82% 20%, rgba(106,137,111,.2), transparent 32%),
        linear-gradient(125deg, #0b211b, var(--green) 55%, #0b201b);
}

.inner-hero-content {
    max-width: 820px;
}

.inner-hero h1 {
    margin: 18px 0 20px;
    font-size: clamp(46px, 6vw, 76px);
    line-height: 1;
    font-weight: 800;
    letter-spacing: -2px;
}

.inner-hero h1 em {
    color: var(--gold-light);
    font-style: normal;
}

.inner-hero p {
    max-width: 650px;
    color: rgba(255,255,255,.62);
    font-size: 17px;
    line-height: 1.9;
}

.inner-content-section,
.credentials-section,
.services-detail-section {
    background: var(--cream-2);
}

.inner-content-grid {
    display: grid;
    grid-template-columns: 1.15fr .85fr;
    gap: 100px;
    align-items: center;
}

.inner-content-grid h2,
.credentials-section h2,
.services-detail-section h2 {
    margin: 17px 0 25px;
    color: var(--ink);
    font-size: clamp(36px, 4.4vw, 56px);
    line-height: 1.08;
    font-weight: 800;
    letter-spacing: -1.5px;
}

.inner-content-grid h2 span,
.credentials-section h2 span,
.services-detail-section h2 span {
    color: var(--olive);
}

.inner-content-grid p {
    max-width: 690px;
    margin-bottom: 16px;
    color: var(--muted);
    font-size: 15px;
    line-height: 2;
}

.inner-facts {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1px;
    border: 1px solid var(--line);
    background: var(--line);
}

.inner-facts div {
    min-height: 150px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 25px;
    background: #fff;
}

.inner-facts strong {
    color: var(--green);
    font-size: 30px;
    font-weight: 800;
}

.inner-facts span {
    color: var(--muted);
    font-size: 11px;
}

.credentials-section {
    background: #fff;
}

.credentials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 13px;
    max-width: 850px;
    margin-top: 35px;
}

.credentials-grid .credential {
    background: var(--cream-2);
}

.detail-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-top: 38px;
}

.detail-grid article {
    min-height: 250px;
    padding: 27px;
    border: 1px solid var(--line);
    border-top: 2px solid var(--green);
    background: #fff;
}

.detail-grid article > span {
    color: var(--gold);
    font-size: 11px;
    font-weight: 800;
}

.detail-grid h3 {
    margin: 30px 0 10px;
    color: var(--green);
    font-size: 19px;
}

.detail-grid p {
    color: var(--muted);
    font-size: 13px;
    line-height: 1.9;
}

.inner-cta {
    padding: 65px 0;
    color: #fff;
    background: var(--green);
}

.inner-cta .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.inner-cta h2 {
    font-size: clamp(25px, 3vw, 38px);
    font-weight: 800;
}


/* =====================================================
   RESPONSIVE
===================================================== */

@media (max-width: 1050px) {

    .desktop-nav {
        gap: 18px;
    }

    .header-contact > a:first-child {
        display: none;
    }

    .hero-inner {
        gap: 45px;
    }

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

    .expertise-grid,
    .profile-grid {
        gap: 60px;
    }

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

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

    .footer-contact {
        grid-column: span 3;
    }
}


@media (max-width: 800px) {

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

    .header-inner {
        min-height: 76px;
    }

    .desktop-nav,
    .header-button {
        display: none;
    }

    .menu-toggle {
        display: block;
    }

    .mobile-menu {
        position: fixed;

        top: 76px;
        right: 16px;
        left: 16px;

        display: flex;
        flex-direction: column;

        padding: 10px;

        border: 1px solid rgba(255,255,255,.1);
        border-radius: 17px;

        background: rgba(16,42,35,.97);

        backdrop-filter: blur(20px);

        box-shadow: 0 25px 60px rgba(0,0,0,.3);

        transform: translateY(-15px);
        opacity: 0;

        pointer-events: none;

        transition: .25s;
    }

    .mobile-menu.active {
        transform: translateY(0);
        opacity: 1;

        pointer-events: auto;
    }

    .mobile-menu a {
        padding: 13px;

        border-radius: 9px;

        color: rgba(255,255,255,.72);

        font-size: 14px;
    }

    .mobile-menu a:hover {
        color: #fff;
        background: rgba(255,255,255,.05);
    }

    .mobile-menu .mobile-phone {
        margin-top: 5px;

        color: var(--gold-light);

        border-top: 1px solid rgba(255,255,255,.08);

        direction: ltr;
        text-align: center;
    }

    .hero {
        min-height: auto;

        padding: 125px 0 85px;
    }

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

    .hero-content {
        max-width: none;
    }

    .hero-visual {
        min-height: 500px;
    }

    .note-top {
        right: 0;
    }

    .note-bottom {
        left: 0;
    }

    .section {
        padding: 80px 0;
    }

    .intro-grid,
    .expertise-grid,
    .profile-grid,
    .cta-grid,
    .inner-content-grid {
        grid-template-columns: 1fr;
    }

    .intro-grid {
        gap: 35px;
    }

    .expertise-grid {
        gap: 50px;
    }

    .expertise-visual {
        order: 2;
    }

    .expertise-content {
        order: 1;
    }

    .profile-grid {
        gap: 50px;
    }

    .profile-card {
        max-width: 500px;
        margin-inline: auto;
        width: 100%;
    }

    .cta-grid {
        gap: 50px;
    }

    .inner-content-grid {
        gap: 45px;
    }

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

    .inner-cta .container {
        align-items: flex-start;
        flex-direction: column;
    }

    .section-heading {
        align-items: flex-start;
        flex-direction: column;
    }

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

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

    .footer-contact {
        grid-column: span 2;
    }
}


@media (max-width: 560px) {

    .floating-contact {
        right: 12px;
        bottom: 12px;
        left: 12px;

        flex-direction: row;
    }

    .floating-contact-button {
        min-width: 0;
        flex: 1;
    }

    .hero h1 {
        font-size: 51px;
        letter-spacing: -2px;
    }

    .hero-description {
        font-size: 15px;
    }

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

    .hero-actions .button {
        width: 100%;
    }

    .hero-stats {
        gap: 12px;
    }

    .stat strong {
        font-size: 16px;
    }

    .stat span {
        font-size: 8px;
    }

    .hero-bottom {
        display: none;
    }

    .hero-visual {
        min-height: 440px;
    }

    .property-card {
        width: calc(100% - 25px);
    }

    .architectural-lines {
        width: 340px;
        height: 340px;
    }

    .property-building {
        height: 235px;
    }

    .building {
        width: 175px;
        height: 200px;
    }

    .floating-note {
        transform: scale(.84);
    }

    .note-top {
        top: 5px;
        right: -8px;
    }

    .note-bottom {
        bottom: 5px;
        left: -8px;
    }

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

    .service-card {
        min-height: 320px;
    }

    .areas-list,
    .intro-points,
    .credentials,
    .expertise-columns,
    .credentials-grid,
    .detail-grid {
        grid-template-columns: 1fr;
    }

    .inner-hero {
        min-height: 410px;
        padding-top: 125px;
    }

    .inner-hero h1 {
        font-size: 48px;
    }

    .inner-facts div {
        min-height: 125px;
        padding: 18px;
    }

    .blueprint-card {
        width: 320px;
        min-height: 390px;
    }

    .map-area {
        height: 245px;
    }

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

    .clients-grid div {
        min-height: 80px;

        font-size: 11px;
    }

    .cta-content h2 {
        font-size: 42px;
    }

    .cta-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .cta-actions .button {
        width: 100%;
    }

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

    .footer-contact {
        grid-column: auto;
    }

    .footer-bottom {
        align-items: flex-start;
        flex-direction: column;
    }
}
