:root {
    --color-bg: #fafafa;
    --color-bg-secondary: #f3f3f3;
    --color-surface: #ffffff;
    --color-text: #171717;
    --color-text-muted: #737373;
    --color-border: #e5e5e5;
    --color-accent: #171717;
    --color-accent-hover: #404040;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --radius: 6px;
    --radius-lg: 10px;
    --transition: 0.2s ease;
}

*, *::before, *::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--color-bg);
    color: var(--color-text);
    line-height: 1.6;
    margin: 0;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    -webkit-font-smoothing: antialiased;
}

main {
    flex: 1;
}

/* Header */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(250, 250, 250, 0.9);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--color-border);
    transition: var(--transition);
}

.site-header.scrolled {
    background: rgba(250, 250, 250, 0.98);
}

.navbar {
    padding: 1rem 0;
}

.navbar-brand {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--color-text) !important;
    text-decoration: none;
    letter-spacing: -0.02em;
}

.nav-link {
    color: var(--color-text-muted) !important;
    font-weight: 500;
    font-size: 0.875rem;
    padding: 0.4rem 0.85rem !important;
    transition: color var(--transition);
}

.nav-link:hover,
.nav-link.active {
    color: var(--color-text) !important;
}

.navbar-toggler {
    border-color: var(--color-border);
    padding: 0.35rem 0.55rem;
}

.navbar-toggler-icon {
    filter: none;
    opacity: 0.7;
}

.btn-primary,
.btn-gold {
    background: var(--color-accent);
    color: #fff;
    border: none;
    padding: 0.55rem 1.25rem;
    border-radius: var(--radius);
    font-weight: 500;
    font-size: 0.875rem;
    transition: var(--transition);
    text-decoration: none;
    display: inline-block;
}

.btn-primary:hover,
.btn-gold:hover {
    background: var(--color-accent-hover);
    color: #fff;
}

.btn-gold.btn-sm {
    padding: 0.45rem 1rem;
    font-size: 0.8125rem;
}

.btn-outline-gold {
    background: transparent;
    color: var(--color-text);
    border: 1px solid var(--color-border);
    padding: 0.55rem 1.25rem;
    border-radius: var(--radius);
    font-weight: 500;
    transition: var(--transition);
    text-decoration: none;
    display: inline-block;
}

.btn-outline-gold:hover {
    background: var(--color-bg-secondary);
    color: var(--color-text);
    border-color: #d4d4d4;
}

/* Hero */
.hero-compact {
    padding: 8rem 0 4rem;
    border-bottom: 1px solid var(--color-border);
}

.hero-inner {
    max-width: 680px;
}

.hero-badge {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--color-text-muted);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.hero h1 {
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1.25rem;
    color: var(--color-text);
    letter-spacing: -0.03em;
}

.hero p {
    font-size: 1.05rem;
    color: var(--color-text-muted);
    line-height: 1.75;
    margin-bottom: 2rem;
    max-width: 540px;
}

.hero-actions {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.hero-stats {
    display: flex;
    gap: 2.5rem;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--color-border);
    flex-wrap: wrap;
}

.hero-stat {
    min-width: 80px;
}

.stat-number {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--color-text);
    display: block;
    letter-spacing: -0.02em;
}

.stat-label {
    font-size: 0.75rem;
    color: var(--color-text-muted);
    margin-top: 0.15rem;
}

/* Sections */
.section {
    padding: 4.5rem 0;
}

.section-header {
    max-width: 560px;
    margin-bottom: 2.5rem;
}

.section-header-left {
    text-align: left;
}

.section-label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 0.5rem;
}

.section-header h2 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 600;
    margin-bottom: 0.6rem;
    letter-spacing: -0.02em;
}

.section-header p {
    color: var(--color-text-muted);
    font-size: 0.95rem;
    margin: 0;
}

/* Hotel Grid */
.hotel-bento {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
}

.bento-card {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition);
}

.bento-card:hover {
    border-color: #d4d4d4;
}

.bento-featured {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 1.1fr 1fr;
}

.bento-image {
    height: 260px;
    overflow: hidden;
    background: var(--color-bg-secondary);
}

.bento-featured .bento-image {
    height: 100%;
    min-height: 280px;
}

.bento-image-sm {
    height: 160px;
}

.bento-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.bento-body {
    padding: 1.5rem;
}

