/* Color palette - warm and inviting */
:root {
    --bg-white: #FDFCF9;
    --cream: #F5EDE2;
    --cream-light: #FAF7F2;
    --coffee: #7A5C45;
    --coffee-dark: #5C4333;
    --golden: #C6A67A;
    --golden-light: #D4B88A;
    --charcoal: #2C2C2C;
    --warm-gray: #6b6b6b;
    --radius: 12px;
    --radius-lg: 16px;
    --container-max: 1100px;
    --shadow-soft: 0 4px 20px rgba(122, 92, 69, 0.08);
    --shadow-medium: 0 8px 30px rgba(122, 92, 69, 0.12);
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
    color: var(--charcoal);
    background: var(--bg-white);
    -webkit-font-smoothing: antialiased;
    line-height: 1.6;
}

/* Typography */
h1, h2, h3 {
    font-family: 'Playfair Display', Georgia, serif;
}

a {
    text-decoration: none;
    transition: var(--transition);
}

/* Header */
header {
    position: sticky;
    top: 0;
    backdrop-filter: blur(10px);
    background: rgba(253, 252, 249, 0.85);
    z-index: 100;
    border-bottom: 1px solid rgba(122, 92, 69, 0.08);
}

.nav-row {
    max-width: var(--container-max);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--coffee);
    font-size: 18px;
    font-family: 'Playfair Display', serif;
}

.brand-icon {
    font-size: 24px;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 28px;
    align-items: center;
}

nav a {
    color: var(--charcoal);
    font-weight: 500;
    font-size: 15px;
    position: relative;
}

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

nav a:hover::after {
    width: 100%;
}

nav a:hover {
    color: var(--coffee);
}

.cta {
    background: var(--golden);
    color: white;
    padding: 10px 20px;
    border-radius: 999px;
    font-weight: 600;
    font-size: 14px;
    box-shadow: 0 4px 15px rgba(198, 166, 122, 0.3);
}

.cta:hover {
    background: var(--coffee);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(122, 92, 69, 0.25);
}

/* Mobile nav */
.mobile-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 20px;
    color: var(--coffee);
    cursor: pointer;
    padding: 8px;
}

/* Hero */
.hero {
    max-width: var(--container-max);
    margin: 24px auto;
    padding: 0 20px;
}

.hero-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-medium);
}

.hero-media {
    display: block;
    width: 100%;
    height: 480px;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0.2) 50%, rgba(0,0,0,0.1) 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 40px;
}

.hero-welcome {
    color: rgba(255, 255, 255, 0.9);
    font-size: 16px;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.hero-title {
    font-size: 56px;
    color: white;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    font-weight: 700;
    letter-spacing: 2px;
}

.hero-sub {
    color: rgba(255, 255, 255, 0.95);
    margin-top: 12px;
    font-size: 18px;
    font-weight: 400;
}

.hero-book {
    margin-top: 28px;
}

.hero-book a {
    background: var(--golden);
    color: white;
    padding: 14px 32px;
    border-radius: 999px;
    font-weight: 600;
    font-size: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    display: inline-block;
    transition: var(--transition);
}

.hero-book a:hover {
    background: white;
    color: var(--coffee);
    transform: translateY(-3px);
}

/* Our Story Section */
.story-section {
    background: linear-gradient(180deg, var(--bg-white) 0%, var(--cream-light) 100%);
    padding: 100px 20px;
    position: relative;
    overflow: hidden;
}

.story-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--golden-light), transparent);
}

.story-container {
    max-width: var(--container-max);
    margin: 0 auto;
}

/* Story Intro - Centered Opening */
.story-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.story-label {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: var(--golden);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.story-label::before,
.story-label::after {
    content: '';
    width: 40px;
    height: 1px;
    background: var(--golden);
}

.story-intro .story-title {
    font-family: 'Playfair Display', serif;
    font-size: 44px;
    color: var(--coffee);
    margin-bottom: 24px;
    line-height: 1.2;
}

.story-intro .story-lead {
    font-size: 19px;
    color: var(--warm-gray);
    line-height: 1.8;
    font-weight: 300;
}

/* Story Main Content */
.story-main {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 70px;
    align-items: center;
    margin-bottom: 70px;
}

.story-gallery {
    position: relative;
}

.story-img-main {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-medium);
}

