/* ============================================
   Happy Kampers Beach House — Stylesheet
   Palette: Plum (#7B2D5B) + Amber (#D4A017)
   Fonts: Playfair Display + Inter
   ============================================ */

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

:root {
    --plum-900: #4A1A35;
    --plum-800: #5C2244;
    --plum-700: #7B2D5B;
    --plum-600: #94396E;
    --plum-500: #B04782;
    --plum-100: #F5E6F0;
    --plum-50: #FDF3F8;
    
    --amber-700: #B8860B;
    --amber-600: #D4A017;
    --amber-500: #E8B828;
    --amber-400: #F0C840;
    --amber-100: #FEF3C7;
    --amber-50: #FFFBEB;
    
    --neutral-950: #0A0A0A;
    --neutral-900: #111111;
    --neutral-800: #1A1A1A;
    --neutral-700: #2D2D2D;
    --neutral-600: #404040;
    --neutral-500: #666666;
    --neutral-400: #888888;
    --neutral-300: #A3A3A3;
    --neutral-200: #D1D1D1;
    --neutral-100: #E8E8E8;
    --neutral-50: #F5F5F5;
    --neutral-25: #FAFAFA;
    --white: #FFFFFF;
    
    --font-serif: 'Playfair Display', Georgia, serif;
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    
    --space-xs: 0.25rem;
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-2xl: 3rem;
    --space-3xl: 4rem;
    --space-4xl: 6rem;
    --space-5xl: 8rem;
    
    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.08), 0 1px 2px rgba(0,0,0,0.06);
    --shadow-md: 0 4px 16px rgba(0,0,0,0.08), 0 2px 4px rgba(0,0,0,0.04);
    --shadow-lg: 0 12px 40px rgba(0,0,0,0.12), 0 4px 12px rgba(0,0,0,0.06);
    --shadow-xl: 0 24px 60px rgba(0,0,0,0.16), 0 8px 20px rgba(0,0,0,0.08);
    
    --transition-fast: 0.15s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-base: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
    font-family: var(--font-sans);
    color: var(--neutral-800);
    background-color: var(--white);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

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

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

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

ul {
    list-style: none;
}

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

/* ============================================
   HEADER
   ============================================ */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    transition: var(--transition-base);
}

.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: var(--space-sm);
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--plum-800);
    letter-spacing: -0.02em;
}

.logo-light {
    color: var(--white);
}

.logo-icon {
    width: 32px;
    height: 32px;
    color: var(--amber-600);
}

.logo-dot {
    color: var(--amber-600);
    font-size: 1.5rem;
    line-height: 1;
}

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

.nav-link {
    padding: var(--space-sm) var(--space-md);
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--neutral-600);
    border-radius: var(--radius-sm);
    transition: var(--transition-fast);
    letter-spacing: 0.01em;
}

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

.nav-cta {
    margin-left: var(--space-md);
    padding: var(--space-sm) var(--space-lg);
    background: var(--plum-700);
    color: var(--white) !important;
    border-radius: var(--radius-sm);
    font-weight: 600;
    transition: var(--transition-base);
}

.nav-cta:hover {
    background: var(--plum-800);
    color: var(--white) !important;
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

.mobile-menu-btn {
    display: none;
    width: 40px;
    height: 40px;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-sm);
    transition: var(--transition-fast);
}

.mobile-menu-btn:hover {
    background: var(--neutral-50);
}

.hamburger {
    position: relative;
    width: 20px;
    height: 14px;
    display: block;
}

.hamburger::before,
.hamburger::after,
.hamburger span {
    content: '';
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--neutral-700);
    border-radius: 2px;
    transition: var(--transition-base);
}

.hamburger::before { top: 0; }
.hamburger span { top: 6px; }
.hamburger::after { bottom: 0; }

.mobile-menu-btn[aria-expanded="true"] .hamburger::before {
    transform: rotate(45deg);
    top: 6px;
}

.mobile-menu-btn[aria-expanded="true"] .hamburger span {
    opacity: 0;
}

.mobile-menu-btn[aria-expanded="true"] .hamburger::after {
    transform: rotate(-45deg);
    bottom: 0;
}

/* ============================================
   HERO
   ============================================ */
.hero {
    padding-top: 72px;
    min-height: 100vh;
    min-height: 100dvh;
    background: linear-gradient(135deg, var(--neutral-25) 0%, var(--plum-50) 50%, var(--amber-50) 100%);
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
    align-items: center;
    padding: var(--space-3xl) 0;
}

.hero-content {
    max-width: 560px;
}

.hero-eyebrow {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    margin-bottom: var(--space-xl);
}

.eyebrow-line {
    width: 40px;
    height: 2px;
    background: var(--amber-600);
    border-radius: 2px;
}

.eyebrow-text {
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--plum-700);
}

