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

:root {
    --plum: #6B3A6B;
    --plum-deep: #4A2549;
    --plum-light: #8B5A8B;
    --plum-pale: #F3ECF3;
    --plum-mist: #FAF7FA;
    --amber: #C8963E;
    --amber-light: #D4A04A;
    --amber-pale: #FDF6E3;
    --amber-glow: #E8C97A;
    --black: #1A1A1A;
    --gray-900: #2A2A2A;
    --gray-700: #4A4A4A;
    --gray-500: #7A7A7A;
    --gray-300: #B0B0B0;
    --gray-100: #E8E8E8;
    --gray-50: #F5F5F5;
    --white: #FFFFFF;
    --font-serif: 'Cormorant Garamond', Georgia, serif;
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
    font-family: var(--font-sans);
    font-weight: 300;
    font-size: 15px;
    line-height: 1.7;
    color: var(--gray-700);
    background: var(--white);
}

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

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

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

.skip-link {
    position: absolute;
    top: -100%;
    left: 16px;
    background: var(--plum);
    color: var(--white);
    padding: 8px 16px;
    border-radius: 4px;
    z-index: 1000;
    font-size: 14px;
}

.skip-link:focus {
    top: 16px;
}

/* ── Header ── */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid transparent;
    transition: border-color 0.4s var(--ease-smooth), box-shadow 0.4s var(--ease-smooth);
}

.site-header.scrolled {
    border-bottom-color: var(--gray-100);
    box-shadow: 0 1px 0 rgba(0,0,0,0.04);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--plum);
    font-family: var(--font-serif);
    font-size: 20px;
    font-weight: 500;
    letter-spacing: 0.01em;
}

.logo-mark {
    flex-shrink: 0;
}

.logo-text {
    font-style: italic;
}

/* ── Nav ── */
.nav-list {
    display: flex;
    align-items: center;
    gap: 32px;
    list-style: none;
}

.nav-link {
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--gray-700);
    transition: color 0.3s var(--ease-smooth);
    position: relative;
}

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

.nav-link:hover {
    color: var(--plum);
}

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

.nav-cta {
    color: var(--amber) !important;
    border: 1px solid var(--amber);
    padding: 8px 20px;
    border-radius: 2px;
    transition: background 0.3s var(--ease-smooth), color 0.3s var(--ease-smooth) !important;
}

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

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

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

.nav-toggle-line {
    display: block;
    width: 22px;
    height: 1.5px;
    background: var(--gray-700);
    transition: transform 0.3s var(--ease-out), opacity 0.3s var(--ease-smooth);
    transform-origin: center;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-line:nth-child(1) {
    transform: translateY(6.5px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-line:nth-child(2) {
    opacity: 0;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-line:nth-child(3) {
    transform: translateY(-6.5px) rotate(-45deg);
}

/* ── Hero ── */
.hero {
    padding-top: 72px;
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    align-items: center;
    background: var(--plum-mist);
    overflow: hidden;
}

.hero-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    padding: 60px 0;
}

.hero-eyebrow {
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--amber);
    margin-bottom: 24px;
}

.hero-headline {
    font-family: var(--font-serif);
    font-size: clamp(40px, 5vw, 68px);
    font-weight: 300;
    line-height: 1.1;
    color: var(--black);
    margin-bottom: 28px;
    letter-spacing: -0.01em;
}

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

.hero-desc {
    font-size: 17px;
    line-height: 1.8;
    color: var(--gray-500);
    max-width: 440px;
    margin-bottom: 40px;
}

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

/* ── Buttons ── */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: var(--font-sans);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 14px 32px;
    border: 1.5px solid transparent;
    border-radius: 2px;
    cursor: pointer;
    transition: all 0.3s var(--ease-smooth);
    white-space: nowrap;
}

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

.btn-primary:hover {
    background: var(--plum-deep);
    border-color: var(--plum-deep);
}

.btn-outline {
    background: transparent;
    color: var(--plum);
    border-color: var(--plum);
}

.btn-outline:hover {
    background: var(--plum);
    color: var(--white);
}

.btn-full {
    width: 100%;
}

/* ── Hero Visual ── */
.hero-visual {
    position: relative;
}

.hero-image-card {
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(107, 58, 107, 0.12);
}

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

.stat-card {
    position: absolute;
    background: var(--white);
    padding: 20px 24px;
    border-radius: 4px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
    border: 1px solid var(--gray-100);
}

.stat-card--1 {
    bottom: -30px;
    left: -30px;
}

.stat-card--2 {
    top: 40px;
    right: -20px;
}

.stat-number {
    display: block;
    font-family: var(--font-serif);
    font-size: 28px;
    font-weight: 400;
    color: var(--plum);
    line-height: 1;
    margin-bottom: 6px;
}

.stat-label {
    font-size: 12px;
    color: var(--gray-500);
    line-height: 1.5;
    letter-spacing: 0.02em;
}

/* ── Section Shared ── */
.section-eyebrow {
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--amber);
    margin-bottom: 16px;
}

