/* ── Reset & Base ───────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
    --teal-50:  #f0fdfa;
    --teal-100: #ccfbf1;
    --teal-200: #99f6e4;
    --teal-500: #14b8a6;
    --teal-600: #0d9488;
    --teal-700: #0f766e;
    --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;
    --white: #ffffff;
    --font-sans: 'Inter', system-ui, sans-serif;
    --font-serif: 'Playfair Display', Georgia, serif;
    --radius: 12px;
    --radius-sm: 8px;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
    font-family: var(--font-sans);
    font-weight: 300;
    color: var(--slate-800);
    background: var(--white);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }

a { color: var(--teal-600); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--teal-700); }

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

.skip-link {
    position: absolute; top: -100%; left: 16px;
    background: var(--teal-700); color: var(--white);
    padding: 8px 16px; border-radius: var(--radius-sm);
    z-index: 200; font-size: 0.875rem;
}
.skip-link:focus { top: 16px; color: var(--white); }

/* ── Typography ───────────────────────────────── */
.eyebrow {
    font-family: var(--font-sans);
    font-weight: 500;
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--teal-600);
    margin-bottom: 12px;
}

h1, h2, h3, h4 {
    font-family: var(--font-serif);
    font-weight: 400;
    line-height: 1.2;
    color: var(--slate-900);
}

h1 { font-size: clamp(2.5rem, 6vw, 4.5rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: 1.375rem; }
h4 { font-size: 1rem; font-family: var(--font-sans); font-weight: 500; }

.section-intro {
    font-size: 1.125rem;
    color: var(--slate-500);
    max-width: 560px;
    line-height: 1.8;
}

/* ── Buttons ───────────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: 100px;
    font-family: var(--font-sans);
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    border: 1.5px solid transparent;
    cursor: pointer;
    transition: all var(--transition);
    text-decoration: none;
}

.btn-primary {
    background: var(--teal-600);
    color: var(--white);
    border-color: var(--teal-600);
}
.btn-primary:hover {
    background: var(--teal-700);
    border-color: var(--teal-700);
    color: var(--white);
    transform: translateY(-1px);
    box-shadow: 0 8px 24px rgba(13, 148, 136, 0.25);
}

.btn-outline-light {
    background: transparent;
    color: var(--white);
    border-color: rgba(255,255,255,0.4);
}
.btn-outline-light:hover {
    background: var(--white);
    color: var(--teal-700);
    border-color: var(--white);
}

.btn-outline {
    background: transparent;
    color: var(--teal-600);
    border-color: var(--teal-200);
}
.btn-outline:hover {
    background: var(--teal-50);
    border-color: var(--teal-600);
}

.btn-full { width: 100%; justify-content: center; }

/* ── Header ───────────────────────────────── */
#site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 20px 0;
    transition: all var(--transition);
}

#site-header.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 14px 0;
    box-shadow: 0 1px 0 var(--slate-200);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-serif);
    font-size: 1.25rem;
    color: var(--white);
    text-decoration: none;
    transition: color var(--transition);
}

.header-inner.scrolled .logo { color: var(--slate-900); }
.logo-icon { color: var(--teal-200); }
.header-inner.scrolled .logo-icon { color: var(--teal-600); }

#main-nav ul {
    display: flex;
    align-items: center;
    gap: 36px;
    list-style: none;
}

#main-nav a {
    font-size: 0.875rem;
    font-weight: 400;
    color: rgba(255,255,255,0.8);
    letter-spacing: 0.02em;
    position: relative;
    text-decoration: none;
    transition: color var(--transition);
}

#main-nav a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: currentColor;
    transition: width var(--transition);
}

#main-nav a:hover { color: var(--white); }
#main-nav a:hover::after { width: 100%; }

.nav-cta {
    padding: 10px 24px;
    border: 1.5px solid rgba(255,255,255,0.4);
    border-radius: 100px;
    color: var(--white) !important;
    transition: all var(--transition) !important;
}
.nav-cta::after { display: none; }
.nav-cta:hover {
    background: var(--white) !important;
    color: var(--teal-700) !important;
    border-color: var(--white) !important;
}

.header-inner.scrolled .nav-cta {
    border-color: var(--teal-600);
    color: var(--teal-600) !important;
}
.header-inner.scrolled .nav-cta:hover {
    background: var(--teal-600) !important;
    color: var(--white) !important;
}

.header-inner.scrolled #main-nav a { color: var(--slate-600); }
.header-inner.scrolled #main-nav a:hover { color: var(--slate-900); }

