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

:root {
    --teal-50: #f0fdfa;
    --teal-100: #ccfbf1;
    --teal-200: #99f6e4;
    --teal-600: #0d9488;
    --teal-700: #0d7377;
    --teal-800: #115e59;
    --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;
    --cream: #faf9f6;
    --cream-dark: #f5f0e8;
    --font-serif: 'Playfair Display', Georgia, 'Times New Roman', serif;
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --shadow-sm: 0 1px 3px rgba(15, 23, 42, 0.06), 0 1px 2px rgba(15, 23, 42, 0.04);
    --shadow-md: 0 4px 20px rgba(15, 23, 42, 0.08), 0 2px 8px rgba(15, 23, 42, 0.04);
    --shadow-lg: 0 20px 60px rgba(15, 23, 42, 0.12), 0 8px 20px rgba(15, 23, 42, 0.06);
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

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

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

.skip-link {
    position: absolute;
    top: -100%;
    left: 1rem;
    padding: 0.75rem 1.25rem;
    background: var(--teal-700);
    color: white;
    border-radius: var(--radius-sm);
    z-index: 1000;
    font-weight: 500;
    transition: top 0.2s;
}

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

.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.container-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

/* ─── Header ─────────────────────────────────── */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(250, 249, 246, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(15, 23, 42, 0.06);
    transition: box-shadow var(--transition);
}

.site-header.scrolled {
    box-shadow: var(--shadow-sm);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    color: var(--slate-900);
    font-family: var(--font-serif);
    transition: opacity var(--transition);
}

.logo:hover {
    opacity: 0.7;
}

.logo-mark {
    color: var(--teal-700);
    flex-shrink: 0;
}

.logo-text {
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.01em;
}

.main-nav ul {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    list-style: none;
}

.main-nav a {
    padding: 0.5rem 0.875rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--slate-600);
    border-radius: var(--radius-sm);
    transition: color var(--transition), background var(--transition);
}

.main-nav a:hover {
    color: var(--slate-900);
    background: rgba(15, 23, 42, 0.04);
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    width: 40px;
    height: 40px;
    position: relative;
}

.hamburger,
.hamburger::before,
.hamburger::after {
    display: block;
    width: 20px;
    height: 1.5px;
    background: var(--slate-700);
    border-radius: 2px;
    transition: transform var(--transition), opacity var(--transition);
}

.hamburger {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    left: 0;
}

.hamburger::before { top: -6px; }
.hamburger::after { top: 6px; }

.nav-toggle[aria-expanded="true"] .hamburger {
    background: transparent;
}

.nav-toggle[aria-expanded="true"] .hamburger::before {
    transform: rotate(45deg);
    top: 0;
}

.nav-toggle[aria-expanded="true"] .hamburger::after {
    transform: rotate(-45deg);
    top: 0;
}

/* ─── Buttons ─────────────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 1.75rem;
    font-family: var(--font-sans);
    font-size: 0.9375rem;
    font-weight: 600;
    border-radius: var(--radius-sm);
    border: none;
    cursor: pointer;
    transition: all var(--transition);
    white-space: nowrap;
}

.btn--full {
    width: 100%;
}

.btn-primary {
    background: var(--teal-700);
    color: white;
    box-shadow: 0 4px 14px rgba(13, 115, 119, 0.35);
}

.btn-primary:hover {
    background: var(--teal-800);
    box-shadow: 0 6px 20px rgba(13, 115, 119, 0.45);
    transform: translateY(-1px);
}

.btn--nav.btn-primary {
    padding: 0.625rem 1.25rem;
    font-size: 0.8125rem;
}

.btn-ghost {
    background: transparent;
    color: var(--slate-700);
    border: 1.5px solid var(--slate-200);
}

.btn-ghost:hover {
    border-color: var(--teal-700);
    color: var(--teal-700);
    background: var(--teal-50);
}

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

.hero .container-split {
    padding-top: 2rem;
    padding-bottom: 2rem;
    gap: 3rem;
}

.hero-eyebrow {
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--teal-700);
    margin-bottom: 1.25rem;
}

.hero-title {
    font-family: var(--font-serif);
    font-size: clamp(2.5rem, 5vw, 4.25rem);
    font-weight: 900;
    line-height: 1.08;
    letter-spacing: -0.025em;
    color: var(--slate-900);
    margin-bottom: 1.5rem;
}

.hero-title .text-teal {
    color: var(--teal-700);
    font-style: italic;
    font-weight: 700;
}

.hero-desc {
    font-size: 1.0625rem;
    line-height: 1.7;
    color: var(--slate-600);
    max-width: 480px;
    margin-bottom: 2rem;
}

.hero-actions {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding-top: 2rem;
    border-top: 1px solid var(--slate-200);
}

.stat {
    display: flex;
    flex-direction: column;
    gap: 0.125rem;
}

.stat-num {
    font-family: var(--font-serif);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--teal-700);
    line-height: 1;
}

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

.stat-divider {
    width: 1px;
    height: 32px;
    background: var(--slate-200);
}

.hero-image {
    position: relative;
}

.hero-img-wrap {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

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

.hero-floating-card {
    position: absolute;
    bottom: -1rem;
    left: -1.5rem;
    background: white;
    padding: 1rem 1.25rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    gap: 0.625rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--slate-700);
}

.hero-floating-card svg {
    color: var(--teal-700);
    flex-shrink: 0;
}

/* ─── Section Divider ─────────────────────────── */
.section-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 1.5rem;
}

