:root {
    --plum: #4A2C3A;
    --plum-deep: #3A2230;
    --plum-light: #6B4052;
    --plum-pale: #F5EDEE;
    --amber: #D4A853;
    --amber-light: #E8C97A;
    --amber-pale: #FDF8EE;
    --cream: #FAF8F6;
    --white: #FFFFFF;
    --charcoal: #1A1A1A;
    --gray-dark: #3D3D3D;
    --gray-mid: #6B6B6B;
    --gray-light: #B8B8B8;
    --gray-pale: #E8E6E4;
    
    --font-serif: 'Cormorant Garamond', Georgia, serif;
    --font-sans: 'Manrope', -apple-system, sans-serif;
    
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 2rem;
    --space-lg: 4rem;
    --space-xl: 6rem;
    --space-2xl: 8rem;
}

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

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

body {
    font-family: var(--font-sans);
    font-weight: 300;
    color: var(--charcoal);
    background: var(--cream);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

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

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-md);
}

/* ─── NAVIGATION ─── */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav.scrolled {
    background: rgba(250, 248, 246, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--gray-pale);
}

.nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-md);
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    color: var(--white);
    transition: color 0.3s;
}

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

.nav-logo-mark {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 400;
    width: 40px;
    height: 40px;
    border: 1px solid currentColor;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: border-color 0.3s;
}

.nav.scrolled .nav-logo-mark {
    border-color: var(--plum);
}

.nav-logo-text {
    font-family: var(--font-serif);
    font-size: 1.15rem;
    font-weight: 400;
    letter-spacing: 0.02em;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

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

.nav.scrolled .nav-links a {
    color: var(--gray-dark);
}

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

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

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

.nav-cta {
    border: 1px solid rgba(255, 255, 255, 0.4) !important;
    padding: 0.6rem 1.5rem;
    transition: all 0.3s !important;
}

.nav.scrolled .nav-cta {
    border-color: var(--plum) !important;
    color: var(--plum) !important;
}

.nav-cta:hover {
    background: var(--amber) !important;
    border-color: var(--amber) !important;
    color: var(--white) !important;
}

.nav-cta::after {
    display: none !important;
}

/* Mobile Toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.nav-toggle span {
    width: 24px;
    height: 1px;
    background: var(--white);
    transition: all 0.3s;
}

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

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

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

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

/* ─── HERO ─── */
.hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: -2;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(74, 44, 58, 0.45) 0%,
        rgba(74, 44, 58, 0.35) 50%,
        rgba(74, 44, 58, 0.65) 100%
    );
    z-index: -1;
}

.hero-content {
    max-width: 720px;
    padding: 0 var(--space-md);
    animation: fadeUp 1s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    opacity: 0;
}

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

.hero-eyebrow {
    font-size: 0.75rem;
    font-weight: 400;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--amber-light);
    margin-bottom: var(--space-sm);
}

.hero-title {
    font-family: var(--font-serif);
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    font-weight: 300;
    line-height: 1.15;
    color: var(--white);
    margin-bottom: var(--space-md);
    letter-spacing: -0.01em;
}

.hero-subtitle {
    font-size: 1.05rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    margin-bottom: var(--space-lg);
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
}

.hero-actions {
    display: flex;
    gap: var(--space-sm);
    justify-content: center;
    flex-wrap: wrap;
}

/* ─── BUTTONS ─── */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.9rem 2.2rem;
    font-family: var(--font-sans);
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    border: 1px solid transparent;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
}

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

.btn-primary:hover {
    background: var(--amber-light);
    border-color: var(--amber-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(212, 168, 83, 0.3);
}

.btn-outline {
    background: transparent;
    border-color: rgba(255, 255, 255, 0.5);
    color: var(--white);
}

.btn-outline:hover {
    border-color: var(--white);
    background: rgba(255, 255, 255, 0.1);
}

.btn-full {
    width: 100%;
}

/* ─── HERO SCROLL ─── */
.hero-scroll {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    animation: fadeUp 1s 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    opacity: 0;
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, rgba(255,255,255,0.6), transparent);
    animation: scrollPulse 2s infinite;
}

