:root {
    --bg: #f7f3e4;
    --surface: #fffaf0;
    --surface-2: #fcf7e7;
    --text: #262626;
    --muted: #5f5f5f;
    --gold: #c9a227;
    --gold-dark: #9a751b;
    --border: #eadfa6;
    --shadow: 0 12px 35px rgba(38, 38, 38, 0.08);
    --radius: 16px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Segoe UI", Roboto, Arial, sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.7;
}

.container {
    width: min(1120px, 92%);
    margin: 0 auto;
}

.site-header {
    background: #fff;
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid var(--border);
}

.nav-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.9rem 0;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    color: var(--text);
    text-decoration: none;
    white-space: nowrap;
}

.brand-badge {
    width: 2.8rem;
    height: 2.8rem;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, var(--gold), #f5d86b);
    color: #fff;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.18em;
    border-radius: 0.78rem;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.18);
}

.brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.brand-line {
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.brand-sub {
    margin-top: 0.22rem;
    font-size: 0.64rem;
    font-weight: 700;
    letter-spacing: 0.36em;
    text-transform: uppercase;
    color: var(--muted);
}

nav {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

nav a {
    color: var(--text);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 600;
}

.button {
    display: inline-block;
    background: var(--gold);
    color: #fff;
    text-decoration: none;
    padding: 0.82rem 1rem;
    border-radius: 999px;
    font-weight: 600;
}

.button-secondary {
    background: transparent;
    color: var(--gold-dark);
    border: 1px solid var(--gold);
}

.button-small {
    padding: 0.65rem 0.9rem;
}

.hero {
    background:
        linear-gradient(90deg, rgba(247, 243, 228, 0.92), rgba(247, 243, 228, 0.82)),
        url("https://images.unsplash.com/photo-1494526585095-c41746248156?auto=format&fit=crop&w=1200&q=80") center/cover;
    padding: 5rem 0;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 1.5rem;
    align-items: center;
}

.hero-text-wrap {
    background: rgba(255, 255, 255, 0.8);
    padding: 3rem 2rem;
    border-radius: var(--radius);
    border: 1px solid var(--border);
}

.eyebrow {
    color: var(--gold-dark);
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-size: 0.78rem;
    font-weight: 700;
    margin-bottom: 0.6rem;
}

.hero h1 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 0.8rem;
    line-height: 1.2;
}

.hero-text {
    max-width: 640px;
    color: var(--muted);
    font-size: 1rem;
}

.hero-note {
    margin-top: 0.75rem;
    color: var(--muted);
    font-style: italic;
    font-size: 0.92rem;
}

.hero-actions {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    margin-top: 1.3rem;
}

.hero-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 1.5rem;
}

.section {
    padding: 3.6rem 0;
}

.section-alt {
    background: var(--surface-2);
}

.section-heading {
    margin-bottom: 1rem;
}

.section h2 {
    color: var(--gold-dark);
    font-size: 1.8rem;
    line-height: 1.3;
}

.section-copy,
.section p,
.section li,
.section a {
    color: var(--muted);
}

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

.property-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.portfolio-card,
.area-card,
.contact-panel,
.chatbot-panel,
.disclaimer-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 1.25rem;
}

.property-card {
    overflow: hidden;
    padding: 0;
}

.property-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
}

.property-card-content {
    padding: 1rem 1.1rem 1.2rem;
}

.portfolio-card h3,
.area-card h3 {
    margin-bottom: 0.4rem;
    color: var(--text);
}

.portfolio-card ul,
.area-card ul,
.contact-list,
.pill-list,
.service-list {
    list-style: none;
}

.portfolio-card li,
.area-card li,
.contact-list li,
.pill-list li,
.service-list li {
    padding: 0.2rem 0;
}

.pill-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.pill-list li {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 999px;
    padding: 0.45rem 0.7rem;
}

.service-list {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.5rem;
}

.disclaimer {
    background: #fff;
}

.contact-page {
    padding-top: 4rem;
}

.contact-header {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 2rem;
}

.contact-intro {
    margin-top: 0.5rem;
}

.contact-card-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
    align-items: stretch;
}

.contact-card {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-width: 0;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 1.5rem 1rem;
    text-align: center;
    text-decoration: none;
    transition: border-color 0.2s ease, transform 0.2s ease;
}

