:root {
    --navy: #071a2f;
    --navy2: #0d2945;
    --gold: #b78a2f;
    --gold2: #d8b45a;
    --cream: #f7f2e8;
    --paper: #fffdf8;
    --ink: #17212b;
    --muted: #69727c;
    --line: rgba(7, 26, 47, .12);
    --shadow: 0 24px 70px rgba(7, 26, 47, .12);
    --radius: 24px;
}

* {
    box-sizing: border-box
}

html {
    scroll-behavior: smooth
}

body {
    margin: 0;
    background: var(--paper);
    color: var(--ink);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    line-height: 1.6
}

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

button {
    cursor: pointer
}

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

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

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    transition: .35s;
    background: rgba(255, 253, 248, .88);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid transparent
}

.site-header.scrolled {
    box-shadow: 0 10px 35px rgba(7, 26, 47, .08);
    border-color: var(--line)
}

.nav {
    height: 82px;
    display: flex;
    align-items: center;
    justify-content: space-between
}

.brand {
    display: flex;
    align-items: center;
    gap: 11px
}

.brand-logo {
    width: 50px;
}


/* .brand-mark {
    width: 43px;
    height: 43px;
    border: 1px solid var(--gold);
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: var(--navy);
    font-weight: 800;
    font-family: Georgia, serif;
    position: relative
} */


/* .brand-mark:after {
    content: "";
    position: absolute;
    width: 12px;
    height: 12px;
    border: 2px solid var(--gold);
    bottom: -3px;
    left: 15px;
    transform: rotate(45deg);
    background: var(--paper)
} */

.brand-text {
    line-height: 1
}

.brand-text strong {
    display: block;
    font-family: Georgia, serif;
    letter-spacing: .11em;
    font-size: 17px
}

.brand-text small {
    color: var(--gold);
    font-weight: 700;
    letter-spacing: .27em;
    font-size: 8px
}

.nav-links {
    display: flex;
    gap: 30px;
    align-items: center
}

.nav-links a {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: #53606d;
    position: relative
}

.nav-links a:after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: .3s
}

.nav-links a:hover:after,
.nav-links a.active:after {
    width: 100%
}

.nav-links a.active {
    color: var(--navy)
}

.nav-cta {
    padding: 12px 18px!important;
    background: var(--navy);
    color: #fff!important;
    border-radius: 999px
}

.nav-cta:after {
    display: none
}

.menu-btn {
    display: none;
    border: 0;
    background: none;
    font-size: 25px;
    color: var(--navy)
}

.hero {
    min-height: 780px;
    padding: 150px 0 100px;
    background: radial-gradient(circle at 80% 35%, rgba(216, 180, 90, .16), transparent 28%), linear-gradient(115deg, #fffdf8 0%, #f7f2e8 100%);
    position: relative;
    overflow: hidden
}

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

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: var(--gold);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .22em
}

.eyebrow.dark {
    color: #84651f
}

.dot {
    width: 7px;
    height: 7px;
    background: var(--gold);
    border-radius: 50%;
    box-shadow: 0 0 0 6px rgba(183, 138, 47, .12)
}

h1,
h2,
h3 {
    font-family: Georgia, "Times New Roman", serif;
    font-weight: 500;
    line-height: 1.08;
    margin: 18px 0
}

h1 {
    font-size: clamp(50px, 6.2vw, 82px);
    letter-spacing: -.04em
}

h2 {
    font-size: clamp(38px, 4vw, 56px);
    letter-spacing: -.035em
}

h3 {
    font-size: 25px
}

em {
    font-style: italic;
    color: var(--gold)
}

p {
    color: var(--muted)
}

.hero-text {
    font-size: 18px;
    max-width: 620px
}

.hero-actions {
    display: flex;
    gap: 13px;
    margin: 34px 0 42px;
    flex-wrap: wrap
}

.btn {
    border: 0;
    border-radius: 999px;
    padding: 15px 23px;
    font-weight: 800;
    letter-spacing: .03em;
    transition: .3s;
    display: inline-flex;
    gap: 14px;
    align-items: center;
    justify-content: center
}

.btn-primary {
    background: var(--navy);
    color: #fff;
    box-shadow: 0 12px 30px rgba(7, 26, 47, .17)
}

.btn-primary:hover {
    transform: translateY(-3px);
    background: #102e4d
}

.btn-ghost {
    background: transparent;
    border: 1px solid var(--line);
    color: var(--navy)
}

.btn-ghost:hover {
    border-color: var(--gold);
    background: #fff
}

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

