:root {
    --primary-color: #1E1E1E;
    --secondary-color: #FFFFFF;
    --accent-color: #4A90E2;
    --light-gray-color: #F4F4F4;
    --medium-gray-color: #888888;
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    --transition-speed: 0.3s;
    --container-width: 1200px;
    --container-padding: 1rem;
}

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

html {
    font-size: 100%;
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: var(--font-primary);
    font-size: 1rem;
    line-height: 1.6;
    color: var(--primary-color);
    background-color: var(--secondary-color);
    overflow-x: hidden;
}

.body-no-scroll {
    overflow: hidden;
}

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

ul { list-style: none; }
a { text-decoration: none; color: inherit; }
h1, h2, h3 { line-height: 1.2; font-weight: 600; }

.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

.button {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background-color: var(--primary-color);
    color: var(--secondary-color);
    border: 2px solid var(--primary-color);
    border-radius: 4px;
    font-weight: 600;
    text-align: center;
    transition: background-color var(--transition-speed) ease, color var(--transition-speed) ease;
}
.button:hover { background-color: var(--secondary-color); color: var(--primary-color); }

.link-arrow {
    font-weight: 600;
    color: var(--accent-color);
    display: inline-block;
    position: relative;
    padding-right: 1.5rem;
}
.link-arrow::after { content: '→'; position: absolute; right: 0; transition: transform var(--transition-speed) ease; }
.link-arrow:hover::after { transform: translateX(5px); }

section { padding: 4rem 0; overflow: hidden; }
.section-tag { display: block; font-size: 0.875rem; font-weight: 600; color: var(--accent-color); margin-bottom: 0.5rem; text-transform: uppercase; }
.section-title { font-size: clamp(1.75rem, 5vw, 2.5rem); margin-bottom: 1rem; }
.section-footer-link { text-align: center; margin-top: 2rem; }

.main-header {
    position: sticky; top: 0; width: 100%; z-index: 1000; background-color: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); border-bottom: 1px solid var(--light-gray-color);
}
.main-header .container { display: flex; justify-content: space-between; align-items: center; padding-top: 1rem; padding-bottom: 1rem; }
.header-logo { height: 28px; width: auto; }
.main-nav { display: none; }

.burger-menu {
    background: none; border: none; cursor: pointer; display: flex; flex-direction: column; gap: 5px;
    z-index: 1002;
}
.burger-line { width: 25px; height: 3px; background-color: var(--primary-color); border-radius: 3px; transition: transform var(--transition-speed) ease, opacity var(--transition-speed) ease; }
.burger-menu.active .burger-line:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.burger-menu.active .burger-line:nth-child(2) { opacity: 0; }
.burger-menu.active .burger-line:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

.main-nav.active {
    display: flex; position: fixed; top: 0; left: 0; width: 100%; height: 100vh;
    background-color: var(--secondary-color); flex-direction: column; justify-content: center; align-items: center; z-index: 1001;
}
.nav-list { display: flex; flex-direction: column; gap: 2rem; text-align: center; }
.nav-link { font-size: 1.5rem; font-weight: 500; }
.nav-link.active { color: var(--accent-color); font-weight: 600; }

.nav-list .nav-link-button-mobile {
    display: inline-block; background-color: var(--primary-color); color: var(--secondary-color);
    padding: 0.75rem 2.5rem; border-radius: 4px; margin-top: 1rem; font-size: 1.25rem;
    transition: background-color var(--transition-speed), color var(--transition-speed);
}
.nav-list .nav-link-button-mobile:hover { background-color: var(--accent-color); color: var(--secondary-color); }
.nav-link-button { display: none; }

.hero-section { padding-top: 2rem; padding-bottom: 2rem; }
.hero-content { text-align: center; }
.hero-title { font-size: clamp(2.5rem, 8vw, 4rem); }
.hero-subtitle { font-size: 1.125rem; color: var(--medium-gray-color); margin: 1rem auto 2rem; max-width: 600px; }
.hero-image-container { margin-top: 2rem; }
.hero-image { border-radius: 8px; }

.philosophy-section .container { display: flex; flex-direction: column; gap: 2rem; align-items: center; }
.philosophy-image-wrapper { position: relative; width: 100%; }
.philosophy-image-wrapper img { border-radius: 8px; }
.philosophy-content { background-color: var(--secondary-color); padding: 2rem; border-radius: 8px; margin-top: -4rem; position: relative; z-index: 2; box-shadow: 0 10px 30px rgba(0,0,0,0.1); }