.contact-card:hover {
    border-color: var(--gold);
}

.contact-card h3 {
    color: var(--text);
    margin-bottom: 0.4rem;
}

.contact-card p {
    color: var(--text);
    font-weight: 600;
    margin-bottom: 0.35rem;
    word-break: break-word;
    overflow-wrap: anywhere;
}

.contact-card span {
    color: var(--muted);
    font-size: 0.9rem;
}

.contact-card:hover {
    transform: translateY(-2px);
}

.disabled-card {
    pointer-events: none;
}

.icon-circle,
.interiors-icon,
.chatbot-icon {
    width: 3rem;
    height: 3rem;
    display: grid;
    place-items: center;
    background: #f7edbf;
    border-radius: 999px;
    margin: 0 auto 0.8rem;
    font-size: 1rem;
}

.services-wrap {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 1rem;
    align-items: center;
}

.services-text h2 {
    margin-bottom: 0.8rem;
}

.service-desc {
    margin-bottom: 1rem;
}

.service-check-list {
    list-style: none;
}

.service-check-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.65rem;
    margin-bottom: 0.7rem;
}

.check-badge {
    width: 1.5rem;
    height: 1.5rem;
    display: inline-grid;
    place-items: center;
    background: #f7edbf;
    border-radius: 999px;
    color: var(--gold-dark);
    font-size: 0.9rem;
    flex-shrink: 0;
}

.interiors-panel {
    background: linear-gradient(180deg, #fffef5 0%, #fffaf0 100%);
    border: 1px solid #e9d58a;
    border-radius: var(--radius);
    box-shadow: 0 10px 28px rgba(201, 162, 39, 0.12);
    padding: 1.5rem;
    position: relative;
    overflow: hidden;
}

.interiors-panel::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 6px;
    height: 100%;
    background: linear-gradient(180deg, var(--gold), #f3d56e);
}

.interiors-top {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 1rem;
}

.interiors-top h3 {
    color: var(--text);
    margin-bottom: 0.2rem;
}

.interiors-box {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 1rem;
}

.interiors-box p,
.interiors-box a,
.interiors-box span {
    display: block;
}

.interiors-box p {
    color: var(--text);
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.interiors-box a {
    color: var(--gold-dark);
    font-weight: 700;
    text-decoration: none;
    margin-bottom: 0.4rem;
}

.chatbot-section {
    background: #fff;
}

.chatbot-panel {
    text-align: center;
    max-width: 760px;
    min-height: 220px;
    display: grid;
    place-items: center;
    gap: 0.5rem;
    padding: 2rem 1rem;
}

.chatbot-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: #f7edbf;
    color: var(--gold-dark);
    padding: 0.45rem 0.8rem;
    border-radius: 999px;
    font-weight: 600;
}

.cta-section {
    background: #1f1f1f;
}

.cta-panel {
    text-align: center;
    max-width: 860px;
}

.cta-panel h2 {
    color: #fff;
    margin-bottom: 0.6rem;
}

.cta-panel p {
    color: rgba(255, 255, 255, 0.74);
}

.cta-button {
    display: inline-flex;
    margin: 1rem auto;
    gap: 0.5rem;
}

.cta-disclaimer {
    font-size: 0.9rem;
    font-style: italic;
}

.site-footer {
    background: #fff;
    border-top: 1px solid var(--border);
    padding: 1rem 0;
    text-align: center;
}

@media (max-width: 900px) {
    .hero-grid {
        grid-template-columns: 1fr;
    }

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

    .services-wrap {
        grid-template-columns: 1fr;
    }

    .contact-card-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 768px) {
    .portfolio-grid,
    .area-grid {
        grid-template-columns: 1fr;
    }

    .nav-wrap {
        flex-direction: column;
    }

    nav {
        width: 100%;
        justify-content: center;
    }

    .contact-list li {
        grid-template-columns: 1fr;
    }

    .contact-card-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 4rem 0;
    }

    .hero-text-wrap {
        padding: 2rem 1rem;
    }

    .section {
        padding: 2.5rem 0;
    }

    .button,
    .button-secondary,
    .button-small {
        width: 100%;
        text-align: center;
    }
}
