/* Main Styles for Alchemy Properties */

/* General Styles */
:root {
    --primary-color: #2e7d32; /* Rich green for real estate */
    --primary-light: #60ad5e;
    --primary-dark: #005005;
    --secondary-color: #455a64;
    --secondary-light: #718792;
    --secondary-dark: #1c313a;
    --accent-color: #ff6d00;
    --accent-light: #ff9e40;
    --accent-dark: #c43e00;
    --light-color: #f8f9fa;
    --dark-color: #343a40;
    --success-color: #28a745;
    --info-color: #17a2b8;
    --warning-color: #ffc107;
    --danger-color: #dc3545;
    --gray-100: #f8f9fa;
    --gray-200: #e9ecef;
    --gray-300: #dee2e6;
    --gray-600: #6c757d;
    --gray-800: #343a40;
    --box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    --box-shadow-hover: 0 8px 25px rgba(0, 0, 0, 0.15);
    --transition: all 0.3s ease;
}

body {
    font-family: 'Poppins', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #333;
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--primary-dark);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--gray-100);
}

::-webkit-scrollbar-thumb {
    background: var(--gray-300);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--gray-600);
}

/* Override Bootstrap colors */
.bg-primary {
    background-color: var(--primary-color) !important;
}

.bg-secondary {
    background-color: var(--secondary-color) !important;
}

.bg-accent {
    background-color: var(--accent-color) !important;
}

.text-primary {
    color: var(--primary-color) !important;
}

.text-secondary {
    color: var(--secondary-color) !important;
}

.text-accent {
    color: var(--accent-color) !important;
}

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    font-weight: 500;
    letter-spacing: 0.3px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.btn-primary:hover, .btn-primary:focus {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
    font-weight: 500;
    letter-spacing: 0.3px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.btn-secondary:hover, .btn-secondary:focus {
    background-color: var(--secondary-dark);
    border-color: var(--secondary-dark);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
    transform: translateY(-2px);
}

.btn-accent {
    background-color: var(--accent-color);
    border-color: var(--accent-color);
    color: white;
    font-weight: 500;
    letter-spacing: 0.3px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.btn-accent:hover, .btn-accent:focus {
    background-color: var(--accent-dark);
    border-color: var(--accent-dark);
    color: white;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
    transform: translateY(-2px);
}

.btn-outline-primary {
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-outline-primary:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn {
    border-radius: 4px;
    padding: 0.5rem 1.25rem;
}

.btn-lg {
    padding: 0.75rem 1.5rem;
    font-size: 1.1rem;
}

/* Navbar */
.navbar {
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 0.75rem 1rem;
}

.navbar-brand {
    font-weight: 700;
    font-size: 1.5rem;
    letter-spacing: -0.5px;
}

.navbar-brand strong {
    color: var(--primary-color);
}

.navbar-dark .navbar-nav .nav-link {
    color: rgba(255, 255, 255, 0.85);
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    transition: var(--transition);
}

.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link:focus {
    color: white;
    background-color: rgba(255, 255, 255, 0.1);
}

.navbar-dark .navbar-nav .nav-link.active {
    color: white;
    background-color: rgba(255, 255, 255, 0.15);
}

/* Hero Section */
.hero-section {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('../img/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    padding: 100px 0;
    color: white;
    position: relative;
}

.hero-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50px;
    background: linear-gradient(to top right, white 0%, white 50%, transparent 50%);
}

.hero-section h1 {
    font-weight: 700;
    font-size: 3rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-section p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
    max-width: 600px;
}

.hero-section .btn {
    margin-right: 0.5rem;
    margin-bottom: 0.5rem;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
}

.hero-section .card {
    border: none;
    border-radius: 8px;
    box-shadow: var(--box-shadow);
}

@media (min-width: 992px) {
    .hero-section {
        padding: 150px 0 130px;
    }
    
    .hero-section h1 {
        font-size: 3.5rem;
    }
}

/* Property Cards */
.property-card {
    border: none;
    border-radius: 8px;
    overflow: hidden;
    transition: var(--transition);
    height: 100%;
    box-shadow: var(--box-shadow);
}

.property-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--box-shadow-hover);
}

.property-card .card-img-top {
    height: 220px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.property-card:hover .card-img-top {
    transform: scale(1.05);
}

.property-card .card-body {
    padding: 1.5rem;
}

.property-card .card-title {
    font-weight: 600;
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.property-card .card-text {
    color: var(--gray-600);
    margin-bottom: 1rem;
}

.property-card .card-footer {
    background-color: transparent;
    border-top: 1px solid var(--gray-200);
    padding: 1rem 1.5rem;
}

.property-features {
    font-size: 0.9rem;
    color: var(--gray-600);
}

.property-features i {
    color: var(--primary-color);
    margin-right: 0.25rem;
}

.property-price {
    font-weight: 700;
    font-size: 1.3rem;
    color: var(--primary-color);
}

.property-location {
    font-size: 0.9rem;
    margin-bottom: 0.75rem;
}

.property-location i {
    color: var(--accent-color);
}

/* Section Styling */
.section-title {
    position: relative;
    font-weight: 700;
    margin-bottom: 2.5rem;
    padding-bottom: 1rem;
    text-align: center;
}

.section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    height: 4px;
    width: 50px;
    background-color: var(--primary-color);
    border-radius: 2px;
}

.section-subtitle {
    text-align: center;
    color: var(--gray-600);
    margin-top: -1.5rem;
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

section {
    padding: 5rem 0;
    position: relative;
}

.section-shape-top {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.section-shape-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

/* Services Section */
.service-card {
    text-align: center;
    padding: 2.5rem 1.5rem;
    border-radius: 8px;
    background-color: #fff;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    height: 100%;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--box-shadow-hover);
}

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(46, 125, 50, 0.1);
    border-radius: 50%;
}

.service-icon i {
    font-size: 2rem;
    color: var(--primary-color);
}

.service-title {
    font-weight: 600;
    margin-bottom: 1rem;
}

.service-description {
    color: var(--gray-600);
}

/* Forms */
.form-control {
    padding: 0.75rem 1rem;
    border-radius: 4px;
    border: 1px solid var(--gray-300);
    transition: var(--transition);
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.25rem rgba(46, 125, 50, 0.25);
}

.form-label {
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: var(--gray-800);
}

.form-select {
    padding: 0.75rem 1rem;
    border-radius: 4px;
    border: 1px solid var(--gray-300);
}

/* Authentication Pages */
.auth-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 80vh;
    padding: 3rem 0;
}

.auth-card {
    border: none;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
    max-width: 900px;
    width: 100%;
}

.auth-card .card-body {
    padding: 2.5rem;
}

.auth-card h2 {
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--gray-800);
}

/* Contact Page */
.contact-info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.contact-info-item i {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-right: 1rem;
    width: 30px;
}

.contact-info-item h5 {
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.contact-info-item p {
    color: var(--gray-600);
    margin-bottom: 0;
}

.social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #f8f9fa;
    color: var(--gray-600);
    transition: var(--transition);
    margin-right: 0.5rem;
}

.social-icons a:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-3px);
}