.featured-rooms-section { background-color: var(--light-gray-color); }
.featured-rooms-header { text-align: center; margin-bottom: 2rem; }
.room-slider-container { position: relative; }
.room-slider { display: flex; overflow-x: auto; scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch; scrollbar-width: none; padding-bottom: 1rem; }
.room-slider::-webkit-scrollbar { display: none; }
.room-card { flex: 0 0 80%; scroll-snap-align: center; margin-right: 1rem; background: var(--secondary-color); border-radius: 8px; overflow: hidden; }
.room-card img { aspect-ratio: 4 / 3; object-fit: cover; }
.room-card h3 { margin: 1rem 1.5rem 0.5rem; }
.room-card p { margin: 0 1.5rem 1.5rem; color: var(--medium-gray-color); }
.slider-dots { display: flex; justify-content: center; gap: 0.75rem; margin-top: 1.5rem; }
.slider-dot { width: 10px; height: 10px; border-radius: 50%; background: #ccc; cursor: pointer; transition: var(--transition-speed); }
.slider-dot.active { background-color: var(--accent-color); transform: scale(1.2); }

.timeline-header { text-align: center; margin-bottom: 3rem; }
.timeline { position: relative; display: flex; flex-direction: column; gap: 2rem; }
.timeline::before { content: ''; position: absolute; left: 1rem; top: 0; bottom: 0; width: 2px; background-color: var(--light-gray-color); }
.timeline-item { position: relative; padding-left: 3rem; }
.timeline-item::before { content: ''; position: absolute; left: calc(1rem - 7px); top: 5px; width: 16px; height: 16px; background-color: var(--accent-color); border-radius: 50%; border: 3px solid var(--secondary-color); z-index: 1; }
.timeline-content h3 { margin-bottom: 0.5rem; }

.experience-section { background-color: var(--light-gray-color); }
.experience-grid { display: grid; gap: 1.5rem; }
.experience-card { background-color: var(--secondary-color); border-radius: 8px; overflow: hidden; }
.experience-card img { aspect-ratio: 16/9; object-fit: cover; width: 100%; }
.experience-card-content { padding: 1.5rem; }

.stats-section { position: relative; min-height: 400px; display: flex; align-items: center; color: var(--secondary-color); text-align: center; }
.stats-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    overflow: hidden;
}
.stats-background img {
    width: 100%;
    height: 100%; 
    object-fit: cover;
}
.stats-section::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background-color: rgba(30, 30, 30, 0.7); z-index: -1; }
.stats-content { display: flex; flex-direction: column; gap: 3rem; }
.stat-number { display: block; font-size: clamp(2.5rem, 8vw, 4rem); font-weight: 700; }
.stat-label { font-size: 1rem; }

.amenities-glance-section .container { display: flex; flex-direction: column; gap: 2rem; align-items: center; }
.amenities-list { list-style: '✓  '; padding-left: 1.5rem; margin: 1.5rem 0; display: grid; gap: 0.5rem; grid-template-columns: 1fr; }
.amenities-glance-image-wrapper img { border-radius: 8px; }

.our-story-teaser-section .container { display: flex; flex-direction: column; gap: 2rem; align-items: center; }
.story-text-wrapper p { margin-bottom: 1rem; }
.story-expandable-content { max-height: 0; overflow: hidden; transition: max-height 0.5s ease-out; }
.story-expandable-content.expanded { max-height: 1000px; }
.read-more-btn { background: none; border: none; color: var(--accent-color); font-weight: 600; cursor: pointer; padding: 0.5rem 0; }
.story-teaser-image-wrapper img { border-radius: 8px; }

