/* ===== RESET & BASE ===== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --burgundy: #7B2D3B;
    --burgundy-dark: #5C1F2C;
    --burgundy-light: #9A3D4E;
    --blush: #F4C0C8;
    --blush-light: #FDE8EB;
    --blush-pale: #FFF5F6;
    --cream: #FFF9F9;
    --dark: #1A0A0E;
    --dark-soft: #2D1520;
    --text: #2D1520;
    --text-light: #6B4F5A;
    --white: #FFFFFF;
    --radius: 12px;
    --radius-lg: 20px;
    --shadow: 0 4px 24px rgba(123, 45, 59, 0.10);
    --shadow-lg: 0 12px 48px rgba(123, 45, 59, 0.15);
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
    font-family: 'Inter', -apple-system, sans-serif;
    color: var(--text);
    background: var(--cream);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: 'Space Grotesk', sans-serif;
    line-height: 1.1;
    font-weight: 700;
}

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

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

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

/* ===== NAV ===== */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 249, 249, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(123, 45, 59, 0.08);
    transition: var(--transition);
}

.nav.scrolled {
    background: rgba(255, 249, 249, 0.95);
    box-shadow: var(--shadow);
}

.nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--burgundy);
}

.nav-logo-mark {
    width: 40px;
    height: 40px;
    background: var(--burgundy);
    color: var(--white);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    font-weight: 800;
    letter-spacing: -0.5px;
}

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

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

.nav-links a:hover {
    color: var(--burgundy);
}

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

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

.nav-cta {
    background: var(--burgundy) !important;
    color: var(--white) !important;
    padding: 10px 24px;
    border-radius: 50px;
    font-weight: 600 !important;
    transition: background var(--transition), transform var(--transition) !important;
}

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

.nav-cta:hover {
    background: var(--burgundy-dark) !important;
    transform: translateY(-1px);
}

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

.nav-toggle span {
    width: 24px;
    height: 2px;
    background: var(--burgundy);
    border-radius: 2px;
    transition: var(--transition);
}

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

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ===== HERO ===== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--blush-pale) 0%, var(--cream) 50%, var(--blush-light) 100%);
    padding-top: 72px;
}

.hero-bg-shapes {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.geo {
    position: absolute;
}

.geo-circle-1 {
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: var(--blush);
    opacity: 0.3;
    top: -100px;
    right: -100px;
}

.geo-circle-2 {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: var(--burgundy);
    opacity: 0.06;
    bottom: 10%;
    left: 5%;
}

.geo-rect-1 {
    width: 200px;
    height: 200px;
    background: var(--burgundy);
    opacity: 0.04;
    border-radius: var(--radius-lg);
    top: 20%;
    left: 15%;
    transform: rotate(15deg);
}

.geo-triangle {
    width: 0;
    height: 0;
    border-left: 80px solid transparent;
    border-right: 80px solid transparent;
    border-bottom: 140px solid var(--blush);
    opacity: 0.25;
    top: 60%;
    right: 10%;
}

.geo-dots {
    width: 120px;
    height: 120px;
    top: 15%;
    left: 8%;
    background-image: radial-gradient(circle, var(--burgundy) 1.5px, transparent 1.5px);
    background-size: 16px 16px;
    opacity: 0.2;
}

.hero-grid {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

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

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--white);
    border: 1px solid var(--blush);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--burgundy);
    margin-bottom: 24px;
}

.tag-dot {
    width: 8px;
    height: 8px;
    background: var(--burgundy);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}

.hero-headline {
    font-size: clamp(3rem, 6vw, 5rem);
    color: var(--dark);
    margin-bottom: 24px;
    letter-spacing: -2px;
    line-height: 1.0;
}

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

.hero-accent::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 0;
    right: 0;
    height: 8px;
    background: var(--blush);
    z-index: -1;
    border-radius: 4px;
}

.hero-sub {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 32px;
    max-width: 440px;
}

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

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: 50px;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    border: none;
    cursor: pointer;
    transition: all var(--transition);
}

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

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

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

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

.btn-block {
    width: 100%;
}

.btn-full {
    width: 100%;
}

.hero-stats {
    display: flex;
    gap: 32px;
}

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

.stat-divider {
    padding-left: 32px;
    border-left: 2px solid var(--blush);
}

.stat-num {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--burgundy);
}

.stat-label {
    font-size: 0.8rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hero-visual {
    position: relative;
}

.hero-img-stack {
    position: relative;
    height: 580px;
}

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

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

.hero-img-main {
    width: 380px;
    height: 480px;
    top: 0;
    right: 0;
    z-index: 2;
}

.hero-img-accent {
    width: 280px;
    height: 200px;
    bottom: 40px;
    left: 0;
    z-index: 3;
    border: 4px solid var(--white);
}

.hero-badge {
    position: absolute;
    bottom: 0;
    right: 40px;
    z-index: 4;
    background: var(--white);
    padding: 16px 20px;
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--burgundy);
    box-shadow: var(--shadow);
}

/* ===== SECTIONS ===== */
.section {
    padding: 100px 0;
    position: relative;
}

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