.trust-row {
    display: flex;
    gap: 0
}

.trust-row>div {
    padding: 0 25px;
    border-left: 1px solid var(--line)
}

.trust-row>div:first-child {
    padding-left: 0;
    border-left: 0
}

.trust-row strong {
    display: block;
    font-family: Georgia, serif;
    font-size: 20px
}

.trust-row span {
    display: block;
    color: #7b838a;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: .1em
}

.hero-card {
    background: #fff;
    border: 1px solid rgba(7, 26, 47, .08);
    border-radius: 28px;
    padding: 14px;
    box-shadow: var(--shadow);
    transform: rotate(1deg);
    transition: .5s
}

.hero-card:hover {
    transform: rotate(0) translateY(-8px)
}

.hero-card-top,
.hero-card-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 8px;
    font-size: 15px;
    color: #7d858c;
    text-transform: uppercase;
    letter-spacing: .12em
}

.pill {
    background: #edf4ee;
    color: #317143;
    border-radius: 999px;
    padding: 6px 10px;
    font-size: 9px
}

.property-image {
    height: 430px;
    border-radius: 19px;
    overflow: hidden;
    position: relative;
    background-size: cover;
    background-position: center
}

.image-1 {
    background-image: linear-gradient(180deg, transparent 40%, rgba(7, 26, 47, .78)), url("assets/image-1.png");
    background-size: cover;
    background-position: center 52%
}

.image-2 {
    background-image: linear-gradient(180deg, transparent 40%, rgba(7, 26, 47, .78)), url("assets/image-2.png");
    background-size: cover;
    background-position: center 52%
}

.image-overlay {
    position: absolute;
    bottom: 25px;
    left: 25px;
    color: #fff
}

.image-overlay span {
    display: block;
    color: #e9c978;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: .17em
}

.image-overlay strong {
    font: 25px Georgia, serif
}

.hero-card-bottom strong {
    display: block;
    color: var(--navy);
    font: 20px Georgia, serif;
    text-transform: none;
    letter-spacing: 0
}

.hero-card-bottom a {
    color: var(--gold);
    font-weight: 800;
    text-transform: none;
    letter-spacing: 0
}

.floating-badge {
    position: absolute;
    right: -30px;
    bottom: 45px;
    background: #fff;
    padding: 14px 18px;
    border-radius: 18px;
    box-shadow: 0 20px 45px rgba(7, 26, 47, .16);
    display: flex;
    gap: 11px;
    align-items: center;
    animation: float 4s ease-in-out infinite
}

.badge-icon {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--cream);
    display: grid;
    place-items: center;
    color: var(--gold);
    font-size: 21px
}

.floating-badge strong {
    display: block;
    font-size: 12px
}

.floating-badge small {
    display: block;
    color: #858b91;
    font-size: 10px
}

.scroll-cue {
    position: absolute;
    bottom: 26px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 9px;
    letter-spacing: .3em;
    color: #8d8b83
}

.scroll-cue span {
    font-size: 16px;
    margin-left: 8px
}

.section {
    padding: 110px 0
}

.section-light {
    background: #fff
}

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

.section-heading {
    max-width: 730px;
    margin-bottom: 55px
}

.section-heading p {
    max-width: 650px
}

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

.service-card {
    padding: 31px 25px;
    border: 1px solid var(--line);
    background: #fff;
    border-radius: 20px;
    transition: .35s;
    position: relative;
    overflow: hidden
}

.service-card:before {
    content: "";
    position: absolute;
    inset: auto -30px -50px auto;
    width: 130px;
    height: 130px;
    background: rgba(183, 138, 47, .08);
    border-radius: 50%;
    transition: .4s
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow);
    border-color: rgba(183, 138, 47, .4)
}

.service-card:hover:before {
    transform: scale(1.4)
}

.service-icon {
    font-size: 27px;
    color: var(--gold);
    margin-bottom: 15px
}

.service-card h3 {
    font-size: 24px;
    margin: 0 0 9px
}

.service-card p {
    font-size: 14px;
    margin: 0
}

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

.story-frame {
    height: 500px;
    border-radius: 30px;
    background: linear-gradient(145deg, #0a223a, #173b5d);
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow)
}

.story-frame:before,
.story-frame:after {
    content: "";
    position: absolute;
    border: 1px solid rgba(216, 180, 90, .25);
    border-radius: 50%
}

.story-frame:before {
    width: 500px;
    height: 500px;
    left: -200px;
    top: 80px
}

