:root {
    --bg: #f7f6f3;
    --text: #171717;
    --muted: #5f6368;
    --primary: #131a2d;
    --accent: #f2c744;
    --card: #ffffff;
    --border: rgba(23, 23, 23, 0.08);
}

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

body {
    margin: 0;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--bg);
    color: var(--text);
}

.page {
    min-height: 100vh;
}

.container {
    width: min(1200px, 100%);
    margin: 0 auto;
    padding: 0 24px;
}

.section {
    padding: 96px 0;
}

/* Navigation */
.nav {
    position: sticky;
    top: 0;
    z-index: 2;
    backdrop-filter: blur(16px);
    background: rgba(247, 246, 243, 0.9);
    border-bottom: 1px solid var(--border);
}

.nav__container {
    width: min(1200px, 100%);
    margin: 0 auto;
    padding: 18px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav__logo {
    font-weight: 700;
    letter-spacing: 0.2rem;
    text-transform: uppercase;
}

.nav__links {
    display: flex;
    gap: 24px;
    align-items: center;
}

.nav__links a {
    text-decoration: none;
    color: var(--text);
    font-weight: 500;
    font-size: 0.95rem;
}

.nav__cta {
    padding: 8px 16px;
    border: 1px solid var(--text);
    border-radius: 999px;
    transition: background 0.2s;
}

.nav__cta:hover {
    background: var(--text);
    color: #fff;
}

/* Hero */
.hero {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 160px 0 120px;
    overflow: hidden;
}

.hero__background {
    position: absolute;
    inset: 0;
    background: url('https://images.unsplash.com/photo-1505693416388-ac5ce068fe85?auto=format&fit=crop&w=1600&q=80') center/cover no-repeat;
    filter: brightness(0.6);
}

.hero__content {
    position: relative;
    text-align: center;
    color: #fff;
    max-width: 640px;
    padding: 0 24px;
}

.hero__eyebrow {
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-size: 0.8rem;
    padding: 6px 14px;
    border: 1px solid rgba(255,255,255,0.4);
    border-radius: 999px;
    margin-bottom: 24px;
}

.hero__title {
    font-size: clamp(2.4rem, 6vw, 4rem);
    margin-bottom: 16px;
}

.hero__subtitle {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.85);
    margin-bottom: 32px;
}

.hero__actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    border-radius: 999px;
    font-weight: 600;
    text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s;
}

.btn--primary {
    background: var(--accent);
    color: #000;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.btn--ghost {
    border: 1px solid rgba(255,255,255,0.6);
    color: #fff;
    background: transparent;
}

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

.hero__stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 24px;
}

.stat__value {
    font-size: 1.8rem;
    font-weight: 600;
}

.stat__label {
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
}

/* Pill */
.pill {
    display: inline-block;
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    padding: 6px 18px;
    border-radius: 999px;
    background: rgba(19, 26, 45, 0.08);
    color: var(--primary);
    margin-bottom: 24px;
}

.pill--light {
    background: rgba(255,255,255,0.15);
    color: #fff;
}

/* Highlight cards */
.highlight-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 24px;
}

.card {
    background: var(--card);
    border-radius: 24px;
    padding: 32px;
    border: 1px solid var(--border);
    box-shadow: 0 20px 60px rgba(0,0,0,0.05);
}

.card__title {
    font-weight: 600;
    margin-bottom: 12px;
}

.card__text {
    color: var(--muted);
    font-size: 0.95rem;
}

/* Experience */
.experience {
    background: #11151f;
    color: #fff;
    padding: 120px 0;
}

.experience__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 60px;
    align-items: center;
}

.mockup {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 32px;
    padding: 32px;
    max-width: 420px;
}

.mockup__photo {
    height: 320px;
    border-radius: 24px;
    background: url('https://images.unsplash.com/photo-1505691938895-1758d7feb511?auto=format&fit=crop&w=800&q=80') center/cover;
    margin-bottom: 24px;
}