.section-tag {
    display: inline-block;
    background: var(--blush);
    color: var(--burgundy);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.section-tag--light {
    background: rgba(255, 255, 255, 0.2);
    color: var(--blush);
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--dark);
    margin-bottom: 16px;
    letter-spacing: -1px;
}

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

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

.text-accent-light {
    color: var(--blush);
}

.section-desc {
    font-size: 1.05rem;
    color: var(--text-light);
    line-height: 1.7;
}

/* ===== ROOMS ===== */
.rooms {
    background: var(--white);
}

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

.room-card {
    background: var(--cream);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: transform var(--transition), box-shadow var(--transition);
}

.room-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.room-card--feature {
    grid-row: 1 / 2;
}

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

.room-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

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

.room-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(123, 45, 59, 0.6), transparent);
    display: flex;
    align-items: flex-start;
    padding: 16px;
}

.room-tag {
    background: var(--white);
    color: var(--burgundy);
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.room-card-body {
    padding: 24px;
}

.room-card-body h3 {
    font-size: 1.3rem;
    margin-bottom: 8px;
    color: var(--dark);
}

.room-card-body > p {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 16px;
}

.room-features {
    list-style: none;
    margin-bottom: 20px;
}

.room-features li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: var(--text);
    padding: 4px 0;
}

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

/* ===== AMENITIES ===== */
.amenities {
    background: var(--burgundy);
    overflow: hidden;
}

.amenities-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.geo-amenity-circle {
    width: 400px;
    height: 400px;
    border-radius: 50%;
    border: 40px solid rgba(244, 192, 200, 0.06);
    bottom: -150px;
    right: -100px;
}

.geo-amenity-rect {
    width: 200px;
    height: 200px;
    background: rgba(244, 192, 200, 0.05);
    border-radius: var(--radius-lg);
    top: 10%;
    left: -50px;
    transform: rotate(30deg);
}

.amenities-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    position: relative;
    z-index: 1;
}

.amenity-card {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    padding: 32px;
    transition: all var(--transition);
}

.amenity-card:hover {
    background: rgba(255, 255, 255, 0.14);
    transform: translateY(-4px);
}

.amenity-icon {
    width: 56px;
    height: 56px;
    background: var(--blush);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--burgundy);
    margin-bottom: 20px;
}

.amenity-card h3 {
    font-size: 1.15rem;
    color: var(--white);
    margin-bottom: 8px;
}

.amenity-card p {
    font-size: 0.9rem;
    color: var(--blush);
    line-height: 1.6;
    opacity: 0.85;
}

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

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

.location-content .section-tag {
    margin-bottom: 16px;
}

.location-content .section-title {
    margin-bottom: 16px;
}

.location-desc {
    font-size: 1.05rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 32px;
}

.location-highlights {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

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

.loc-highlight-num {
    width: 36px;
    height: 36px;
    background: var(--burgundy);
    color: var(--white);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 0.85rem;
    flex-shrink: 0;
}

.loc-highlight strong {
    display: block;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1rem;
    color: var(--dark);
    margin-bottom: 2px;
}

.loc-highlight span {
    font-size: 0.85rem;
    color: var(--text-light);
}

.location-visual {
    position: relative;
    height: 500px;
}

.location-img-main {
    position: absolute;
    width: 70%;
    height: 75%;
    top: 0;
    right: 0;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

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

.location-img-secondary {
    position: absolute;
    width: 55%;
    height: 50%;
    bottom: 0;
    left: 0;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 4px solid var(--cream);
    box-shadow: var(--shadow);
}

.location-img-secondary img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ===== ABOUT ===== */
.about {
    background: var(--white);
    overflow: hidden;
}

.about-bg-shapes {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.geo-about-circle {
    width: 350px;
    height: 350px;
    border-radius: 50%;
    background: var(--blush);
    opacity: 0.15;
    top: -100px;
    right: -80px;
}

.geo-about-line {
    width: 200px;
    height: 4px;
    background: linear-gradient(to right, var(--burgundy), var(--blush));
    border-radius: 4px;
    bottom: 20%;
    left: 0;
}

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

.about-visual {
    position: relative;
    height: 480px;
}

.about-img-collect {
    position: relative;
    height: 100%;
}

.about-img-1 {
    position: absolute;
    width: 60%;
    height: 70%;
    top: 0;
    left: 0;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about-img-1 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-img-2 {
    position: absolute;
    width: 55%;
    height: 50%;
    bottom: 0;
    right: 0;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 4px solid var(--white);
    box-shadow: var(--shadow);
}

.about-img-2 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-content .section-tag {
    margin-bottom: 16px;
}

.about-content .section-title {
    margin-bottom: 20px;
}

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

.about-values {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 28px;
}

.value-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text);
}

.value-item svg {
    color: var(--burgundy);
    flex-shrink: 0;
}

/* ===== CONTACT ===== */
.contact {
    background: var(--burgundy);
    overflow: hidden;
}

.contact-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.geo-contact-circle-1 {
    width: 500px;
    height: 500px;
    border-radius: 50%;
    border: 60px solid rgba(244, 192, 200, 0.05);
    top: -200px;
    left: -150px;
}

.geo-contact-circle-2 {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgba(244, 192, 200, 0.06);
    bottom: -80px;
    right: 5%;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    position: relative;
    z-index: 1;
}

.contact-info .section-tag {
    margin-bottom: 16px;
}

.contact-info .section-title {
    margin-bottom: 16px;
}

.contact-desc {
    font-size: 1.05rem;
    color: var(--blush);
    line-height: 1.7;
    opacity: 0.85;
    margin-bottom: 32px;
}

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

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

.contact-detail-icon {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--blush);
    flex-shrink: 0;
}

.contact-detail strong {
    display: block;
    font-family: 'Space Grotesk', sans-serif;
    color: var(--white);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}

.contact-detail p {
    font-size: 0.95rem;
    color: var(--blush);
    opacity: 0.85;
    line-height: 1.5;
}

.contact-detail a {
    color: var(--blush);
    transition: color var(--transition);
}

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

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

.contact-form h3 {
    font-size: 1.5rem;
    color: var(--dark);
    margin-bottom: 24px;
}

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

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

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--blush);
    border-radius: var(--radius);
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    color: var(--text);
    background: var(--blush-pale);
    transition: border-color var(--transition), background var(--transition);
    outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--burgundy);
    background: var(--white);
}

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

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