.hero-headline {
    font-family: var(--font-serif);
    font-size: clamp(2.25rem, 4.5vw, 3.75rem);
    font-weight: 700;
    line-height: 1.1;
    color: var(--neutral-950);
    margin-bottom: var(--space-xl);
    letter-spacing: -0.025em;
}

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

.hero-subhead {
    font-size: 1.125rem;
    line-height: 1.7;
    color: var(--neutral-600);
    margin-bottom: var(--space-2xl);
    max-width: 480px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-md);
    margin-bottom: var(--space-3xl);
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
}

.stat {
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
}

.stat-number {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--neutral-900);
    line-height: 1;
}

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

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

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    padding: 0.875rem 1.75rem;
    font-size: 0.9375rem;
    font-weight: 600;
    border-radius: var(--radius-sm);
    transition: var(--transition-base);
    letter-spacing: 0.01em;
    white-space: nowrap;
}

.btn-primary {
    background: var(--plum-700);
    color: var(--white);
    box-shadow: 0 4px 16px rgba(123, 45, 91, 0.3);
}

.btn-primary:hover {
    background: var(--plum-800);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(123, 45, 91, 0.35);
}

.btn-outline {
    background: transparent;
    color: var(--neutral-800);
    border: 1.5px solid var(--neutral-300);
}

.btn-outline:hover {
    border-color: var(--plum-700);
    color: var(--plum-700);
    transform: translateY(-2px);
}

.btn-ghost {
    background: transparent;
    color: var(--plum-700);
    padding: var(--space-sm) var(--space-md);
    font-size: 0.875rem;
}

.btn-ghost:hover {
    background: var(--plum-50);
}

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

.btn-arrow {
    width: 16px;
    height: 16px;
}

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

.hero-image-stack {
    position: relative;
    padding-left: var(--space-2xl);
}

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

.hero-img-primary {
    width: 100%;
    aspect-ratio: 4/5;
    position: relative;
    z-index: 2;
}

.hero-img-secondary {
    position: absolute;
    bottom: -40px;
    left: -60px;
    width: 55%;
    aspect-ratio: 4/3;
    z-index: 3;
    border: 4px solid var(--white);
}

.hero-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

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

.hero-accent {
    position: absolute;
    top: -30px;
    right: -30px;
    width: 120px;
    height: 120px;
    background: var(--amber-500);
    border-radius: 50%;
    opacity: 0.15;
    z-index: 1;
}

.hero-accent::after {
    content: '';
    position: absolute;
    top: 20px;
    right: -20px;
    width: 80px;
    height: 80px;
    background: var(--plum-500);
    border-radius: 50%;
    opacity: 0.1;
}

/* ============================================
   SECTIONS
   ============================================ */
.section {
    padding: var(--space-5xl) 0;
}

.section-header {
    max-width: 680px;
    margin-bottom: var(--space-3xl);
}

.section-header.centered {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.section-eyebrow {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    margin-bottom: var(--space-lg);
}

.eyebrow-accent {
    width: 32px;
    height: 2px;
    background: var(--amber-600);
    border-radius: 2px;
    flex-shrink: 0;
}

.section-title {
    font-family: var(--font-serif);
    font-size: clamp(1.875rem, 3.5vw, 2.75rem);
    font-weight: 700;
    line-height: 1.15;
    color: var(--neutral-950);
    margin-bottom: var(--space-lg);
    letter-spacing: -0.02em;
}

.section-desc {
    font-size: 1.0625rem;
    line-height: 1.75;
    color: var(--neutral-500);
    max-width: 560px;
}

/* ============================================
   ACCOMMODATIONS
   ============================================ */
.accommodations {
    background: var(--white);
}

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

.room-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--neutral-100);
    transition: var(--transition-base);
}

.room-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.room-img {
    aspect-ratio: 3/2;
    overflow: hidden;
}

.room-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

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

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

.room-name {
    font-family: var(--font-serif);
    font-size: 1.375rem;
    font-weight: 700;
    color: var(--neutral-900);
    margin-bottom: var(--space-sm);
    letter-spacing: -0.01em;
}

.room-desc {
    font-size: 0.9375rem;
    line-height: 1.65;
    color: var(--neutral-500);
    margin-bottom: var(--space-lg);
}

.room-features {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.room-features li {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: 0.875rem;
    color: var(--neutral-600);
}

.room-features li::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--amber-500);
    border-radius: 50%;
    flex-shrink: 0;
}

/* ============================================
   EXPERIENCE
   ============================================ */
.experience {
    background: var(--neutral-950);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.experience::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(123, 45, 91, 0.2) 0%, transparent 70%);
    pointer-events: none;
}

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

.experience .section-eyebrow {
    margin-bottom: var(--space-xl);
}

.experience .section-eyebrow .eyebrow-accent {
    background: var(--amber-500);
}

