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

:root {
    --burgundy: #7B2D3B;
    --burgundy-deep: #5C1F2C;
    --burgundy-light: #9A3D4E;
    --blush: #F4A0A8;
    --blush-light: #FDDDDF;
    --blush-pale: #FFF0F2;
    --cream: #FDF8F6;
    --cream-dark: #F5EDEA;
    --charcoal: #1A1A1A;
    --text: #2D2D2D;
    --text-light: #6B6B6B;
    --white: #FFFFFF;
    --font-display: 'DM Serif Display', Georgia, serif;
    --font-body: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
    --radius: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
}

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

body {
    font-family: var(--font-body);
    color: var(--text);
    background: var(--cream);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

.grain {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    pointer-events: none;
    z-index: 9999;
    opacity: 0.025;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
}

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

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

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

/* ── Typography ── */
h1, h2, h3, h4 {
    font-family: var(--font-display);
    font-weight: 400;
    line-height: 1.15;
    color: var(--charcoal);
}

h1 { font-size: clamp(2.8rem, 6vw, 5rem); }
h2 { font-size: clamp(2rem, 4vw, 3.2rem); }
h3 { font-size: clamp(1.3rem, 2vw, 1.6rem); }
h4 { font-size: 1.1rem; font-family: var(--font-body); font-weight: 600; }

.accent {
    color: var(--burgundy);
}

.section-label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--burgundy);
    background: var(--blush-light);
    padding: 6px 14px;
    border-radius: 100px;
    margin-bottom: 20px;
}

.section-sub {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 520px;
    margin-top: 16px;
}

/* ── Buttons ── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.95rem;
    padding: 14px 28px;
    border-radius: 100px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    white-space: nowrap;
}

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

.btn-sm {
    padding: 10px 20px;
    font-size: 0.85rem;
}

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

.btn-primary:hover {
    background: var(--burgundy-deep);
    border-color: var(--burgundy-deep);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(123, 45, 59, 0.3);
}

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

.btn-outline:hover {
    background: var(--burgundy);
    color: var(--white);
    transform: translateY(-2px);
}

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

.btn-white:hover {
    background: var(--blush-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

/* ── Nav ── */
.nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    padding: 16px 0;
    transition: all 0.3s ease;
}

.nav.scrolled {
    background: rgba(253, 248, 246, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 1px 0 rgba(123, 45, 59, 0.08);
    padding: 12px 0;
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-display);
    font-size: 1.25rem;
    color: var(--charcoal);
    font-weight: 400;
}

.logo-icon {
    color: var(--burgundy);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
    list-style: none;
}

.nav-links a {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text);
    transition: color 0.2s;
    position: relative;
}

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

.nav-links a:hover { color: var(--burgundy); }
.nav-links a:hover::after { width: 100%; }

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.mobile-toggle span {
    width: 24px;
    height: 2px;
    background: var(--charcoal);
    transition: all 0.3s;
    display: block;
}

.mobile-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}
.mobile-toggle.active span:nth-child(2) {
    opacity: 0;
}

/* ── Hero ── */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding: 120px 0 80px;
    overflow: hidden;
    background: var(--cream);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

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

.badge {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--burgundy);
    background: var(--blush-light);
    padding: 6px 14px;
    border-radius: 100px;
    margin-bottom: 24px;
}

.hero h1 {
    margin-bottom: 24px;
    line-height: 1.1;
}

.hero h1 .accent {
    font-style: italic;
}

.hero > .container > .hero-content > p {
    font-size: 1.15rem;
    color: var(--text-light);
    margin-bottom: 36px;
    max-width: 460px;
    line-height: 1.7;
}

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

.hero-stats {
    display: flex;
    align-items: center;
    gap: 24px;
}

.stat {
    display: flex;
    flex-direction: column;
}

.stat-num {
    font-family: var(--font-display);
    font-size: 1.6rem;
    color: var(--burgundy);
    line-height: 1;
}

.stat-label {
    font-size: 0.75rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-top: 4px;
}

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

/* Hero Images */
.hero-image-wrap {
    position: relative;
    height: 600px;
}

.hero-img-main {
    width: 100%;
    height: 100%;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: 0 32px 64px rgba(123, 45, 59, 0.15);
}

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

