/* ===== RESET & BASE ===== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --terracotta: #B8613C;
    --terracotta-dark: #9A4F30;
    --terracotta-light: #D4896A;
    --sand: #F5E6D3;
    --sand-light: #FAF3EB;
    --sand-dark: #E8D5C0;
    --cream: #FDF8F3;
    --charcoal: #2A2420;
    --charcoal-light: #4A403A;
    --gray: #8A7E76;
    --gray-light: #B8ADA4;
    --white: #FFFFFF;
    --font-display: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'Inter', -apple-system, sans-serif;
    --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
    --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-body);
    font-weight: 300;
    color: var(--charcoal);
    background: var(--cream);
    line-height: 1.7;
    font-size: 15px;
    overflow-x: hidden;
}

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

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

address {
    font-style: normal;
}

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

/* ===== NAV ===== */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: background 0.5s var(--ease-out), backdrop-filter 0.5s var(--ease-out);
}

.nav.scrolled {
    background: rgba(253, 248, 243, 0.92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--sand-dark);
}

.nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.nav-logo {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    color: var(--white);
    display: flex;
    align-items: center;
    gap: 10px;
    transition: color 0.4s var(--ease-out);
}

.nav.scrolled .nav-logo {
    color: var(--charcoal);
}

.nav-logo-icon {
    flex-shrink: 0;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 36px;
}

.nav-links a {
    font-size: 0.8125rem;
    font-weight: 400;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.85);
    transition: color 0.3s var(--ease-out);
    position: relative;
}

.nav.scrolled .nav-links a {
    color: var(--charcoal-light);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--terracotta);
    transition: width 0.4s var(--ease-out);
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-links a:hover {
    color: var(--terracotta);
}

.nav.scrolled .nav-links a:hover {
    color: var(--terracotta);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    z-index: 1001;
}

.nav-toggle span {
    display: block;
    width: 22px;
    height: 1.5px;
    background: var(--white);
    transition: all 0.35s var(--ease-out);
    transform-origin: center;
}

.nav.scrolled .nav-toggle span {
    background: var(--charcoal);
}

.nav-toggle.active span:nth-child(1) {
    transform: translateY(6.5px) rotate(45deg);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: translateY(-6.5px) rotate(-45deg);
}

/* ===== HERO ===== */
.hero {
    position: relative;
    min-height: 100vh;
    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(
        135deg,
        rgba(42, 36, 32, 0.72) 0%,
        rgba(42, 36, 32, 0.45) 50%,
        rgba(42, 36, 32, 0.30) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    padding-top: 72px;
}

.hero-card {
    max-width: 580px;
    padding: 48px 44px;
    background: rgba(253, 248, 243, 0.08);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 2px;
    animation: heroFadeUp 1s var(--ease-out) 0.2s both;
}

@keyframes heroFadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-eyebrow {
    font-size: 0.6875rem;
    font-weight: 400;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--sand-dark);
    margin-bottom: 20px;
}

.hero-headline {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 3.75rem);
    font-weight: 300;
    line-height: 1.15;
    color: var(--white);
    margin-bottom: 24px;
    letter-spacing: -0.01em;
}

.hero-headline em {
    font-style: italic;
    color: var(--sand);
}

.hero-sub {
    font-size: 1.0625rem;
    line-height: 1.75;
    color: rgba(245, 230, 211, 0.75);
    margin-bottom: 36px;
    max-width: 440px;
    font-weight: 300;
}

.hero-cta-group {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    font-family: var(--font-body);
    font-size: 0.8125rem;
    font-weight: 400;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border: none;
    border-radius: 2px;
    cursor: pointer;
    transition: all 0.35s var(--ease-out);
}

.btn-primary {
    background: var(--terracotta);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--terracotta-dark);
    transform: translateY(-1px);
    box-shadow: 0 8px 24px rgba(184, 97, 60, 0.25);
}

.btn-ghost {
    background: transparent;
    color: var(--sand);
    border: 1px solid rgba(245, 230, 211, 0.35);
}

.btn-ghost:hover {
    border-color: var(--sand);
    color: var(--white);
    background: rgba(245, 230, 211, 0.08);
}

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