.section-divider svg {
    width: 100%;
    max-width: 1280px;
    height: 4px;
}

/* ─── Sections ────────────────────────────────── */
.section {
    padding: 6rem 0;
}

.section-header {
    margin-bottom: 4rem;
}

.section-header--centered {
    text-align: center;
}

.section-eyebrow {
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--teal-700);
    margin-bottom: 0.75rem;
}

.section-title {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 4vw, 3.25rem);
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: var(--slate-900);
}

.section-title .text-teal {
    color: var(--teal-700);
    font-style: italic;
    font-weight: 700;
}

.section-title .text-white {
    color: white;
    font-style: italic;
    font-weight: 700;
}

.section-lead {
    font-size: 1.125rem;
    line-height: 1.7;
    color: var(--slate-500);
    max-width: 600px;
    margin: 1.25rem auto 0;
}

/* ─── Cabin Section ───────────────────────────── */
.cabin {
    background: var(--cream);
}

.cabin-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.cabin-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

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

.cabin-content .lead {
    font-size: 1.125rem;
    line-height: 1.75;
    color: var(--slate-600);
    margin-bottom: 2.5rem;
}

.amenity-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.amenity {
    display: flex;
    gap: 1rem;
    align-items: start;
}

.amenity svg {
    color: var(--teal-700);
    flex-shrink: 0;
    margin-top: 2px;
}

.amenity strong {
    display: block;
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--slate-900);
    margin-bottom: 0.125rem;
}

.amenity span {
    font-size: 0.875rem;
    color: var(--slate-500);
    line-height: 1.5;
}

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

.experience .section-eyebrow {
    color: var(--teal-200);
}

.experience .section-title {
    color: white;
}

.experience .section-title .text-teal {
    color: var(--teal-200);
}

.experience .section-lead {
    color: var(--slate-400);
}

.experience-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.exp-card {
    border-radius: var(--radius-md);
    overflow: hidden;
    background: var(--slate-800);
    transition: transform var(--transition), box-shadow var(--transition);
}

.exp-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.exp-card-img {
    overflow: hidden;
    height: 220px;
}

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

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

.exp-card-body {
    padding: 1.5rem;
}

.exp-card-body h3 {
    font-family: var(--font-serif);
    font-size: 1.375rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.5rem;
    letter-spacing: -0.01em;
}

.exp-card-body p {
    font-size: 0.9375rem;
    line-height: 1.65;
    color: var(--slate-400);
}

/* ─── Location Band ───────────────────────────── */
.location-band {
    background: var(--teal-800);
    padding: 6rem 0;
}

.location-band .section-eyebrow {
    color: var(--teal-200);
}

.location-band .section-title {
    color: white;
}

.location-band .section-title .text-white {
    color: white;
}

.location-desc {
    font-size: 1.0625rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 2rem;
    max-width: 440px;
}

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

.location-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.9375rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
}

.location-features li svg {
    color: var(--teal-200);
    flex-shrink: 0;
}

.location-map {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    min-height: 400px;
}

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

/* ─── Gallery ─────────────────────────────────── */
.gallery {
    background: var(--cream);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: auto;
    gap: 1rem;
}

.gallery-item {
    border-radius: var(--radius-md);
    overflow: hidden;
    position: relative;
}

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

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

.gallery-item--large {
    grid-column: 1 / 8;
    grid-row: 1 / 2;
    height: 420px;
}

