@import url('/assets/topbar.css');

:root {
    --brand-900: #343836;
    --brand-800: #5e6360;
    --brand-200: #e1e7de;
    --brand-100: #f0f3ee;
    --brand-accent: #7a8c66;
    --white: #ffffff;
}
* { box-sizing: border-box; }
body {
    margin: 0;
    font-family: 'Inter', sans-serif;
    color: var(--brand-900);
    background: var(--brand-100);
    line-height: 1.6;
}
a { color: inherit; }
.btn {
    font-size: 12px;
    font-weight: 700;
    text-decoration: none;
    border-radius: 9999px;
    padding: 10px 14px;
    border: 1px solid var(--brand-200);
    color: var(--brand-900);
    background: var(--white);
    white-space: nowrap;
}
.btn.primary {
    background: var(--brand-accent);
    color: var(--white);
    border-color: var(--brand-accent);
}
.wrap {
    max-width: 920px;
    margin: 0 auto;
    padding: 28px 16px 48px;
}
.property-cover {
    margin: 0 0 20px;
    border-radius: 24px;
    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: 24px;
    padding: 28px 24px;
    margin-bottom: 20px;
}
.eyebrow {
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--brand-accent);
    margin-bottom: 10px;
}
.hero h1 {
    margin: 0 0 12px;
    font-size: clamp(28px, 6vw, 42px);
    line-height: 1.1;
    letter-spacing: -0.02em;
}
.lead {
    margin: 0 0 20px;
    color: var(--brand-800);
    font-size: 16px;
}
.hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.card {
    background: var(--white);
    border: 1px solid var(--brand-200);
    border-radius: 20px;
    padding: 22px 20px;
    margin-bottom: 16px;
}
.card h2 {
    margin: 0 0 14px;
    font-size: 18px;
    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-100);
    border: 1px solid var(--brand-200);
    border-radius: 14px;
    padding: 14px;
}
.pill strong {
    display: block;
    font-size: 14px;
    margin-bottom: 4px;
}
.pill span {
    font-size: 13px;
    color: var(--brand-800);
}
.list {
    margin: 0;
    padding-left: 18px;
    color: var(--brand-800);
}
.list li { margin-bottom: 8px; }
.location-box {
    font-size: 15px;
    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: 12px;
    font-weight: 700;
}
.footer-links a {
    color: var(--brand-accent);
    text-decoration: none;
}
.footer-links a:hover { text-decoration: underline; }