/* Property Details Page */
.property-details-image {
    height: 450px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: var(--box-shadow);
}

.property-thumbnail {
    height: 80px;
    object-fit: cover;
    border-radius: 4px;
    cursor: pointer;
    transition: var(--transition);
    opacity: 0.7;
}

.property-thumbnail:hover,
.property-thumbnail.active {
    opacity: 1;
    box-shadow: 0 0 0 2px var(--primary-color);
}

.amenity-badge {
    margin-right: 8px;
    margin-bottom: 8px;
    padding: 0.5rem 0.75rem;
    border-radius: 4px;
    font-weight: 500;
}

/* Message System */
.message-card {
    border-radius: 8px;
    padding: 1.25rem;
    margin-bottom: 1rem;
    transition: var(--transition);
    border: 1px solid var(--gray-200);
}

.message-card:hover {
    background-color: rgba(0, 0, 0, 0.02);
    border-color: var(--gray-300);
}

.unread-message {
    background-color: rgba(46, 125, 50, 0.05);
    border-left: 4px solid var(--primary-color);
    font-weight: 500;
}

/* Footer */
footer {
    background-color: var(--secondary-dark);
    color: white;
    padding: 4rem 0 0;
}

footer h5 {
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: white;
}

footer .text-muted {
    color: rgba(255, 255, 255, 0.7) !important;
}

footer a.text-muted {
    transition: var(--transition);
}

footer a.text-muted:hover {
    color: white !important;
    text-decoration: none;
}

footer .social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
    transition: var(--transition);
    margin-right: 0.5rem;
}

footer .social-icons a:hover {
    background-color: var(--primary-color);
    transform: translateY(-3px);
}

footer .footer-bottom {
    background-color: rgba(0, 0, 0, 0.2);
    padding: 1.5rem 0;
    margin-top: 3rem;
}

/* Admin Dashboard */
.sidebar {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    z-index: 100;
    padding: 0;
    box-shadow: inset -1px 0 0 rgba(0, 0, 0, .1);
    background-color: #fff;
}

.sidebar-sticky {
    position: sticky;
    top: 0;
    height: 100vh;
    padding-top: 0.5rem;
    overflow-x: hidden;
    overflow-y: auto;
}

.admin-content {
    padding-top: 1.5rem;
}

.sidebar .nav-link {
    padding: 0.75rem 1.25rem;
    color: var(--gray-800);
    font-weight: 500;
    border-left: 3px solid transparent;
}

.sidebar .nav-link:hover {
    background-color: rgba(0, 0, 0, 0.05);
}

.sidebar .nav-link.active {
    color: var(--primary-color);
    background-color: rgba(46, 125, 50, 0.1);
    border-left-color: var(--primary-color);
}

.sidebar .nav-link i {
    margin-right: 0.5rem;
    color: var(--gray-600);
}

.sidebar .nav-link.active i {
    color: var(--primary-color);
}