.story-img-secondary {
    position: absolute;
    bottom: -30px;
    right: -30px;
    width: 200px;
    height: 200px;
    object-fit: cover;
    border-radius: var(--radius);
    box-shadow: var(--shadow-medium);
    border: 5px solid var(--bg-white);
}

.story-badge {
    position: absolute;
    top: 24px;
    left: 24px;
    background: white;
    padding: 16px 20px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-soft);
    text-align: center;
}

.story-badge-year {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    font-weight: 700;
    color: var(--coffee);
    line-height: 1;
}

.story-badge-text {
    font-size: 11px;
    color: var(--golden);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: 4px;
}

.story-text-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 26px;
    color: var(--coffee);
    margin-bottom: 20px;
    line-height: 1.3;
}

.story-text-content p {
    color: var(--charcoal);
    font-size: 15.5px;
    line-height: 1.85;
    margin-bottom: 18px;
}

.story-text-content p:last-of-type {
    margin-bottom: 0;
}

/* Story Quote */
.story-quote-section {
    background: white;
    border-radius: var(--radius-lg);
    padding: 50px;
    box-shadow: var(--shadow-soft);
    text-align: center;
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

.story-quote-icon {
    width: 60px;
    height: 60px;
    background: var(--cream);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.story-quote-icon i {
    font-size: 24px;
    color: var(--golden);
}

.story-quote-section blockquote {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    color: var(--coffee);
    line-height: 1.6;
    font-style: italic;
    margin-bottom: 28px;
}

.story-quote-author {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.story-quote-author .author-line {
    width: 50px;
    height: 2px;
    background: var(--golden);
}

.story-quote-author .author-name {
    font-size: 14px;
    font-weight: 600;
    color: var(--charcoal);
    letter-spacing: 1px;
}

.story-quote-author .author-role {
    font-size: 13px;
    color: var(--warm-gray);
}

/* Story Stats */
.story-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-top: 60px;
    padding-top: 50px;
    border-top: 1px solid rgba(122, 92, 69, 0.1);
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    font-weight: 700;
    color: var(--coffee);
    line-height: 1;
}

.stat-label {
    font-size: 14px;
    color: var(--warm-gray);
    margin-top: 8px;
}

/* Welcome Section - kept for fallback */
.welcome-section {
    text-align: center;
    padding: 60px 20px;
}

.welcome-content {
    max-width: 700px;
    margin: 0 auto;
}

.welcome-title {
    font-size: 32px;
    color: var(--coffee);
    margin-bottom: 20px;
}

.welcome-text {
    color: var(--warm-gray);
    font-size: 17px;
    line-height: 1.8;
}

.welcome-signature {
    margin-top: 24px;
    font-style: italic;
    color: var(--golden);
    font-size: 15px;
}

/* Sections */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 60px 20px;
}

h2.section-title {
    font-size: 32px;
    color: var(--coffee);
    margin-bottom: 8px;
}

.section-subtitle {
    color: var(--warm-gray);
    margin-bottom: 32px;
    font-size: 16px;
}

.center {
    text-align: center;
}

/* Why Stay Cards */
.why {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 20px;
}

.why .card {
    background: white;
    padding: 30px 24px;
    border-radius: var(--radius);
    text-align: center;
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
    border: 1px solid rgba(122, 92, 69, 0.05);
}

.why .card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.why .icon {
    width: 70px;
    height: 70px;
    background: var(--cream);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.why .icon i {
    font-size: 28px;
    color: var(--coffee);
}

.why h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--charcoal);
}

/* Room Cards */
.rooms-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    margin-top: 20px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.room-card {
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
    position: relative;
    border: 1px solid rgba(122, 92, 69, 0.05);
}

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

.room-card.featured {
    border: 2px solid var(--golden);
}

.room-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: var(--golden);
    color: white;
    padding: 6px 12px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 600;
    z-index: 1;
}

.room-image img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

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

.room-image {
    overflow: hidden;
}

.room-details {
    padding: 28px;
}

