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

:root {
    --teal-50: #f0fdfa;
    --teal-100: #ccfbf1;
    --teal-200: #99f6e4;
    --teal-400: #2dd4bf;
    --teal-500: #14b8a6;
    --teal-600: #0d9488;
    --teal-700: #0f766e;
    --teal-800: #115e59;
    --teal-900: #134e4a;

    --slate-50: #f8fafc;
    --slate-100: #f1f5f9;
    --slate-200: #e2e8f0;
    --slate-300: #cbd5e1;
    --slate-400: #94a3b8;
    --slate-500: #64748b;
    --slate-600: #475569;
    --slate-700: #334155;
    --slate-800: #1e293b;
    --slate-900: #0f172a;
    --slate-950: #080d18;

    --font-sans: 'Inter', system-ui, -apple-system, sans-serif;
    --font-serif: 'Playfair Display', Georgia, serif;

    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 16px;
    --radius-xl: 24px;

    --shadow-sm: 0 1px 2px rgba(0,0,0,0.06), 0 1px 3px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.08), 0 2px 4px -2px rgba(0,0,0,0.06);
    --shadow-lg: 0 10px 25px -3px rgba(0,0,0,0.1), 0 4px 10px -4px rgba(0,0,0,0.08);
    --shadow-xl: 0 20px 50px -12px rgba(0,0,0,0.15);

    --transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-sans);
    color: var(--slate-800);
    background: #fff;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

img, svg {
    display: block;
    max-width: 100%;
}

a {
    color: inherit;
    text-decoration: none;
}

ul {
    list-style: none;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Skip link */
.skip-link {
    position: absolute;
    top: -100%;
    left: 16px;
    background: var(--teal-600);
    color: #fff;
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    z-index: 200;
    font-weight: 600;
}
.skip-link:focus {
    top: 12px;
}

/* ===== HEADER ===== */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(255,255,255,0.92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--slate-200);
    transition: box-shadow var(--transition);
}
.site-header.scrolled {
    box-shadow: var(--shadow-md);
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-serif);
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--slate-900);
    line-height: 1.2;
}
.logo:hover { color: var(--teal-600); }
.logo-sub {
    font-family: var(--font-sans);
    font-weight: 500;
    font-size: 0.75rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--teal-600);
}

.nav-menu { display: flex; align-items: center; }
.nav-menu ul {
    display: flex;
    align-items: center;
    gap: 4px;
}
.nav-menu a {
    padding: 8px 14px;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--slate-600);
    border-radius: var(--radius-sm);
    transition: color var(--transition), background var(--transition);
}
.nav-menu a:hover {
    color: var(--teal-600);
    background: var(--teal-50);
}

.nav-cta {
    background: var(--teal-600) !important;
    color: #fff !important;
    border-radius: var(--radius-sm) !important;
    padding: 9px 20px !important;
    font-weight: 600 !important;
    transition: background var(--transition), transform var(--transition) !important;
}
.nav-cta:hover {
    background: var(--teal-700) !important;
    color: #fff !important;
    transform: translateY(-1px);
}

