/* ============================================
   SAGRADA BRISA — Styles
   Color Palette (from logo):
   - Terracotta:  #A0522D
   - Teal:        #3A9B8C
   - Golden Sun:  #D4881C
   - Cream:       #FAF7F2
   - Deep Brown:  #2C1810
   - Sage:        #5BB5A6
   ============================================ */

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

:root {
    --terracotta: #A0522D;
    --terracotta-light: #C4794D;
    --teal: #3A9B8C;
    --teal-dark: #2C7A6D;
    --teal-light: #5BB5A6;
    --golden: #D4881C;
    --golden-light: #E8A435;
    --cream: #FAF7F2;
    --cream-dark: #F0EBE3;
    --brown: #2C1810;
    --brown-light: #5C4033;
    --white: #FFFFFF;
    --shadow-sm: 0 2px 8px rgba(44, 24, 16, 0.06);
    --shadow-md: 0 8px 30px rgba(44, 24, 16, 0.1);
    --shadow-lg: 0 20px 60px rgba(44, 24, 16, 0.12);
    --shadow-xl: 0 30px 80px rgba(44, 24, 16, 0.15);
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --transition-slow: 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    color: var(--brown);
    background-color: var(--cream);
    overflow-x: hidden;
    line-height: 1.7;
}

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

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

ul { list-style: none; }

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

/* ---- Preloader ---- */
#preloader {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: var(--cream);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

#preloader.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.preloader-inner {
    text-align: center;
}

.preloader-wave {
    width: 120px;
    margin: 0 auto 20px;
}

.preloader-wave svg {
    overflow: visible;
}

.wave-path {
    animation: waveDash 2s ease-in-out infinite;
}

.wave-path.wave-2 {
    animation-delay: 0.3s;
}

.wave-path.wave-3 {
    animation-delay: 0.6s;
}

@keyframes waveDash {
    0%, 100% { stroke-dashoffset: 0; opacity: 1; }
    50% { stroke-dashoffset: 20; opacity: 0.5; }
}

.wave-path {
    stroke-dasharray: 200;
}

.preloader-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--terracotta);
    letter-spacing: 0.05em;
    animation: fadeInOut 2s ease-in-out infinite;
}

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

/* ---- Navbar ---- */
.navbar {
    position: fixed;
    top: 0; left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: all var(--transition);
}

.navbar.scrolled {
    background: rgba(250, 247, 242, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 12px 0;
    box-shadow: var(--shadow-sm);
}

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 1001;
}

.logo-svg {
    width: 36px;
    height: auto;
}

.logo-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--terracotta);
    letter-spacing: 0.02em;
}

.nav-links {
    display: flex;
    gap: 32px;
}

.nav-links a {
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--brown-light);
    position: relative;
    padding: 4px 0;
}

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

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

.nav-right {
    display: flex;
    align-items: center;
    gap: 16px;
}

.lang-switcher {
    display: flex;
    gap: 4px;
    background: rgba(44, 24, 16, 0.05);
    border-radius: 20px;
    padding: 3px;
}

.lang-btn {
    border: none;
    background: transparent;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    color: var(--brown-light);
    cursor: pointer;
    padding: 5px 10px;
    border-radius: 16px;
    transition: all var(--transition);
}

.lang-btn.active {
    background: var(--teal);
    color: var(--white);
}

.lang-btn:hover:not(.active) {
    background: rgba(58, 155, 140, 0.15);
}

.nav-cta {
    display: inline-block;
    padding: 10px 24px;
    background: var(--terracotta);
    color: var(--white) !important;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    border-radius: 30px;
    transition: all var(--transition);
}

.nav-cta:hover {
    background: var(--terracotta-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(160, 82, 45, 0.3);
}

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

.nav-toggle span {
    width: 24px;
    height: 2px;
    background: var(--brown);
    border-radius: 2px;
    transition: all 0.3s ease;
}

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

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

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

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0; right: -100%;
    width: 100%;
    height: 100vh;
    background: var(--cream);
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: right 0.5s cubic-bezier(0.77, 0, 0.175, 1);
}

.mobile-menu.open {
    right: 0;
}

.mobile-nav-links {
    text-align: center;
}

.mobile-nav-links li {
    margin: 20px 0;
}