/* Dashboard Stats */
.stat-card {
    border: none;
    border-radius: 8px;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    overflow: hidden;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--box-shadow-hover);
}

.border-left-primary {
    border-left: 4px solid var(--primary-color) !important;
}

.border-left-success {
    border-left: 4px solid var(--success-color) !important;
}

.border-left-info {
    border-left: 4px solid var(--info-color) !important;
}

.border-left-warning {
    border-left: 4px solid var(--warning-color) !important;
}

/* Utilities */
.bg-light-gradient {
    background: linear-gradient(to right, #f8f9fa, #e9ecef);
}

.text-shadow {
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.border-dashed {
    border-style: dashed !important;
}

.rounded-lg {
    border-radius: 8px !important;
}

.shadow-sm {
    box-shadow: var(--box-shadow) !important;
}

.shadow-lg {
    box-shadow: var(--box-shadow-hover) !important;
}

/* Animations */
.fade-in {
    animation: fadeIn 0.5s ease-in;
}

.slide-up {
    animation: slideUp 0.5s ease-out;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideUp {
    from { transform: translateY(30px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

/* Diaspora section */
.diaspora-section {
    background-color: var(--gray-100);
    padding: 5rem 0;
    position: relative;
}

.diaspora-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 50px;
    background: linear-gradient(to bottom right, white 0%, white 50%, transparent 50%);
}

.diaspora-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50px;
    background: linear-gradient(to top left, white 0%, white 50%, transparent 50%);
}

.diaspora-section img {
    border-radius: 8px;
    box-shadow: var(--box-shadow);
}

.diaspora-section h2 {
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--gray-800);
}

.diaspora-section .lead {
    color: var(--gray-600);
    margin-bottom: 1.5rem;
}

.diaspora-section ul li {
    margin-bottom: 1rem;
    color: var(--gray-800);
}

.diaspora-section ul li i {
    color: var(--primary-color);
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 100%);
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../img/pattern.png');
    opacity: 0.1;
}

.cta-section h2 {
    font-weight: 700;
    margin-bottom: 1rem;
    color: white;
}

.cta-section p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    font-size: 1.2rem;
}

.cta-section .btn {
    margin-right: 0.5rem;
    margin-bottom: 0.5rem;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.back-to-top:hover {
    background-color: var(--primary-dark);
    color: white;
    transform: translateY(-3px);
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top i {
    font-size: 1.2rem;
}


/* Newsletter Subscription */
.newsletter-form {
    position: relative;
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-form .form-control {
    padding-right: 120px;
    height: 50px;
}

.newsletter-form .btn {
    position: absolute;
    right: 5px;
    top: 5px;
    height: 40px;
}

/* Property Card Badge */
.property-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    z-index: 1;
    padding: 8px 15px;
    font-weight: 600;
    font-size: 12px;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: 4px;
}

.badge-featured {
    background-color: var(--accent-color);
    color: white;
}

.badge-new {
    background-color: var(--primary-color);
    color: white;
}

.badge-sold {
    background-color: var(--secondary-dark);
    color: white;
}

/* Floating Labels for Form Inputs */
.form-floating > .form-control:focus ~ label,
.form-floating > .form-control:not(:placeholder-shown) ~ label,
.form-floating > .form-select ~ label {
    color: var(--primary-color);
}

/* Footer Bottom */
.footer-bottom {
    background-color: rgba(0, 0, 0, 0.2);
    color: rgba(255, 255, 255, 0.7);
}

/* Ribbon for Featured Properties */
.ribbon {
    width: 150px;
    height: 150px;
    overflow: hidden;
    position: absolute;
    z-index: 1;
    top: -10px;
    right: -10px;
}

.ribbon::before,
.ribbon::after {
    position: absolute;
    z-index: -1;
    content: '';
    display: block;
    border: 5px solid var(--accent-dark);
}

.ribbon span {
    position: absolute;
    display: block;
    width: 225px;
    padding: 8px 0;
    background-color: var(--accent-color);
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    color: white;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    text-align: center;
    right: -25px;
    top: 30px;
    transform: rotate(45deg);
}

/* Media Queries */
@media (max-width: 991.98px) {
    .navbar-nav .nav-link {
        padding: 0.5rem 0;
    }
    
    .hero-section h1 {
        font-size: 2.5rem;
    }
    
    .hero-section p {
        font-size: 1.1rem;
    }
    
    .service-card {
        margin-bottom: 2rem;
    }
    
    .diaspora-section img {
        margin-top: 2rem;
    }
    
    .back-to-top {
        width: 40px;
        height: 40px;
        bottom: 20px;
        right: 20px;
    }
}

@media (max-width: 767.98px) {
    section {
        padding: 3rem 0;
    }
    
    .hero-section {
        padding: 80px 0 60px;
        text-align: center;
    }
    
    .hero-section h1 {
        font-size: 2rem;
    }
    
    .property-card {
        margin-bottom: 1.5rem;
    }
    
    .auth-card .card-body {
        padding: 2rem 1.5rem;
    }
    
    .property-details-image {
        height: 300px;
    }
    
    .footer .logo {
        text-align: center;
    }
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    left: 20px;
    background-color: #25D366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px rgba(0,0,0,0.2);
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    background-color: #128C7E;
    color: white;
    transform: scale(1.1);
}

/* Alchemy Properties homepage redesign */
:root {
    --alchemy-forest: #244638;
    --alchemy-deep: #18382b;
    --alchemy-gold: #d99f3d;
    --alchemy-gold-light: #e8b95d;
    --alchemy-cream: #f7f4ed;
    --alchemy-sand: #e9dfcc;
    --alchemy-ink: #213c30;
    --alchemy-muted: #536158;
}

html {
    scroll-behavior: smooth;
}

.site-body {
    background: var(--alchemy-cream);
    color: var(--alchemy-ink);
    font-family: 'DM Sans', 'Segoe UI', sans-serif;
}

.site-body h1,
.site-body h2,
.site-body h3,
.site-body h4,
.site-body h5,
.site-body h6 {
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 400;
    letter-spacing: -0.035em;
}

.site-body a {
    text-decoration: none;
}

.site-nav {
    min-height: 82px;
    padding: 1rem 0;
    z-index: 1000;
    transition: background-color 0.25s ease, box-shadow 0.25s ease;
}

.site-nav--overlay {
    position: absolute;
    inset: 0 0 auto;
    background: transparent;
}

.site-nav--solid {
    background: var(--alchemy-deep);
    box-shadow: 0 8px 28px rgba(24, 56, 43, 0.12);
}

.site-nav__inner {
    max-width: 1320px;
}

.site-brand {
    display: inline-flex;
    align-items: center;
    padding: 0.45rem 0.7rem;
    background: rgba(247, 244, 237, 0.96);
    border-radius: 2px;
}

.site-brand img {
    width: auto;
    height: 38px;
}

.site-nav__links,
.site-nav__actions {
    gap: 0.35rem;
}

.site-nav .nav-link {
    padding: 0.7rem 0.85rem;
    color: rgba(255, 255, 255, 0.92);
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.01em;
}

.site-nav .nav-link:hover,
.site-nav .nav-link:focus {
    color: var(--alchemy-gold-light);
}

.site-nav__contact,
.site-nav__signin {
    white-space: nowrap;
}

.site-nav__account {
    white-space: nowrap;
}

.site-nav__role {
    display: inline-block;
    margin-left: 0.35rem;
    padding: 0.15rem 0.4rem;
    border-radius: 100px;
    background: var(--alchemy-gold);
    color: var(--alchemy-deep);
    font-size: 0.62rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.site-nav__cta {
    display: inline-flex;
    align-items: center;
    min-height: 42px;
    margin-left: 0.3rem;
    padding: 0.7rem 1.15rem;
    border-radius: 100px;
    background: var(--alchemy-gold-light);
    color: var(--alchemy-deep);
    font-size: 0.8rem;
    font-weight: 700;
    white-space: nowrap;
    transition: transform 0.2s ease, background-color 0.2s ease;
}

.site-nav__cta:hover {
    background: #f0c973;
    color: var(--alchemy-deep);
    transform: translateY(-1px);
}

.site-nav__toggle {
    border: 1px solid rgba(255, 255, 255, 0.45);
    padding: 0.45rem 0.65rem;
}

.site-nav__toggle .navbar-toggler-icon {
    width: 1.2rem;
    height: 1.2rem;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255,255,255,0.95)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.site-nav .dropdown-menu {
    margin-top: 0.6rem;
    padding: 0.5rem;
    border-radius: 0.6rem;
}

.site-nav .dropdown-item {
    border-radius: 0.35rem;
    padding: 0.6rem 0.75rem;
    font-size: 0.82rem;
}

.site-flash {
    position: relative;
    z-index: 20;
}

.home-page .site-flash:empty {
    display: none;
}

.home-hero {
    position: relative;
    min-height: 760px;
    overflow: hidden;
    background: var(--alchemy-forest);
    color: var(--alchemy-cream);
}

.home-hero__image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 52%;
    opacity: 0.76;
}

.home-hero__shade {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(14, 43, 31, 0.97) 0%, rgba(22, 57, 43, 0.82) 43%, rgba(22, 57, 43, 0.2) 84%),
        linear-gradient(0deg, rgba(14, 43, 31, 0.88), rgba(14, 43, 31, 0.12) 58%, rgba(14, 43, 31, 0.35));
}

.home-hero__content {
    position: relative;
    z-index: 1;
    display: flex;
    min-height: 760px;
    flex-direction: column;
    justify-content: flex-end;
    max-width: 1320px;
    padding: 8rem 1rem 4.25rem;
}

.home-hero__copy {
    max-width: 720px;
}

.eyebrow {
    margin: 0 0 1rem;
    color: #526157;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    line-height: 1.3;
    text-transform: uppercase;
}

.eyebrow span {
    display: inline-block;
    width: 2rem;
    height: 1px;
    margin-right: 0.55rem;
    vertical-align: middle;
    background: currentColor;
}

.eyebrow--gold {
    color: #bd822d;
}

.eyebrow--cream {
    color: #fff1cf;
}

.eyebrow--brown {
    color: #8b5b1d;
}

.home-hero .eyebrow {
    color: var(--alchemy-gold-light);
}

.home-hero h1 {
    max-width: 710px;
    margin: 0;
    color: var(--alchemy-cream);
    font-size: clamp(3.3rem, 7vw, 6.8rem);
    line-height: 0.92;
}

.home-hero h1 em,
.home-section-heading h2 em,
.home-why h2 em,
.home-journal h2 em {
    color: var(--alchemy-gold-light);
    font-style: italic;
}

.home-hero__intro {
    max-width: 500px;
    margin: 1.8rem 0 0;
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.1rem;
    line-height: 1.75;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.45);
}

.home-search-card {
    max-width: 1040px;
    margin-top: 2.8rem;
    padding: 0.85rem;
    background: var(--alchemy-cream);
    box-shadow: 0 20px 60px rgba(12, 38, 27, 0.35);
    color: var(--alchemy-ink);
}

.home-search-tabs {
    display: flex;
    gap: 0.35rem;
    padding: 0 0.45rem 0.55rem;
    border-bottom: 1px solid #dcd9cf;
}

.home-search-tab {
    position: relative;
    border: 0;
    padding: 0.55rem 0.8rem;
    background: transparent;
    color: #879086;
    font-size: 0.85rem;
    font-weight: 700;
}

.home-search-tab.is-active {
    color: var(--alchemy-ink);
}

.home-search-tab.is-active::after {
    position: absolute;
    right: 0.75rem;
    bottom: -0.65rem;
    left: 0.75rem;
    height: 2px;
    background: var(--alchemy-gold);
    content: '';
}

.home-search-form {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr auto;
    gap: 0.6rem;
    margin: 0;
    padding-top: 0.7rem;
}

.home-search-field {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    min-height: 60px;
    margin: 0;
    padding: 0.65rem 0.9rem;
    border: 1px solid #dcd9cf;
    background: #fcfbf7;
    color: var(--alchemy-ink);
}

.home-search-field > i {
    flex: 0 0 auto;
    color: #bd822d;
}

.home-search-field > span {
    min-width: 0;
    flex: 1;
}

.home-search-label {
    display: block;
    color: #53645a;
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.home-search-field input,
.home-search-field select {
    width: 100%;
    margin-top: 0.2rem;
    border: 0;
    outline: 0;
    background: transparent;
    color: var(--alchemy-ink);
    font-size: 0.88rem;
    font-weight: 600;
}

.home-search-field input::placeholder {
    color: #536158;
    opacity: 1;
}

.home-search-submit {
    min-height: 60px;
    border: 0;
    padding: 0 1.35rem;
    background: var(--alchemy-gold);
    color: var(--alchemy-deep);
    font-size: 0.86rem;
    font-weight: 700;
    white-space: nowrap;
    transition: background-color 0.2s ease, transform 0.2s ease;
}

.home-search-submit:hover {
    background: var(--alchemy-gold-light);
    transform: translateY(-1px);
}

.home-trust {
    margin: 1.1rem 0 0;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.76rem;
    font-weight: 600;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.45);
}

.home-trust i {
    margin-right: 0.35rem;
    color: var(--alchemy-gold-light);
}

.home-proof-strip {
    border-bottom: 1px solid #dedbd1;
    background: var(--alchemy-cream);
}

.home-proof-strip__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    max-width: 1320px;
    padding: 1.75rem 1rem;
}