.faq-teaser-section { background-color: var(--light-gray-color); }
.faq-teaser-header { text-align: center; margin-bottom: 2rem; }
.accordion-item { border-bottom: 1px solid #e0e0e0; }
.accordion-header { width: 100%; background: none; border: none; text-align: left; padding: 1.5rem 0; font-size: 1.125rem; font-weight: 500; cursor: pointer; display: flex; justify-content: space-between; align-items: center; }
.accordion-content { max-height: 0; overflow: hidden; transition: max-height 0.4s ease-out; }
.accordion-content p { padding: 0 0 1.5rem 0; }
.accordion-icon { width: 14px; height: 14px; position: relative; transition: transform var(--transition-speed) ease; }
.accordion-icon::before, .accordion-icon::after { content: ''; position: absolute; top: 50%; left: 50%; width: 12px; height: 2px; background-color: var(--primary-color); transform: translate(-50%, -50%); }
.accordion-icon::after { transform: translate(-50%, -50%) rotate(90deg); }
.accordion-item.active .accordion-icon { transform: rotate(45deg); }

.final-cta-section { background-color: var(--primary-color); color: var(--secondary-color); text-align: center; padding: 5rem 0; }
.final-cta-content .section-title { color: var(--secondary-color); }
.final-cta-content p { max-width: 500px; margin: 1rem auto 2rem; opacity: 0.9; }
.final-cta-content .button { background-color: var(--accent-color); border-color: var(--accent-color); color: var(--secondary-color); }
.final-cta-content .button:hover { background-color: var(--secondary-color); color: var(--accent-color); }

.main-footer { background-color: var(--primary-color); color: var(--secondary-color); padding: 4rem 0 2rem; position: relative; }
.footer-main { display: flex; flex-direction: column; gap: 3rem; }
.footer-logo { height: 28px; filter: invert(1); }
.footer-tagline { color: var(--medium-gray-color); font-size: 0.875rem; margin-top: 0.5rem; }
.footer-nav-group { display: flex; flex-direction: column; gap: 2rem; }
.footer-heading { font-size: 1rem; margin-bottom: 1rem; text-transform: uppercase; color: var(--medium-gray-color); letter-spacing: 1px; }
.footer-list li { margin-bottom: 0.5rem; }
.footer-list a { color: #ccc; }
.footer-list a:hover { color: var(--secondary-color); }
.footer-bottom { margin-top: 3rem; padding-top: 2rem; border-top: 1px solid #444; text-align: center; font-size: 0.875rem; color: var(--medium-gray-color); }

.back-to-top-btn {
    position: fixed; bottom: 1.5rem; right: 1.5rem; width: 40px; height: 40px; background-color: var(--accent-color); color: var(--secondary-color);
    border: none; border-radius: 50%; font-size: 1.5rem; cursor: pointer; display: flex; justify-content: center; align-items: center;
    opacity: 0; visibility: hidden; transition: opacity var(--transition-speed), visibility var(--transition-speed); z-index: 1000;
}
.back-to-top-btn.visible { opacity: 1; visibility: visible; }

.animate-on-scroll { opacity: 0; transform: translateY(30px); transition: opacity 0.6s ease-out, transform 0.6s ease-out; }
.animate-on-scroll.is-visible { opacity: 1; transform: translateY(0); }

@media (min-width: 768px) {
    :root { --container-padding: 1.5rem; }
    section { padding: 5rem 0; }
    .burger-menu { display: none; }
    .main-nav { display: flex; }
    .nav-list { flex-direction: row; gap: 1.5rem; align-items: center; }
    .nav-link { font-size: 1rem; }
    .nav-link-button-mobile { display: none; }
    .nav-link-button { display: inline-block; padding: 0.5rem 1rem; border: 2px solid var(--primary-color); border-radius: 4px; }
    .nav-link-button:hover { background-color: var(--primary-color); color: var(--secondary-color); }
    .nav-link.active { color: var(--primary-color); }
    
    .hero-section .container { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 3rem; }
    .hero-content { text-align: left; }
    
    .philosophy-section .container { flex-direction: row; gap: 0; }
    .philosophy-image-wrapper { flex: 0 0 55%; }
    .philosophy-content { flex: 0 0 55%; margin-top: 0; margin-left: -10%; }
    
    .room-card { flex-basis: calc(100% / 3 - 1rem); }
    
    .timeline { margin: 0 auto; max-width: 800px; }
    .timeline::before { left: 50%; transform: translateX(-50%); }
    .timeline-item { width: 50%; padding-left: 0; padding-right: 3rem; text-align: right; }
    .timeline-item:nth-child(even) { margin-left: 50%; padding-left: 3rem; padding-right: 0; text-align: left; }
    .timeline-item:nth-child(odd)::before { left: 100%; transform: translateX(-50%); }
    .timeline-item:nth-child(even)::before { left: 0; transform: translateX(-50%); }

    .experience-grid { grid-template-columns: repeat(3, 1fr); }
    
    .stats-content { flex-direction: row; justify-content: space-around; width: 100%; }

    .amenities-glance-section .container { flex-direction: row; gap: 4rem; }
    .amenities-glance-content { flex-basis: 45%; }
    .amenities-glance-image-wrapper { flex-basis: 55%; }
    .amenities-list { grid-template-columns: 1fr 1fr; }
    
    .our-story-teaser-section .container { flex-direction: row; gap: 4rem; }
    .story-teaser-content { flex-basis: 50%; order: 2; }
    .story-teaser-image-wrapper { flex-basis: 50%; order: 1; }
    
    .footer-main { flex-direction: row; justify-content: space-between; align-items: flex-start; gap: 4rem; }
    .footer-nav-group { flex-direction: row; gap: 4rem; }
}

@media (min-width: 1024px) {
    section { padding: 6rem 0; }
    .nav-list { gap: 2rem; }
    .room-card { flex-basis: calc(100% / 4 - 1rem); }
}
.rooms-hero-section {
    padding: 4rem 0;
    background-image: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('images/63.webp');
    background-size: cover;
    background-position: center;
    color: var(--secondary-color);
    text-align: center;
}
.rooms-hero-title { font-size: clamp(2.5rem, 7vw, 3.5rem); }
.rooms-hero-subtitle { font-size: 1.125rem; max-width: 600px; margin: 1rem auto 0; opacity: 0.9; }

.filter-section { padding: 2rem 0; background-color: var(--light-gray-color); }
.filter-buttons { display: flex; flex-wrap: wrap; justify-content: center; gap: 0.5rem; }
.filter-btn {
    background: #e0e0e0; color: var(--primary-color); border: none; padding: 0.5rem 1rem;
    border-radius: 20px; cursor: pointer; transition: var(--transition-speed);
}
.filter-btn:hover { background: #ccc; }
.filter-btn.active { background: var(--accent-color); color: var(--secondary-color); }

.room-catalog-section { padding-top: 3rem; }
.room-grid { display: grid; gap: 2rem; }
.room-item {
    background-color: var(--secondary-color); border-radius: 8px; overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08); transition: transform var(--transition-speed), box-shadow var(--transition-speed);
}
.room-item:hover { transform: translateY(-5px); box-shadow: 0 8px 25px rgba(0,0,0,0.12); }
.room-item img { aspect-ratio: 16 / 9; width: 100%; object-fit: cover; }
.room-item-content { padding: 1.5rem; }
.room-item-content h3 { margin-bottom: 0.5rem; }
.room-item-content p { margin-bottom: 1.5rem; color: var(--medium-gray-color); }

.ambiance-section {
    position: relative; padding: 6rem 0; color: var(--secondary-color); text-align: center;
    background-image: linear-gradient(rgba(30,30,30,0.6), rgba(30,30,30,0.6)), url('images/64.webp');
    background-size: cover; background-position: center; background-attachment: fixed;
}
.ambiance-content { max-width: 700px; margin: 0 auto; }
.ambiance-text-wrapper p { margin-bottom: 1rem; }
.ambiance-expandable-content { max-height: 0; overflow: hidden; transition: max-height 0.5s ease-out; }
.ambiance-expandable-content.expanded { max-height: 1000px; }
.read-more-btn {
    background: none; border: none; color: var(--secondary-color); font-weight: 600; cursor: pointer;
    padding: 0.5rem 0; border-bottom: 1px solid var(--secondary-color);
}

.renovation-slider-section { background-color: var(--light-gray-color); }
.renovation-header { text-align: center; margin-bottom: 2rem; max-width: 700px; margin-left: auto; margin-right: auto; }
.before-after-slider {
    position: relative; width: 100%; max-width: 900px; margin: 0 auto; aspect-ratio: 16/9;
    overflow: hidden; border-radius: 8px; user-select: none;
}
.before-image, .after-image { position: absolute; top: 0; left: 0; width: 100%; height: 100%; overflow: hidden; }
.before-image img, .after-image img { width: 100%; height: 100%; object-fit: cover; }
.after-image { clip-path: inset(0 0 0 50%); }
.slider-handle {
    position: absolute; top: 0; left: 50%; transform: translateX(-50%);
    width: 4px; height: 100%; background-color: var(--secondary-color);
    cursor: ew-resize; z-index: 10;
}
.handle-arrows {
    position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
    width: 40px; height: 40px; border: 2px solid var(--secondary-color);
    border-radius: 50%; display: flex; align-items: center; justify-content: space-evenly;
}
.handle-arrows::before, .handle-arrows::after {
    content: ''; border: solid var(--secondary-color); border-width: 0 2px 2px 0;
    display: inline-block; padding: 3px;
}
.handle-arrows::before { transform: rotate(135deg); }
.handle-arrows::after { transform: rotate(-45deg); }

.included-amenities-section { text-align: center; }
.amenities-header { max-width: 600px; margin: 0 auto 2rem; }
.amenities-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    max-width: 800px;
    margin: 2rem auto 0;
    text-align: left;
}
.amenity-item {
    background-color: var(--light-gray-color); padding: 1.5rem; border-radius: 8px;
    font-weight: 500;
}

@media (min-width: 768px) {
    .room-grid { grid-template-columns: repeat(2, 1fr); }
    .amenities-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
    .room-grid { grid-template-columns: repeat(3, 1fr); }
     .amenities-grid {
        grid-template-columns: repeat(3, 1fr); 
    }
}
.about-hero-section {
    padding: 4rem 0;
    text-align: center;
    color: var(--primary-color);
    background-color: #f0f4f8;
    background-image: 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='%239C92AC' fill-opacity='0.1'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2-H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.about-hero-title {
    font-size: clamp(2.5rem, 7vw, 3.5rem);
}
.about-hero-subtitle {
    font-size: 1.125rem;
    max-width: 700px;
    margin: 1rem auto 0;
    color: var(--medium-gray-color);
}

.story-section .container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: center;
}
.story-image-wrapper img {
    border-radius: 8px;
    object-fit: cover;
}
.story-content-wrapper {
    text-align: center;
}

.values-timeline-section {
    background-color: var(--light-gray-color);
}
.timeline-header {
    text-align: center;
    margin-bottom: 3rem;
}
.values-path {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}
.values-path::before {
    content: '';
    position: absolute;
    left: 24px;
    transform: translateX(-50%);
    top: 10px;
    bottom: 10px;
    width: 2px;
    background-color: #e0e0e0;
    z-index: 0;
}
.path-step {
    position: relative;
    padding-left: 64px;
}
.path-icon {
    position: absolute;
    left: 24px;
    top: 0;
    transform: translateX(-50%);
    width: 48px;
    height: 48px;
    background-color: var(--secondary-color);
    border-radius: 50%;
    border: 2px solid #e0e0e0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}
.path-icon svg {
    width: 24px;
    height: 24px;
    color: var(--accent-color);
}
.path-content h3 {
    margin-bottom: 0.5rem;
}

.team-section {
    text-align: center;
}
.team-header {
    max-width: 600px;
    margin: 0 auto 3rem;
}
.team-grid {
    display: grid;
    gap: 2rem;
}
.team-card {
    background-color: var(--light-gray-color);
    padding: 2rem;
    border-radius: 8px;
}
.team-card img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 1rem;
}
.team-card h3 {
    margin-bottom: 0.25rem;
}
.team-card span {
    display: block;
    color: var(--accent-color);
    font-weight: 500;
    margin-bottom: 1rem;
}

.design-approach-section .container {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}
.design-approach-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}
.design-slider-container {
    display: flex;
    align-items: center;
    gap: 1rem;
    max-width: 500px;
    margin: 0 auto;
}
.design-slider-wrapper {
    flex-grow: 1;
    height: 400px;
    overflow: hidden;
    border-radius: 8px;
}
.design-slider {
    transition: transform var(--transition-speed) ease-in-out;
}
.design-slide {
    height: 400px;
}
.design-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.slider-nav {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
.slider-arrow {
    background: var(--light-gray-color);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.5rem;
}

.sustainability-section {
    padding: 6rem 0;
    text-align: center;
    color: var(--secondary-color);
    background-image: linear-gradient(rgba(30,30,30,0.6), rgba(30,30,30,0.6)), url('images/65.webp');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}
.sustainability-section .container {
    max-width: 700px;
}

.stats-section-asymmetric {
    background-color: var(--light-gray-color);
    position: relative;
    padding: 4rem 0;
    overflow: hidden;
}
.diagonal-panel {
    display: none;
}
.stats-content-block {
    background-color: var(--secondary-color);
    border-radius: 8px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    text-align: center;
    margin: 0 var(--container-padding);
}
.stats-grid {
    display: grid;
    gap: 2rem;
    margin-top: 1rem;
}
.stat-item .stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
}

.final-cta-section .button-outline {
    background-color: transparent;
    color: var(--secondary-color); 
    border: 2px solid var(--secondary-color); 
}
.final-cta-section .button-outline:hover {
    background-color: var(--secondary-color); 
    color: var(--primary-color); 
}
.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
}