.mobile-nav-links a {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    font-weight: 500;
    color: var(--brown);
    transition: color var(--transition);
}

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

.mobile-cta {
    display: inline-block;
    margin-top: 20px;
    padding: 14px 40px;
    background: var(--terracotta) !important;
    color: var(--white) !important;
    border-radius: 30px;
    font-family: 'Montserrat', sans-serif !important;
    font-size: 1rem !important;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

/* ---- Hero ---- */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-gradient {
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(ellipse at 20% 50%, rgba(58, 155, 140, 0.12) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 20%, rgba(212, 136, 28, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 80%, rgba(160, 82, 45, 0.08) 0%, transparent 50%),
        linear-gradient(170deg, #F5EDE4 0%, #FAF7F2 30%, #F0EDE6 60%, #EDE7DC 100%);
}

.hero-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.03;
    background-image: 
        radial-gradient(circle at 25% 25%, var(--teal) 1px, transparent 1px),
        radial-gradient(circle at 75% 75%, var(--terracotta) 1px, transparent 1px);
    background-size: 60px 60px;
}

.hero-particles {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
}

.hero-particle {
    position: absolute;
    border-radius: 50%;
    opacity: 0;
    animation: floatParticle linear infinite;
}

@keyframes floatParticle {
    0% {
        opacity: 0;
        transform: translateY(100vh) scale(0);
    }
    10% {
        opacity: 0.6;
    }
    90% {
        opacity: 0.6;
    }
    100% {
        opacity: 0;
        transform: translateY(-10vh) scale(1);
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 24px;
    max-width: 900px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 32px;
}

.badge-line {
    width: 40px;
    height: 1px;
    background: var(--golden);
}

.hero-badge span:not(.badge-line) {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--golden);
}

.hero-title {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 300;
    line-height: 1;
    margin-bottom: 28px;
}

.title-line {
    display: block;
    overflow: hidden;
}

.title-word {
    display: inline-block;
    font-size: clamp(4rem, 12vw, 9rem);
    color: var(--brown);
    letter-spacing: -0.02em;
}

.title-accent {
    color: var(--terracotta);
    font-style: italic;
    font-weight: 400;
}

.hero-subtitle {
    font-size: clamp(1rem, 2.5vw, 1.25rem);
    font-weight: 300;
    color: var(--brown-light);
    max-width: 560px;
    margin: 0 auto 48px;
    line-height: 1.8;
}

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

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 40px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border-radius: 50px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s ease;
}

.btn:hover::before {
    left: 100%;
}

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

.btn-primary:hover {
    background: var(--teal-dark);
    transform: translateY(-3px);
    box-shadow: 0 12px 36px rgba(58, 155, 140, 0.3);
}

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

.btn-outline:hover {
    background: var(--terracotta);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 12px 36px rgba(160, 82, 45, 0.25);
}

.btn-white {
    background: var(--white);
    color: var(--teal-dark);
}

.btn-white:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(255, 255, 255, 0.3);
}

.btn-outline-white {
    border-color: rgba(255,255,255,0.6);
    color: var(--white);
    background: transparent;
}

.btn-outline-white:hover {
    background: rgba(255,255,255,0.15);
    border-color: var(--white);
    transform: translateY(-3px);
}

/* Scroll indicator */
.hero-scroll {
    margin-top: 60px;
}

.scroll-indicator {
    width: 24px;
    height: 40px;
    border: 2px solid var(--teal-light);
    border-radius: 12px;
    margin: 0 auto;
    position: relative;
    opacity: 0.6;
}

.scroll-dot {
    width: 4px;
    height: 8px;
    background: var(--teal);
    border-radius: 4px;
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollBounce 2s ease-in-out infinite;
}

@keyframes scrollBounce {
    0%, 100% { top: 6px; opacity: 1; }
    50% { top: 22px; opacity: 0.3; }
}

.hero-wave {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    z-index: 3;
}

.hero-wave svg {
    display: block;
    width: 100%;
    height: auto;
}

/* ---- Sections Common ---- */
.section {
    padding: 120px 0;
    position: relative;
}

.section-tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--teal);
    margin-bottom: 12px;
}

.section-tag.light {
    color: var(--golden-light);
}

