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

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

body {
    font-family: 'Inter', sans-serif;
    font-weight: 300;
    color: #1a1a1a;
    background-color: #FDFCFA;
    line-height: 1.7;
    overflow-x: hidden;
}

::selection {
    background-color: #1B4332;
    color: #F5F0E8;
}

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

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

.container {
    max-width: 1400px;
}

/* ─── Typography ─── */

.eyebrow {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #1B4332;
    margin-bottom: 1.25rem;
}

.section-title {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 300;
    font-size: clamp(2rem, 4vw, 3.25rem);
    line-height: 1.15;
    color: #1a1a1a;
    letter-spacing: -0.01em;
}

.lead {
    font-family: 'Inter', sans-serif;
    font-weight: 300;
    font-size: 1.05rem;
    color: #4a4a4a;
    line-height: 1.8;
    max-width: 480px;
}

/* ─── Buttons ─── */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    padding: 1rem 2.25rem;
    border: none;
    cursor: pointer;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn--primary {
    background-color: #1B4332;
    color: #F5F0E8;
}

.btn--primary:hover {
    background-color: #143326;
    transform: translateY(-1px);
    box-shadow: 0 4px 20px rgba(27, 67, 50, 0.25);
}

.btn--outline {
    background-color: transparent;
    color: #1B4332;
    border: 1px solid #1B4332;
}

.btn--outline:hover {
    background-color: #1B4332;
    color: #F5F0E8;
}

.btn--cream {
    background-color: #F5F0E8;
    color: #1B4332;
}

.btn--cream:hover {
    background-color: #EBE4D4;
    transform: translateY(-1px);
}