/* ===== FLOATING STATS ===== */
.hero-stats {
    position: absolute;
    right: 24px;
    bottom: 60px;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.stat-card {
    padding: 18px 24px;
    background: rgba(253, 248, 243, 0.1);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    animation: statFloat 0.8s var(--ease-out) both;
}

.stat-card:nth-child(1) { animation-delay: 0.8s; }
.stat-card:nth-child(2) { animation-delay: 1s; }
.stat-card:nth-child(3) { animation-delay: 1.2s; }

@keyframes statFloat {
    from {
        opacity: 0;
        transform: translateX(20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.stat-number {
    display: block;
    font-family: var(--font-display);
    font-size: 1.375rem;
    font-weight: 400;
    color: var(--sand);
    line-height: 1.2;
}

.stat-label {
    display: block;
    font-size: 0.6875rem;
    font-weight: 400;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(245, 230, 211, 0.55);
    margin-top: 2px;
}

/* ===== SECTIONS ===== */
section {
    padding: 120px 0;
}

.section-tag {
    display: inline-block;
    font-size: 0.6875rem;
    font-weight: 400;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--terracotta);
    margin-bottom: 16px;
    position: relative;
    padding-left: 28px;
}

.section-tag::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 1px;
    background: var(--terracotta);
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 300;
    line-height: 1.2;
    color: var(--charcoal);
    letter-spacing: -0.01em;
    margin-bottom: 48px;
}

.section-title .accent-italic {
    font-style: italic;
    color: var(--terracotta);
}

/* ===== INTRO ===== */
.intro {
    background: var(--cream);
}

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

.intro-body p {
    font-size: 1.0625rem;
    line-height: 1.85;
    color: var(--charcoal-light);
    margin-bottom: 20px;
    max-width: 520px;
}

.intro-divider {
    width: 48px;
    height: 1px;
    background: var(--sand-dark);
    margin: 32px 0;
}

.intro-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px 32px;
}

.intro-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.9375rem;
    color: var(--charcoal-light);
}

.intro-feature svg {
    color: var(--terracotta);
    flex-shrink: 0;
}

/* ===== ROOMS ===== */
.rooms {
    background: var(--sand-light);
}

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

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

.room-card {
    background: var(--white);
    border-radius: 2px;
    overflow: hidden;
    transition: transform 0.5s var(--ease-out), box-shadow 0.5s var(--ease-out);
}

.room-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 60px rgba(42, 36, 32, 0.1);
}

.room-image {
    overflow: hidden;
    aspect-ratio: 6/4;
}

.room-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s var(--ease-out);
}

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

.room-info {
    padding: 28px 28px 32px;
}

.room-info h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--charcoal);
    margin-bottom: 12px;
}

.room-info p {
    font-size: 0.9375rem;
    line-height: 1.75;
    color: var(--gray);
    margin-bottom: 20px;
}

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

.room-amenities li {
    font-size: 0.75rem;
    font-weight: 400;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--gray);
    padding: 6px 12px;
    border: 1px solid var(--sand-dark);
    border-radius: 2px;
}

.rooms-note {
    text-align: center;
    margin-top: 40px;
    font-size: 0.8125rem;
    color: var(--gray-light);
    font-style: italic;
}

/* ===== EXPERIENCE ===== */
.experience {
    background: var(--cream);
}

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

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

.exp-img-main {
    border-radius: 2px;
    overflow: hidden;
    aspect-ratio: 6/7.5;
}

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

.exp-img-stack {
    position: absolute;
    bottom: 0;
    right: 0;
    display: flex;
    gap: 12px;
}

.exp-img-stack img {
    border-radius: 2px;
    overflow: hidden;
    width: 55%;
    aspect-ratio: 4/3;
    object-fit: cover;
    box-shadow: 0 12px 40px rgba(42, 36, 32, 0.2);
}

.exp-content .section-tag {
    margin-bottom: 16px;
}

.exp-content .section-title {
    margin-bottom: 28px;
}

.exp-content > p {
    font-size: 1.0625rem;
    line-height: 1.85;
    color: var(--charcoal-light);
    margin-bottom: 40px;
}

.exp-features {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.exp-feature {
    display: flex;
    gap: 20px;
}

.exp-feature-icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--sand-dark);
    border-radius: 50%;
    color: var(--terracotta);
}

.exp-feature h4 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 400;
    color: var(--charcoal);
    margin-bottom: 4px;
}

.exp-feature p {
    font-size: 0.9375rem;
    line-height: 1.7;
    color: var(--gray);
}

/* ===== GALLERY ===== */
.gallery {
    padding: 0;
    overflow: hidden;
}

.gallery-scroll {
    display: flex;
    gap: 2px;
}

.gallery-item {
    flex: 1;
    min-width: 0;
    aspect-ratio: 5/3.5;
    overflow: hidden;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s var(--ease-out);
    filter: saturate(0.9);
}

.gallery-item:hover img {
    transform: scale(1.05);
    filter: saturate(1);
}

/* ===== LOCATION ===== */
.location {
    background: var(--sand-light);
}

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

.location-info .section-tag {
    margin-bottom: 16px;
}

.location-info .section-title {
    margin-bottom: 28px;
}

.location-address {
    font-size: 1.0625rem;
    line-height: 1.8;
    color: var(--charcoal-light);
    margin-bottom: 28px;
}

.location-address strong {
    color: var(--charcoal);
    font-weight: 500;
}

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

.location-detail {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.9375rem;
    color: var(--charcoal-light);
}

.location-detail svg {
    color: var(--terracotta);
    flex-shrink: 0;
}

.location-detail a {
    transition: color 0.3s var(--ease-out);
}

.location-detail a:hover {
    color: var(--terracotta);
}

.location-map {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(42, 36, 32, 0.08);
}

.location-visual {
    border-radius: 2px;
    overflow: hidden;
    aspect-ratio: 3/4;
}

.location-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(0.85);
}

/* ===== CONTACT ===== */
.contact {
    background: var(--cream);
}

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

.contact-text .section-tag {
    margin-bottom: 16px;
}