@media (min-width: 768px) {
    .story-section .container {
        flex-direction: row;
        text-align: left;
    }
    .story-image-wrapper {
        flex: 0 0 45%;
    }
    .story-content-wrapper {
        flex: 1;
    }
    .team-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .values-path {
        margin: 0 auto;
        max-width: 800px;
        gap: 4rem;
    }
    .values-path::before {
        left: 50%;
    }
    .path-step {
        width: 50%;
        padding-left: 0;
        padding-right: 48px;
        text-align: right;
    }
    .path-step:nth-child(even) {
        margin-left: 50%;
        padding-left: 48px;
        padding-right: 0;
        text-align: left;
    }
    .path-step .path-icon {
        top: 0;
    }
    .path-step:nth-child(odd) .path-icon {
        left: 100%;
        transform: translateX(-50%);
    }
    .path-step:nth-child(even) .path-icon {
        left: 0;
        transform: translateX(-50%);
    }
    .stats-section-asymmetric {
        padding: 6rem 0;
        display: flex;
        align-items: center;
    }
    .diagonal-panel {
        display: block;
        position: absolute;
        left: 0;
        top: 0;
        width: 45%;
        height: 100%;
        background-color: var(--accent-color);
        clip-path: polygon(0 0, 100% 0, 0 100%);
    }
    .stats-content-block {
        width: 55%;
        margin: 0;
        margin-left: auto;
        margin-right: 5%;
        text-align: left;
    }
    .stats-grid {
        grid-template-columns: repeat(3, 1fr);
        text-align: center;
    }
    .cta-buttons {
        flex-direction: row;
        justify-content: center;
    }
}