.experience .section-title {
    color: var(--white);
}

.experience .section-desc {
    color: var(--neutral-400);
    margin-bottom: var(--space-2xl);
}

.experience-features {
    display: flex;
    flex-direction: column;
    gap: var(--space-xl);
}

.exp-feature {
    display: flex;
    gap: var(--space-lg);
    align-items: flex-start;
}

.exp-feature-icon {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    background: rgba(212, 160, 23, 0.12);
    border: 1px solid rgba(212, 160, 23, 0.2);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--amber-500);
}

.exp-feature-icon svg {
    width: 22px;
    height: 22px;
}

.exp-feature-text h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: var(--space-xs);
}

.exp-feature-text p {
    font-size: 0.9375rem;
    line-height: 1.6;
    color: var(--neutral-400);
}

.experience-visual {
    position: relative;
}

.experience-img-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: var(--space-md);
}

.exp-img {
    border-radius: var(--radius-md);
    overflow: hidden;
}

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

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

.exp-img-1 {
    grid-column: 1 / 2;
    grid-row: 1 / 3;
    aspect-ratio: 4/5;
}

.exp-img-2 {
    grid-column: 2 / 3;
    grid-row: 1 / 2;
    aspect-ratio: 4/3;
}

.exp-img-3 {
    grid-column: 2 / 3;
    grid-row: 2 / 3;
    aspect-ratio: 4/3;
}

/* ============================================
   AMENITIES
   ============================================ */
.amenities {
    background: var(--neutral-25);
}

.amenities-header {
    text-align: center;
    max-width: 560px;
    margin: 0 auto var(--space-3xl);
}

.amenities-header .section-eyebrow {
    justify-content: center;
}

.amenities-header .section-title {
    margin-bottom: var(--space-md);
}

.amenities-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
}

.amenity-card {
    background: var(--white);
    padding: var(--space-2xl);
    border-radius: var(--radius-lg);
    border: 1px solid var(--neutral-100);
    transition: var(--transition-base);
}

.amenity-card:hover {
    border-color: var(--plum-200, var(--plum-100));
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.amenity-icon {
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, var(--plum-700), var(--plum-600));
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--space-lg);
    color: var(--white);
}

.amenity-icon svg {
    width: 24px;
    height: 24px;
}

.amenity-card h4 {
    font-size: 1.0625rem;
    font-weight: 600;
    color: var(--neutral-900);
    margin-bottom: var(--space-sm);
}

.amenity-card p {
    font-size: 0.9375rem;
    line-height: 1.65;
    color: var(--neutral-500);
}

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

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

.location-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.location-content .section-eyebrow {
    margin-bottom: var(--space-xl);
}

.location-details {
    margin-top: var(--space-2xl);
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}

.loc-detail {
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
}

.loc-detail-label {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--neutral-400);
}

.loc-detail-value {
    font-size: 1.0625rem;
    font-weight: 500;
    color: var(--neutral-800);
}

.loc-detail-link {
    font-size: 1.0625rem;
    font-weight: 500;
    color: var(--plum-700);
    transition: var(--transition-fast);
}

.loc-detail-link:hover {
    color: var(--plum-600);
    text-decoration: underline;
}

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

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

/* ============================================
   CTA / CONTACT
   ============================================ */
.cta {
    background: linear-gradient(135deg, var(--plum-900) 0%, var(--plum-800) 50%, var(--neutral-900) 100%);
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

.cta .container {
    position: relative;
    z-index: 1;
}

.cta-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
    align-items: center;
}

.cta-content .section-eyebrow .eyebrow-accent {
    background: var(--amber-500);
}

.cta-content .section-title {
    color: var(--white);
}

.cta-content .section-desc {
    color: rgba(255, 255, 255, 0.65);
}

.cta-form-wrapper {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: var(--space-2xl);
    box-shadow: var(--shadow-xl);
}

.cta-form {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}

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

.form-group {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.form-group label {
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--neutral-600);
}

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

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--plum-600);
    box-shadow: 0 0 0 3px rgba(123, 45, 91, 0.1);
}

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

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

.form-success {
    text-align: center;
    padding: var(--space-2xl);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-md);
}

.success-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--plum-700), var(--plum-600));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    margin-bottom: var(--space-sm);
}

.success-icon svg {
    width: 28px;
    height: 28px;
}

.form-success h4 {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--neutral-900);
}

.form-success p {
    font-size: 0.9375rem;
    color: var(--neutral-500);
    line-height: 1.6;
    margin-bottom: var(--space-lg);
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
    background: var(--neutral-950);
    color: var(--white);
    padding: var(--space-4xl) 0 var(--space-xl);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: var(--space-3xl);
    padding-bottom: var(--space-3xl);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand .logo {
    margin-bottom: var(--space-lg);
}

.footer-desc {
    font-size: 0.9375rem;
    line-height: 1.7;
    color: var(--neutral-400);
    max-width: 300px;
}

.footer-links h5,
.footer-contact h5 {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--neutral-400);
    margin-bottom: var(--space-lg);
}