/* ─── Header ─── */

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 1.5rem 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.header.scrolled {
    background-color: rgba(253, 252, 250, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 1rem 0;
    box-shadow: 0 1px 0 rgba(27, 67, 50, 0.08);
}

.logo-text {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 400;
    font-size: 1.35rem;
    letter-spacing: 0.02em;
    color: #1a1a1a;
}

.nav-link {
    font-family: 'Inter', sans-serif;
    font-weight: 300;
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #4a4a4a;
    position: relative;
    padding-bottom: 4px;
    transition: color 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background-color: #1B4332;
    transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-link:hover {
    color: #1B4332;
}

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

/* ─── Mobile Menu ─── */

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

.menu-toggle .bar {
    display: block;
    width: 22px;
    height: 1px;
    background-color: #1a1a1a;
    transition: all 0.3s ease;
}

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

.menu-toggle.active .bar:nth-child(2) {
    transform: rotate(-45deg) translate(4px, -4px);
}

.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #FDFCFA;
    z-index: 99;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-menu.open {
    opacity: 1;
    pointer-events: all;
}

.mobile-nav-link {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 400;
    font-size: 2rem;
    color: #1a1a1a;
    transition: color 0.3s ease;
}

.mobile-nav-link:hover {
    color: #1B4332;
}

/* ─── Skip Link ─── */

.skip-link {
    position: absolute;
    top: -100%;
    left: 1rem;
    background: #1B4332;
    color: #F5F0E8;
    padding: 0.75rem 1.25rem;
    font-size: 0.8rem;
    z-index: 200;
    transition: top 0.3s ease;
}

.skip-link:focus {
    top: 0.5rem;
}

/* ─── Hero ─── */

.hero {
    padding-top: 140px;
    padding-bottom: 100px;
    min-height: 90vh;
    display: flex;
    align-items: flex-end;
}

.hero-headline {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 300;
    font-size: clamp(2.75rem, 6vw, 5.5rem);
    line-height: 1.05;
    letter-spacing: -0.02em;
    color: #1a1a1a;
}

.hero-image-wrapper {
    position: relative;
    overflow: hidden;
}

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

.hero-image-wrapper:hover img {
    transform: scale(1.02);
}

.hero-image-tag {
    position: absolute;
    bottom: 1.5rem;
    left: 1.5rem;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #F5F0E8;
    background-color: rgba(27, 67, 50, 0.8);
    padding: 0.5rem 0.875rem;
    backdrop-filter: blur(4px);
}

/* ─── Sections ─── */

.section {
    padding: 100px 0;
}

/* ─── Rooms ─── */

.rooms {
    background-color: #FDFCFA;
}

.room-card {
    group: room;
}

.room-card-img {
    overflow: hidden;
    margin-bottom: 1.5rem;
    position: relative;
}

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

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

.room-card-title {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 400;
    font-size: 1.5rem;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
    letter-spacing: -0.01em;
}

.room-card-desc {
    font-size: 0.875rem;
    color: #666;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.room-card-amenities {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem 1.25rem;
}

.room-card-amenities li {
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #1B4332;
    position: relative;
    padding-left: 0.75rem;
}

.room-card-amenities li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 3px;
    height: 3px;
    background-color: #1B4332;
    border-radius: 50%;
}

/* ─── Location ─── */

.location {
    background-color: #F5F0E8;
}

.location-map-img {
    position: relative;
    overflow: hidden;
}

.location-map-img img {
    width: 100%;
    height: 480px;
    object-fit: cover;
}

.location-map-tag {
    position: absolute;
    bottom: 1.25rem;
    right: 1.25rem;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #F5F0E8;
    background-color: rgba(27, 67, 50, 0.85);
    padding: 0.5rem 0.875rem;
    backdrop-filter: blur(4px);
}

/* ─── Stay ─── */

.stay {
    background-color: #FDFCFA;
}

.stay-image-main img {
    width: 100%;
    height: 600px;
    object-fit: cover;
}

.stay-feature {
    position: relative;
}

.stay-feature-title {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 500;
    font-size: 1.25rem;
    color: #1a1a1a;
    margin-bottom: 0.375rem;
}

/* ─── CTA ─── */

.cta {
    background-color: #1B4332;
    padding: 120px 0;
}

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

.cta-headline {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 300;
    font-size: clamp(2.25rem, 5vw, 4rem);
    line-height: 1.1;
    color: #F5F0E8;
    margin-bottom: 1.5rem;
    letter-spacing: -0.01em;
}

.cta-sub {
    font-size: 1rem;
    color: rgba(245, 240, 232, 0.65);
    line-height: 1.8;
    margin-bottom: 3rem;
}

.cta-contact {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 0.5rem;
}

.cta-phone {
    display: inline-flex;
    align-items: center;
    gap: 0.625rem;
    font-family: 'Inter', sans-serif;
    font-weight: 300;
    font-size: 0.9rem;
    color: #F5F0E8;
    letter-spacing: 0.05em;
    transition: color 0.3s ease;
}

.cta-phone:hover {
    color: #EBE4D4;
}

.cta-phone-icon {
    width: 16px;
    height: 16px;
    opacity: 0.7;
}

.cta-email {
    font-family: 'Inter', sans-serif;
    font-weight: 300;
    font-size: 0.9rem;
    color: rgba(245, 240, 232, 0.65);
    letter-spacing: 0.05em;
    text-decoration: underline;
    text-decoration-color: rgba(245, 240, 232, 0.3);
    text-underline-offset: 4px;
    transition: all 0.3s ease;
}

.cta-email:hover {
    color: #F5F0E8;
    text-decoration-color: rgba(245, 240, 232, 0.7);
}

/* ─── Contact ─── */

.contact {
    background-color: #FDFCFA;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-info-item {
    display: flex;
    flex-direction: column;
    gap: 0.375rem;
}

.contact-info-label {
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #1B4332;
    font-weight: 400;
}

.contact-info-value {
    font-size: 0.9rem;
    color: #4a4a4a;
    line-height: 1.6;
}

/* ─── Form ─── */

.form-group {
    margin-bottom: 1.75rem;
}

.form-label {
    display: block;
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #1B4332;
    font-weight: 400;
    margin-bottom: 0.625rem;
}

.form-opt {
    font-weight: 300;
    color: #999;
    text-transform: none;
    letter-spacing: 0;
}

.form-input,
.form-textarea {
    width: 100%;
    font-family: 'Inter', sans-serif;
    font-weight: 300;
    font-size: 0.9rem;
    color: #1a1a1a;
    background-color: transparent;
    border: none;
    border-bottom: 1px solid rgba(27, 67, 50, 0.2);
    padding: 0.625rem 0;
    outline: none;
    transition: border-color 0.3s ease;
    resize: none;
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: #bbb;
}

.form-input:focus,
.form-textarea:focus {
    border-bottom-color: #1B4332;
}

.form-success {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-top: 1.25rem;
    padding: 1rem 1.25rem;
    background-color: rgba(27, 67, 50, 0.06);
    border-left: 2px solid #1B4332;
    font-size: 0.875rem;
    color: #1B4332;
}

.form-success-icon {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

/* ─── Footer ─── */

.footer {
    background-color: #FDFCFA;
    padding: 0 0 2rem;
}

.footer-link {
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #666;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: #1B4332;
}

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

/* ─── Responsive ─── */

@media (max-width: 768px) {
    .hero {
        padding-top: 100px;
        padding-bottom: 60px;
        min-height: auto;
    }

    .hero-headline {
        font-size: clamp(2.25rem, 10vw, 3.5rem);
    }

    .section {
        padding: 70px 0;
    }

    .cta {
        padding: 80px 0;
    }

    .stay-image-main img {
        height: 400px;
    }

    .location-map-img img {
        height: 320px;
    }
}

@media (max-width: 480px) {
    .container {
        px: 1.25rem;
    }

    .hero {
        padding-top: 90px;
    }

    .btn {
        padding: 0.875rem 1.75rem;
        font-size: 0.7rem;
    }
}