@media (min-width: 1024px) {
    .design-approach-section .container {
        flex-direction: row;
        align-items: center;
        max-width: 1000px;
    }
    .design-approach-content {
        text-align: left;
        flex: 0 0 45%;
    }
    .design-slider-container {
        flex: 1;
    }
}
.amenities-hero-section {
    padding: 4rem 0;
    text-align: center;
    background-color: var(--light-gray-color);
}
.amenities-hero-title {
    font-size: clamp(2.5rem, 7vw, 3.5rem);
}
.amenities-hero-subtitle {
    font-size: 1.125rem;
    max-width: 600px;
    margin: 1rem auto 0;
    color: var(--medium-gray-color);
}

.core-offerings-section {
    padding-bottom: 0;
}
.offerings-grid {
    display: grid;
    gap: 2rem;
    padding-bottom: 4rem;
    border-bottom: 1px solid #e0e0e0;
}
.offering-item h3 {
    margin-bottom: 0.5rem;
}

.tabs-section {
    background-color: var(--secondary-color);
}
.tab-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    border-bottom: 1px solid #e0e0e0;
}
.tab-btn {
    padding: 1rem 0.5rem;
    border: none;
    background: none;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 500;
    position: relative;
    color: var(--medium-gray-color);
}
.tab-btn::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: var(--accent-color);
    transform: scaleX(0);
    transition: transform var(--transition-speed) ease;
}
.tab-btn.active {
    color: var(--primary-color);
}
.tab-btn.active::after {
    transform: scaleX(1);
}
.tab-content {
    display: none;
}
.tab-content.active {
    display: block;
}
.tab-content-inner {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}
.tab-image-wrapper img {
    border-radius: 8px;
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
}
.tab-text-content h3 {
    margin-bottom: 1rem;
}