.home-proof-strip .eyebrow {
    margin: 0;
}

.home-proof-list {
    display: flex;
    flex-wrap: wrap;
    gap: 1.25rem 2.5rem;
    color: #2e4638;
    font-size: 0.85rem;
    font-weight: 600;
}

.home-proof-list i {
    margin-right: 0.35rem;
    color: #ba7c2a;
}

.home-section {
    padding: 7rem 0;
}

.home-section > .container,
.home-services__grid,
.home-journal > .container,
.home-diaspora__inner {
    max-width: 1320px;
}

.home-section-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 2rem;
}

.home-section-heading h2,
.home-why h2,
.home-services__lead h2,
.home-diaspora h2 {
    margin: 0;
    color: var(--alchemy-forest);
    font-size: clamp(2.45rem, 4.2vw, 4.5rem);
    line-height: 1.03;
}

.home-section-heading h2 em,
.home-why h2 em {
    color: #b8792b;
}

.home-text-link {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    flex: 0 0 auto;
    color: var(--alchemy-forest);
    font-size: 0.86rem;
    font-weight: 700;
}

.home-text-link i {
    transition: transform 0.2s ease;
}

.home-text-link:hover {
    color: #8b5b1d;
}

.home-text-link:hover i {
    transform: translateX(0.2rem);
}