.bento-featured .bento-body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 2rem;
}

.bento-body h3 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    letter-spacing: -0.01em;
}

.bento-featured .bento-body h3 {
    font-size: 1.35rem;
}

.bento-body p {
    color: var(--color-text-muted);
    font-size: 0.9rem;
    line-height: 1.65;
    margin-bottom: 1rem;
}

.hotel-location {
    font-size: 0.7rem;
    font-weight: 500;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.35rem;
    display: block;
}

.amenity-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem;
}

.amenity-tag {
    padding: 0.2rem 0.6rem;
    background: var(--color-bg-secondary);
    border-radius: 4px;
    font-size: 0.7rem;
    color: var(--color-text-muted);
}

/* Features */
.features-section {
    background: var(--color-bg-secondary);
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
    padding: 3rem 0;
}

.features-strip {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
}

.feature-item {
    padding: 1.25rem 0;
}

.feature-item h3 {
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 0.35rem;
}

.feature-item p {
    color: var(--color-text-muted);
    font-size: 0.85rem;
    margin: 0;
    line-height: 1.6;
}

/* Experience */
.experience-sections {
    background: var(--color-bg);
}

.experience-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
    margin-bottom: 3.5rem;
    padding-bottom: 3.5rem;
    border-bottom: 1px solid var(--color-border);
}

.experience-split:last-of-type {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.experience-split-reverse {
    direction: rtl;
}

.experience-split-reverse > * {
    direction: ltr;
}

.experience-split-content h2 {
    font-size: clamp(1.25rem, 2.5vw, 1.65rem);
    font-weight: 600;
    margin-bottom: 0.75rem;
    letter-spacing: -0.02em;
}

.experience-split-content p {
    color: var(--color-text-muted);
    font-size: 0.95rem;
    line-height: 1.75;
    margin: 0;
}

.experience-highlight {
    padding: 2rem;
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    margin-top: 3rem;
}

.experience-highlight h2 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.6rem;
}

.experience-highlight p {
    color: var(--color-text-muted);
    font-size: 0.95rem;
    line-height: 1.75;
    margin: 0;
}

/* CTA */
.section-cta {
    padding-bottom: 4.5rem;
}

.cta-banner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 2rem 2.5rem;
}

.cta-text h2 {
    font-size: clamp(1.25rem, 2.5vw, 1.65rem);
    font-weight: 600;
    margin-bottom: 0.4rem;
    letter-spacing: -0.02em;
}

.cta-text p {
    color: var(--color-text-muted);
    font-size: 0.95rem;
    margin: 0;
    max-width: 440px;
}

.cta-banner .btn-gold,
.cta-banner .btn-primary {
    flex-shrink: 0;
    white-space: nowrap;
}

/* Page Header */
.page-header {
    padding: 8rem 0 3rem;
    border-bottom: 1px solid var(--color-border);
}

.page-header h1 {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 600;
    margin-bottom: 0.6rem;
    letter-spacing: -0.03em;
}

.page-header p {
    color: var(--color-text-muted);
    font-size: 1rem;
    max-width: 520px;
    margin: 0;
}

.breadcrumb-nav {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1rem;
    font-size: 0.8125rem;
}

.breadcrumb-nav a {
    color: var(--color-text-muted);
    text-decoration: none;
}

.breadcrumb-nav a:hover {
    color: var(--color-text);
}

.breadcrumb-nav span {
    color: var(--color-text-muted);
}

/* Content Pages */
.content-section {
    padding: 3.5rem 0 4.5rem;
}

.content-card {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 2rem;
    max-width: 760px;
    margin: 0 auto;
}

.content-card h2 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color-text);
    margin-top: 2rem;
    margin-bottom: 0.6rem;
}

.content-card h2:first-child {
    margin-top: 0;
}

.content-card p,
.content-card li {
    color: var(--color-text-muted);
    line-height: 1.75;
    font-size: 0.925rem;
}

.content-card ul {
    padding-left: 1.25rem;
}

.content-card ul li {
    margin-bottom: 0.4rem;
}

/* About */
.about-intro {
    max-width: 640px;
    margin-bottom: 3rem;
}

.about-intro h2 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.about-intro p {
    color: var(--color-text-muted);
    line-height: 1.75;
    margin-bottom: 1rem;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
    margin-top: 2rem;
}