.section-title {
    font-family: var(--font-serif);
    font-size: clamp(28px, 3.5vw, 48px);
    font-weight: 300;
    line-height: 1.15;
    color: var(--black);
    letter-spacing: -0.01em;
    margin-bottom: 20px;
}

/* ── Rooms ── */
.rooms {
    padding: 120px 0;
    background: var(--white);
}

.section-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 64px;
}

.section-header .section-eyebrow {
    margin-bottom: 16px;
}

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

.room-card {
    border-radius: 4px;
    overflow: hidden;
    transition: transform 0.4s var(--ease-out), box-shadow 0.4s var(--ease-smooth);
}

.room-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 50px rgba(107, 58, 107, 0.1);
}

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

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

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

.room-info {
    padding: 28px 0;
    border-bottom: 1px solid var(--gray-100);
}

.room-name {
    font-family: var(--font-serif);
    font-size: 24px;
    font-weight: 400;
    color: var(--black);
    margin-bottom: 10px;
}

.room-desc {
    font-size: 14px;
    line-height: 1.7;
    color: var(--gray-500);
    margin-bottom: 16px;
}

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

.room-features li {
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 0.04em;
    padding: 6px 12px;
    background: var(--plum-pale);
    color: var(--plum);
    border-radius: 2px;
}

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

/* ── Experience ── */
.experience {
    padding: 120px 0;
    background: var(--plum-mist);
}

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

.experience-desc {
    font-size: 17px;
    line-height: 1.8;
    color: var(--gray-500);
    margin-bottom: 48px;
    max-width: 480px;
}

.experience-list {
    display: flex;
    flex-direction: column;
    gap: 36px;
}

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

.exp-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--plum-light);
    border-radius: 50%;
    color: var(--plum);
    margin-top: 2px;
}

.exp-item-title {
    font-family: var(--font-serif);
    font-size: 20px;
    font-weight: 400;
    color: var(--black);
    margin-bottom: 4px;
}

.exp-item-desc {
    font-size: 14px;
    line-height: 1.7;
    color: var(--gray-500);
}

.experience-images {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    position: relative;
}

.exp-img {
    overflow: hidden;
    border-radius: 4px;
}

.exp-img--1 {
    aspect-ratio: 5 / 6.5;
}

.exp-img--2 {
    aspect-ratio: 5 / 3;
    margin-top: 40px;
}

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

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

/* ── Location ── */
.location {
    padding: 120px 0;
    background: var(--white);
}

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

.location-desc {
    font-size: 17px;
    line-height: 1.8;
    color: var(--gray-500);
    margin-bottom: 48px;
    max-width: 480px;
}

.location-highlights {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 48px;
}

.loc-highlight {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.loc-highlight-num {
    font-family: var(--font-serif);
    font-size: 32px;
    font-weight: 300;
    color: var(--plum);
    line-height: 1;
}

.loc-highlight-label {
    font-size: 13px;
    color: var(--gray-500);
    letter-spacing: 0.02em;
}

.location-map {
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0,0,0,0.06);
}

.map-wrapper {
    aspect-ratio: 4 / 3;
}

.map-wrapper iframe {
    width: 100%;
    height: 100%;
}

.location-address {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 24px;
    background: var(--plum-mist);
    border-radius: 4px;
    font-style: normal;
    font-size: 14px;
    color: var(--gray-700);
    line-height: 1.8;
}

.location-address strong {
    font-family: var(--font-serif);
    font-size: 18px;
    font-weight: 500;
    color: var(--black);
}

/* ── Contact ── */
.contact {
    padding: 120px 0;
    background: var(--plum-mist);
}

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