/* Hamburger */
.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    width: 40px;
    height: 40px;
    position: relative;
}
.hamburger,
.hamburger::before,
.hamburger::after {
    display: block;
    width: 20px;
    height: 2px;
    background: var(--slate-700);
    border-radius: 2px;
    transition: var(--transition);
}
.hamburger {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.hamburger::before {
    content: '';
    position: absolute;
    top: -6px;
    left: 0;
}
.hamburger::after {
    content: '';
    position: absolute;
    top: 6px;
    left: 0;
}
.nav-toggle[aria-expanded="true"] .hamburger {
    background: transparent;
}
.nav-toggle[aria-expanded="true"] .hamburger::before {
    top: 0;
    transform: rotate(45deg);
}
.nav-toggle[aria-expanded="true"] .hamburger::after {
    top: 0;
    transform: rotate(-45deg);
}

/* ===== HERO ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(8, 13, 24, 0.55) 0%,
        rgba(8, 13, 24, 0.45) 50%,
        rgba(8, 13, 24, 0.70) 100%
    );
}
.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 120px 24px 80px;
    max-width: 800px;
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(13, 148, 136, 0.2);
    border: 1px solid rgba(13, 148, 136, 0.4);
    color: var(--teal-200);
    padding: 6px 16px;
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 28px;
}
.hero-title {
    font-family: var(--font-serif);
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    font-weight: 700;
    color: #fff;
    line-height: 1.15;
    margin-bottom: 24px;
    letter-spacing: -0.01em;
}
.text-teal { color: var(--teal-400); }
.hero-desc {
    font-size: clamp(1rem, 1.5vw, 1.15rem);
    color: var(--slate-300);
    max-width: 580px;
    margin: 0 auto 40px;
    line-height: 1.7;
}
.hero-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-scroll {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--slate-400);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}
.scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--slate-400), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
    0%, 100% { opacity: 1; transform: scaleY(1); }
    50% { opacity: 0.4; transform: scaleY(0.6); }
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 28px;
    font-size: 0.9rem;
    font-weight: 600;
    font-family: var(--font-sans);
    border-radius: var(--radius-md);
    border: 2px solid transparent;
    cursor: pointer;
    transition: all var(--transition);
    white-space: nowrap;
}
.btn-primary {
    background: var(--teal-600);
    color: #fff;
    border-color: var(--teal-600);
}
.btn-primary:hover {
    background: var(--teal-700);
    border-color: var(--teal-700);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(13,148,136,0.3);
}
.btn-outline {
    background: transparent;
    color: #fff;
    border-color: rgba(255,255,255,0.35);
}
.btn-outline:hover {
    border-color: #fff;
    background: rgba(255,255,255,0.1);
    transform: translateY(-2px);
}
.btn-white {
    background: #fff;
    color: var(--teal-700);
    border-color: #fff;
}
.btn-white:hover {
    background: var(--teal-50);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}
.btn-ghost {
    background: transparent;
    color: #fff;
    border-color: rgba(255,255,255,0.4);
}
.btn-ghost:hover {
    border-color: #fff;
    background: rgba(255,255,255,0.1);
    transform: translateY(-2px);
}
.btn-sm {
    padding: 10px 20px;
    font-size: 0.82rem;
}
.btn-full {
    width: 100%;
    justify-content: center;
}

/* ===== SECTION COMMON ===== */
.section-label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--teal-600);
    margin-bottom: 12px;
}
.section-title {
    font-family: var(--font-serif);
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    font-weight: 700;
    color: var(--slate-900);
    line-height: 1.2;
    margin-bottom: 16px;
    letter-spacing: -0.01em;
}
.section-desc {
    font-size: 1.05rem;
    color: var(--slate-500);
    max-width: 520px;
    line-height: 1.7;
}
.section-header {
    text-align: center;
    margin-bottom: 60px;
}
.section-header .section-desc {
    margin: 0 auto;
}

/* ===== INTRO ===== */
.intro {
    padding: 100px 0;
    background: #fff;
}
.intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}
.intro-text p {
    color: var(--slate-600);
    margin-bottom: 16px;
    line-height: 1.75;
    font-size: 1rem;
}
.intro-stats {
    display: flex;
    gap: 24px;
    margin-top: 40px;
    padding-top: 32px;
    border-top: 1px solid var(--slate-200);
}
.stat-number {
    display: block;
    font-family: var(--font-serif);
    font-size: 2rem;
    font-weight: 700;
    color: var(--teal-600);
    line-height: 1;
    margin-bottom: 6px;
}
.stat-label {
    font-size: 0.78rem;
    color: var(--slate-500);
    line-height: 1.4;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    font-weight: 500;
}
.stat-divider {
    width: 1px;
    background: var(--slate-200);
    align-self: stretch;
}
.intro-image {
    position: relative;
}
.image-frame {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}
.image-frame img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
}
.image-accent {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 120px;
    height: 120px;
    background: var(--teal-100);
    border-radius: var(--radius-lg);
    z-index: -1;
}