.section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    font-weight: 400;
    color: var(--brown);
    line-height: 1.2;
    margin-bottom: 16px;
}

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

.section-divider {
    width: 80px;
    margin: 16px auto 0;
}

.section-divider svg {
    display: block;
    width: 100%;
}

/* ---- About ---- */
.about {
    background: var(--cream);
}

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

.about-images {
    position: relative;
}

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

.about-img-secondary {
    position: absolute;
    bottom: -30px;
    right: -30px;
    width: 45%;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    border: 4px solid var(--cream);
}

/* Image Placeholders */
.img-placeholder {
    aspect-ratio: 4/3;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: linear-gradient(135deg, #E8DDD0, #D4C9BC, #C9BFB2);
    color: var(--brown-light);
    font-size: 0.85rem;
    font-weight: 500;
    position: relative;
    overflow: hidden;
}

.img-placeholder::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(ellipse at 30% 40%, rgba(58, 155, 140, 0.08) 0%, transparent 60%),
        radial-gradient(ellipse at 70% 60%, rgba(212, 136, 28, 0.06) 0%, transparent 60%);
}

.img-placeholder.large {
    aspect-ratio: 16/10;
}

.placeholder-icon {
    font-size: 2.5rem;
    position: relative;
}

.img-placeholder span {
    position: relative;
    font-size: 0.8rem;
    opacity: 0.7;
}

.about-float-card {
    position: absolute;
    top: 40px;
    right: -20px;
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: var(--shadow-md);
    z-index: 2;
}

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

.float-card-number {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--brown);
    line-height: 1;
}

.float-card-label {
    font-size: 0.7rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--brown-light);
    display: block;
}

.about-content .section-title {
    text-align: left;
}

.about-content .section-divider {
    margin: 16px 0 0;
}

.about-text {
    font-size: 1rem;
    color: var(--brown-light);
    line-height: 1.9;
    margin-top: 20px;
}

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

.highlight-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 20px;
    background: var(--white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition);
}

.highlight-item:hover {
    transform: translateX(8px);
    box-shadow: var(--shadow-md);
}

.highlight-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(58, 155, 140, 0.1);
    border-radius: 12px;
    color: var(--teal);
}

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

.highlight-item strong {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--brown);
    margin-bottom: 2px;
}

.highlight-item span {
    font-size: 0.8rem;
    color: var(--brown-light);
}

/* ---- Amenities ---- */
.amenities {
    background: var(--cream-dark);
    overflow: hidden;
}

.amenities-bg {
    position: absolute;
    inset: 0;
    opacity: 0.03;
    background-image: 
        radial-gradient(circle at 20% 80%, var(--teal) 1px, transparent 1px),
        radial-gradient(circle at 80% 20%, var(--golden) 1px, transparent 1px);
    background-size: 80px 80px;
}

.amenities-showcase {
    display: flex;
    flex-direction: column;
    gap: 80px;
    margin-bottom: 80px;
}

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

.amenity-featured.reverse {
    direction: rtl;
}

.amenity-featured.reverse > * {
    direction: ltr;
}

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

.amenity-featured-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(58, 155, 140, 0.08);
    border-radius: 16px;
    margin-bottom: 20px;
}

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

.amenity-featured-content h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    font-weight: 500;
    color: var(--brown);
    margin-bottom: 16px;
}

.amenity-featured-content p {
    font-size: 1rem;
    color: var(--brown-light);
    line-height: 1.9;
}

/* Amenities Grid */
.amenities-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.amenity-card {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 36px 28px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
}

.amenity-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 3px;
    background: linear-gradient(90deg, var(--teal), var(--teal-light));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition);
}

.amenity-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
}

.amenity-card:hover::before {
    transform: scaleX(1);
}

.amenity-card-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(58, 155, 140, 0.08);
    border-radius: 14px;
}

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

.amenity-card h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--brown);
    margin-bottom: 8px;
}

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

/* ---- Gallery ---- */
.gallery {
    background: var(--cream);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 280px;
    gap: 20px;
}

.gallery-item {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    cursor: pointer;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition);
}

.gallery-item:hover {
    transform: scale(1.02);
    box-shadow: var(--shadow-lg);
}