.room-details h3 {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--coffee);
}

.room-details .room-count {
    display: inline-block;
    background: var(--cream);
    color: var(--coffee);
    padding: 4px 12px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 12px;
}

.room-features {
    list-style: none;
    margin: 16px 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.room-features li {
    font-size: 14px;
    color: var(--warm-gray);
}

.room-features i {
    color: var(--golden);
    margin-right: 8px;
    width: 16px;
}

.room-price {
    margin: 20px 0 16px;
}

.room-price .price {
    font-size: 28px;
    font-weight: 700;
    color: var(--coffee);
}

.room-price .per-night {
    color: var(--warm-gray);
    font-size: 14px;
}

.room-book-btn {
    display: block;
    text-align: center;
    background: var(--coffee);
    color: white;
    padding: 14px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 15px;
}

.room-book-btn:hover {
    background: var(--coffee-dark);
}

/* Room Amenities Banner */
.room-amenities {
    background: var(--cream);
    padding: 40px 20px;
    margin-top: 40px;
    border-radius: var(--radius-lg);
}

.amenities-title {
    text-align: center;
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    color: var(--coffee);
    margin-bottom: 24px;
}

.amenities-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px 40px;
}

.amenity-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--charcoal);
    font-size: 15px;
}

.amenity-item i {
    color: var(--golden);
    font-size: 18px;
}

/* Gallery */
.gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 20px;
}

.gallery img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: var(--radius);
    transition: var(--transition);
    cursor: pointer;
}

.gallery img:hover {
    transform: scale(1.03);
    box-shadow: var(--shadow-medium);
}

/* Location */
.location-row {
    display: flex;
    gap: 40px;
    align-items: stretch;
}

.loc-text {
    flex: 1;
}

.location-details {
    margin-top: 24px;
}

.location-details p {
    margin-bottom: 16px;
    line-height: 1.8;
}

.location-details i {
    color: var(--golden);
    margin-right: 10px;
    width: 20px;
}

.map-placeholder {
    flex: 1;
    min-height: 350px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
}

/* Testimonials */
.testimonials-section {
    background: var(--cream-light);
    margin: 0;
    max-width: 100%;
    padding: 60px 20px;
}

.testimonials-section .section-title,
.testimonials-section .section-subtitle {
    max-width: var(--container-max);
    margin-left: auto;
    margin-right: auto;
}

.testimonials {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: var(--container-max);
    margin: 0 auto;
}

.testimonial {
    background: white;
    border-radius: var(--radius-lg);
    padding: 28px;
    box-shadow: var(--shadow-soft);
    position: relative;
}

.quote-icon {
    color: var(--golden);
    font-size: 24px;
    margin-bottom: 16px;
    opacity: 0.6;
}

.testimonial blockquote {
    font-style: italic;
    color: var(--charcoal);
    line-height: 1.7;
    font-size: 15px;
}