.footer-links ul,
.footer-contact ul {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.footer-links a {
    font-size: 0.9375rem;
    color: var(--neutral-300);
    transition: var(--transition-fast);
}

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

.footer-contact a {
    font-size: 0.9375rem;
    color: var(--neutral-300);
    transition: var(--transition-fast);
}

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

.footer-bottom {
    padding-top: var(--space-xl);
    text-align: center;
}

.footer-bottom p {
    font-size: 0.8125rem;
    color: var(--neutral-500);
}

/* ============================================
   MOBILE NAV OVERLAY
   ============================================ */
.mobile-nav-overlay {
    position: fixed;
    inset: 0;
    z-index: 999;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-base);
}

.mobile-nav-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-nav {
    position: fixed;
    top: 0;
    right: 0;
    width: min(320px, 85vw);
    height: 100%;
    background: var(--white);
    z-index: 1001;
    padding: var(--space-2xl);
    transform: translateX(100%);
    transition: transform var(--transition-base);
    display: flex;
    flex-direction: column;
}

.mobile-nav.active {
    transform: translateX(0);
}

.mobile-nav-close {
    align-self: flex-end;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-sm);
    margin-bottom: var(--space-2xl);
    color: var(--neutral-600);
    transition: var(--transition-fast);
}

.mobile-nav-close:hover {
    background: var(--neutral-50);
    color: var(--neutral-900);
}

.mobile-nav-close svg {
    width: 24px;
    height: 24px;
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
}

.mobile-nav-links a {
    padding: var(--space-md);
    font-size: 1.0625rem;
    font-weight: 500;
    color: var(--neutral-700);
    border-radius: var(--radius-sm);
    transition: var(--transition-fast);
}

.mobile-nav-links a:hover {
    background: var(--plum-50);
    color: var(--plum-700);
}

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

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
    .hero-grid {
        gap: var(--space-2xl);
    }
    
    .rooms-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .amenities-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 var(--space-lg);
    }
    
    .section {
        padding: var(--space-4xl) 0;
    }
    
    /* Header */
    .main-nav {
        display: none;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    /* Hero */
    .hero {
        padding-top: 72px;
    }
    
    .hero-grid {
        grid-template-columns: 1fr;
        padding: var(--space-2xl) 0 var(--space-3xl);
        gap: var(--space-2xl);
    }
    
    .hero-content {
        max-width: 100%;
    }
    
    .hero-headline {
        font-size: clamp(1.875rem, 6vw, 2.5rem);
    }
    
    .hero-visual {
        order: -1;
    }
    
    .hero-image-stack {
        padding-left: 0;
    }
    
    .hero-img-secondary {
        left: 0;
        bottom: -20px;
        width: 50%;
    }
    
    .hero-stats {
        flex-wrap: wrap;
        gap: var(--space-md);
    }
    
    .stat-divider {
        display: none;
    }
    
    /* Rooms */
    .rooms-grid {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
    }
    
    /* Experience */
    .experience-grid {
        grid-template-columns: 1fr;
        gap: var(--space-2xl);
    }
    
    .experience-visual {
        order: -1;
    }
    
    .experience-img-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto auto;
    }
    
    .exp-img-1 {
        grid-column: 1 / 3;
        grid-row: auto;
        aspect-ratio: 16/9;
    }
    
    /* Amenities */
    .amenities-grid {
        grid-template-columns: 1fr;
    }
    
    /* Location */
    .location-grid {
        grid-template-columns: 1fr;
        gap: var(--space-2xl);
    }
    
    .location-map {
        min-height: 300px;
    }
    
    .map-placeholder {
        min-height: 300px;
    }
    
    /* CTA */
    .cta-card {
        grid-template-columns: 1fr;
        gap: var(--space-2xl);
    }
    
    .cta-content {
        text-align: center;
    }
    
    .cta-content .section-eyebrow {
        justify-content: center;
    }
    
    .cta-form-wrapper {
        padding: var(--space-xl);
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    /* Footer */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: var(--space-2xl);
        text-align: center;
    }
    
    .footer-brand .logo {
        justify-content: center;
    }
    
    .footer-desc {
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .hero-actions {
        flex-direction: column;
    }
    
    .hero-actions .btn {
        width: 100%;
        justify-content: center;
    }
    
    .hero-img-secondary {
        width: 45%;
        left: -10px;
        bottom: -15px;
    }
    
    .experience-img-grid {
        grid-template-columns: 1fr;
    }
    
    .exp-img-1 {
        grid-column: auto;
        aspect-ratio: 4/3;
    }
}