.home-text-link--light {
    color: var(--alchemy-cream);
}

.home-property-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.home-property-card {
    overflow: hidden;
    background: #eeece3;
}

.home-property-card__image {
    position: relative;
    display: block;
    aspect-ratio: 1.38;
    overflow: hidden;
    background: #c4c8be;
}

.home-property-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.home-property-card:hover .home-property-card__image img {
    transform: scale(1.045);
}

.home-property-card__tag {
    position: absolute;
    top: 1.2rem;
    left: 1.2rem;
    padding: 0.42rem 0.7rem;
    border-radius: 100px;
    background: var(--alchemy-cream);
    color: var(--alchemy-forest);
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.home-property-card__arrow {
    position: absolute;
    top: 1.1rem;
    right: 1.1rem;
    display: grid;
    width: 2.55rem;
    height: 2.55rem;
    place-items: center;
    border-radius: 50%;
    background: rgba(247, 244, 237, 0.94);
    color: var(--alchemy-forest);
    transition: background-color 0.2s ease, transform 0.2s ease;
}

.home-property-card:hover .home-property-card__arrow {
    background: var(--alchemy-gold-light);
    transform: translate(0.1rem, -0.1rem);
}

.home-property-card__body {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 1.25rem;
    padding: 1.5rem 1.7rem 1.7rem;
}

.home-property-card h3 {
    margin: 0;
    font-size: 1.75rem;
}

.home-property-card h3 a {
    color: var(--alchemy-forest);
}

.home-property-card h3 a:hover {
    color: #8b5b1d;
}

.home-property-card__location {
    margin: 0.55rem 0 0;
    color: #536158;
    font-size: 0.82rem;
    font-weight: 500;
}

.home-property-card__location i {
    margin-right: 0.25rem;
    color: #b8792b;
}

.home-property-card__features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem 0.9rem;
    margin-top: 1rem;
    color: #536158;
    font-size: 0.72rem;
}

