:root {
    --red: #e44235;
    --purple: #8b1b61;
    --yellow: #cb8f17;
    --green: #105f66;
    --white: #f1f2f0;
    --black: #2d2b27;
    --beige: #ebe0bb;
    --radius: 0.375rem;
}

/* ── FONTS ── */

@font-face {
    font-family: 'Balldoug';
    font-style: normal;
    font-weight: 400;
    src: url('fonts/Balldoug-Regular.woff') format('woff'),
        url('fonts/Balldoug-Regular.otf') format('opentype'),
        url('fonts/Balldoug-Regular.ttf') format('truetype');
}

@font-face {
    font-family: 'Balldoug';
    font-style: italic;
    font-weight: 400;
    src: url('fonts/Balldoug-Italic.ttf') format('truetype');
}

@font-face {
    font-family: 'Grift';
    font-style: normal;
    font-weight: 400;
    src: url('fonts/Grift-Regular.woff') format('woff'),
        url('fonts/Grift-Regular.otf') format('opentype'),
        url('fonts/Grift-Regular.ttf') format('truetype');
}

@font-face {
    font-family: 'Grift';
    font-style: italic;
    font-weight: 400;
    src: url('fonts/Grift-Italic.ttf') format('truetype');
}

@font-face {
    font-family: 'Grift';
    font-style: normal;
    font-weight: 600;
    src: url('fonts/Grift-SemiBold.woff') format('woff');
}

@font-face {
    font-family: 'Grift';
    font-style: italic;
    font-weight: 600;
    src: url('fonts/Grift-SemiBoldItalic.woff') format('woff'),
        url('fonts/Grift-SemiBoldItalic.otf') format('opentype'),
        url('fonts/Grift-SemiBoldItalic.ttf') format('truetype');
}

/* ── BASE ── */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Grift', sans-serif;
    font-style: normal;
    font-weight: 400;
    color: var(--black);
    line-height: 1.7;
    background-color: var(--white);
}

p {
    font-family: 'Grift', sans-serif;
    font-weight: 400;
    line-height: 1.7;
}

h1, h2, h3 {
    font-family: 'Balldoug', sans-serif;
    font-weight: 400;
    font-style: normal;
    color: var(--black);
}

strong, b {
    font-weight: 600;
}

em, i {
    font-weight: 400;
    font-style: italic;
}

img {
    display: block;
    max-width: 100%;
}

a {
    text-decoration: none;
}

/* ── HEADER & NAVBAR ── */

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background-color: var(--white);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 48px;
    height: 56px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 4px;
    text-decoration: none;
}

.nav-logo img {
    height: 32px;
    width: auto;
    display: block;
}

.nav-brand {
    font-family: 'Balldoug', sans-serif;
    font-weight: 400;
    font-size: 1.1rem;
    color: var(--black);
    white-space: nowrap;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 36px;
    align-items: center;
}

.nav-links a {
    font-family: 'Grift', sans-serif;
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    text-decoration: none;
    color: var(--black);
    transition: color 0.2s ease;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--red);
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--black);
    cursor: pointer;
}

/* ── HERO ── */

.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    /* Push down below fixed header */
    margin-top: 0;
}

.hero--short {
    height: 52vh;
    min-height: 360px;
}

.hero-slides {
    position: absolute;
    inset: 0;
}

.hero-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease;
}

.hero-slide.active {
    opacity: 1;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(45, 43, 39, 0.25) 0%,
        rgba(45, 43, 39, 0.6) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 24px;
    max-width: 760px;
}

.hero-eyebrow {
    font-family: 'Grift', sans-serif;
    font-weight: 600;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--beige);   /* warm cream cuts cleanly against red/orange imagery */
    margin-bottom: 16px;
}

.hero-content h1 {
    font-size: clamp(2.5rem, 6vw, 5rem);
    color: var(--white);
    margin-bottom: 20px;
    line-height: 1.1;
}

.hero-sub {
    font-size: 1.1rem;
    color: rgba(241, 242, 240, 0.9);
    max-width: 540px;
    margin: 0 auto 36px;
    line-height: 1.7;
}

