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

body {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "SF Pro Text", sans-serif;
    color: #111111;
    background-color: #050607;
    line-height: 1.6;
}

/* Layout */

.container {
    width: 100%;
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 16px;
}

.section {
    padding: 72px 0;
    background-color: #050607;
    color: #f5f5f5;
}

.section.alt {
    background: radial-gradient(circle at top left, #222638, #050607 50%);
}

.center {
    text-align: center;
}

.section-intro {
    max-width: 640px;
    margin: 8px auto 32px;
    color: #cccccc;
}

/* Header & Navigation */

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(18px);
    background: rgba(5, 6, 7, 0.92);
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 16px;
}

.logo-block {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-mark {
    width: 34px;
    height: 34px;
    border-radius: 999px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(circle at 30% 0%, #f5e6b2, #c99f3b 55%, #6a5220 100%);
    color: #050607;
    font-size: 22px;
    font-weight: 700;
}

.logo-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.brand-name {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #f8f5ec;
}

.brand-subtitle {
    font-size: 11px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #a59c7d;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 18px;
    font-size: 14px;
}

.main-nav a {
    text-decoration: none;
    color: #e2e2e2;
    padding: 6px 4px;
    transition: color 0.15s ease, transform 0.15s ease;
}

.main-nav a:hover {
    color: #f5e6b2;
    transform: translateY(-1px);
}

.nav-cta {
    padding: 7px 16px;
    border-radius: 999px;
    border: 1px solid rgba(249, 228, 163, 0.32);
    background: linear-gradient(135deg, rgba(249, 228, 163, 0.12), rgba(0, 0, 0, 0.6));
}

/* Hero */

.hero {
    padding: 72px 0 80px;
    background:
        radial-gradient(circle at top left, rgba(250, 230, 170, 0.08), transparent 55%),
        radial-gradient(circle at bottom right, rgba(111, 149, 255, 0.16), transparent 55%),
        #050607;
}

.hero-content {
    display: grid;
    grid-template-columns: minmax(0, 3fr) minmax(0, 2.4fr);
    gap: 40px;
    align-items: center;
}

.hero-text h1 {
    font-size: clamp(32px, 4vw, 40px);
    line-height: 1.1;
    letter-spacing: 0.02em;
    color: #f8f5ec;
    margin-bottom: 14px;
}

.hero-text p {
    color: #d2d2d2;
    max-width: 520px;
    margin-bottom: 24px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

/* Buttons */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 11px 20px;
    border-radius: 999px;
    border: 1px solid transparent;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    text-decoration: none;
    transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, border-color 0.15s ease;
}

.btn.primary {
    background: radial-gradient(circle at 20% 0%, #f7e7b8, #c29a34 52%, #6f5220 100%);
    color: #111111;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.45);
}

.btn.primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 14px 36px rgba(0, 0, 0, 0.55);
}

.btn.ghost {
    border-color: rgba(249, 228, 163, 0.4);
    background: transparent;
    color: #f5e6b2;
}

.btn.ghost:hover {
    background: rgba(249, 228, 163, 0.08);
}

.btn.full-width {
    width: 100%;
}

/* Hero card */

.hero-card {
    background: rgba(10, 12, 16, 0.92);
    border-radius: 18px;
    padding: 24px 22px;
    border: 1px solid rgba(250, 230, 170, 0.18);
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.55);
}

.hero-card h2 {
    font-size: 18px;
    margin-bottom: 12px;
    color: #f8f5ec;
}

.hero-card ul {
    margin-left: 18px;
    margin-bottom: 10px;
    color: #d4d4d4;
    font-size: 14px;
}

.hero-note {
    font-size: 13px;
    color: #b3b3b3;
}

/* About */

.two-column {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr);
    gap: 40px;
    align-items: start;
}

.section h2 {
    font-size: 26px;
    margin-bottom: 14px;
    color: #f8f5ec;
}

.section p {
    color: #d3d3d3;
    margin-bottom: 12px;
}

.about-highlights {
    display: grid;
    gap: 16px;
}

.about-card {
    background: rgba(15, 17, 21, 0.95);
    border-radius: 14px;
    padding: 16px 16px 14px;
    border: 1px solid rgba(250, 230, 170, 0.14);
}

.about-card h3 {
    font-size: 16px;
    margin-bottom: 6px;
    color: #f8f5ec;
}

.about-card p {
    font-size: 14px;
    color: #c7c7c7;
}