/* Mobile nav toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}
.nav-toggle span {
    display: block;
    width: 22px;
    height: 1.5px;
    background: var(--white);
    transition: all var(--transition);
}
.header-inner.scrolled .nav-toggle span { background: var(--slate-800); }

/* ── Hero ───────────────────────────────── */
.hero {
    position: relative;
    height: 100vh;
    min-height: 640px;
    display: flex;
    align-items: 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(15, 23, 42, 0.45) 0%,
        rgba(15, 23, 42, 0.35) 50%,
        rgba(15, 23, 42, 0.65) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 1;
    padding-top: 80px;
    max-width: 680px;
}

.hero-eyebrow {
    font-size: 0.8rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--teal-200);
    margin-bottom: 20px;
    font-weight: 500;
}

.hero h1 {
    color: var(--white);
    margin-bottom: 24px;
    font-style: italic;
}

.hero-sub {
    font-size: 1.125rem;
    color: rgba(255,255,255,0.75);
    line-height: 1.8;
    margin-bottom: 40px;
    max-width: 480px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,0.5);
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    animation: float 2.5s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(6px); }
}

/* ── Section base ───────────────────────────── */
.section {
    padding: 120px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 72px;
}

.section-header .section-intro {
    margin: 0 auto;
}

/* ── Rooms ──────────────────────────────────── */
.rooms { background: var(--slate-50); }

.room-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.room-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--slate-200);
    transition: all var(--transition);
}

.room-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 48px rgba(15, 23, 42, 0.08);
    border-color: transparent;
}

.room-card-img {
    overflow: hidden;
    aspect-ratio: 3/2;
}

.room-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.room-card:hover .room-card-img img { transform: scale(1.04); }

.room-card-body {
    padding: 28px;
}

.room-card-body h3 {
    margin-bottom: 10px;
}

.room-card-body p {
    font-size: 0.9375rem;
    color: var(--slate-500);
    line-height: 1.7;
    margin-bottom: 20px;
}

.room-amenities {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    list-style: none;
}

.room-amenities li {
    font-size: 0.75rem;
    font-weight: 500;
    padding: 6px 12px;
    background: var(--teal-50);
    color: var(--teal-700);
    border-radius: 100px;
    letter-spacing: 0.02em;
}

/* ── Experience ─────────────────────────────── */
.experience { background: var(--white); }

.experience-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.experience-text .section-intro { margin-bottom: 40px; }

.feature-list {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.feature-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.feature-icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: var(--teal-50);
    color: var(--teal-600);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--teal-100);
}

.feature-item h4 {
    margin-bottom: 4px;
    color: var(--slate-800);
}

.feature-item p {
    font-size: 0.9375rem;
    color: var(--slate-500);
    line-height: 1.6;
}

.experience-images {
    position: relative;
    padding-bottom: 32px;
}

.exp-img-main {
    border-radius: var(--radius);
    overflow: hidden;
    aspect-ratio: 5/6;
}

.exp-img-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.exp-img-stack {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: -80px;
    position: relative;
    z-index: 1;
    padding: 0 16px;
}

.exp-img-stack img {
    border-radius: var(--radius-sm);
    object-fit: cover;
    width: 100%;
    height: 100%;
}

/* ── Location ───────────────────────────────── */
.location { background: var(--slate-50); }

.location-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: stretch;
}

.location-address {
    font-style: normal;
    font-family: var(--font-serif);
    font-size: 1.25rem;
    color: var(--slate-800);
    line-height: 1.8;
    margin: 24px 0;
}

.location-contacts {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 40px;
}

.contact-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9375rem;
    color: var(--slate-600);
    text-decoration: none;
    transition: color var(--transition);
}

.contact-link:hover { color: var(--teal-600); }

.nearby h4 {
    margin-bottom: 16px;
    color: var(--slate-700);
}

.nearby ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.nearby li {
    font-size: 0.9375rem;
    color: var(--slate-500);
    padding-left: 16px;
    position: relative;
}

.nearby li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 9px;
    width: 5px;
    height: 5px;
    background: var(--teal-400);
    border-radius: 50%;
}

.location-map {
    border-radius: var(--radius);
    overflow: hidden;
    min-height: 480px;
    box-shadow: 0 8px 32px rgba(15, 23, 42, 0.06);
}

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

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-top: 40px;
    padding-top: 40px;
    border-top: 1px solid var(--slate-200);
}

.contact-detail {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.contact-detail-label {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--slate-400);
}

.contact-detail a,
.contact-detail span {
    font-size: 1rem;
    color: var(--slate-700);
}

.contact-detail a:hover { color: var(--teal-600); }