.hero-img-float {
    position: absolute;
    bottom: -20px;
    left: -40px;
    width: 200px;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 16px 40px rgba(0,0,0,0.15);
    border: 4px solid var(--cream);
}

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

/* ── Geometric Shapes ── */
.geo-shape {
    position: absolute;
    pointer-events: none;
}

.geo-circle {
    width: 120px; height: 120px;
    border-radius: 50%;
    background: var(--blush);
    top: -30px; right: -20px;
    opacity: 0.6;
}

.geo-circle-lg {
    width: 400px; height: 400px;
    border-radius: 50%;
    background: var(--blush-pale);
    top: 50%; right: -150px;
    transform: translateY(-50%);
    opacity: 0.5;
}

.geo-circle-accent {
    width: 200px; height: 200px;
    border-radius: 50%;
    background: var(--blush);
    bottom: -60px; right: 10%;
    opacity: 0.4;
}

.geo-dots {
    width: 80px; height: 80px;
    background-image: radial-gradient(circle, var(--burgundy) 1.5px, transparent 1.5px);
    background-size: 12px 12px;
    opacity: 0.3;
    top: 60px; right: 60px;
}

.geo-stripe {
    width: 60px; height: 160px;
    background: repeating-linear-gradient(
        -45deg,
        var(--burgundy) 0px,
        var(--burgundy) 3px,
        transparent 3px,
        transparent 8px
    );
    opacity: 0.15;
    bottom: 40px; right: 20px;
    transform: rotate(15deg);
}

.geo-rect {
    width: 100px; height: 100px;
    background: var(--burgundy);
    border-radius: var(--radius);
    opacity: 0.06;
    bottom: 10%; left: -30px;
    transform: rotate(-15deg);
}

.geo-rect-1 {
    width: 80px; height: 200px;
    background: var(--blush);
    border-radius: var(--radius);
    opacity: 0.1;
    top: 20%; right: 5%;
    transform: rotate(10deg);
}

.geo-tri {
    width: 0; height: 0;
    border-style: solid;
    border-width: 0 50px 86px 50px;
    border-color: transparent transparent var(--burgundy) transparent;
    opacity: 0.08;
    top: 30%; left: 8%;
    transform: rotate(-20deg);
}

.geo-tri-1 {
    width: 0; height: 0;
    border-style: solid;
    border-width: 0 40px 70px 40px;
    border-color: transparent transparent var(--blush) transparent;
    opacity: 0.15;
    bottom: 15%; right: 12%;
    transform: rotate(25deg);
}

.geo-accent {
    position: absolute;
    pointer-events: none;
}

.geo-accent-1 {
    width: 300px; height: 300px;
    background: radial-gradient(circle, var(--blush) 0%, transparent 70%);
    top: 10%; left: -100px;
    opacity: 0.3;
}

.geo-accent-2 {
    width: 200px; height: 200px;
    background: radial-gradient(circle, var(--burgundy) 0%, transparent 70%);
    bottom: 10%; right: 30%;
    opacity: 0.08;
}

/* ── Marquee ── */
.marquee-section {
    background: var(--burgundy);
    padding: 18px 0;
    overflow: hidden;
}

.marquee-track {
    display: flex;
}

.marquee-content {
    display: flex;
    gap: 48px;
    animation: marquee 25s linear infinite;
    white-space: nowrap;
}

.marquee-content span {
    font-family: var(--font-display);
    font-size: 1rem;
    color: var(--blush-light);
    opacity: 0.9;
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ── About ── */
.about {
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

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

.about-left .section-label { margin-bottom: 16px; }

.about-left h2 {
    margin-bottom: 0;
}

.about-right p {
    font-size: 1.05rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 16px;
}

.about-right p:first-of-type {
    margin-top: 24px;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 40px;
}

.feature-card {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px;
    background: var(--white);
    border-radius: var(--radius);
    border: 1px solid var(--blush-light);
    transition: all 0.3s;
}

.feature-card:hover {
    transform: translateX(8px);
    box-shadow: 0 8px 24px rgba(123, 45, 59, 0.08);
    border-color: var(--blush);
}

.feature-icon {
    flex-shrink: 0;
    width: 48px; height: 48px;
    background: var(--blush-light);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--burgundy);
    transition: all 0.3s;
}

.feature-card:hover .feature-icon {
    background: var(--burgundy);
    color: var(--white);
}

.feature-card h4 {
    margin-bottom: 4px;
}

.feature-card p {
    font-size: 0.9rem;
    color: var(--text-light);
    margin: 0;
    line-height: 1.5;
}

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

.section-header {
    text-align: center;
    margin-bottom: 64px;
}

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

.section-header h2 { margin-bottom: 8px; }

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

.room-card {
    background: var(--cream);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid transparent;
}

.room-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 48px rgba(123, 45, 59, 0.12);
    border-color: var(--blush);
}