.hero-cta {
    display: inline-block;
    font-family: 'Grift', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--white);
    border: 2px solid var(--white);
    padding: 14px 36px;
    border-radius: 4px;
    transition: background-color 0.2s ease, border-color 0.2s ease;
}

.hero-cta:hover {
    background-color: var(--beige);
    border-color: var(--beige);
    color: var(--black);
}

.hero-dots {
    position: absolute;
    bottom: 28px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 2;
}

.hero-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    border: 2px solid var(--white);
    background: transparent;
    cursor: pointer;
    padding: 0;
    transition: background-color 0.2s ease, border-color 0.2s ease;
}

.hero-dot.active {
    background-color: var(--beige);
    border-color: var(--beige);
}

/* ── ABOUT ── */

.about-section {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 64px;
    max-width: 1100px;
    margin: 0 auto;
    padding: 100px 48px;
}

.about-image {
    width: 340px;
    height: 460px;
    border-radius: 12px;
    object-fit: cover;
    object-position: center top;
    flex-shrink: 0;
}

.about-text {
    padding-top: 16px;
    text-align: left;
}

.about-text h1 {
    font-size: 2.5rem;
    margin-bottom: 24px;
}

.about-text p {
    max-width: 560px;
    line-height: 1.8;
    margin-bottom: 16px;
}

.about-text p:last-child {
    margin-bottom: 0;
}

/* ── EXPERTISE ── */

.expertise-section {
    background-color: var(--beige);
    padding: 100px 48px;
}

.expertise-section-inner {
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
}

.expertise-section-inner h2 {
    font-size: 2rem;
    margin-bottom: 56px;
}

.expertise-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.expertise-card {
    padding: 40px 32px;
    border-radius: 12px;
    background-color: var(--white);
    text-align: left;
}

.expertise-icon {
    font-size: 2rem;
    margin-bottom: 20px;
}

.expertise-card h3 {
    color: var(--black);
    font-family: 'Grift', sans-serif;
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 12px;
}

.expertise-card p {
    font-family: 'Grift', sans-serif;
    font-weight: 400;
    line-height: 1.6;
}

/* ── CONTACT ── */

.contact-section {
    padding: 100px 48px;
    background-color: var(--white);
}

.contact-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    gap: 80px;
    align-items: flex-start;
}

.contact-info {
    flex: 1;
}

.contact-info h2 {
    font-size: 2rem;
    margin-bottom: 16px;
    color: var(--red);
}

.contact-info > p {
    line-height: 1.7;
    margin-bottom: 40px;
    max-width: 400px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.contact-label {
    font-family: 'Grift', sans-serif;
    font-weight: 600;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--red);
}

.contact-item a {
    color: var(--black);
    text-decoration: none;
    font-family: 'Grift', sans-serif;
}

.contact-item a:hover {
    color: var(--red);
}

.contact-form {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-form input,
.contact-form textarea {
    font-family: 'Grift', sans-serif;
    font-weight: 400;
    padding: 14px 18px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    width: 100%;
    background-color: var(--white);
    color: var(--black);
    transition: border-color 0.2s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--red);
}

.contact-form button {
    font-family: 'Grift', sans-serif;
    font-weight: 600;
    background-color: var(--red);
    color: var(--white);
    border: none;
    padding: 16px;
    border-radius: 8px;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.contact-form button:hover {
    background-color: var(--black);
}

.form-thank-you {
    flex: 1;
    display: none;         /* shown via JS after submit */
    align-items: center;
    justify-content: center;
}

.thank-you-inner {
    text-align: center;
    padding: 48px 32px;
    background-color: var(--beige);
    border-radius: 12px;
    max-width: 400px;
    width: 100%;
}

.thank-you-icon {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.thank-you-inner h3 {
    font-family: 'Balldoug', sans-serif;
    font-size: 1.6rem;
    margin-bottom: 12px;
    color: var(--black);
}

.thank-you-inner p {
    font-family: 'Grift', sans-serif;
    font-weight: 400;
    line-height: 1.6;
    color: var(--black);
}

/* ── LISTINGS ── */

.listings-section {
    padding: 100px 48px;
    background-color: var(--white);
}

.listings-inner {
    max-width: 1100px;
    margin: 0 auto;
}

.listings-inner h2 {
    font-size: 2rem;
    margin-bottom: 8px;
}

.listings-subtitle {
    color: var(--black);
    opacity: 0.6;
    margin-bottom: 40px;
}

/* Filters */
.listings-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 32px;
    align-items: center;
}

.listings-filters select,
.listings-filters input[type="number"],
.listings-filters input[type="text"] {
    font-family: 'Grift', sans-serif;
    font-weight: 400;
    font-size: 0.9rem;
    padding: 10px 14px;
    border: 1px solid #ddd;
    border-radius: 8px;
    background-color: var(--white);
    color: var(--black);
    transition: border-color 0.2s ease;
    min-width: 140px;
}

.listings-filters select:focus,
.listings-filters input:focus {
    outline: none;
    border-color: var(--red);
}

.listings-filters button {
    font-family: 'Grift', sans-serif;
    font-weight: 600;
    font-size: 0.85rem;
    padding: 10px 24px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

#filter-apply {
    background-color: var(--red);
    color: var(--white);
}

#filter-apply:hover {
    background-color: var(--black);
}