.story-frame:after {
    width: 400px;
    height: 400px;
    right: -180px;
    top: -130px
}

.mini-building {
    position: absolute;
    width: 250px;
    height: 310px;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(90deg, #c79b43, #f0d37c 35%, #987026);
    clip-path: polygon(17% 0, 85% 0, 100% 100%, 0 100%);
    box-shadow: 0 0 60px rgba(216, 180, 90, .22)
}

.mini-building:after {
    content: "";
    position: absolute;
    inset: 25px 40px 0;
    background: repeating-linear-gradient(90deg, rgba(7, 26, 47, .72) 0 15px, transparent 15px 30px)
}

.story-stamp {
    position: absolute;
    top: 35px;
    left: 35px;
    color: #e5c56f;
    font: 42px Georgia, serif;
    line-height: .8
}

.story-stamp small {
    font: 8px Inter, sans-serif;
    letter-spacing: .22em
}

.story-copy p {
    font-size: 17px;
    max-width: 580px
}

.check-list {
    margin: 28px 0
}

.check-list div {
    padding: 11px 0;
    color: #48535e;
    font-weight: 700;
    font-size: 14px
}

.check-list span {
    display: inline-grid;
    place-items: center;
    width: 23px;
    height: 23px;
    border-radius: 50%;
    background: rgba(183, 138, 47, .13);
    color: var(--gold);
    margin-right: 10px
}

.text-link {
    color: var(--gold);
    font-weight: 800
}

.row-heading {
    display: flex;
    justify-content: space-between;
    align-items: end;
    max-width: none
}

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

.project-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 22px;
    overflow: hidden;
    transition: .4s
}

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

.project-photo {
    height: 255px;
    background-size: cover;
    background-position: center;
    position: relative
}

.project-photo:after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(7, 26, 47, .35))
}

.project-tag {
    position: absolute;
    top: 14px;
    left: 14px;
    z-index: 2;
    background: rgba(255, 255, 255, .93);
    padding: 7px 11px;
    border-radius: 999px;
    font-size: 9px;
    text-transform: uppercase;
    letter-spacing: .13em;
    font-weight: 800;
    color: var(--navy)
}

.project-body {
    padding: 21px
}

.project-body h3 {
    margin: 0 0 6px;
    font-size: 25px
}

.project-location {
    font-size: 12px;
    color: #7b8289
}

.project-meta {
    display: flex;
    justify-content: space-between;
    margin-top: 18px;
    padding-top: 16px;
    border-top: 1px solid var(--line)
}

.project-price {
    font: 18px Georgia, serif;
    color: var(--navy)
}

.project-link {
    color: var(--gold);
    font-size: 12px;
    font-weight: 800
}

.dark-section {
    background: var(--navy);
    color: #fff
}

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

.stat-number {
    display: block;
    font: 62px Georgia, serif;
    color: #e1c16b
}

.stat-label {
    font-size: 11px;
    letter-spacing: .13em;
    text-transform: uppercase;
    color: #aeb7c0
}

.testimonial-wrap {
    max-width: 820px;
    text-align: center
}

.testimonial-card {
    border: 1px solid var(--line);
    padding: 50px 60px;
    border-radius: 30px;
    position: relative;
    background: #fff;
    box-shadow: 0 20px 50px rgba(7, 26, 47, .06)
}

.quote-mark {
    position: absolute;
    left: 28px;
    top: 10px;
    font: 90px Georgia, serif;
    color: rgba(183, 138, 47, .2)
}

.testimonial-card p {
    font: 25px Georgia, serif;
    color: var(--navy);
    line-height: 1.45
}

.testimonial-author {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    margin-top: 25px
}

.avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--navy);
    color: #e7c875;
    display: grid;
    place-items: center;
    font-size: 11px;
    font-weight: 800
}

.testimonial-author strong,
.testimonial-author span {
    display: block;
    text-align: left
}

.testimonial-author span {
    font-size: 11px;
    color: #7e858a
}

.slider-controls {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 24px
}

.slider-controls button {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid var(--line);
    background: #fff
}

.slider-controls button:hover {
    background: var(--navy);
    color: #fff
}

.cta-section {
    padding: 105px 0;
    background: radial-gradient(circle at 50% 0, rgba(216, 180, 90, .17), transparent 35%), var(--cream);
    text-align: center
}

.cta-inner {
    max-width: 760px
}

.cta-inner p {
    font-size: 17px;
    margin-bottom: 28px
}

.small-cta {
    padding: 80px 0
}

