/* inter-regular - latin */
@font-face {
    font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'Inter';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/inter-v20-latin-regular.woff2') format('woff2'), /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */ url('../fonts/inter-v20-latin-regular.ttf') format('truetype'); /* Chrome 4+, Firefox 3.5+, IE 9+, Safari 3.1+, iOS 4.2+, Android Browser 2.2+ */
}

html {
    scroll-behavior: smooth;
}

html, body {
    font-family: "Inter", system-ui, -apple-system, Segoe UI, Roboto, "Helvetica Neue", Arial, "Noto Sans", "Apple Color Emoji", "Segoe UI Emoji";
    color: var(--text);
    background: var(--bg);
}

#mainLogo {
    width: 2.5em;
}

/* Utility helpers */
.rounded-2xl {
    border-radius: var(--radius) !important
}

.shadow-soft {
    box-shadow: 0 8px 24px rgba(0, 0, 0, .06)
}

.text-muted-2 {
    color: var(--brand-muted)
}

.btn-brand {
    background: var(--brand-primary);
    color: #fff;
    border: none
}

.btn-brand:hover {
    filter: brightness(1.05)
}

.btn-ghost {
    background: transparent;
    border: 1px solid var(--brand-primary);
    color: var(--brand-primary)
}

.btn-ghost:hover {
    background: var(--brand-primary);
    color: #fff
}

.bg-cream {
    background: var(--brand-light)
}

.bg-brand {
    background: var(--brand-primary)
}

.text-brand {
    color: var(--brand-primary)
}

/* Topbar */
.topbar {
    background: var(--brand-primary);
    color: #fff;
    font-size: .9rem
}

.topbar a {
    color: #fff;
    opacity: .9;
    text-decoration: none
}

.topbar a:hover {
    opacity: 1
}

/* Navbar */
.navbar-brand {
    font-weight: 700;
    letter-spacing: .5px
}

.logo-mark {
    width: 28px;
    height: 28px;
    border-radius: 6px;
    display: inline-block;
    background: linear-gradient(135deg, var(--brand-primary), #2d6b58)
}

#main-menu > .nav-item > a {
    font-weight: 500
}

#main-menu > .nav-item > a.active, #main-menu > .nav-item > a:focus, #main-menu > .nav-item > a:hover {
    color: var(--brand-primary)
}

/* Hero */
.hero {
    position: relative;
    padding: clamp(64px, 12vw, 140px) 0
}

.hero .badge {
    background: var(--brand-light);
    color: var(--brand-primary);
    font-weight: 600
}

.hero h1 {
    font-weight: 700 !important;
    letter-spacing: -.02em
}
.hero p {
    font-size: clamp(1rem, 1.2vw, 1.125rem)
}

.hero-card {
    background: #fff;
    border: 1px solid #e8e6e4
}

.hero-figure {
    position: relative;
    min-height: 320px;
    background: linear-gradient(135deg, rgba(35, 82, 68, .15), rgba(156, 150, 145, .15));
    border-radius: var(--radius)
}
    .hero-figure img {
        border-radius: var(--radius)
    }

.figure-tag {
    position: absolute;
    left: 16px;
    top: 16px;
    background: #fff;
    border: 1px solid #eee;
    padding: 6px 10px;
    border-radius: 999px;
    font-size: .9rem
}

/* USP chips */
.chip {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    background: #fff;
    border: 1px solid #ece8e4;
    padding: 10px 14px;
    border-radius: 999px
}

.chip i {
    color: var(--brand-primary)
}

/* Cards */
.property-card {
    border: 1px solid #ece8e4
}

.property-card img {
    object-fit: cover;
    height: 220px
}

.meta {
    font-size: .95rem
}

/* Sections */
section {
    scroll-margin-top: 90px
}

/* CTA strip */
.cta {
    background: var(--brand-primary);
    color: #fff;
    border-radius: var(--radius)
}

.cta .btn {
    background: #fff;
    color: var(--brand-primary);
    border: none
}

.cta .btn:hover {
    filter: brightness(.95)
}

/* Footer */
footer {
    border-top: 1px solid #ece8e4
}


/*h1, h2 {
    text-transform: uppercase;
}

h2 {
    font-weight: bold;
}

h1, h2, h3 {
    font-family: 'Barlow Condensed', serif;
    font-weight: bold;
    letter-spacing: .2rem;
}*/

@media only screen and (max-width: 767px) {

}

@media only screen and (min-width: 767px) {

}

@media only screen and (max-width: 992px) {

}

@media only screen and (min-width: 767px) {

}

@media only screen and (min-width: 1130px) {

}

@media only screen and (min-width: 1270px) {

}

#footerMenu > li > a {
    text-decoration: none;
}

#footerMenu > li:first-child:after {
    content: '|';
    display: inline-block;
    padding: 0 0.5em;
}