#filter-reset {
    background-color: transparent;
    color: var(--black);
    border: 1px solid #ddd;
}

#filter-reset:hover {
    border-color: var(--black);
}

.listings-count {
    font-family: 'Grift', sans-serif;
    font-size: 0.85rem;
    opacity: 0.5;
    margin-bottom: 24px;
}

/* Loading */
.listings-loading {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    padding: 80px 0;
    width: 100%;
    color: var(--black);
    opacity: 0.5;
}

.loading-spinner {
    width: 36px;
    height: 36px;
    border: 3px solid #ddd;
    border-top-color: var(--red);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Grid */
.listings-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    min-height: 200px;
}

.listings-empty {
    grid-column: 1 / -1;
    text-align: center;
    padding: 64px 0;
    opacity: 0.5;
    font-family: 'Grift', sans-serif;
}

/* Property card */
.prop-card {
    background-color: var(--beige);
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    text-decoration: none;
    color: var(--black);
    cursor: pointer;
}

.prop-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.prop-card:hover .prop-cta {
    color: var(--red);
}

.prop-img {
    height: 200px;
    background-size: cover;
    background-position: center;
}

.prop-img--placeholder {
    background-color: #d9d0b8;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='48' height='48' viewBox='0 0 24 24' fill='none' stroke='%23999' stroke-width='1.5'%3E%3Cpath d='M3 9l9-7 9 7v11a2 2 0 01-2 2H5a2 2 0 01-2-2z'/%3E%3Cpolyline points='9 22 9 12 15 12 15 22'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
}

.prop-body {
    padding: 20px 20px 24px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.prop-tag {
    font-family: 'Grift', sans-serif;
    font-weight: 600;
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--red);
    margin-bottom: 8px;
}

.prop-name {
    font-family: 'Balldoug', sans-serif;
    font-size: 1.1rem;
    margin-bottom: 4px;
    line-height: 1.3;
}

.prop-location {
    font-size: 0.85rem;
    opacity: 0.55;
    margin-bottom: 10px;
}

.prop-price {
    font-family: 'Grift', sans-serif;
    font-weight: 600;
    font-size: 1.05rem;
    color: var(--black);
    margin-bottom: 10px;
}

.prop-meta {
    display: flex;
    gap: 12px;
    font-size: 0.85rem;
    opacity: 0.7;
    margin-bottom: 10px;
}

.prop-desc {
    font-size: 0.88rem;
    line-height: 1.5;
    opacity: 0.65;
    margin-top: auto;
    padding-top: 8px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.listings-view-all {
    text-align: center;
    margin-top: 32px;
}

#btn-view-all {
    font-family: 'Grift', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    padding: 14px 40px;
    border-radius: 8px;
    border: 2px solid var(--red);
    background: transparent;
    color: var(--red);
    cursor: pointer;
    transition: background-color 0.2s ease, color 0.2s ease;
}

#btn-view-all:hover {
    background-color: var(--red);
    color: var(--white);
}

#btn-view-all:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.prop-cta {
    display: inline-block;
    font-family: 'Grift', sans-serif;
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--black);
    margin-top: 12px;
    transition: color 0.2s ease;
}