/* ===== ROOMS ===== */
.rooms {
    padding: 100px 0;
    background: var(--slate-50);
}
.rooms-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}
.room-card {
    background: #fff;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--slate-200);
    transition: transform var(--transition), box-shadow var(--transition);
}
.room-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-xl);
}
.room-image {
    overflow: hidden;
    height: 220px;
}
.room-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.room-card:hover .room-image img {
    transform: scale(1.05);
}
.room-info {
    padding: 28px;
}
.room-name {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--slate-900);
    margin-bottom: 8px;
}
.room-desc {
    font-size: 0.9rem;
    color: var(--slate-500);
    line-height: 1.65;
    margin-bottom: 20px;
}
.room-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-bottom: 24px;
}
.room-features li {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.82rem;
    color: var(--slate-600);
    font-weight: 500;
}
.room-features svg {
    color: var(--teal-600);
    flex-shrink: 0;
}

/* ===== AMENITIES ===== */
.amenities {
    padding: 100px 0;
    background: #fff;
}
.amenities-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.amenity-card {
    padding: 32px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--slate-200);
    transition: all var(--transition);
    background: #fff;
}
.amenity-card:hover {
    border-color: var(--teal-200);
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}
.amenity-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--teal-50);
    border-radius: var(--radius-md);
    color: var(--teal-600);
    margin-bottom: 20px;
    transition: background var(--transition);
}
.amenity-card:hover .amenity-icon {
    background: var(--teal-600);
    color: #fff;
}
.amenity-name {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--slate-900);
    margin-bottom: 8px;
}
.amenity-desc {
    font-size: 0.9rem;
    color: var(--slate-500);
    line-height: 1.65;
}

/* ===== LOCATION ===== */
.location {
    padding: 100px 0;
    background: var(--slate-50);
}
.location-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
}
.location-info p {
    color: var(--slate-600);
    line-height: 1.75;
    margin-bottom: 32px;
    font-size: 1rem;
}
.location-details {
    margin-bottom: 32px;
}
.location-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 16px;
    color: var(--slate-600);
    font-size: 0.95rem;
    line-height: 1.6;
}
.location-item svg {
    color: var(--teal-600);
    flex-shrink: 0;
    margin-top: 2px;
}
.location-item a {
    color: var(--teal-600);
    font-weight: 500;
    transition: color var(--transition);
}
.location-item a:hover { color: var(--teal-700); }
.location-cta { margin-top: 8px; }
.location-map {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    height: 420px;
}

/* ===== CTA STRIP ===== */
.cta-strip {
    padding: 80px 0;
    background: var(--slate-900);
}
.cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
}
.cta-text { max-width: 480px; }
.cta-title {
    font-family: var(--font-serif);
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 700;
    color: #fff;
    line-height: 1.3;
    margin-bottom: 12px;
}
.cta-desc {
    color: var(--slate-400);
    font-size: 1rem;
    line-height: 1.65;
}
.cta-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* ===== CONTACT ===== */
.contact {
    padding: 100px 0;
    background: #fff;
}
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
}
.contact-info p {
    color: var(--slate-600);
    line-height: 1.75;
    margin-bottom: 36px;
    font-size: 1rem;
}
.contact-methods { display: flex;
    flex-direction: column;
    gap: 24px;
}
.contact-method {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}
.method-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--teal-50);
    border-radius: var(--radius-md);
    color: var(--teal-600);
    flex-shrink: 0;
}
.method-label {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--slate-400);
    margin-bottom: 4px;
}
.contact-method a {
    color: var(--slate-700);
    font-weight: 500;
    font-size: 1rem;
    transition: color var(--transition);
}
.contact-method a:hover { color: var(--teal-600); }
.contact-method span:not(a) {
    color: var(--slate-600);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Form */
.contact-form-wrapper {
    background: var(--slate-50);
    border: 1px solid var(--slate-200);
    border-radius: var(--radius-lg);
    padding: 40px;
}
.contact-form { display: flex; flex-direction: column; gap: 20px; }
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--slate-700);
    letter-spacing: 0.02em;
}
.form-group input,
.form-group select,
.form-group textarea {
    padding: 11px 14px;
    border: 1.5px solid var(--slate-200);
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    font-family: var(--font-sans);
    color: var(--slate-800);
    background: #fff;
    transition: border-color var(--transition), box-shadow var(--transition);
    outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--teal-500);
    box-shadow: 0 0 0 3px rgba(13,148,136,0.12);
}
.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--slate-400);
}
.form-group textarea {
    resize: vertical;
    min-height: 110px;
}