.mockup__info {
    display: flex;
    justify-content: space-between;
    gap: 12px;
}

.info-label {
    text-transform: uppercase;
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    color: rgba(255,255,255,0.6);
}

.info-value {
    font-size: 1.1rem;
    font-weight: 600;
}

.experience h2 {
    font-size: clamp(2rem, 4vw, 2.8rem);
    margin-bottom: 16px;
}

.lead {
    color: rgba(255,255,255,0.8);
    font-size: 1.05rem;
    margin-bottom: 24px;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
    color: rgba(255,255,255,0.85);
}

.feature-list li::before {
    content: "•";
    margin-right: 8px;
    color: var(--accent);
}

/* Suites */
.section__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.link-arrow {
    color: var(--text);
    text-decoration: none;
    font-weight: 600;
}

.suite-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 28px;
}

.suite-card {
    background: var(--card);
    border-radius: 28px;
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: 0 20px 60px rgba(0,0,0,0.04);
}

.suite-photo {
    height: 220px;
    background-size: cover;
    background-position: center;
}

.suite-photo--studio {
    background-image: url('https://images.unsplash.com/photo-1505691938895-1758d7feb511?auto=format&fit=crop&w=800&q=80');
}

.suite-photo--corner {
    background-image: url('https://images.unsplash.com/photo-1484101403633-562f891dc89a?auto=format&fit=crop&w=800&q=80');
}

.suite-photo--dual {
    background-image: url('https://images.unsplash.com/photo-1582719478250-c89cae4dc85b?auto=format&fit=crop&w=800&q=80');
}

.suite-body {
    padding: 28px;
}

.suite-body h3 {
    margin-bottom: 8px;
}

.suite-body p {
    color: var(--muted);
    margin-bottom: 16px;
}

.suite-body ul {
    list-style: none;
    padding: 0;
    margin: 0;
    color: var(--text);
    display: flex;
    flex-direction: column;
    gap: 8px;
    font-size: 0.95rem;
}

/* Reviews */
.reviews {
    background: #fff;
    padding: 96px 0;
}

.reviews__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
    align-items: center;
}

.reviewer {
    margin-top: 16px;
    color: var(--muted);
}

.review-card {
    padding: 32px;
    border-radius: 24px;
    border: 1px solid var(--border);
    background: var(--card);
    box-shadow: 0 15px 45px rgba(0,0,0,0.05);
}

.review-card__score {
    font-size: 2.6rem;
    margin-bottom: 12px;
    font-weight: 600;
}

/* Contact */
.contact {
    background: var(--card);
}

.contact__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 48px;
    align-items: start;
}

.contact-list {
    display: grid;
    gap: 20px;
}

.label {
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    margin-bottom: 6px;
    color: var(--muted);
}

.social-row {
    margin-top: 24px;
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.social-row a {
    text-decoration: none;
    color: var(--text);
    font-weight: 600;
}

.booking-panel {
    background: var(--primary);
    color: #fff;
    border-radius: 32px;
    padding: 36px;
    box-shadow: 0 30px 80px rgba(0,0,0,0.2);
}

.booking-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 24px;
}

.btn--surface {
    background: rgba(255,255,255,0.1);
    color: #fff;
    border: 1px solid rgba(255,255,255,0.3);
}

/* Footer */
.footer {
    border-top: 1px solid var(--border);
    padding: 32px 0;
    background: var(--bg);
}

.footer__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    font-size: 0.9rem;
    color: var(--muted);
}

.footer__inner a {
    color: var(--text);
    text-decoration: none;
    font-weight: 600;
}

/* Responsive */
@media (max-width: 768px) {
    .nav__links {
        display: none;
    }

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

    .experience__grid {
        gap: 32px;
    }

    .booking-panel {
        padding: 28px;
    }
}

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

    .btn {
        width: 100%;
    }

    .section {
        padding: 72px 0;
    }
}