.home-property-card__features i {
    margin-right: 0.2rem;
    color: #b8792b;
}

.home-property-card__price {
    flex: 0 0 auto;
    text-align: right;
}

.home-property-card__price strong {
    display: block;
    color: var(--alchemy-forest);
    font-size: 1.1rem;
}

.home-property-card__status {
    display: inline-block;
    margin-top: 0.35rem;
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.home-property-card__status--sale {
    color: #8b5b1d;
}

.home-property-card__status--rent {
    color: #32614b;
}

.home-empty-state {
    margin-top: 3rem;
    padding: 2rem;
    border: 1px solid #dedbd1;
    color: var(--alchemy-muted);
}

.home-centered-action {
    margin-top: 2rem;
    text-align: center;
}

.home-button,
.site-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.55rem;
    min-height: 46px;
    padding: 0.75rem 1.2rem;
    border: 1px solid transparent;
    border-radius: 100px;
    font-size: 0.82rem;
    font-weight: 700;
    transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.home-button:hover,
.site-button:hover {
    transform: translateY(-1px);
}

.home-button--outline {
    border-color: var(--alchemy-forest);
    color: var(--alchemy-forest);
}

.home-button--outline:hover {
    background: var(--alchemy-forest);
    color: var(--alchemy-cream);
}

.home-button--dark {
    background: var(--alchemy-forest);
    color: var(--alchemy-cream);
}

.home-button--dark:hover {
    background: #32614b;
    color: var(--alchemy-cream);
}

.home-services {
    background: var(--alchemy-sand);
}

.home-services__grid {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    margin: 0 auto;
}

.home-services__lead {
    display: flex;
    min-height: 600px;
    flex-direction: column;
    justify-content: space-between;
    padding: 4rem;
    background: #c98e36;
}

.home-services__spark {
    color: #fff1cf;
    font-size: 1.8rem;
}

.home-services__lead h2 {
    max-width: 420px;
    color: var(--alchemy-forest);
    font-size: clamp(2.5rem, 4vw, 4rem);
}

.home-services__lead > p {
    max-width: 350px;
    margin: 0;
    color: rgba(36, 70, 56, 0.9);
    font-size: 0.9rem;
    font-weight: 500;
    line-height: 1.65;
}

.home-service-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.home-service-card {
    padding: 2.5rem;
    border-bottom: 1px solid #d2c5ad;
}

.home-service-card:nth-child(odd) {
    border-right: 1px solid #d2c5ad;
}

.home-service-card:nth-child(3),
.home-service-card:nth-child(4) {
    border-bottom: 0;
}

.home-service-card > i {
    display: block;
    margin-bottom: 3rem;
    color: #b8792b;
    font-size: 1.5rem;
}

.home-service-card h3 {
    margin: 0;
    color: var(--alchemy-forest);
    font-size: 1.75rem;
}

.home-service-card p {
    max-width: 270px;
    margin: 0.75rem 0 0;
    color: #4e5e52;
    font-size: 0.86rem;
    font-weight: 500;
    line-height: 1.7;
}

.home-service-card a {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    margin-top: 1.5rem;
    color: #8b5b1d;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.home-why__grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    align-items: center;
    gap: 5rem;
    max-width: 1320px;
}

.home-why h2 {
    font-size: clamp(2.5rem, 4.5vw, 4.5rem);
}

.home-body-copy {
    max-width: 475px;
    margin: 1.7rem 0 0;
    color: #4e5e52;
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.8;
}

.home-why .home-button {
    margin-top: 2rem;
}

.home-stat-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem;
}