.value-item {
    padding: 1.25rem;
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
}

.value-item h4 {
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 0.4rem;
}

.value-item p {
    color: var(--color-text-muted);
    font-size: 0.85rem;
    margin: 0;
    line-height: 1.6;
}

/* Contact */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 2rem;
    max-width: 960px;
    margin: 0 auto;
}

.contact-info-card {
    padding: 1.75rem;
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    height: fit-content;
}

.contact-info-card h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1.25rem;
}

.contact-detail {
    margin-bottom: 1.1rem;
}

.contact-detail h5 {
    font-size: 0.7rem;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.15rem;
    font-weight: 500;
}

.contact-detail p {
    color: var(--color-text);
    margin: 0;
    font-size: 0.9rem;
}

.contact-form-card {
    padding: 1.75rem;
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
}

.contact-form-card h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1.25rem;
}

.form-label {
    color: var(--color-text-muted);
    font-size: 0.8125rem;
    font-weight: 500;
    margin-bottom: 0.3rem;
}

.form-control {
    background: var(--color-bg);
    border: 1px solid var(--color-border);
    color: var(--color-text);
    border-radius: var(--radius);
    padding: 0.65rem 0.9rem;
    transition: var(--transition);
    font-size: 0.9rem;
}

.form-control:focus {
    background: var(--color-surface);
    border-color: #a3a3a3;
    color: var(--color-text);
    box-shadow: none;
}

.form-control::placeholder {
    color: #a3a3a3;
}

textarea.form-control {
    min-height: 120px;
    resize: vertical;
}

.text-danger {
    font-size: 0.78rem;
}

.alert-success-custom {
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
    color: #166534;
    border-radius: var(--radius);
    padding: 0.85rem 1rem;
    margin-bottom: 1.25rem;
    font-size: 0.9rem;
}

/* Footer */
.site-footer {
    background: var(--color-surface);
    border-top: 1px solid var(--color-border);
    padding: 3rem 0 0;
    margin-top: auto;
}

.footer-brand {
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 0.6rem;
    letter-spacing: -0.02em;
}

.footer-desc {
    color: var(--color-text-muted);
    font-size: 0.875rem;
    line-height: 1.65;
    max-width: 320px;
}

.footer-heading {
    font-size: 0.7rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--color-text-muted);
    margin-bottom: 0.85rem;
}

.footer-links,
.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li,
.footer-contact li {
    margin-bottom: 0.4rem;
}

.footer-links a {
    color: var(--color-text-muted);
    text-decoration: none;
    font-size: 0.875rem;
    transition: color var(--transition);
}

.footer-links a:hover {
    color: var(--color-text);
}

.footer-contact li {
    color: var(--color-text-muted);
    font-size: 0.875rem;
}

.footer-bottom {
    margin-top: 2.5rem;
    padding: 1.25rem 0;
    border-top: 1px solid var(--color-border);
    text-align: center;
}

.footer-bottom p {
    color: var(--color-text-muted);
    font-size: 0.8125rem;
    margin: 0;
}

.footer-bottom a {
    color: var(--color-text);
    text-decoration: none;
}

.footer-bottom a:hover {
    text-decoration: underline;
}

.footer-disclaimer {
    margin-top: 0.35rem !important;
    font-size: 0.75rem !important;
    opacity: 0.8;
}

/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(12px);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 991px) {
    .bento-featured {
        grid-template-columns: 1fr;
    }

    .hotel-bento {
        grid-template-columns: 1fr;
    }

    .features-strip {
        grid-template-columns: repeat(2, 1fr);
    }

    .experience-split,
    .experience-split-reverse {
        grid-template-columns: 1fr;
        direction: ltr;
        gap: 1.25rem;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .values-grid {
        grid-template-columns: 1fr;
    }

    .cta-banner {
        flex-direction: column;
        align-items: flex-start;
        padding: 1.75rem;
    }
}

@media (max-width: 767px) {
    .section {
        padding: 3rem 0;
    }

    .hero-compact {
        padding: 6.5rem 0 2.5rem;
    }

    .hero-stats {
        gap: 1.5rem;
    }

    .features-strip {
        grid-template-columns: 1fr;
    }

    .content-card {
        padding: 1.5rem;
    }

    .contact-form-card,
    .contact-info-card {
        padding: 1.5rem;
    }
}