.contact-text .section-title {
    margin-bottom: 24px;
}

.contact-text > p {
    font-size: 1.0625rem;
    line-height: 1.85;
    color: var(--charcoal-light);
    margin-bottom: 36px;
}

.contact-direct {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

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

.contact-direct-label {
    font-size: 0.6875rem;
    font-weight: 400;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--gray-light);
}

.contact-direct-item a {
    font-family: var(--font-display);
    font-size: 1.375rem;
    font-weight: 400;
    color: var(--charcoal);
    transition: color 0.3s var(--ease-out);
}

.contact-direct-item a:hover {
    color: var(--terracotta);
}

.contact-form-wrapper {
    background: var(--white);
    padding: 40px;
    border-radius: 2px;
    border: 1px solid var(--sand-dark);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 0.75rem;
    font-weight: 400;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gray);
}

.form-group input,
.form-group select,
.form-group textarea {
    font-family: var(--font-body);
    font-size: 0.9375rem;
    font-weight: 300;
    color: var(--charcoal);
    background: var(--sand-light);
    border: 1px solid var(--sand-dark);
    border-radius: 2px;
    padding: 12px 16px;
    outline: none;
    transition: border-color 0.3s var(--ease-out), background 0.3s var(--ease-out);
    resize: vertical;
    width: 100%;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--terracotta);
    background: var(--white);
}

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

.form-success {
    display: none;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    background: rgba(184, 97, 60, 0.08);
    border: 1px solid rgba(184, 97, 60, 0.2);
    border-radius: 2px;
    font-size: 0.9375rem;
    color: var(--terracotta-dark);
    animation: formSuccessIn 0.4s var(--ease-out);
}

.form-success.visible {
    display: flex;
}

@keyframes formSuccessIn {
    from {
        opacity: 0;
        transform: translateY(8px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.form-success svg {
    color: var(--terracotta);
    flex-shrink: 0;
}

/* ===== FOOTER ===== */
.footer {
    background: var(--charcoal);
    color: var(--sand-dark);
    padding: 72px 0 0;
}

.footer-top {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.2fr;
    gap: 48px;
    padding-bottom: 56px;
    border-bottom: 1px solid rgba(245, 230, 211, 0.1);
}

.footer-logo {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--sand);
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
}

.footer-tagline {
    font-size: 0.9375rem;
    color: var(--gray);
    line-height: 1.7;
    max-width: 280px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    font-size: 0.875rem;
    color: var(--gray);
    transition: color 0.3s var(--ease-out);
}

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

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 8px;
    font-size: 0.875rem;
    color: var(--gray);
    line-height: 1.8;
}

.footer-contact a {
    transition: color 0.3s var(--ease-out);
}

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

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 0;
    font-size: 0.8125rem;
    color: var(--gray);
}

/* ===== SCROLL ANIMATIONS ===== */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

.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; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .intro-grid {
        gap: 48px;
    }

    .exp-layout {
        gap: 48px;
    }

    .location-layout {
        gap: 48px;
    }

    .contact-layout {
        gap: 48px;
    }

    .hero-stats {
        right: 16px;
        bottom: 40px;
    }
}

@media (max-width: 900px) {
    .rooms-grid {
        grid-template-columns: 1fr;
        max-width: 560px;
        margin: 0 auto;
    }

    .exp-img-stack {
        position: relative;
        bottom: auto;
        right: auto;
        margin-top: 12px;
    }

    .exp-img-stack img {
        width: 50%;
    }
}

@media (max-width: 768px) {
    section {
        padding: 80px 0;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: 0;
        width: 100%;
        height: 100vh;
        background: rgba(253, 248, 243, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 28px;
        transform: translateX(100%);
        transition: transform 0.5s var(--ease-out);
    }

    .nav-links.open {
        transform: translateX(0);
    }

    .nav-links a {
        color: var(--charcoal) !important;
        font-size: 1rem;
    }

    .nav-toggle {
        display: flex;
    }

    .hero-card {
        padding: 32px 28px;
    }

    .hero-stats {
        position: relative;
        right: auto;
        bottom: auto;
        flex-direction: row;
        margin-top: 32px;
        flex-wrap: wrap;
    }

    .stat-card {
        flex: 1;
        min-width: 120px;
    }

    .intro-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .intro-body p {
        max-width: none;
    }

    .intro-features {
        grid-template-columns: 1fr;
    }

    .exp-layout {
        grid-template-columns: 1fr;
    }

    .exp-img-main {
        aspect-ratio: 4/3;
    }

    .gallery-scroll {
        flex-direction: column;
    }

    .gallery-item {
        aspect-ratio: 4/3;
    }

    .location-layout {
        grid-template-columns: 1fr;
    }

    .location-visual {
        aspect-ratio: 16/9;
    }

    .contact-layout {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .contact-form-wrapper {
        padding: 28px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .footer-top {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 20px;
    }

    .hero-headline {
        font-size: 2.25rem;
    }

    .hero-cta-group {
        flex-direction: column;
    }

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

    .hero-stats {
        flex-direction: column;
    }

    .stat-card {
        min-width: auto;
    }
}