.gallery-item-large {
    grid-column: span 2;
    grid-row: span 2;
}

.gallery-item-wide {
    grid-column: span 2;
}

.gallery-ph {
    width: 100%;
    height: 100%;
    aspect-ratio: unset;
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 24px;
    background: linear-gradient(transparent, rgba(44, 24, 16, 0.7));
    color: var(--white);
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    font-weight: 500;
    transform: translateY(100%);
    transition: transform var(--transition);
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

/* ---- Section Subtitle ---- */
.section-subtitle {
    font-size: 1rem;
    color: var(--brown-light);
    max-width: 620px;
    margin: 0 auto 8px;
    line-height: 1.7;
}

/* ---- Nearby Section ---- */
.nearby {
    background: var(--cream-dark);
    overflow: hidden;
}

.nearby-bg {
    position: absolute;
    inset: 0;
    opacity: 0.03;
    background-image:
        radial-gradient(circle at 15% 85%, var(--teal) 1px, transparent 1px),
        radial-gradient(circle at 85% 15%, var(--golden) 1px, transparent 1px);
    background-size: 70px 70px;
}

/* Nearby Featured (Airport) */
.nearby-featured {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 48px;
    align-items: center;
    background: var(--white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    margin-bottom: 56px;
}

.nearby-featured-img {
    height: 100%;
    min-height: 320px;
    overflow: hidden;
}

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

.nearby-featured:hover .nearby-featured-img img {
    transform: scale(1.05);
}

.nearby-featured-content {
    padding: 40px 40px 40px 0;
}

.nearby-featured-badge {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.nearby-featured-content h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    font-weight: 600;
    color: var(--brown);
    margin-bottom: 14px;
}

.nearby-featured-content p {
    font-size: 0.95rem;
    color: var(--brown-light);
    line-height: 1.8;
    margin-bottom: 24px;
}

.nearby-time-badge {
    display: inline-flex;
    align-items: baseline;
    gap: 6px;
    padding: 10px 24px;
    background: linear-gradient(135deg, var(--teal), var(--teal-dark));
    border-radius: 30px;
    color: var(--white);
}

.nearby-time-number {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    font-weight: 700;
    line-height: 1;
}

.nearby-time-label {
    font-size: 0.8rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Nearby Grid */
.nearby-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.nearby-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition);
}

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

.nearby-card-img {
    width: 100%;
    height: 180px;
    overflow: hidden;
    position: relative;
    background: linear-gradient(135deg, #E8DDD0, #D4C9BC);
}

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

.nearby-card:hover .nearby-card-img img {
    transform: scale(1.08);
}

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

.nearby-card-body h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--brown);
    margin-bottom: 8px;
}

.nearby-card-body p {
    font-size: 0.85rem;
    color: var(--brown-light);
    line-height: 1.7;
    margin-bottom: 16px;
}

.nearby-card-footer {
    display: flex;
    justify-content: flex-start;
}

.nearby-pill {
    display: inline-block;
    padding: 5px 14px;
    background: rgba(58, 155, 140, 0.08);
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--teal-dark);
}

/* ---- Tourism Section ---- */
.tourism {
    background: var(--cream);
}

/* Beach Cards */
.tourism-beaches {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    margin-bottom: 64px;
}

.tourism-beach-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all var(--transition);
}

.tourism-beach-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.tourism-beach-img {
    position: relative;
    height: 280px;
    overflow: hidden;
}

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

.tourism-beach-card:hover .tourism-beach-img img {
    transform: scale(1.06);
}

.tourism-beach-overlay {
    position: absolute;
    top: 16px;
    right: 16px;
}

.tourism-beach-time {
    display: inline-block;
    padding: 8px 18px;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(10px);
    border-radius: 24px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--teal-dark);
}

.tourism-beach-content {
    padding: 28px 28px 32px;
}

.tourism-beach-content h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--brown);
    margin-bottom: 10px;
}

.tourism-beach-content p {
    font-size: 0.9rem;
    color: var(--brown-light);
    line-height: 1.8;
}

/* Hotel Zone */
.tourism-hotel-zone {
    background: linear-gradient(135deg, rgba(212, 136, 28, 0.06), rgba(160, 82, 45, 0.06));
    border: 1px solid rgba(212, 136, 28, 0.15);
    border-radius: var(--radius-xl);
    padding: 56px 48px;
    margin-bottom: 48px;
    text-align: center;
}