/* Services & Cards */

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.card {
    background: rgba(12, 14, 19, 0.96);
    border-radius: 16px;
    padding: 20px 18px 16px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.55);
}

.card h3 {
    font-size: 18px;
    margin-bottom: 6px;
    color: #f7f3e0;
}

.card p {
    font-size: 14px;
    color: #cfcfcf;
    margin-bottom: 10px;
}

.check-list {
    list-style: none;
    margin-top: 2px;
}

.check-list li {
    position: relative;
    padding-left: 18px;
    font-size: 13px;
    color: #bbbbbb;
    margin-bottom: 4px;
}

.check-list li::before {
    content: "•";
    position: absolute;
    left: 5px;
    top: -1px;
    color: #f5e6b2;
}

/* Listings */

.listing-grid {
    margin-top: 10px;
}

.listing-card {
    background: rgba(10, 12, 16, 0.98);
    border-radius: 16px;
    border: 1px solid rgba(250, 230, 170, 0.16);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    min-height: 260px;
}

.listing-image {
    height: 160px;
    width: 100%;
}

.placeholder-image {
    display: flex;
    align-items: center;
    justify-content: center;
    background: repeating-linear-gradient(
        45deg,
        rgba(249, 228, 163, 0.08),
        rgba(249, 228, 163, 0.08) 10px,
        rgba(249, 228, 163, 0.02) 10px,
        rgba(249, 228, 163, 0.02) 20px
    );
    color: #f5e6b2;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.16em;
}

.listing-body {
    padding: 16px 16px 14px;
}

.listing-body h3 {
    font-size: 17px;
    margin-bottom: 4px;
}

.listing-location {
    font-size: 13px;
    color: #c0c0c0;
    margin-bottom: 6px;
}

.listing-price {
    font-size: 14px;
    color: #f5e6b2;
    margin-bottom: 8px;
}

.listing-details {
    list-style: none;
    padding-left: 0;
    font-size: 13px;
    color: #cfcfcf;
}

/* Process */

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
    margin-top: 24px;
}

.step {
    background: rgba(11, 13, 18, 0.96);
    border-radius: 14px;
    padding: 16px 14px 14px;
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 600;
    color: #111111;
    background: radial-gradient(circle at 30% 0%, #f7e7b8, #c29a34 60%, #6f5220 100%);
    margin-bottom: 6px;
}

.step h3 {
    font-size: 15px;
    margin-bottom: 4px;
    color: #f8f5ec;
}

.step p {
    font-size: 13px;
    color: #c9c9c9;
}

/* Contact */

.contact-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
    gap: 30px;
    align-items: start;
}

.contact-info p {
    font-size: 14px;
    color: #d3d3d3;
    margin-bottom: 6px;
}

.contact-note {
    font-size: 12px;
    color: #b0b0b0;
    margin-top: 8px;
}

.contact-form {
    background: rgba(12, 14, 19, 0.98);
    border-radius: 16px;
    padding: 18px 16px 16px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.6);
    display: grid;
    gap: 10px;
}

.contact-form label {
    display: grid;
    gap: 4px;
    font-size: 13px;
    color: #f0f0f0;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(8, 9, 13, 0.96);
    color: #f5f5f5;
    padding: 8px 9px;
    font-size: 14px;
    outline: none;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    border-color: rgba(249, 228, 163, 0.7);
    box-shadow: 0 0 0 1px rgba(249, 228, 163, 0.25);
}

.small-print {
    font-size: 11px;
    color: #9e9e9e;
    margin-top: 4px;
}

/* Footer */

.site-footer {
    padding: 18px 0 24px;
    background: #050607;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.footer-content {
    text-align: center;
    font-size: 12px;
    color: #8d8d8d;
}

.footer-sub {
    margin-top: 4px;
}

/* Responsive */

@media (max-width: 880px) {
    .hero-content {
        grid-template-columns: minmax(0, 1fr);
    }

    .hero-card {
        margin-top: 10px;
    }

    .two-column,
    .grid-3,
    .process-grid,
    .contact-grid {
        grid-template-columns: minmax(0, 1fr);
    }

    .nav-container {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .main-nav {
        width: 100%;
        justify-content: flex-start;
        flex-wrap: wrap;
        gap: 10px 14px;
    }
}

@media (max-width: 600px) {
    .section {
        padding: 56px 0;
    }

    .hero {
        padding: 56px 0 64px;
    }

    .card,
    .listing-card,
    .contact-form {
        border-radius: 14px;
    }
}