.page-hero {
    padding: 180px 0 95px;
    background: linear-gradient(115deg, #fffdf8, var(--cream));
    position: relative;
    overflow: hidden
}

.page-hero:after {
    content: "";
    position: absolute;
    width: 500px;
    height: 500px;
    border: 1px solid rgba(183, 138, 47, .16);
    border-radius: 50%;
    right: -160px;
    top: -180px
}

.page-hero p {
    max-width: 620px;
    font-size: 17px
}

.page-hero.compact {
    padding-bottom: 75px
}

.about-split {
    align-items: start
}

.about-copy p {
    font-size: 17px
}

.philosophy-card {
    background: var(--navy);
    color: #fff;
    border-radius: 28px;
    padding: 40px;
    box-shadow: var(--shadow)
}

.philosophy-card p {
    color: #bfc8d0;
    margin-top: -10px
}

.logo-circle {
    width: 70px;
    height: 70px;
    border: 1px solid #d4b15a;
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: #e4c66f;
    font: 25px Georgia, serif;
    margin-bottom: 35px
}

.line {
    height: 1px;
    background: rgba(255, 255, 255, .16);
    margin: 28px 0
}

.about-service-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px
}

.about-service {
    padding: 30px;
    border: 1px solid var(--line);
    border-radius: 20px;
    background: #fff;
    display: grid;
    grid-template-columns: 55px 1fr;
    gap: 15px
}

.about-service .num {
    font: 34px Georgia, serif;
    color: var(--gold)
}

.about-service h3 {
    margin: 0 0 6px
}

.timeline {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0
}

.timeline-item {
    padding: 20px 24px;
    border-top: 2px solid #d6c08a;
    position: relative
}

.timeline-item:before {
    content: "";
    position: absolute;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--gold);
    top: -7px;
    left: 24px
}

.timeline-item strong {
    display: block;
    font: 22px Georgia, serif;
    margin: 18px 0 8px
}

.timeline-item p {
    font-size: 13px
}

.reference-grid {
    display: grid;
    grid-template-columns: .8fr 1.2fr;
    gap: 70px;
    align-items: center
}

.reference-grid img {
    width: 100%;
    max-height: 650px;
    object-fit: cover;
    object-position: top;
    border-radius: 25px;
    box-shadow: var(--shadow)
}

.reference-grid p {
    font-size: 17px
}

.filter-bar {
    display: flex;
    gap: 8px;
    align-items: center;
    margin-bottom: 35px;
    flex-wrap: wrap
}

.filter {
    border: 1px solid var(--line);
    background: #fff;
    padding: 10px 17px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 800;
    color: #69727c
}

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

.search-box {
    margin-left: auto;
    border: 1px solid var(--line);
    background: #fff;
    border-radius: 999px;
    padding: 9px 15px;
    display: flex;
    gap: 8px;
    align-items: center
}

.search-box input {
    border: 0;
    outline: 0;
    width: 190px
}

.empty-state {
    text-align: center;
    padding: 50px;
    color: #777;
    display: none
}

.contact-grid {
    display: grid;
    grid-template-columns: .8fr 1.2fr;
    gap: 80px
}

.contact-info p {
    font-size: 17px
}

.contact-item {
    display: flex;
    gap: 15px;
    align-items: center;
    margin: 23px 0
}

.contact-item>span {
    width: 43px;
    height: 43px;
    border-radius: 50%;
    background: var(--cream);
    color: var(--gold);
    display: grid;
    place-items: center
}

.contact-item small,
.contact-item strong {
    display: block
}

.contact-item small {
    font-size: 9px;
    letter-spacing: .2em;
    color: #92979c
}

.contact-item strong {
    font-size: 14px
}

.gold-rule {
    width: 80px;
    height: 2px;
    background: var(--gold);
    margin: 32px 0
}

.micro {
    font-size: 12px!important;
    line-height: 1.6
}

.contact-form {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 26px;
    padding: 35px;
    box-shadow: var(--shadow)
}

.contact-form label {
    display: block;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
    margin-bottom: 17px;
    color: #68727c
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    display: block;
    width: 100%;
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 13px 14px;
    margin-top: 7px;
    outline: 0;
    background: #fff;
    color: var(--ink);
    text-transform: none;
    letter-spacing: 0
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(183, 138, 47, .1)
}

.form-success {
    display: none;
    background: #edf7ef;
    color: #327040;
    padding: 13px;
    border-radius: 12px;
    margin-top: 15px;
    font-size: 12px
}