.room-img {
    position: relative;
    height: 260px;
    overflow: hidden;
}

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

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

.room-tag {
    position: absolute;
    top: 16px; left: 16px;
    background: var(--burgundy);
    color: var(--white);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 100px;
}

.room-info {
    padding: 28px;
}

.room-info h3 {
    margin-bottom: 10px;
    font-size: 1.4rem;
}

.room-info p {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 20px;
}

.room-amenities {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 24px;
}

.room-amenities li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: var(--text);
}

.room-amenities li svg {
    color: var(--burgundy);
    flex-shrink: 0;
}

.btn-full { margin-top: auto; }

/* ── Experience ── */
.experience {
    padding: 120px 0;
    background: var(--cream);
    position: relative;
    overflow: hidden;
}

.exp-header {
    text-align: center;
    margin-bottom: 64px;
}

.exp-header h2 { margin-bottom: 0; }

.exp-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.exp-item {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    cursor: pointer;
    group: true;
}

.exp-img {
    height: 420px;
    overflow: hidden;
    border-radius: var(--radius-lg);
}

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

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

.exp-text {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    padding: 32px 24px 24px;
    background: linear-gradient(to top, rgba(26,26,26,0.85) 0%, transparent 100%);
    border-radius: 0 0 var(--radius-lg) var(--radius-lg);
}

.exp-num {
    font-family: var(--font-display);
    font-size: 2.5rem;
    color: var(--blush);
    line-height: 1;
    display: block;
    margin-bottom: 8px;
}

.exp-text h3 {
    color: var(--white);
    font-size: 1.3rem;
    margin-bottom: 8px;
}

.exp-text p {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.75);
    line-height: 1.5;
}

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

.location-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: stretch;
}

.location-info .section-label { margin-bottom: 16px; }
.location-info h2 { margin-bottom: 20px; }
.location-info > p {
    font-size: 1.05rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 40px;
}

.location-details {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.loc-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.loc-item svg {
    color: var(--burgundy);
    flex-shrink: 0;
    margin-top: 2px;
}

.loc-item strong {
    display: block;
    font-size: 1rem;
    color: var(--charcoal);
    margin-bottom: 2px;
}

.loc-item span, .loc-item a {
    font-size: 0.95rem;
    color: var(--text-light);
}

.loc-item a:hover { color: var(--burgundy); }

.location-map {
    border-radius: var(--radius-lg);
    overflow: hidden;
    min-height: 400px;
    box-shadow: 0 16px 40px rgba(0,0,0,0.1);
}

/* ── CTA ── */
.cta-section {
    padding: 100px 0;
    background: var(--burgundy);
    position: relative;
    overflow: hidden;
}

.cta-card {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.cta-geo {
    position: absolute;
    pointer-events: none;
}

.cta-circle-1 {
    width: 300px; height: 300px;
    border-radius: 50%;
    background: rgba(244, 160, 168, 0.15);
    top: -100px; left: -80px;
}

.cta-dots {
    width: 100px; height: 100px;
    background-image: radial-gradient(circle, rgba(255,255,255,0.3) 2px, transparent 2px);
    background-size: 14px 14px;
    bottom: -20px; right: 10%;
}

.cta-content .section-label {
    background: rgba(255,255,255,0.15);
    color: var(--blush-light);
}

.cta-content h2 {
    color: var(--white);
    margin-bottom: 16px;
}

.cta-content h2 .accent { color: var(--blush); }

.cta-content p {
    color: rgba(255,255,255,0.8);
    font-size: 1.1rem;
    margin-bottom: 36px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.cta-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ── Contact ── */
.contact {
    padding: 120px 0;
    background: var(--cream);
    position: relative;
}

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

.contact-left .section-label { margin-bottom: 16px; }
.contact-left h2 { margin-bottom: 16px; }
.contact-left > p {
    font-size: 1.05rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 40px;
}

.contact-direct {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-direct-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 24px;
    background: var(--white);
    border-radius: var(--radius);
    border: 1px solid var(--blush-light);
    transition: all 0.3s;
}

.contact-direct-item:hover {
    border-color: var(--blush);
    box-shadow: 0 4px 16px rgba(123, 45, 59, 0.06);
}

.cdi-icon {
    width: 48px; height: 48px;
    background: var(--blush-light);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--burgundy);
    flex-shrink: 0;
}

.contact-direct-item strong {
    display: block;
    font-size: 1rem;
    color: var(--charcoal);
    margin-bottom: 2px;
}

.contact-direct-item span {
    font-size: 0.9rem;
    color: var(--text-light);
}

/* Form */
.contact-form {
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--blush-light);
}

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

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid var(--cream-dark);
    border-radius: 12px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--text);
    background: var(--cream);
    transition: all 0.3s;
    outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--burgundy);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(123, 45, 59, 0.08);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-light);
    opacity: 0.6;
}

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