.contact-desc {
    font-size: 17px;
    line-height: 1.8;
    color: var(--gray-500);
    margin-bottom: 48px;
    max-width: 440px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.contact-detail {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.contact-detail-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--plum-light);
    border-radius: 50%;
    color: var(--plum);
}

.contact-detail-label {
    display: block;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gray-300);
    margin-bottom: 4px;
}

.contact-detail-value {
    font-size: 15px;
    color: var(--gray-700);
}

.contact-detail-value a {
    color: var(--plum);
    transition: color 0.3s var(--ease-smooth);
}

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

/* ── Form ── */
.contact-form-wrap {
    background: var(--white);
    padding: 48px;
    border-radius: 4px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.04);
    border: 1px solid var(--gray-100);
}

.form-group {
    margin-bottom: 24px;
}

.form-label {
    display: block;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--gray-500);
    margin-bottom: 8px;
}

.form-optional {
    font-weight: 300;
    text-transform: none;
    letter-spacing: 0;
    color: var(--gray-300);
}

.form-input {
    width: 100%;
    padding: 12px 0;
    font-family: var(--font-sans);
    font-size: 15px;
    font-weight: 300;
    color: var(--black);
    background: transparent;
    border: none;
    border-bottom: 1px solid var(--gray-100);
    outline: none;
    transition: border-color 0.3s var(--ease-smooth);
    resize: none;
}

.form-input::placeholder {
    color: var(--gray-300);
}

.form-input:focus {
    border-bottom-color: var(--plum);
}

.form-textarea {
    min-height: 120px;
    line-height: 1.6;
}

.form-success {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 16px;
    padding: 14px 18px;
    background: var(--plum-pale);
    border-radius: 4px;
    font-size: 14px;
    color: var(--plum);
}

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

/* ── Footer ── */
.site-footer {
    background: var(--black);
    color: var(--gray-300);
    padding: 64px 0 32px;
}

.footer-inner {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand .logo {
    color: var(--white);
    margin-bottom: 12px;
}

.footer-tagline {
    font-size: 13px;
    color: var(--gray-500);
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 8px;
    font-size: 14px;
    line-height: 1.8;
}

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

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

.footer-nav {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-nav a {
    font-size: 13px;
    color: var(--gray-500);
    transition: color 0.3s var(--ease-smooth);
}

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

.footer-bottom {
    padding-top: 32px;
    text-align: center;
    font-size: 13px;
    color: var(--gray-500);
}

/* ── Animations ── */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}

.reveal.revealed {
    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; }

/* ── Responsive ── */
@media (max-width: 1024px) {
    .hero-layout {
        gap: 40px;
    }

    .experience-layout,
    .location-layout,
    .contact-layout {
        gap: 48px;
    }

    .stat-card--1 {
        left: -10px;
        bottom: -20px;
    }

    .stat-card--2 {
        right: -10px;
    }
}

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

    .nav-list {
        position: fixed;
        top: 0;
        right: 0;
        width: 280px;
        height: 100vh;
        height: 100dvh;
        background: var(--white);
        flex-direction: column;
        justify-content: center;
        gap: 28px;
        padding: 40px;
        box-shadow: -10px 0 40px rgba(0,0,0,0.1);
        transform: translateX(100%);
        transition: transform 0.4s var(--ease-out);
    }

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

    .nav-link {
        font-size: 15px;
    }

    .hero-layout {
        grid-template-columns: 1fr;
        padding: 40px 0;
    }

    .hero-visual {
        order: -1;
        max-width: 400px;
        margin: 0 auto;
    }

    .stat-card--1 {
        left: 0;
        bottom: -16px;
    }

    .stat-card--2 {
        right: 0;
        top: 20px;
    }

    .rooms-grid {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .room-card + .room-card {
        border-top: 1px solid var(--gray-100);
    }

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

    .experience-images {
        order: -1;
    }

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

    .contact-form-wrap {
        padding: 32px 24px;
    }

    .footer-inner {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .footer-bottom {
        text-align: left;
    }
}

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

    .hero-headline {
        font-size: 36px;
    }

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

    .hero-actions .btn {
        width: 100%;
        text-align: center;
    }

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

    .stat-card {
        padding: 14px 18px;
    }

    .stat-number {
        font-size: 22px;
    }
}

/* Mobile nav overlay */
.nav-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.3);
    z-index: 99;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s var(--ease-smooth);
}

.nav-overlay.active {
    opacity: 1;
    pointer-events: all;
}