.contact-form-wrap {
    background: var(--slate-50);
    border-radius: var(--radius);
    padding: 40px;
    border: 1px solid var(--slate-200);
}

.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.8125rem;
    font-weight: 500;
    color: var(--slate-700);
    letter-spacing: 0.02em;
}

.form-group input,
.form-group select,
.form-group textarea {
    font-family: var(--font-sans);
    font-size: 0.9375rem;
    font-weight: 300;
    padding: 12px 16px;
    border: 1.5px solid var(--slate-200);
    border-radius: var(--radius-sm);
    background: var(--white);
    color: var(--slate-800);
    transition: border-color var(--transition), box-shadow var(--transition);
    outline: none;
    width: 100%;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--teal-500);
    box-shadow: 0 0 0 3px rgba(20, 184, 166, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--slate-400); }

.form-group textarea { resize: vertical; min-height: 100px; }

.form-note {
    font-size: 0.8125rem;
    color: var(--slate-400);
    text-align: center;
}

.form-success {
    text-align: center;
    padding: 40px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    color: var(--teal-700);
}

.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.9375rem;
}

.form-success .btn { margin-top: 8px; }

/* ── Footer ─────────────────────────────────── */
#site-footer {
    background: var(--slate-900);
    color: var(--slate-400);
    padding: 80px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 64px;
    padding-bottom: 64px;
}

.footer-brand .logo { color: var(--white); margin-bottom: 16px; }
.footer-brand p { font-size: 0.9375rem; line-height: 1.7; max-width: 280px; }

.footer-links h4,
.footer-contact h4 {
    color: var(--white);
    font-size: 0.75rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 20px;
    font-family: var(--font-sans);
    font-weight: 500;
}

.footer-links ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    color: var(--slate-400);
    font-size: 0.9375rem;
    text-decoration: none;
    transition: color var(--transition);
}

.footer-links a:hover { color: var(--white); }

.footer-contact address {
    font-style: normal;
    font-size: 0.9375rem;
    line-height: 1.8;
    margin-bottom: 16px;
}

.footer-contact a {
    color: var(--slate-400);
    text-decoration: none;
    font-size: 0.9375rem;
    transition: color var(--transition);
}

.footer-contact a:hover { color: var(--teal-200); }

.footer-bottom {
    border-top: 1px solid var(--slate-800);
    padding: 24px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8125rem;
    color: var(--slate-500);
}

/* ── Responsive ─────────────────────────────── */
@media (max-width: 1024px) {
    .room-grid { grid-template-columns: repeat(2, 1fr); }
    .experience-layout { gap: 48px; }
    .location-grid { gap: 40px; }
    .contact-layout { gap: 48px; }
    .footer-grid { gap: 40px; }
}

@media (max-width: 768px) {
    .section { padding: 80px 0; }
    
    .nav-toggle { display: flex; }
    
    #main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100dvh;
        background: var(--white);
        padding: 80px 32px 32px;
        box-shadow: -8px 0 32px rgba(0,0,0,0.1);
        transition: right var(--transition);
        z-index: 99;
    }
    
    #main-nav.open { right: 0; }
    
    #main-nav ul {
        flex-direction: column;
        align-items: flex-start;
        gap: 24px;
    }
    
    #main-nav a {
        color: var(--slate-700) !important;
        font-size: 1rem;
    }
    
    #main-nav a:hover { color: var(--teal-600) !important; }
    
    .nav-cta {
        border-color: var(--teal-600) !important;
        color: var(--teal-600) !important;
    }
    
    .hero h1 { font-size: 2.25rem; }
    .hero-sub { font-size: 1rem; }
    .hero-actions { flex-direction: column; }
    .hero-actions .btn { text-align: center; justify-content: center; }
    .hero-scroll { display: none; }
    
    .room-grid { grid-template-columns: 1fr; }
    
    .experience-layout { grid-template-columns: 1fr; }
    .experience-images { order: -1; }
    .exp-img-stack { margin-top: -48px; }
    
    .location-grid { grid-template-columns: 1fr; }
    .location-map { min-height: 320px; }
    
    .contact-layout { grid-template-columns: 1fr; }
    .contact-form-wrap { padding: 28px; }
    .form-row { grid-template-columns: 1fr; }
    
    .footer-grid { grid-template-columns: 1fr; gap: 40px; }
    .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
}

@media (max-width: 480px) {
    .container { padding: 0 20px; }
    .section { padding: 64px 0; }
    .section-header { margin-bottom: 48px; }
    .room-card-body { padding: 20px; }
}

/* ── Animations ─────────────────────────────── */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1),
                transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