/* Pagination */
.listings-pagination {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 48px;
}

.page-btn {
    font-family: 'Grift', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    padding: 12px 28px;
    border-radius: 8px;
    border: 2px solid var(--black);
    background: transparent;
    color: var(--black);
    cursor: pointer;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.page-btn:hover {
    background-color: var(--black);
    color: var(--white);
}

/* ── PROPERTY DETAIL PAGE ── */

.property-section {
    padding: 80px 48px;
}

.property-inner {
    max-width: 900px;
    margin: 0 auto;
}

.pd-header {
    margin-bottom: 32px;
}

.pd-title {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    margin: 12px 0 8px;
    line-height: 1.2;
}

.pd-location {
    font-size: 0.95rem;
    opacity: 0.55;
    margin-bottom: 10px;
}

.pd-price {
    font-family: 'Grift', sans-serif;
    font-weight: 600;
    font-size: 1.5rem;
    color: var(--black);
}

.pd-main-img {
    width: 100%;
    height: 460px;
    border-radius: 12px;
    background-size: cover;
    background-position: center;
    margin-bottom: 12px;
}

.pd-main-img--placeholder {
    background-color: #d9d0b8;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='64' height='64' viewBox='0 0 24 24' fill='none' stroke='%23999' stroke-width='1.5'%3E%3Cpath d='M3 9l9-7 9 7v11a2 2 0 01-2 2H5a2 2 0 01-2-2z'/%3E%3Cpolyline points='9 22 9 12 15 12 15 22'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
}

.pd-gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
    margin-bottom: 40px;
}

.pd-thumb {
    height: 100px;
    border-radius: 8px;
    background-size: cover;
    background-position: center;
    cursor: pointer;
}

.pd-stats {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
    gap: 16px;
    background-color: var(--beige);
    border-radius: 12px;
    padding: 28px;
    margin-bottom: 40px;
}

.pd-stat {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.pd-stat-label {
    font-family: 'Grift', sans-serif;
    font-weight: 600;
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--red);
}

.pd-stat-value {
    font-family: 'Grift', sans-serif;
    font-weight: 400;
    font-size: 1rem;
    color: var(--black);
}

.pd-description {
    margin-bottom: 40px;
}

.pd-description h3,
.pd-amenities h3 {
    font-size: 1.2rem;
    margin-bottom: 12px;
}

.pd-description p {
    line-height: 1.8;
    font-size: 1rem;
}

.pd-amenities {
    margin-bottom: 40px;
}

.pd-amenity-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    list-style: none;
    padding: 0;
}

.pd-amenity-list li {
    font-family: 'Grift', sans-serif;
    font-size: 0.85rem;
    background-color: var(--beige);
    padding: 6px 14px;
    border-radius: 20px;
}

.pd-contact-btn {
    display: inline-block;
    font-family: 'Grift', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    background-color: var(--red);
    color: var(--white);
    padding: 16px 40px;
    border-radius: 8px;
    text-decoration: none;
    transition: background-color 0.2s ease;
    margin-bottom: 40px;
}

.pd-contact-btn:hover {
    background-color: var(--black);
}