@keyframes scrollPulse {
    0%, 100% { opacity: 1; transform: scaleY(1); }
    50% { opacity: 0.5; transform: scaleY(0.7); }
}

/* ─── SECTION LABELS ─── */
.section-label {
    display: block;
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--amber);
    margin-bottom: var(--space-sm);
}

.section-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto var(--space-lg);
}

.section-header h2 {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 300;
    color: var(--plum);
    line-height: 1.2;
    margin-bottom: var(--space-sm);
    letter-spacing: -0.01em;
}

.section-desc {
    font-size: 1rem;
    color: var(--gray-mid);
    line-height: 1.8;
}

/* ─── INTRO ─── */
.intro {
    padding: var(--space-2xl) 0;
}

.intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-lg);
    align-items: center;
}

.intro-text .section-label {
    text-align: left;
}

.intro-text h2 {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 3.5vw, 2.6rem);
    font-weight: 300;
    color: var(--plum);
    line-height: 1.2;
    margin-bottom: var(--space-md);
    letter-spacing: -0.01em;
}

.intro-text p {
    font-size: 1rem;
    color: var(--gray-mid);
    line-height: 1.9;
    margin-bottom: var(--space-sm);
}

.intro-image {
    overflow: hidden;
}

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

.intro-image:hover img {
    transform: scale(1.03);
}

/* ─── ROOMS ─── */
.rooms {
    padding: var(--space-2xl) 0;
    background: var(--white);
}

.rooms-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-md);
    margin-bottom: var(--space-md);
}

.room-card {
    background: var(--cream);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.room-card:hover {
    transform: translateY(-4px);
}

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

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

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

.room-info {
    padding: var(--space-md);
}

.room-info h3 {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--plum);
    margin-bottom: 0.5rem;
}

.room-info p {
    font-size: 0.9rem;
    color: var(--gray-mid);
    line-height: 1.7;
    margin-bottom: var(--space-sm);
}

.room-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.room-features li {
    font-size: 0.82rem;
    color: var(--gray-dark);
    padding-left: 1rem;
    position: relative;
}

.room-features li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.45em;
    width: 6px;
    height: 1px;
    background: var(--amber);
}

.rooms-note {
    text-align: center;
    font-size: 0.85rem;
    color: var(--gray-light);
    font-style: italic;
}

/* ─── DIVIDER / QUOTE ─── */
.divider-section {
    padding: var(--space-xl) 0;
    background: var(--plum);
    text-align: center;
}

.divider-section blockquote {
    font-family: var(--font-serif);
    font-size: clamp(1.4rem, 3vw, 2rem);
    font-weight: 300;
    font-style: italic;
    color: var(--white);
    line-height: 1.5;
    max-width: 700px;
    margin: 0 auto;
    position: relative;
}

.divider-section blockquote::before {
    content: '"';
    display: block;
    font-size: 4rem;
    color: var(--amber);
    line-height: 1;
    margin-bottom: var(--space-xs);
}

/* ─── EXPERIENCE ─── */
.experience {
    padding: var(--space-2xl) 0;
}

.experience-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-md);
}

.exp-item {
    padding: var(--space-md);
    border: 1px solid var(--gray-pale);
    transition: all 0.3s;
}

.exp-item:hover {
    border-color: var(--amber);
    background: var(--amber-pale);
}

.exp-icon {
    width: 40px;
    height: 40px;
    color: var(--amber);
    margin-bottom: var(--space-sm);
}

.exp-item h3 {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-weight: 400;
    color: var(--plum);
    margin-bottom: 0.5rem;
}

.exp-item p {
    font-size: 0.88rem;
    color: var(--gray-mid);
    line-height: 1.8;
}

/* ─── LOCATION ─── */
.location {
    padding: var(--space-2xl) 0;
    background: var(--white);
}

.location-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-lg);
    align-items: stretch;
}