/* Success message */
.form-success {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 48px 24px;
    gap: 16px;
}
.form-success h3 {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    color: var(--slate-900);
}
.form-success p {
    color: var(--slate-500);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ===== FOOTER ===== */
.site-footer {
    background: var(--slate-950);
    color: var(--slate-400);
    padding: 72px 0 0;
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 48px;
    padding-bottom: 56px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand p {
    margin-top: 16px;
    font-size: 0.9rem;
    line-height: 1.7;
    max-width: 280px;
}
.logo-footer .logo-text {
    color: #fff;
    font-size: 1rem;
}
.footer-links h4,
.footer-contact h4 {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--slate-300);
    margin-bottom: 20px;
}
.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.footer-links a {
    font-size: 0.88rem;
    color: var(--slate-400);
    transition: color var(--transition);
}
.footer-links a:hover { color: var(--teal-400); }
.footer-contact-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.footer-contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.85rem;
    line-height: 1.6;
}
.footer-contact-list svg {
    color: var(--teal-500);
    flex-shrink: 0;
    margin-top: 3px;
}
.footer-contact-list a {
    color: var(--slate-400);
    transition: color var(--transition);
}
.footer-contact-list a:hover { color: var(--teal-400); }

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 0;
    font-size: 0.8rem;
    color: var(--slate-500);
    flex-wrap: wrap;
    gap: 12px;
}

/* ===== MOBILE MENU ===== */
.nav-menu.active {
    display: flex;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .rooms-grid,
    .amenities-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .intro-grid,
    .location-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .intro-image { order: -1; }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .nav-toggle { display: block; z-index: 110; }
    .nav-menu {
        position: fixed;
        top: 0;
        right: 0;
        width: 280px;
        height: 100vh;
        background: #fff;
        flex-direction: column;
        align-items: stretch;
        padding: 88px 24px 32px;
        box-shadow: var(--shadow-xl);
        transform: translateX(100%);
        transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 100;
    }
    .nav-menu.active {
        display: flex;
        transform: translateX(0);
    }
    .nav-menu ul {
        flex-direction: column;
        gap: 4px;
    }
    .nav-menu a {
        padding: 12px 14px;
        font-size: 1rem;
    }
    .nav-cta {
        margin-top: 16px;
        text-align: center;
        justify-content: center;
        display: flex;
    }
    .nav-overlay {
        display: none;
        position: fixed;
        inset: 0;
        background: rgba(0,0,0,0.4);
        z-index: 99;
    }
    .nav-overlay.active { display: block; }

    .hero-content { padding: 100px 20px 60px; }
    .hero-actions { flex-direction: column; align-items: center; }
    .hero-actions .btn { width: 100%; max-width: 280px; justify-content: center; }

    .rooms-grid,
    .amenities-grid {
        grid-template-columns: 1fr;
    }
    .intro-stats { flex-direction: column; gap: 20px; }
    .stat-divider { display: none; }

    .cta-inner { flex-direction: column; text-align: center; }
    .cta-actions { justify-content: center; }

    .form-row { grid-template-columns: 1fr; }
    .contact-form-wrapper { padding: 24px; }

    .footer-grid { grid-template-columns: 1fr; gap: 36px; }
    .footer-bottom { flex-direction: column; text-align: center; }

    .location-map { height: 280px; }
}

@media (max-width: 480px) {
    .container { padding: 0 16px; }
    .intro, .rooms, .amenities, .location, .contact { padding: 64px 0; }
    .cta-strip { padding: 56px 0; }
}

/* ===== ANIMATIONS ===== */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}