.form-success {
    display: none;
    align-items: center;
    gap: 12px;
    padding: 16px;
    background: var(--blush-pale);
    border: 2px solid var(--blush);
    border-radius: var(--radius);
    margin-top: 16px;
    color: var(--burgundy);
    font-weight: 500;
    font-size: 0.9rem;
}

.form-success svg {
    flex-shrink: 0;
}

/* ===== FOOTER ===== */
.footer {
    background: var(--dark);
    color: var(--blush);
    padding: 64px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(244, 192, 200, 0.1);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--white);
    margin-bottom: 16px;
}

.footer-logo-mark {
    width: 40px;
    height: 40px;
    background: var(--burgundy);
    color: var(--white);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    font-weight: 800;
}

.footer-brand p {
    font-size: 0.9rem;
    line-height: 1.7;
    opacity: 0.7;
    max-width: 280px;
}

.footer-links strong,
.footer-contact strong {
    display: block;
    font-family: 'Space Grotesk', sans-serif;
    color: var(--white);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 16px;
}

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

.footer-links a {
    font-size: 0.9rem;
    opacity: 0.7;
    transition: opacity var(--transition);
}

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

.footer-contact p {
    font-size: 0.9rem;
    line-height: 1.7;
    opacity: 0.7;
    margin-bottom: 4px;
}

.footer-contact a {
    color: var(--blush);
    transition: opacity var(--transition);
}

.footer-contact a:hover {
    opacity: 1;
}

.footer-bottom {
    padding: 24px 0;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.8rem;
    opacity: 0.5;
}

/* ===== SCROLL ANIMATIONS ===== */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }

    .hero-content {
        max-width: 100%;
    }

    .hero-sub {
        max-width: 100%;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-stats {
        justify-content: center;
    }

    .hero-visual {
        max-width: 500px;
        margin: 0 auto;
    }

    .hero-img-stack {
        height: 450px;
    }

    .hero-img-main {
        width: 300px;
        height: 380px;
    }

    .hero-img-accent {
        width: 220px;
        height: 160px;
    }

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

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

    .location-grid,
    .about-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .location-visual {
        height: 400px;
    }

    .about-visual {
        height: 350px;
    }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 72px;
        left: 0;
        right: 0;
        background: rgba(255, 249, 249, 0.98);
        backdrop-filter: blur(16px);
        flex-direction: column;
        padding: 32px 24px;
        gap: 20px;
        border-bottom: 1px solid rgba(123, 45, 59, 0.08);
        transform: translateY(-120%);
        transition: transform var(--transition);
        box-shadow: var(--shadow);
    }

    .nav-links.open {
        transform: translateY(0);
    }

    .nav-toggle {
        display: flex;
    }

    .nav-toggle.active span {
        background: var(--burgundy);
    }

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

    .hero-img-stack {
        height: 360px;
    }

    .hero-img-main {
        width: 240px;
        height: 300px;
    }

    .hero-img-accent {
        width: 180px;
        height: 130px;
    }

    .hero-badge {
        right: 20px;
        padding: 12px 16px;
        font-size: 0.8rem;
    }

    .hero-stats {
        flex-wrap: wrap;
        gap: 20px;
    }

    .stat-divider {
        padding-left: 20px;
    }

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

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

    .location-visual {
        height: 300px;
    }

    .about-visual {
        height: 280px;
    }

    .about-values {
        grid-template-columns: 1fr;
    }

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

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

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

    .section {
        padding: 72px 0;
    }
}

@media (max-width: 480px) {
    .hero-headline {
        letter-spacing: -1px;
    }

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

    .btn {
        width: 100%;
    }

    .hero-img-stack {
        height: 300px;
    }

    .hero-img-main {
        width: 200px;
        height: 260px;
    }

    .hero-img-accent {
        width: 150px;
        height: 110px;
    }
}