@media (max-width: 768px) {
    .property-section {
        padding: 60px 24px;
    }

    .pd-main-img {
        height: 280px;
    }

    .pd-gallery {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ── BLOG POST PAGE ── */

.post-section {
    padding: 80px 48px;
}

.post-inner {
    max-width: 760px;
    margin: 0 auto;
}

.post-back {
    display: inline-block;
    font-family: 'Grift', sans-serif;
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--black);
    text-decoration: none;
    margin-bottom: 40px;
    opacity: 0.5;
    transition: opacity 0.2s ease;
}

.post-back:hover {
    opacity: 1;
}

.post-header {
    margin-bottom: 48px;
}

.post-header h1 {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    line-height: 1.2;
    margin-top: 12px;
}

.post-body h2 {
    font-size: 1.5rem;
    margin-top: 48px;
    margin-bottom: 16px;
}

.post-body p {
    margin-bottom: 20px;
    line-height: 1.8;
    font-size: 1.02rem;
}

.post-body a {
    color: var(--red);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.post-body a:hover {
    color: var(--black);
}

.post-callout {
    background-color: var(--beige);
    border-left: 4px solid var(--red);
    border-radius: 0 8px 8px 0;
    padding: 20px 24px;
    margin: 28px 0;
}

.post-callout p {
    margin-bottom: 0;
}

.post-callout--warning {
    border-left-color: var(--yellow);
}

.post-list {
    padding-left: 24px;
    margin-bottom: 24px;
}

.post-list li {
    font-family: 'Grift', sans-serif;
    font-size: 1.02rem;
    line-height: 1.8;
    margin-bottom: 12px;
}

.post-cta {
    margin-top: 64px;
    padding: 48px 40px;
    background-color: var(--beige);
    border-radius: 12px;
    text-align: center;
}

.post-cta h3 {
    font-size: 1.6rem;
    margin-bottom: 8px;
}

.post-cta p {
    opacity: 0.7;
    margin-bottom: 0;
}

.post-cta .hero-cta {
    border-color: var(--black);
    color: var(--black);
}

.post-cta .hero-cta:hover {
    background-color: var(--red);
    border-color: var(--red);
    color: var(--white);
}

@media (max-width: 768px) {
    .post-section {
        padding: 60px 24px;
    }
}

/* ── BLOG ── */

.blog-section {
    padding: 100px 48px;
    background-color: var(--white);
}

.blog-inner {
    max-width: 1100px;
    margin: 0 auto;
}

.blog-coming-soon {
    font-family: 'Grift', sans-serif;
    font-weight: 400;
    font-size: 1rem;
    color: var(--black);
    opacity: 0.6;
    text-align: center;
    padding: 48px 0;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.blog-card {
    border-radius: 12px;
    overflow: hidden;
    background-color: var(--beige);
    display: flex;
    flex-direction: column;
}

.blog-card-img {
    height: 200px;
    background-size: cover;
    background-position: center;
    background-color: #ccc;
}

.blog-card-body {
    padding: 28px 24px 32px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.blog-tag {
    font-family: 'Grift', sans-serif;
    font-weight: 600;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--red);
    margin-bottom: 12px;
}

.blog-card h3 {
    font-family: 'Balldoug', sans-serif;
    font-size: 1.2rem;
    margin-bottom: 12px;
    line-height: 1.3;
}

.blog-card p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--black);
    flex: 1;
    margin-bottom: 20px;
}

.blog-read-more {
    font-family: 'Grift', sans-serif;
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--red);
    text-decoration: none;
    transition: color 0.2s ease;
    align-self: flex-start;
}

.blog-read-more:hover {
    color: var(--black);
}

/* ── MOBILE ── */

@media (max-width: 768px) {
    .header-top {
        padding: 6px 24px;
    }

    .navbar {
        padding: 0 24px;
        height: 56px;
        position: relative;
    }

    .nav-logo img {
        height: 28px;
    }

    .nav-toggle {
        display: block;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        gap: 0;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: var(--white);
        padding: 8px 0;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    }

    .nav-links.open {
        display: flex;
    }

    .nav-links li {
        width: 100%;
    }

    .nav-links a {
        display: block;
        padding: 14px 24px;
        border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    }

    .hero--short {
        height: 44vh;
    }

    .about-section {
        flex-direction: column;
        align-items: center;
        padding: 60px 24px;
        gap: 32px;
    }

    .about-image {
        width: 100%;
        max-width: 340px;
        height: 420px;
    }

    .expertise-section {
        padding: 60px 24px;
    }

    .expertise-grid {
        grid-template-columns: 1fr;
    }

    .contact-section {
        padding: 60px 24px;
    }

    .contact-inner {
        flex-direction: column;
        gap: 48px;
    }

    .listings-section {
        padding: 60px 24px;
    }

    .listings-filters {
        flex-direction: column;
        align-items: stretch;
    }

    .listings-filters select,
    .listings-filters input {
        width: 100%;
    }

    .listings-grid {
        grid-template-columns: 1fr;
    }

    .blog-section {
        padding: 60px 24px;
    }

    .blog-grid {
        grid-template-columns: 1fr;
    }
}