.gallery-item:not(.gallery-item--large):not(.gallery-item--wide) {
    height: 220px;
}

.gallery-item--wide {
    grid-column: 1 / 13;
    grid-row: 2 / 3;
    height: 280px;
}

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

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-desc {
    font-size: 1.0625rem;
    line-height: 1.7;
    color: var(--slate-500);
    margin-bottom: 2.5rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-detail {
    display: flex;
    gap: 1rem;
    align-items: start;
}

.contact-detail svg {
    color: var(--teal-700);
    flex-shrink: 0;
    margin-top: 2px;
}

.contact-detail strong {
    display: block;
    font-size: 0.8125rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--slate-400);
    margin-bottom: 0.25rem;
}

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

.contact-detail a:hover {
    color: var(--teal-700);
    text-decoration: underline;
}

.contact-form-wrap {
    background: white;
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    box-shadow: var(--shadow-md);
}

.form-title {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--slate-900);
    margin-bottom: 1.5rem;
    letter-spacing: -0.01em;
}

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

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.375rem;
    margin-bottom: 1rem;
}

.form-group label {
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--slate-700);
    letter-spacing: 0.02em;
}

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

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--teal-700);
    box-shadow: 0 0 0 3px rgba(13, 115, 119, 0.12);
    background: white;
}

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

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

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

.form-success {
    text-align: center;
    padding: 2rem;
}

.form-success svg {
    color: var(--teal-700);
    margin: 0 auto 1rem;
}

.form-success h3 {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--slate-900);
    margin-bottom: 0.5rem;
}

.form-success p {
    color: var(--slate-500);
    font-size: 0.9375rem;
}

/* ─── Footer ──────────────────────────────────── */
.site-footer {
    background: var(--slate-900);
    color: white;
    padding: 4rem 0 0;
}

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

.logo--light {
    color: white;
}

.logo--light .logo-mark {
    color: var(--teal-200);
}

.footer-tagline {
    margin-top: 0.75rem;
    font-size: 0.9375rem;
    color: var(--slate-400);
}

.footer-links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.footer-col h4 {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--slate-400);
    margin-bottom: 1rem;
}

.footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-col a {
    font-size: 0.9375rem;
    color: var(--slate-300);
    transition: color var(--transition);
}

.footer-col a:hover {
    color: white;
}

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

/* ─── Animations ──────────────────────────────── */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s 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; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ─── Responsive ──────────────────────────────── */
@media (max-width: 1024px) {
    .container-split {
        gap: 2.5rem;
    }
}

@media (max-width: 900px) {
    .hero .container-split,
    .cabin-grid,
    .contact-grid,
    .location-band .container-split {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .hero-image {
        order: -1;
    }

    .hero-img-wrap {
        max-height: 500px;
    }

    .hero-floating-card {
        left: 1rem;
        bottom: -0.75rem;
    }

    .experience-grid {
        grid-template-columns: 1fr;
    }

    .gallery-item--large {
        grid-column: 1 / -1;
        height: 300px;
    }

    .gallery-item:not(.gallery-item--large):not(.gallery-item--wide) {
        height: 200px;
    }

    .gallery-item--wide {
        grid-column: 1 / -1;
        height: 220px;
    }

    .footer-top {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

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

    .main-nav {
        position: fixed;
        top: 72px;
        left: 0;
        right: 0;
        background: rgba(250, 249, 246, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        padding: 1rem 1.5rem 1.5rem;
        border-bottom: 1px solid var(--slate-200);
        box-shadow: var(--shadow-md);
        transform: translateY(-120%);
        opacity: 0;
        visibility: hidden;
        transition: transform var(--transition), opacity var(--transition), visibility var(--transition);
    }

    .main-nav.open {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .main-nav ul {
        flex-direction: column;
        align-items: stretch;
        gap: 0.25rem;
    }

    .main-nav a {
        padding: 0.875rem 1rem;
        font-size: 1rem;
    }

    .btn--nav.btn-primary {
        text-align: center;
        margin-top: 0.5rem;
    }

    .hero {
        min-height: auto;
        padding-top: 100px;
        padding-bottom: 2rem;
    }

    .hero-stats {
        flex-wrap: wrap;
        gap: 1rem;
    }

    .section {
        padding: 4rem 0;
    }

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

    .footer-bottom {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }

    .location-band {
        padding: 4rem 0;
    }
}

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

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

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

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

    .contact-form-wrap {
        padding: 1.5rem;
    }

    .footer-links {
        grid-template-columns: 1fr;
    }
}