.included-amenities-section {
    background-color: var(--light-gray-color);
    text-align: center;
}
.amenities-header {
    max-width: 600px;
    margin: 0 auto 2rem;
}
.amenities-table {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    text-align: left;
    max-width: 800px;
    margin: 0 auto;
}
.table-column h3 {
    margin-bottom: 1rem;
}
.table-column ul li {
    padding: 0.75rem 0;
    border-bottom: 1px solid #e0e0e0;
}

.sticky-faq-section .container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}
.sticky-faq-image img {
    border-radius: 8px;
    object-fit: cover;
    width: 100%;
}
.faq-header {
    margin-bottom: 2rem;
}

@media (min-width: 768px) {
    .offerings-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .tab-content-inner {
        flex-direction: row;
        align-items: center;
        gap: 3rem;
    }
    .tab-image-wrapper {
        flex: 1;
    }
    .tab-text-content {
        flex: 1;
    }
    .amenities-table {
        flex-direction: row;
        gap: 3rem;
    }
    .table-column {
        flex: 1;
    }
}

@media (min-width: 1024px) {
    .sticky-faq-section .container {
        flex-direction: row;
        gap: 4rem;
        align-items: flex-start;
    }
    .sticky-faq-image {
        flex: 0 0 45%;
        position: sticky;
        top: 100px;
    }
    .sticky-faq-content {
        flex: 1;
    }
}
.vibe-section .container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.vibe-content {
    text-align: center;
}

.vibe-image-stack {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.vibe-image-wrapper {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px_15px rgba(0,0,0,0.08);
}

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

@media (min-width: 768px) {
    .vibe-section .container {
        flex-direction: row;
        align-items: center;
        gap: 3rem;
    }
    .vibe-content {
        flex: 0 0 45%;
        text-align: left;
    }
    .vibe-image-stack {
        flex: 1;
        display: grid;
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 1fr 1fr;
        gap: 0;
        height: 450px;
    }
    .vibe-image-wrapper {
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        transition: transform 0.4s ease, z-index 0s ease 0.2s;
    }
    .vibe-image-back {
        grid-column: 1 / span 2;
        grid-row: 1 / -1;
        z-index: 1;
        transform: scale(0.95);
    }
    .vibe-image-front {
        grid-column: 2 / -1;
        grid-row: 1 / -1;
        z-index: 2;
        margin-top: 20%;
        margin-left: -20%;
        height: 60%;
    }
    .vibe-image-stack:hover .vibe-image-front {
        transform: scale(0.9);
    }
    .vibe-image-stack:hover .vibe-image-back {
        transform: scale(1);
        z-index: 3;
    }
}
.locations-hero-section {
    padding: 4rem 0;
    text-align: center;
    background-color: var(--light-gray-color);
}
.locations-hero-title {
    font-size: clamp(2.5rem, 7vw, 3.5rem);
}
.locations-hero-subtitle {
    font-size: 1.125rem;
    max-width: 600px;
    margin: 1rem auto 0;
    color: var(--medium-gray-color);
}
.location-filter-section {
    padding-top: 3rem;
}
.location-filter-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 2rem;
}
.location-grid {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
}
.location-card {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
}
.location-card img {
    width: 100%;
    height: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    transition: transform var(--transition-speed) ease;
}
.location-card:hover img {
    transform: scale(1.05);
}
.location-card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 2rem 1.5rem 1.5rem;
    color: var(--secondary-color);
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
}
.location-card-content h3 {
    font-size: 1.5rem;
}
.banner-section {
    position: relative;
    padding: 4rem 0;
    margin-top: 4rem;
}
.banner-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    clip-path: polygon(0 15%, 100% 0, 100% 100%, 0 85%);
}
.banner-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.banner-content {
    background-color: var(--secondary-color);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    max-width: 500px;
}
.banner-text-wrapper {
    margin-top: 1rem;
}
.banner-text-wrapper p {
    margin-bottom: 1rem;
}
.banner-expandable-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-out;
}
.banner-expandable-content.expanded {
    max-height: 1000px;
}
.read-more-btn {
    background: none;
    border: none;
    color: var(--accent-color);
    font-weight: 600;
    cursor: pointer;
    padding: 0.5rem 0;
}
.mosaic-section {
    padding-top: 6rem;
}
.mosaic-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}
.mosaic-grid img {
    width: 100%;
    height: auto;
    aspect-ratio: 3 / 2;
    object-fit: cover;
    border-radius: 8px;
}
.image-feature-section .container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}
.image-feature-section img {
    border-radius: 8px;
    object-fit: cover;
}
.expansion-section {
    background-color: var(--light-gray-color);
}
.expansion-section .container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: center;
}
.expansion-content {
    text-align: center;
    max-width: 600px;
}
.map-container {
    position: relative;
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    border-radius: 8px;
    overflow: hidden;
}
.map-background {
    width: 100%;
    height: auto;
    object-fit: cover;
    opacity: 0.5;
}
.map-point {
    position: absolute;
    width: 16px;
    height: 16px;
    background-color: var(--accent-color);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    cursor: pointer;
}
.map-point::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    background-color: var(--accent-color);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: pulse 2s infinite;
}
.map-point::after {
    content: attr(data-city);
    position: absolute;
    bottom: 150%;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--primary-color);
    color: var(--secondary-color);
    padding: 0.25rem 0.75rem;
    border-radius: 4px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--transition-speed), visibility var(--transition-speed);
}
.map-point:hover::after {
    opacity: 1;
    visibility: visible;
}
.city-sydney { top: 75%; left: 88%; }
.city-barcelona { top: 38%; left: 49%; }
.city-lisbon { top: 40%; left: 45%; }