.home-stat {
    min-height: 190px;
    padding: 1.8rem;
}

.home-stat--green {
    margin-top: 2.8rem;
    background: var(--alchemy-forest);
    color: var(--alchemy-cream);
}

.home-stat--cream {
    background: var(--alchemy-sand);
}

.home-stat--gold {
    background: var(--alchemy-gold);
}

.home-stat--soft {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f0ede4;
    text-align: center;
}

.home-stat strong {
    display: block;
    color: var(--alchemy-forest);
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 3.5rem;
    font-weight: 400;
    line-height: 1;
}

.home-stat--green strong {
    color: var(--alchemy-gold-light);
}

.home-stat strong span {
    font-size: 2rem;
}

.home-stat p {
    max-width: 220px;
    margin: 1rem 0 0;
    color: #4e5e52;
    font-size: 0.84rem;
    font-weight: 500;
    line-height: 1.65;
}

.home-stat--green p {
    color: rgba(230, 238, 228, 0.95);
}

.home-stat--soft i {
    display: block;
    margin-bottom: 0.65rem;
    color: var(--alchemy-gold);
    font-size: 1.45rem;
}

.home-stat--soft strong {
    font-size: 1.45rem;
    line-height: 1.2;
}

.home-journal {
    padding: 6rem 0;
    background: var(--alchemy-forest);
    color: var(--alchemy-cream);
}

.home-journal h2 {
    color: var(--alchemy-cream);
}

.home-journal-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.home-journal-card {
    display: block;
    padding: 1.2rem 0 0;
    border-top: 1px solid #6b8171;
    color: var(--alchemy-cream);
    transition: border-color 0.2s ease, color 0.2s ease;
}

.home-journal-card:hover {
    border-color: var(--alchemy-gold-light);
    color: var(--alchemy-gold-light);
}

.home-journal-card > span {
    display: block;
    margin-bottom: 2.8rem;
    color: #9bac9b;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.15em;
}

.home-journal-card h3 {
    max-width: 310px;
    margin: 0;
    font-size: 1.65rem;
    line-height: 1.15;
}

.home-journal-card p {
    margin: 1.4rem 0 0;
    color: #a9b8aa;
    font-size: 0.72rem;
}

.home-diaspora {
    padding: 3.5rem 0;
    background: var(--alchemy-sand);
}

.home-diaspora__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.home-diaspora h2 {
    font-size: clamp(2rem, 3vw, 3.2rem);
}

.home-diaspora p:last-child {
    margin: 0.55rem 0 0;
    color: #4e5e52;
    font-size: 0.9rem;
}

.site-footer {
    background: var(--alchemy-deep);
    color: #dce5d8;
}

.site-newsletter {
    padding: 4rem 0;
    background: var(--alchemy-sand);
    color: var(--alchemy-forest);
}

.site-newsletter__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    max-width: 1320px;
}

.site-newsletter h2 {
    margin: 0;
    font-size: clamp(2rem, 3vw, 3rem);
}

.site-newsletter p:last-child {
    margin: 0.45rem 0 0;
    color: #4e5e52;
    font-size: 0.88rem;
}

.site-newsletter__form {
    width: min(100%, 480px);
}

.site-newsletter__form .input-group {
    gap: 0.5rem;
}

.site-newsletter__form .form-control {
    min-width: 0;
    border: 0;
    border-bottom: 1px solid #b9aa8d;
    border-radius: 0;
    background: transparent;
    color: var(--alchemy-forest);
    box-shadow: none;
}

.site-newsletter__form .form-control::placeholder {
    color: #7d806f;
}

.site-button--gold {
    border: 0;
    background: var(--alchemy-forest);
    color: var(--alchemy-cream);
}

.site-button--gold:hover {
    background: #32614b;
    color: var(--alchemy-cream);
}

.site-footer__main {
    padding: 4rem 0 1.5rem;
}

.site-footer__grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid #466454;
}

.site-footer__brand img {
    width: auto;
    height: 40px;
    padding: 0.1rem;
    background: var(--alchemy-cream);
}

.site-footer__brand p {
    max-width: 290px;
    margin: 1.5rem 0 0;
    color: #aebdaf;
    font-size: 0.86rem;
    line-height: 1.7;
}

.site-footer__socials {
    display: flex;
    gap: 0.55rem;
    margin-top: 1.5rem;
}

.site-footer__socials a {
    display: grid;
    width: 2.3rem;
    height: 2.3rem;
    place-items: center;
    border: 1px solid #537363;
    border-radius: 50%;
    color: #dce5d8;
}

.site-footer__socials a:hover {
    border-color: var(--alchemy-gold-light);
    color: var(--alchemy-gold-light);
}