.hotel-zone-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hotel-zone-icon svg {
    width: 56px;
    height: 56px;
}

.hotel-zone-content h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    font-weight: 600;
    color: var(--brown);
    margin-bottom: 12px;
}

.hotel-zone-content p {
    font-size: 0.95rem;
    color: var(--brown-light);
    line-height: 1.8;
    max-width: 640px;
    margin: 0 auto 32px;
}

.hotel-zone-hotels {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
}

.hotel-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 22px;
    background: var(--white);
    border-radius: 30px;
    box-shadow: var(--shadow-sm);
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--brown);
    transition: all var(--transition);
}

.hotel-badge:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.hotel-badge-star {
    font-size: 1rem;
}

/* Penonomé */
.tourism-penonome {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 32px;
    align-items: center;
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 40px 48px;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(58, 155, 140, 0.1);
}

.penonome-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(58, 155, 140, 0.06);
    border-radius: 50%;
}

.penonome-icon svg {
    width: 40px;
    height: 40px;
}

.penonome-content {}

.penonome-time {
    display: inline-flex;
    align-items: baseline;
    gap: 6px;
    margin-bottom: 10px;
}

.penonome-time-number {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--teal);
    line-height: 1;
}

.penonome-time-label {
    font-size: 0.8rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--teal-dark);
}

.penonome-content h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--brown);
    margin-bottom: 8px;
}

.penonome-content p {
    font-size: 0.9rem;
    color: var(--brown-light);
    line-height: 1.7;
}

.penonome-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: flex-end;
}

.penonome-tag {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(58, 155, 140, 0.06);
    border-radius: 20px;
    font-size: 0.78rem;
    font-weight: 500;
    color: var(--brown);
    white-space: nowrap;
    transition: all var(--transition);
}

.penonome-tag:hover {
    background: rgba(58, 155, 140, 0.14);
    transform: translateY(-2px);
}

/* ---- Reviews ---- */
.reviews {
    background: var(--cream);
    overflow: hidden;
}

.reviews-bg {
    position: absolute;
    inset: 0;
    opacity: 0.02;
    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%3Cpath d='M30 5 Q35 15 30 25 Q25 15 30 5' fill='%233A9B8C'/%3E%3C/svg%3E");
}

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

.review-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px 32px;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition);
    position: relative;
}

.review-card::before {
    content: '"';
    position: absolute;
    top: 20px;
    right: 28px;
    font-family: 'Cormorant Garamond', serif;
    font-size: 5rem;
    color: var(--teal);
    opacity: 0.1;
    line-height: 1;
}

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

.review-stars {
    color: var(--golden);
    font-size: 1.1rem;
    letter-spacing: 4px;
    margin-bottom: 20px;
}

.review-card blockquote {
    font-size: 0.95rem;
    font-style: italic;
    color: var(--brown-light);
    line-height: 1.8;
    margin-bottom: 24px;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.review-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--teal), var(--teal-light));
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.05em;
}

.review-author strong {
    display: block;
    font-size: 0.9rem;
    color: var(--brown);
}

.review-author span {
    font-size: 0.75rem;
    color: var(--brown-light);
}

/* ---- Booking ---- */
.booking {
    background: linear-gradient(135deg, var(--teal-dark) 0%, #2C5F56 40%, #234E47 100%);
    color: var(--white);
    overflow: hidden;
}

.booking-bg {
    position: absolute;
    inset: 0;
}

.booking-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.05;
    background-image: 
        radial-gradient(circle at 30% 30%, var(--white) 1px, transparent 1px),
        radial-gradient(circle at 70% 70%, var(--golden) 1px, transparent 1px);
    background-size: 60px 60px;
}

.booking-content {
    text-align: center;
    position: relative;
    max-width: 700px;
    margin: 0 auto;
}

.booking-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 400;
    color: var(--white);
    line-height: 1.15;
    margin-bottom: 20px;
}

.booking-text {
    font-size: 1.05rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    margin-bottom: 40px;
}

.booking-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 48px;
}

