@import url('/assets/site.css');
@import url('/assets/topbar.css');
@import url('/assets/extended-marketplace.css');

* { box-sizing: border-box; }

body {
    margin: 0;
    font-family: 'Inter', sans-serif;
    color: var(--brand-900);
    background: var(--brand-50);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

a { color: inherit; }

.btn {
    font-size: var(--text-label);
    font-weight: 700;
    text-decoration: none;
    border-radius: 9999px;
    padding: var(--header-cta-pad-y, 9px) var(--header-cta-pad-x, 14px);
    min-height: var(--header-cta-min-height, 36px);
    border: 1px solid var(--brand-200);
    color: var(--brand-900);
    background: var(--white);
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: inherit;
}

.btn.primary {
    background: var(--brand-accent);
    color: var(--white);
    border-color: var(--brand-accent);
}

.wrap {
    max-width: 56rem;
    margin: 0 auto;
    padding: var(--section-y) var(--section-x) calc(var(--section-y) + 0.5rem);
}

.property-cover {
    margin: 0 0 20px;
    border-radius: 1.5rem;
    overflow: hidden;
    border: 1px solid var(--brand-200);
    background: var(--white);
}

.property-cover img {
    display: block;
    width: 100%;
    height: clamp(240px, 45vw, 440px);
    object-fit: cover;
    object-position: center;
}

.destination-photo {
    margin: -22px -22px 18px;
    border-radius: 20px 20px 0 0;
    overflow: hidden;
}

.destination-photo img {
    display: block;
    width: 100%;
    height: 180px;
    object-fit: cover;
    object-position: center;
}

.hero {
    background: var(--white);
    border: 1px solid var(--brand-200);
    border-radius: 1.5rem;
    padding: 1.75rem 1.5rem;
    margin-bottom: 1.25rem;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
}

@media (min-width: 768px) {
    .hero {
        padding: 2rem 1.75rem;
    }
}

.eyebrow {
    font-size: var(--text-eyebrow);
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--brand-accent);
    margin-bottom: 0.75rem;
}

.hero h1 {
    margin: 0 0 0.75rem;
    font-size: var(--text-page-title);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.lead {
    margin: 0 0 1.25rem;
    color: var(--brand-800);
    font-size: var(--text-body);
    line-height: 1.6;
}

@media (min-width: 768px) {
    .lead {
        font-size: var(--text-body-lg);
        line-height: 1.65;
    }
}

.hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.trust-verify {
    margin-top: 1.125rem;
    padding-top: 1rem;
    border-top: 1px solid var(--brand-200);
}

.card {
    background: var(--white);
    border: 1px solid var(--brand-200);
    border-radius: 1.5rem;
    padding: 1.375rem 1.25rem;
    margin-bottom: 1rem;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
}

.card h2 {
    margin: 0 0 0.875rem;
    font-size: 1.125rem;
    font-weight: 800;
    letter-spacing: -0.01em;
}

.grid-2 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 12px;
}

.pill {
    background: var(--brand-50);
    border: 1px solid var(--brand-200);
    border-radius: 14px;
    padding: 14px;
}

.pill strong {
    display: block;
    font-size: var(--text-body-lg);
    margin-bottom: 4px;
}

.pill span {
    font-size: var(--text-body);
    color: var(--brand-800);
}

.list {
    margin: 0;
    padding-left: 18px;
    color: var(--brand-800);
    font-size: var(--text-body);
}

.list li { margin-bottom: 8px; }

.location-box {
    font-size: var(--text-body-lg);
    color: var(--brand-800);
}

.location-box p { margin: 0 0 8px; }

.footer-links {
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid var(--brand-200);
    display: flex;
    flex-wrap: wrap;
    gap: 10px 16px;
    font-size: var(--text-label);
    font-weight: 700;
}

.footer-links a {
    color: var(--brand-accent);
    text-decoration: none;
}

.footer-links a:hover { text-decoration: underline; }