.site-footer {
    background: #06182b;
    color: #fff;
    padding: 65px 0 25px
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 50px
}

.footer-brand p {
    color: #aeb8c1;
    max-width: 330px
}

.footer-col h4 {
    font-size: 10px;
    letter-spacing: .2em;
    color: #d6b45e;
    margin: 0 0 18px
}

.footer-col a {
    display: block;
    color: #c1c9cf;
    font-size: 13px;
    margin: 9px 0
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, .1);
    padding-top: 22px;
    color: #7e8993;
    font-size: 10px;
    display: flex;
    justify-content: space-between
}

.modal-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(3, 14, 25, .68);
    z-index: 100;
    display: grid;
    place-items: center;
    padding: 20px;
    opacity: 0;
    animation: fadeIn .25s forwards
}

.modal {
    width: min(560px, 100%);
    background: #fff;
    border-radius: 25px;
    padding: 32px;
    position: relative;
    transform: translateY(15px);
    animation: modalUp .35s forwards
}

.modal-close {
    position: absolute;
    right: 18px;
    top: 15px;
    border: 0;
    background: #f2f0eb;
    border-radius: 50%;
    width: 35px;
    height: 35px
}

.modal h2 {
    font-size: 36px
}

.modal p {
    font-size: 14px
}

.modal form {
    margin-top: 20px
}

.modal form input,
.modal form select {
    width: 100%;
    padding: 13px;
    border: 1px solid var(--line);
    border-radius: 10px;
    margin: 7px 0 13px;
    outline: 0
}

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

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

.delay-1 {
    transition-delay: .12s
}

.delay-2 {
    transition-delay: .22s
}

.delay-3 {
    transition-delay: .32s
}

@keyframes float {
    50% {
        transform: translateY(-9px)
    }
}

@keyframes fadeIn {
    to {
        opacity: 1
    }
}

@keyframes modalUp {
    to {
        transform: none
    }
}

@media(max-width:900px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 82px;
        left: 0;
        right: 0;
        background: #fff;
        padding: 20px 22px;
        flex-direction: column;
        align-items: flex-start;
        border-bottom: 1px solid var(--line)
    }
    .nav-links.open {
        display: flex
    }
    .menu-btn {
        display: block
    }
    .hero-grid,
    .split-section,
    .contact-grid,
    .reference-grid {
        grid-template-columns: 1fr;
        gap: 45px
    }
    .hero {
        padding-top: 130px
    }
    .hero-visual {
        max-width: 650px;
        margin: auto
    }
    .service-grid {
        grid-template-columns: repeat(2, 1fr)
    }
    .project-grid {
        grid-template-columns: repeat(2, 1fr)
    }
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px
    }
    .timeline {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px
    }
    .footer-grid {
        grid-template-columns: repeat(2, 1fr)
    }
}

@media(max-width:600px) {
    .container {
        width: min(100% - 28px, 1180px)
    }
    .nav {
        height: 72px
    }
    .nav-links {
        top: 72px
    }
    .hero {
        padding: 120px 0 80px;
        min-height: auto
    }
    .hero-grid {
        gap: 35px
    }
    h1 {
        font-size: 49px
    }
    .hero-text {
        font-size: 16px
    }
    .trust-row {
        display: grid;
        grid-template-columns: repeat(4, 1fr)
    }
    .trust-row>div {
        padding: 0 10px
    }
    .trust-row strong {
        font-size: 16px
    }
    .trust-row span {
        font-size: 8px
    }
    .floating-badge {
        right: 8px;
        bottom: 25px
    }
    .property-image {
        height: 360px
    }
    .section {
        padding: 75px 0
    }
    .section-heading {
        margin-bottom: 35px
    }
    .row-heading {
        display: block
    }
    .row-heading .btn {
        margin-top: 20px
    }
    .service-grid,
    .project-grid,
    .about-service-grid,
    .timeline,
    .stats-grid {
        grid-template-columns: 1fr
    }
    .story-frame {
        height: 380px
    }
    .testimonial-card {
        padding: 45px 25px
    }
    .testimonial-card p {
        font-size: 20px
    }
    .page-hero {
        padding: 135px 0 70px
    }
    .form-row {
        grid-template-columns: 1fr
    }
    .contact-form {
        padding: 24px
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 28px
    }
    .footer-bottom {
        display: block
    }
    .footer-bottom span {
        display: block;
        margin-top: 7px
    }
    .search-box {
        margin-left: 0;
        width: 100%
    }
    .search-box input {
        width: 100%
    }
}