.form-success {
    display: none;
    text-align: center;
    padding: 60px 40px;
    background: var(--white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--blush-light);
}

.form-success.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

.success-icon {
    width: 80px; height: 80px;
    background: var(--blush-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--burgundy);
}

.form-success h3 {
    font-size: 1.5rem;
    margin-bottom: 8px;
}

.form-success p {
    color: var(--text-light);
}

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

/* ── Footer ── */
.footer {
    background: var(--charcoal);
    color: rgba(255,255,255,0.7);
    padding: 80px 0 0;
}

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

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

.footer-brand p {
    font-size: 0.95rem;
    line-height: 1.8;
}

.footer-brand a {
    color: var(--blush);
    transition: color 0.2s;
}

.footer-brand a:hover { color: var(--blush-light); }

.footer-links h4 {
    color: var(--white);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 20px;
}

.footer-links ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    font-size: 0.9rem;
    transition: color 0.2s;
}

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

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 0;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.4);
}

/* ── Scroll Animations ── */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 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: 1024px) {
    .hero-grid { gap: 40px; }
    .hero-image-wrap { height: 480px; }
    .rooms-grid { grid-template-columns: repeat(2, 1fr); }
    .exp-grid { grid-template-columns: repeat(2, 1fr); }
    .exp-img { height: 320px; }
}

@media (max-width: 768px) {
    .mobile-toggle { display: flex; }
    
    .nav-links {
        position: fixed;
        top: 0; left: 0; right: 0; bottom: 0;
        background: rgba(253, 248, 246, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        gap: 24px;
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.3s;
    }

    .nav-links.open {
        opacity: 1;
        pointer-events: all;
    }

    .nav-links a {
        font-size: 1.3rem;
    }

    .hero { padding: 100px 0 60px; min-height: auto; }
    
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .hero-image-wrap {
        height: 360px;
        order: -1;
    }

    .hero-img-float {
        left: -10px;
        width: 140px;
        bottom: -10px;
    }

    .hero-stats { gap: 16px; }
    .stat-num { font-size: 1.3rem; }
    .stat-divider { height: 30px; }

    .about-grid { grid-template-columns: 1fr; gap: 40px; }
    .rooms-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
    .exp-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
    .exp-img { height: 280px; }

    .location-grid { grid-template-columns: 1fr; }
    .location-map { min-height: 300px; }

    .contact-grid { grid-template-columns: 1fr; gap: 48px; }
    .contact-form { padding: 28px; }

    .footer-top { grid-template-columns: 1fr; gap: 32px; }
    .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
}

@media (max-width: 480px) {
    .container { padding: 0 16px; }
    .hero-actions { flex-direction: column; }
    .hero-actions .btn { width: 100%; justify-content: center; }
    .cta-actions { flex-direction: column; align-items: center; }
    .cta-actions .btn { width: 100%; justify-content: center; }
    .hero-img-float { display: none; }
}