.location-info {
    padding: var(--space-lg) 0;
}

.location-info h2 {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 3.5vw, 2.6rem);
    font-weight: 300;
    color: var(--plum);
    line-height: 1.2;
    margin-bottom: var(--space-md);
}

.location-address {
    font-style: normal;
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--gray-dark);
    margin-bottom: var(--space-md);
}

.location-contact {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: var(--space-md);
}

.location-contact a {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.9rem;
    color: var(--plum);
    transition: color 0.3s;
}

.location-contact a:hover {
    color: var(--amber);
}

.location-note {
    font-size: 0.88rem;
    color: var(--gray-mid);
    line-height: 1.7;
}

.location-map {
    min-height: 400px;
    background: var(--gray-pale);
}

.location-map iframe {
    width: 100%;
    height: 100%;
    min-height: 400px;
}

/* ─── CTA / CONTACT ─── */
.cta {
    padding: var(--space-2xl) 0;
    background: var(--plum);
}

.cta .section-label {
    color: var(--amber-light);
}

.cta-content {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.cta-content h2 {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 300;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: var(--space-sm);
}

.cta-content > p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    margin-bottom: var(--space-lg);
}

.contact-form {
    text-align: left;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-sm);
}

.form-group {
    margin-bottom: var(--space-sm);
}

.form-group.full {
    margin-bottom: var(--space-md);
}

.form-group label {
    display: block;
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.85rem 1rem;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--white);
    font-family: var(--font-sans);
    font-size: 0.9rem;
    font-weight: 300;
    transition: all 0.3s;
    border-radius: 0;
    -webkit-appearance: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.35);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--amber);
    background: rgba(255, 255, 255, 0.12);
}

.form-group select option {
    background: var(--plum);
    color: var(--white);
}

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

.form-note {
    text-align: center;
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.5);
    margin-top: var(--space-sm);
}

.form-note a {
    color: var(--amber-light);
    transition: color 0.3s;
}

.form-note a:hover {
    color: var(--amber);
}

/* Success State */
.form-success {
    text-align: center;
    padding: var(--space-lg) 0;
    color: var(--white);
}

.form-success svg {
    color: var(--amber);
    margin-bottom: var(--space-sm);
}

.form-success h3 {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    font-weight: 300;
    margin-bottom: 0.5rem;
}

.form-success p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
}

/* ─── FOOTER ─── */
.footer {
    padding: var(--space-lg) 0 var(--space-md);
    background: var(--charcoal);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: var(--space-lg);
    margin-bottom: var(--space-lg);
}

.footer-logo {
    font-family: var(--font-serif);
    font-size: 1.3rem;
    color: var(--white);
    display: block;
    margin-bottom: 0.75rem;
}

.footer-brand p {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.7;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-links a {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    transition: color 0.3s;
}

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

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.8;
}

.footer-contact a {
    color: rgba(255, 255, 255, 0.5);
    transition: color 0.3s;
}

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

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: var(--space-md);
    text-align: center;
}

.footer-bottom p {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.3);
}

/* ─── SCROLL 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);
}

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
    .experience-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--plum-deep);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: var(--space-md) !important;
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: -10px 0 40px rgba(0, 0, 0, 0.3);
    }

    .nav-links.open {
        right: 0;
    }

    .nav-links a {
        color: rgba(255, 255, 255, 0.8) !important;
        font-size: 0.9rem;
    }

    .nav-cta {
        border-color: rgba(255, 255, 255, 0.4) !important;
        color: var(--white) !important;
    }

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

    .intro-image {
        order: -1;
    }

    .intro-image img {
        height: 350px;
    }

    .rooms-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }

    .experience-grid {
        grid-template-columns: 1fr;
        max-width: 480px;
        margin-left: auto;
        margin-right: auto;
    }

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

    .footer-grid {
        grid-template-columns: 1fr;
        gap: var(--space-md);
    }

    .hero-actions {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 260px;
    }
}

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

    .hero {
        min-height: 600px;
    }
}