.booking-features {
    display: flex;
    gap: 32px;
    justify-content: center;
    flex-wrap: wrap;
}

.booking-feature {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.7);
}

.booking-feature svg {
    width: 18px;
    height: 18px;
    color: var(--golden-light);
}

/* ---- Footer ---- */
.footer {
    background: #234E47;
    color: rgba(255, 255, 255, 0.7);
    padding: 80px 0 40px;
    position: relative;
}

.footer-wave {
    position: absolute;
    top: -1px;
    left: 0;
    width: 100%;
}

.footer-wave svg {
    display: block;
    width: 100%;
    height: auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--white);
    display: block;
    margin-bottom: 16px;
}

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

.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 24px;
}

.footer-social a {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    transition: all var(--transition);
}

.footer-social a:hover {
    background: var(--teal);
    transform: translateY(-3px);
}

.footer-social svg {
    width: 18px;
    height: 18px;
}

.footer-links-group h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 20px;
}

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

.footer-links-group a {
    font-size: 0.85rem;
    transition: color var(--transition);
}

.footer-links-group a:hover {
    color: var(--golden-light);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8rem;
}

.footer-made {
    opacity: 0.6;
}

/* ---- Animations ---- */
[data-animate] {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

[data-animate="fade-down"] {
    transform: translateY(-30px);
}

[data-animate="fade-right"] {
    transform: translateX(-40px);
}

[data-animate="fade-left"] {
    transform: translateX(40px);
}

[data-animate].animated {
    opacity: 1;
    transform: translateY(0) translateX(0);
}

/* ---- Responsive ---- */
@media (max-width: 1024px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .about-content .section-title {
        text-align: center;
    }

    .about-content .section-divider {
        margin: 16px auto 0;
    }

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

    .amenity-featured.reverse {
        direction: ltr;
    }

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

    .nearby-featured {
        grid-template-columns: 1fr;
    }

    .nearby-featured-content {
        padding: 32px;
    }

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

    .tourism-penonome {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .penonome-icon {
        margin: 0 auto;
    }

    .penonome-tags {
        justify-content: center;
    }

    .reviews-carousel {
        grid-template-columns: 1fr;
        max-width: 600px;
        margin: 0 auto;
    }

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

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .nav-cta {
        display: none;
    }

    .nav-toggle {
        display: flex;
    }

    .section {
        padding: 80px 0;
    }

    .gallery-grid {
        grid-template-columns: 1fr 1fr;
        grid-auto-rows: 200px;
    }

    .gallery-item-large {
        grid-column: span 2;
        grid-row: span 1;
    }

    .gallery-item-wide {
        grid-column: span 2;
    }

    .about-img-secondary {
        position: relative;
        bottom: auto;
        right: auto;
        width: 60%;
        margin: -20px auto 0;
    }

    .about-float-card {
        top: 20px;
        right: 10px;
    }

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

    .nearby-grid {
        grid-template-columns: 1fr;
        max-width: 440px;
        margin: 0 auto;
    }

    .nearby-featured {
        grid-template-columns: 1fr;
    }

    .nearby-featured-img {
        min-height: 220px;
    }

    .nearby-featured-content {
        padding: 24px;
    }

    .tourism-beaches {
        grid-template-columns: 1fr;
        max-width: 540px;
        margin: 0 auto 48px;
    }

    .tourism-hotel-zone {
        padding: 36px 24px;
    }

    .hotel-zone-hotels {
        flex-direction: column;
        align-items: center;
    }

    .tourism-penonome {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 28px 24px;
    }

    .penonome-icon {
        margin: 0 auto;
    }

    .penonome-tags {
        justify-content: center;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .footer-brand p {
        max-width: 100%;
    }

    .footer-social {
        justify-content: center;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }

    .booking-actions {
        flex-direction: column;
        align-items: center;
    }

    .booking-features {
        flex-direction: column;
        align-items: center;
        gap: 16px;
    }

    .hero-actions {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .gallery-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 220px;
    }

    .gallery-item-large,
    .gallery-item-wide {
        grid-column: span 1;
    }

    .hero-badge {
        flex-wrap: wrap;
        justify-content: center;
    }

    .badge-line {
        display: none;
    }

    .lang-switcher {
        gap: 2px;
    }
}