@keyframes pulse {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.7;
    }
    100% {
        transform: translate(-50%, -50%) scale(3);
        opacity: 0;
    }
}
@media (min-width: 768px) {
    .location-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .banner-section {
        padding: 6rem 0;
    }
    .banner-image-wrapper {
        clip-path: polygon(100% 0, 100% 100%, 0 100%);
    }
    .banner-content {
        margin-left: auto;
        background-color: var(--secondary-color);
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    }
    .mosaic-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .image-feature-section .container {
        display: grid;
        grid-template-columns: 1fr 1fr 1fr;
        grid-template-areas: "left content right";
        align-items: center;
        gap: 2rem;
    }
    .image-feature-image-left {
        grid-area: left;
    }
    .image-feature-content {
        grid-area: content;
        text-align: center;
    }
    .image-feature-image-right {
        grid-area: right;
    }
    .expansion-section .container {
        flex-direction: row;
        gap: 3rem;
    }
    .expansion-content {
        flex: 0 0 40%;
        text-align: left;
    }
    .map-container {
        flex: 1;
    }
}
@media (max-width: 767px) {
    .banner-content {
        background-color: rgba(0, 0, 0, 0.6); 
        box-shadow: none;
        padding: 1.5rem;
        border-radius: 8px; 
        color: var(--secondary-color);
    }

    .banner-content .read-more-btn {
        color: var(--secondary-color);
        font-weight: bold;
    }
}
@media (min-width: 1024px) {
    .location-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    .mosaic-grid {
        grid-template-columns: repeat(6, 1fr);
        grid-template-rows: repeat(2, 200px);
    }
    .mosaic-grid img:nth-child(1) { grid-column: 1 / 3; grid-row: 1 / 2; }
    .mosaic-grid img:nth-child(2) { grid-column: 3 / 4; grid-row: 1 / 3; }
    .mosaic-grid img:nth-child(3) { grid-column: 4 / 6; grid-row: 1 / 2; }
    .mosaic-grid img:nth-child(4) { grid-column: 1 / 3; grid-row: 2 / 3; }
    .mosaic-grid img:nth-child(5) { grid-column: 4 / 5; grid-row: 2 / 3; }
    .mosaic-grid img:nth-child(6) { grid-column: 5 / 7; grid-row: 2 / 3; }
    .mosaic-grid img {
        height: 100%;
    }
}
.faq-hero-section {
    padding: 4rem 0;
    text-align: center;
    background-color: var(--light-gray-color);
}
.faq-hero-title {
    font-size: clamp(2.5rem, 7vw, 3.5rem);
}
.faq-hero-subtitle {
    font-size: 1.125rem;
    max-width: 600px;
    margin: 1rem auto 0;
    color: var(--medium-gray-color);
}

.faq-main-section .container {
    max-width: 800px;
}
.faq-filter-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 3rem;
}
.faq-accordion .accordion-item {
    transition: opacity 0.3s ease, transform 0.3s ease;
}
.faq-accordion .accordion-item.hidden {
    display: none;
}

.contact-prompt-section {
    background-color: var(--light-gray-color);
    text-align: center;
}
.contact-prompt-section .container {
    max-width: 600px;
}
.contact-prompt-section p {
    margin: 1rem auto 2rem;
}
.help-section {
    padding: 4rem 0;
}
.help-section .container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: center;
}
.help-image-wrapper img {
    width: 100%;
    max-width: 400px;
    height: auto;
    object-fit: cover;
    border-radius: 8px;
}
.help-content-wrapper {
    text-align: center;
}
.help-content-wrapper p {
    margin-top: 1rem;
    color: var(--medium-gray-color);
}

@media (min-width: 768px) {
    .help-section {
        padding: 5rem 0;
    }
    .help-section .container {
        flex-direction: row;
        gap: 3rem;
        max-width: 1000px;
    }
    .help-image-wrapper {
        flex: 0 0 40%;
    }
    .help-content-wrapper {
        flex: 1;
        text-align: left;
    }
}
.booking-hero-section {
    padding: 4rem 0;
    text-align: center;
    color: var(--secondary-color);
    background-image: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('images/66.webp');
    background-size: cover;
    background-position: center;
}
.booking-hero-title {
    font-size: clamp(2.5rem, 7vw, 3.5rem);
}
.booking-hero-subtitle {
    font-size: 1.125rem;
    max-width: 600px;
    margin: 1rem auto 0;
    opacity: 0.9;
}