.site-footer__heading {
    margin: 0 0 1.2rem;
    color: var(--alchemy-gold-light);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.site-footer__links {
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.site-footer__links a,
.site-footer__address {
    color: #c5d1c4;
    font-size: 0.84rem;
    line-height: 1.7;
}

.site-footer__links a:hover,
.site-footer__directions:hover {
    color: var(--alchemy-gold-light);
}

.site-footer__address {
    margin: 0;
    font-style: normal;
}

.site-footer__directions {
    display: inline-block;
    margin-top: 1.2rem;
    color: var(--alchemy-gold-light);
    font-size: 0.84rem;
    font-weight: 700;
}

.site-footer__directions i {
    margin-left: 0.25rem;
}

.site-footer__bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding-top: 1.5rem;
    color: #8fa392;
    font-size: 0.72rem;
}

.site-footer__bottom p {
    margin: 0;
}

.site-footer__bottom div {
    display: flex;
    gap: 1.2rem;
}

.site-footer__bottom a {
    color: #8fa392;
}

.site-footer__bottom a:hover {
    color: var(--alchemy-gold-light);
}

.site-body .back-to-top {
    display: grid;
    width: 2.8rem;
    height: 2.8rem;
    place-items: center;
    border-radius: 50%;
    background: var(--alchemy-gold);
    color: var(--alchemy-deep);
}

.site-body .whatsapp-float {
    width: 3.2rem;
    height: 3.2rem;
    font-size: 1.5rem;
}

@media (max-width: 1199.98px) {
    .site-nav__contact {
        display: none;
    }

    .home-search-form {
        grid-template-columns: 1fr 1fr auto;
    }

    .home-search-field--wide {
        display: none;
    }
}

@media (max-width: 991.98px) {
    .site-nav--overlay,
    .site-nav--solid {
        background: var(--alchemy-deep);
    }

    .site-nav .navbar-collapse {
        margin-top: 1rem;
        padding: 0.75rem;
        border-radius: 0.75rem;
        background: rgba(24, 56, 43, 0.98);
    }

    .site-nav__links,
    .site-nav__actions {
        gap: 0;
    }

    .site-nav__cta {
        display: inline-flex;
        margin: 0.5rem 0.75rem 0.25rem;
    }

    .home-hero,
    .home-hero__content {
        min-height: 790px;
    }

    .home-hero__content {
        padding-bottom: 3rem;
    }

    .home-services__grid {
        grid-template-columns: 1fr;
    }

    .home-services__lead {
        min-height: 460px;
    }

    .home-why__grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .site-footer__grid {
        grid-template-columns: 1.4fr 1fr 1fr;
    }

    .site-footer__grid > :last-child {
        grid-column: 2 / span 2;
    }
}

@media (max-width: 767.98px) {
    .site-nav {
        min-height: 72px;
    }

    .site-brand img {
        height: 32px;
    }

    .home-hero,
    .home-hero__content {
        min-height: 820px;
    }

    .home-hero__content {
        padding: 8rem 1rem 2.5rem;
    }

    .home-hero h1 {
        font-size: clamp(3.15rem, 15vw, 5rem);
    }

    .home-hero__intro {
        font-size: 0.95rem;
        line-height: 1.6;
    }

    .home-search-form {
        grid-template-columns: 1fr;
    }

    .home-search-field--wide {
        display: flex;
    }

    .home-search-submit {
        width: 100%;
    }

    .home-proof-strip__inner,
    .home-diaspora__inner,
    .site-newsletter__inner {
        align-items: flex-start;
        flex-direction: column;
    }

    .home-proof-list {
        flex-direction: column;
        gap: 0.7rem;
    }

    .home-section {
        padding: 4.5rem 0;
    }

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

    .home-property-grid,
    .home-journal-grid {
        grid-template-columns: 1fr;
    }

    .home-property-card__body {
        align-items: flex-start;
        flex-direction: column;
    }

    .home-property-card__price {
        text-align: left;
    }

    .home-services__lead {
        min-height: 420px;
        padding: 2.5rem 1rem;
    }

    .home-service-list {
        grid-template-columns: 1fr;
    }

    .home-service-card,
    .home-service-card:nth-child(odd) {
        border-right: 0;
        border-bottom: 1px solid #d2c5ad;
    }

    .home-service-card:last-child {
        border-bottom: 0;
    }

    .home-service-card {
        padding: 2rem 1rem;
    }

    .home-stat-grid {
        grid-template-columns: 1fr 1fr;
    }

    .home-stat {
        min-height: 160px;
        padding: 1.25rem;
    }

    .home-stat strong {
        font-size: 2.8rem;
    }

    .site-newsletter__form {
        width: 100%;
    }

    .site-newsletter__form .input-group {
        flex-wrap: nowrap;
    }

    .site-footer__grid {
        grid-template-columns: 1fr 1fr;
        gap: 2.25rem 1.5rem;
    }

    .site-footer__grid > :last-child {
        grid-column: auto;
    }

    .site-footer__bottom {
        align-items: flex-start;
        flex-direction: column;
    }
}