.testimonial-author {
    margin-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.author-info {
    display: flex;
    flex-direction: column;
}

.author-name {
    font-weight: 600;
    color: var(--coffee);
    font-size: 15px;
}

.author-location {
    color: var(--warm-gray);
    font-size: 13px;
}

.rating {
    color: var(--golden);
    font-size: 12px;
}

.rating i {
    margin-left: 2px;
}

/* Contact */
.contact-box {
    background: white;
    padding: 40px;
    border-radius: var(--radius-lg);
    display: flex;
    gap: 40px;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(122, 92, 69, 0.05);
}

.contact-info {
    flex: 1;
}

.contact-details {
    margin: 24px 0;
}

.contact-details p {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.contact-details i {
    color: var(--golden);
    width: 20px;
    font-size: 18px;
}

.contact-social {
    display: flex;
    gap: 16px;
    margin-top: 24px;
}

.contact-social a {
    width: 44px;
    height: 44px;
    background: var(--cream);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--coffee);
    font-size: 18px;
}

.contact-social a:hover {
    background: var(--golden);
    color: white;
}

.contact-form {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-form label {
    display: flex;
    flex-direction: column;
}

.label-text {
    font-size: 14px;
    font-weight: 500;
    color: var(--charcoal);
    margin-bottom: 6px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 14px 16px;
    border-radius: 8px;
    border: 1px solid #e5e0da;
    font-family: inherit;
    font-size: 15px;
    transition: var(--transition);
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--golden);
    box-shadow: 0 0 0 3px rgba(198, 166, 122, 0.1);
}

.contact-form button {
    background: var(--coffee);
    color: white;
    padding: 14px 24px;
    border-radius: 8px;
    border: none;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.contact-form button:hover {
    background: var(--coffee-dark);
    transform: translateY(-2px);
}

/* Footer */
footer {
    background: var(--charcoal);
    color: white;
    padding: 50px 20px 20px;
}

.footer-content {
    max-width: var(--container-max);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-brand .brand-icon {
    font-size: 28px;
}

.footer-brand .brand-name {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    font-weight: 600;
    margin-left: 8px;
}

.footer-brand p {
    margin-top: 12px;
    font-size: 14px;
}

.footer-links h4,
.footer-contact h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--golden);
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: rgba(255,255,255,0.7);
    font-size: 14px;
}

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

.footer-contact p {
    color: rgba(255,255,255,0.7);
    font-size: 14px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-contact i {
    color: var(--golden);
}

.footer-bottom {
    max-width: var(--container-max);
    margin: 0 auto;
    padding-top: 20px;
    text-align: center;
}

.footer-bottom p {
    font-size: 13px;
    color: rgba(255,255,255,0.5);
}

.footer-bottom .fa-heart {
    color: #e74c3c;
}

/* Utilities */
.muted {
    color: var(--warm-gray);
}

/* Custom Modal Alert */
.custom-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(44, 44, 44, 0.6);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    padding: 20px;
}

.custom-modal-overlay.show {
    opacity: 1;
    visibility: visible;
}

.custom-modal {
    background: white;
    border-radius: var(--radius-lg);
    padding: 40px;
    max-width: 400px;
    width: 100%;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    transform: scale(0.9) translateY(20px);
    transition: transform 0.3s ease;
}

.custom-modal-overlay.show .custom-modal {
    transform: scale(1) translateY(0);
}

.modal-icon {
    font-size: 60px;
    margin-bottom: 20px;
}

.modal-title {
    font-family: 'Playfair Display', serif;
    font-size: 26px;
    color: var(--coffee);
    margin-bottom: 12px;
}

.modal-message {
    color: var(--warm-gray);
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 28px;
}

.modal-btn {
    background: var(--golden);
    color: white;
    border: none;
    padding: 14px 40px;
    border-radius: 999px;
    font-family: inherit;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.modal-btn:hover {
    background: var(--coffee);
    transform: translateY(-2px);
}

/* Leaflet Map Custom Styles */
#map {
    z-index: 1;
}

.custom-marker {
    background: none;
    border: none;
}

.marker-pin {
    width: 50px;
    height: 50px;
    background: var(--golden);
    border-radius: 50% 50% 50% 0;
    transform: rotate(-45deg);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(122, 92, 69, 0.3);
    border: 3px solid white;
}

.marker-pin i {
    transform: rotate(45deg);
    color: white;
    font-size: 20px;
}

.custom-popup .leaflet-popup-content-wrapper {
    background: white;
    border-radius: var(--radius);
    box-shadow: var(--shadow-medium);
    padding: 0;
}

.custom-popup .leaflet-popup-content {
    margin: 0;
    width: 260px !important;
}

.custom-popup .leaflet-popup-tip {
    background: white;
}

.map-popup {
    padding: 20px;
}

.map-popup h4 {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    color: var(--coffee);
    margin-bottom: 6px;
}

.map-popup > p {
    font-size: 13px;
    color: var(--warm-gray);
    margin-bottom: 16px;
    line-height: 1.5;
}

.popup-details {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 16px;
}

.popup-details span {
    font-size: 13px;
    color: var(--charcoal);
    display: flex;
    align-items: center;
    gap: 8px;
}

.popup-details i {
    color: var(--golden);
    width: 16px;
    font-size: 14px;
}

.popup-btn {
    display: block;
    text-align: center;
    background: var(--coffee);
    color: white;
    padding: 10px 16px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    transition: var(--transition);
}

.popup-btn:hover {
    background: var(--coffee-dark);
    color: white;
}

/* Leaflet controls styling */
.leaflet-control-zoom {
    border: none !important;
    box-shadow: var(--shadow-soft) !important;
}

.leaflet-control-zoom a {
    background: white !important;
    color: var(--coffee) !important;
    border: none !important;
    width: 36px !important;
    height: 36px !important;
    line-height: 36px !important;
    font-size: 18px !important;
}

.leaflet-control-zoom a:hover {
    background: var(--cream) !important;
    color: var(--coffee-dark) !important;
}

.leaflet-control-zoom-in {
    border-radius: 8px 8px 0 0 !important;
}

.leaflet-control-zoom-out {
    border-radius: 0 0 8px 8px !important;
}

.leaflet-control-attribution {
    background: rgba(255, 255, 255, 0.8) !important;
    font-size: 10px;
}

.leaflet-control-attribution a {
    color: var(--coffee) !important;
}

/* Responsive */
@media (max-width: 900px) {
    .story-section {
        padding: 70px 20px;
    }

    .story-intro .story-title {
        font-size: 34px;
    }

    .story-intro .story-lead {
        font-size: 17px;
    }

    .story-main {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .story-gallery {
        max-width: 500px;
        margin: 0 auto;
    }

    .story-img-main {
        height: 400px;
    }

    .story-img-secondary {
        width: 150px;
        height: 150px;
        bottom: -20px;
        right: -10px;
    }

    .story-quote-section {
        padding: 40px 30px;
    }

    .story-quote-section blockquote {
        font-size: 20px;
    }

    .story-stats {
        gap: 40px;
        flex-wrap: wrap;
    }

    .stat-number {
        font-size: 34px;
    }

    .why {
        grid-template-columns: repeat(2, 1fr);
    }

    .rooms-grid {
        grid-template-columns: 1fr;
        max-width: 450px;
    }

    .room-features {
        grid-template-columns: 1fr 1fr;
    }

    .gallery {
        grid-template-columns: repeat(2, 1fr);
    }

    .testimonials {
        grid-template-columns: 1fr;
        max-width: 500px;
    }

    .location-row {
        flex-direction: column;
    }

    .contact-box {
        flex-direction: column;
        padding: 30px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-title {
        font-size: 38px;
    }

    .hero-media {
        height: 380px;
    }

    nav ul {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 20px;
        box-shadow: var(--shadow-medium);
        gap: 16px;
    }

    nav ul.show {
        display: flex;
    }

    .mobile-toggle {
        display: block;
    }

    .cta {
        display: none;
    }

    .amenities-grid {
        gap: 16px 30px;
    }
}

@media (max-width: 600px) {
    .story-section {
        padding: 50px 20px;
    }

    .story-label::before,
    .story-label::after {
        width: 25px;
    }

    .story-intro .story-title {
        font-size: 28px;
    }

    .story-intro {
        margin-bottom: 40px;
    }

    .story-img-main {
        height: 300px;
    }

    .story-img-secondary {
        width: 120px;
        height: 120px;
        bottom: -15px;
        right: -5px;
        border-width: 3px;
    }

    .story-badge {
        padding: 12px 16px;
        top: 16px;
        left: 16px;
    }

    .story-badge-year {
        font-size: 22px;
    }

    .story-text-content h3 {
        font-size: 22px;
    }

    .story-quote-section {
        padding: 30px 20px;
    }

    .story-quote-section blockquote {
        font-size: 18px;
    }

    .story-quote-icon {
        width: 50px;
        height: 50px;
    }

    .story-stats {
        gap: 30px;
    }

    .stat-number {
        font-size: 28px;
    }

    .stat-label {
        font-size: 12px;
    }

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

    .room-features {
        grid-template-columns: 1fr;
    }

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

    .hero-media {
        height: 300px;
    }

    .hero-title {
        font-size: 30px;
    }

    .hero-sub {
        font-size: 15px;
    }

    .welcome-title,
    h2.section-title {
        font-size: 26px;
    }

    .container {
        padding: 40px 16px;
    }

    .amenities-grid {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }
}