.booking-steps-section .container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}
.booking-steps-content {
    text-align: center;
}
.steps-list {
    list-style: none;
    margin-top: 2rem;
    text-align: left;
}
.step-item {
    padding: 1.5rem;
    border: 2px solid var(--light-gray-color);
    border-radius: 8px;
    margin-bottom: 1rem;
    cursor: default;
    transition: border-color var(--transition-speed), box-shadow var(--transition-speed);
}
.step-item h3 {
    margin-bottom: 0.5rem;
}
.booking-steps-images {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.step-image {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    border-radius: 8px;
    opacity: 1;
}

.quote-section {
    background-color: var(--light-gray-color);
}
.quote-section .container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: center;
    text-align: center;
}
.quote-image-wrapper img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
}
.quote-content-wrapper blockquote p {
    font-size: 1.25rem;
    font-style: italic;
    line-height: 1.5;
    margin-bottom: 1rem;
}
.quote-content-wrapper blockquote footer {
    font-weight: 500;
    color: var(--medium-gray-color);
}
.quote-content-wrapper blockquote footer cite {
    font-style: normal;
}

.trust-section {
    padding-bottom: 0;
}
.trust-section .container {
    display: grid;
    gap: 2rem;
    padding-bottom: 4rem;
    border-bottom: 1px solid #e0e0e0;
}
.trust-item h3 {
    margin-bottom: 0.5rem;
}

.what-next-section {
    text-align: center;
}
.what-next-steps {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}
.what-next-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}
.what-next-step span {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--accent-color);
    color: var(--secondary-color);
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (min-width: 768px) {
    .booking-steps-section .container {
        flex-direction: row;
        align-items: flex-start;
        gap: 3rem;
    }
    .booking-steps-content {
        flex: 1;
        text-align: left;
    }
    .step-item {
        cursor: pointer;
    }
    .step-item.active {
        border-color: var(--accent-color);
        box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    }
    .booking-steps-images {
        flex: 1;
        position: relative;
        height: 500px;
        gap: 0;
        border-radius: 8px;
        overflow: hidden;
    }
    .step-image {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        opacity: 0;
        transition: opacity var(--transition-speed) ease-in-out;
    }
    .step-image.active {
        opacity: 1;
    }
    .quote-section .container {
        flex-direction: row;
        gap: 3rem;
        text-align: left;
        max-width: 900px;
    }
    .quote-image-wrapper {
        flex-shrink: 0;
    }
    .trust-section .container {
        grid-template-columns: repeat(3, 1fr);
    }
    .what-next-steps {
        flex-direction: row;
    }
    .what-next-step {
        flex: 1;
    }
}
.legal-hero-section {
    padding: 3rem 0;
    text-align: center;
    background-color: var(--light-gray-color);
    border-bottom: 1px solid #e0e0e0;
}
.legal-hero-section h1 {
    font-size: clamp(2rem, 6vw, 3rem);
}
.legal-hero-section p {
    margin-top: 0.5rem;
    color: var(--medium-gray-color);
}

.legal-content-section .container {
    max-width: 800px;
}
.legal-text {
    padding: 3rem 0;
}
.legal-text h2 {
    font-size: 1.5rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid #e0e0e0;
}
.legal-text h2:first-of-type {
    margin-top: 0;
}
.legal-text p {
    margin-bottom: 1rem;
}
.legal-text ul {
    list-style-type: disc;
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}
.legal-text ul li {
    margin-bottom: 0.5rem;
}
.legal-text strong {
    color: var(--primary-color);
}

.return-button-wrapper {
    text-align: center;
    padding-bottom: 3rem;
}
.thank-you-body {
    background-color: var(--light-gray-color);
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 1rem;
}

.thank-you-container {
    width: 100%;
    max-width: 500px;
}

.thank-you-content {
    background-color: var(--secondary-color);
    padding: 2.5rem;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.thank-you-icon {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.thank-you-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.thank-you-content p {
    color: var(--medium-gray-color);
    line-height: 1.6;
    margin-bottom: 2rem;
}

@media (min-width: 768px) {
    .thank-you-content {
        padding: 4rem;
    }
}
html.no-scroll {
    overflow: hidden;
}
.testimonials-section {
    padding-top: 0;
    text-align: center;
}
.testimonials-header {
    max-width: 600px;
    margin: 0 auto 3rem;
}
.testimonial-slider-container {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    overflow: hidden;
}
.testimonial-slider {
    display: flex;
    transition: transform 0.5s ease-in-out;
}
.testimonial-slide {
    flex: 0 0 100%;
    padding: 1rem;
}
.testimonial-slide blockquote p {
    font-size: clamp(1.125rem, 3vw, 1.5rem);
    font-style: italic;
    line-height: 1.5;
    margin-bottom: 1.5rem;
}
.testimonial-slide blockquote footer {
    font-weight: 500;
    color: var(--medium-gray-color);
}
.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 2rem;
}
.testimonial-dots .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #ccc;
    cursor: pointer;
    transition: background-color var(--transition-speed);
}
.testimonial-dots .dot.active {
    background-color: var(--accent-color);
}