:root {
    --bg:         #ffffff;
    --bg-alt:     #eef5f5;
    --card:       #ffffff;
    --accent:     #2c7a7b;
    --accent-glow:#4fa3a4;
    --dark:       #1a2e2f;
    --heading:    #1a2e2f;
    --text:       #6b7770;
    --text-light: #4a5651;
    --border:     rgba(26,46,47,0.08);
    --white:      #ffffff;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
    font-family: 'Inter', sans-serif;
    background: var(--bg);
    color: var(--heading);
    overflow-x: hidden;
}

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

.section-header { text-align: center; margin-bottom: 60px; }
.section-label  { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 4px; color: var(--accent); display: block; margin-bottom: 12px; }
.section-title  { font-family: 'Playfair Display', serif; font-size: 2.6rem; font-weight: 600; margin-bottom: 16px; }
.section-desc   { color: var(--text); font-size: 1rem; max-width: 560px; margin: 0 auto; line-height: 1.7; }

.btn-primary {
    background: var(--accent); color: var(--white); padding: 14px 32px; border: none; border-radius: 6px;
    font-weight: 600; font-size: 0.85rem; cursor: pointer; text-transform: uppercase; letter-spacing: 1.5px;
    transition: all 0.3s; text-decoration: none; display: inline-block;
}
.btn-primary:hover { background: var(--accent-glow); color: var(--white); transform: translateY(-2px); box-shadow: 0 12px 30px rgba(26,46,47,0.18); }

.btn-ghost {
    padding: 14px 32px; border: 1px solid rgba(255,255,255,0.6); background: rgba(255,255,255,0.08); color: var(--white);
    border-radius: 6px; font-size: 0.85rem; font-weight: 500; cursor: pointer; transition: all 0.3s;
    text-decoration: none; text-transform: uppercase; letter-spacing: 1.5px; backdrop-filter: blur(6px);
}
.btn-ghost:hover { background: var(--white); color: var(--heading); border-color: var(--white); }

.btn-outline {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 12px 26px; border: 1px solid var(--accent); background: transparent; color: var(--accent);
    border-radius: 6px; font-size: 0.82rem; font-weight: 600; text-decoration: none;
    text-transform: uppercase; letter-spacing: 1.2px; transition: all 0.3s;
}
.btn-outline:hover { background: var(--accent); color: var(--white); }

.navbar {
    position: fixed; inset: 0 0 auto 0; z-index: 1000;
    padding: 18px 0; transition: all 0.35s; background: transparent;
}
.navbar.scrolled,
.navbar.is-solid {
    background: rgba(255,255,255,0.97); backdrop-filter: blur(16px);
    padding: 12px 0; box-shadow: 0 1px 12px rgba(26,46,47,0.06);
}
.navbar.scrolled .nav-links a,
.navbar.is-solid .nav-links a { color: var(--heading); }
.navbar.scrolled .nav-links a:hover,
.navbar.is-solid .nav-links a:hover { color: var(--accent); }
.navbar.scrolled .logo-text,
.navbar.is-solid .logo-text { color: var(--heading); }
.navbar .container { display: flex; justify-content: space-between; align-items: center; }

.logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.logo-icon {
    width: 46px; height: 46px; border: 2px solid var(--accent); border-radius: 50%;
    display: grid; place-items: center; font-family: 'Playfair Display', serif;
    font-size: 1.1rem; font-weight: 700; color: var(--accent); background: rgba(255,255,255,0.1);
}
.navbar.scrolled .logo-icon,
.navbar.is-solid .logo-icon { background: transparent; }
.logo-text     { font-family: 'Playfair Display', serif; font-size: 1.35rem; font-weight: 600; color: var(--white); letter-spacing: 1px; transition: color 0.3s; }
.logo-subtitle { font-size: 0.6rem; color: var(--accent); text-transform: uppercase; letter-spacing: 3px; }

.nav-links { display: flex; list-style: none; gap: 30px; align-items: center; }
.nav-links a { color: var(--white); text-decoration: none; font-size: 0.88rem; transition: all 0.3s; }
.nav-links a:hover { color: var(--accent-glow); }
.nav-links a.active { color: var(--accent-glow); }
.navbar.scrolled .nav-links a.active,
.navbar.is-solid .nav-links a.active { color: var(--accent); }
.nav-links a.btn-primary, .nav-links a.btn-primary:hover { color: var(--white); transition: all 0.3s; }
.navbar.scrolled .nav-links a.btn-primary,
.navbar.scrolled .nav-links a.btn-primary:hover,
.navbar.is-solid .nav-links a.btn-primary,
.navbar.is-solid .nav-links a.btn-primary:hover { color: var(--white); }

.mobile-toggle { display: none; background: none; border: none; color: var(--white); font-size: 1.5rem; cursor: pointer; }
.navbar.scrolled .mobile-toggle,
.navbar.is-solid .mobile-toggle { color: var(--heading); }

.hero {
    position: relative; min-height: 100vh; display: flex; align-items: center;
    background: var(--bg);
    overflow: hidden;
}
.hero-bg {
    position: absolute; inset: 0;
    background-position: center; background-size: cover; background-repeat: no-repeat;
}
.hero-bg::after {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(105deg, rgba(10,30,32,0.92) 0%, rgba(10,30,32,0.78) 50%, rgba(10,30,32,0.55) 100%);
}

.hero-content { position: relative; z-index: 2; max-width: 620px; }
.hero-badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(79,163,164,0.12); border: 1px solid rgba(79,163,164,0.25);
    padding: 8px 18px; border-radius: 30px; font-size: 0.78rem; color: var(--accent); margin-bottom: 24px;
}
.hero-badge .stars { letter-spacing: 2px; }
.hero h1 { font-family: 'Playfair Display', serif; font-size: 3.8rem; font-weight: 700; line-height: 1.12; margin-bottom: 20px; color: var(--white); }
.hero h1 span { color: var(--accent-glow); }
.hero p { font-size: 1.05rem; color: rgba(255,255,255,0.92); line-height: 1.75; margin-bottom: 36px; max-width: 480px; }
.hero-buttons { display: flex; gap: 16px; align-items: center; flex-wrap: wrap; }

.hero-stats { display: flex; gap: 48px; margin-top: 48px; padding-top: 32px; border-top: 1px solid rgba(255,255,255,0.18); }
.hero-stat .number { font-family: 'Playfair Display', serif; font-size: 2.4rem; font-weight: 700; color: var(--accent-glow); }
.hero-stat .label  { font-size: 0.78rem; color: rgba(255,255,255,0.8); margin-top: 4px; }

.subhero {
    position: relative; min-height: 60vh; display: flex; align-items: center;
    overflow: hidden; padding: 140px 0 80px;
}
.subhero-bg {
    position: absolute; inset: 0;
    background-position: center; background-size: cover; background-repeat: no-repeat;
}
.subhero-bg::after {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(105deg, rgba(10,30,32,0.85) 0%, rgba(10,30,32,0.65) 100%);
}
.subhero-content { position: relative; z-index: 2; max-width: 760px; margin: 0 auto; text-align: center; }
.subhero h1 { font-family: 'Playfair Display', serif; font-size: 3rem; color: var(--white); margin-bottom: 16px; line-height: 1.15; }
.subhero p { color: rgba(255,255,255,0.9); font-size: 1.05rem; line-height: 1.7; max-width: 600px; margin: 0 auto; }

.breadcrumb { display: inline-flex; gap: 10px; align-items: center; color: rgba(255,255,255,0.7); font-size: 0.72rem; margin-bottom: 18px; text-transform: uppercase; letter-spacing: 3px; }
.breadcrumb a { color: var(--accent-glow); text-decoration: none; }
.breadcrumb a:hover { color: var(--white); }
.breadcrumb i { font-size: 0.55rem; }

.booking-bar { position: relative; z-index: 10; margin-top: -50px; margin-bottom: 0; }
.booking-bar-inner {
    background: var(--white); border: 1px solid var(--border); border-radius: 16px;
    padding: 32px 36px; display: flex; align-items: flex-end; gap: 20px;
    box-shadow: 0 20px 60px rgba(26,46,47,0.12);
}
.booking-field { flex: 1; }
.booking-field label { display: block; font-size: 0.72rem; text-transform: uppercase; letter-spacing: 2px; color: var(--accent); margin-bottom: 8px; font-weight: 600; }
.booking-field input,
.booking-field select,
.booking-field textarea {
    width: 100%; background: var(--bg-alt); border: 1px solid var(--border);
    border-radius: 8px; padding: 14px 16px; color: var(--heading); font-size: 0.88rem;
    font-family: 'Inter', sans-serif; transition: border-color 0.3s;
}
.booking-field input:focus,
.booking-field select:focus,
.booking-field textarea:focus { outline: none; border-color: var(--accent); }
.booking-field select.is-flash {
    border-color: var(--accent);
    animation: selectFlash 1.6s ease;
}
@keyframes selectFlash {
    0%   { box-shadow: 0 0 0 0 rgba(44,122,123,0.55); }
    50%  { box-shadow: 0 0 0 10px rgba(44,122,123,0); }
    100% { box-shadow: 0 0 0 0 rgba(44,122,123,0); }
}
.booking-field input::placeholder,
.booking-field textarea::placeholder { color: var(--text); }
.booking-field select option { background: var(--white); color: var(--heading); }
.btn-search {
    background: var(--accent); color: var(--white); border: none; border-radius: 8px;
    padding: 14px 36px; font-weight: 600; font-size: 1rem; cursor: pointer; transition: all 0.3s;
    white-space: nowrap; display: flex; align-items: center; gap: 10px;
}
.btn-search:hover { background: var(--accent-glow); transform: translateY(-2px); }

.highlights {
    background: var(--bg-alt);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}
.highlights-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; }
.highlight-card {
    text-align: center; padding: 48px 28px; position: relative; transition: all 0.4s;
    border-right: 1px solid var(--border);
}
.highlight-card:last-child { border-right: none; }
.highlight-card::after {
    content: ''; position: absolute; bottom: 0; left: 50%; transform: translateX(-50%);
    width: 0; height: 3px; background: var(--accent); transition: width 0.4s;
}
.highlight-card:hover::after { width: 60%; }
.highlight-card:hover { background: var(--white); }

.highlight-icon {
    width: 60px; height: 60px; border: 1px solid rgba(44,122,123,0.25); background: var(--white); border-radius: 50%;
    display: grid; place-items: center; margin: 0 auto 20px; font-size: 1.3rem; color: var(--accent);
    transition: all 0.4s;
}
.highlight-card:hover .highlight-icon { background: var(--accent); color: var(--white); border-color: var(--accent); }
.highlight-card h3 { font-family: 'Playfair Display', serif; font-size: 1.1rem; margin-bottom: 10px; color: var(--heading); }
.highlight-card p  { color: var(--text); font-size: 0.84rem; line-height: 1.6; }

.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-images { position: relative; }
.about-img-main {
    width: 100%; height: 460px; object-fit: cover; border-radius: 12px;
    box-shadow: 0 24px 48px rgba(0,0,0,0.4);
}
.about-img-small {
    position: absolute; bottom: -30px; right: -30px; width: 200px; height: 200px;
    object-fit: cover; border-radius: 12px; border: 4px solid var(--white);
    box-shadow: 0 12px 30px rgba(26,46,47,0.2);
}
.about-badge {
    position: absolute; top: -20px; left: -20px; background: var(--accent); color: var(--white);
    width: 90px; height: 90px; border-radius: 50%; display: grid; place-items: center;
    text-align: center; font-weight: 700; font-size: 0.72rem; line-height: 1.3;
    box-shadow: 0 8px 24px rgba(44,122,123,0.35);
}
.about-badge .big { font-family: 'Playfair Display', serif; font-size: 1.6rem; display: block; }

.about-text .section-label { text-align: left; }
.about-text .section-title { text-align: left; color: var(--heading); }
.about-text p { color: var(--text); line-height: 1.8; margin-bottom: 16px; }

.about-ratings { display: flex; gap: 32px; margin-top: 30px; padding-top: 30px; border-top: 1px solid var(--border); }
.about-rating { display: flex; align-items: center; gap: 12px; }
.about-rating-logo {
    width: 40px; height: 40px; background: var(--bg-alt); border-radius: 8px;
    display: grid; place-items: center; font-weight: 700; font-size: 0.7rem; color: var(--accent);
}
.about-rating-score  { font-family: 'Playfair Display', serif; font-size: 1.4rem; font-weight: 700; color: var(--heading); }
.about-rating-source { font-size: 0.75rem; color: var(--text); }

.rooms { background: var(--bg-alt); }
.rooms-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.rooms-grid.cols-2 { grid-template-columns: repeat(2, 1fr); max-width: 880px; margin: 40px auto 0; }
.room-card {
    border-radius: 14px; overflow: hidden; background: var(--white);
    border: 1px solid var(--border); transition: all 0.4s; display: flex; flex-direction: column;
}
.room-card:hover { transform: translateY(-6px); box-shadow: 0 24px 48px rgba(26,46,47,0.12); border-color: rgba(44,122,123,0.25); }

.room-img { position: relative; height: 220px; overflow: hidden; }
.room-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s; }
.room-card:hover .room-img img { transform: scale(1.06); }

/* Multi-image carousel inside a .room-img. Slides stack on top of each other;
 * the active one fades in. Used when a room type has galleryImages in the DB. */
.room-img.has-carousel .slide {
    position: absolute; inset: 0;
    width: 100%; height: 100%; object-fit: cover;
    opacity: 0; transition: opacity 0.6s ease;
}
.room-img.has-carousel .slide.is-active { opacity: 1; }
.room-img .room-carousel-btn {
    position: absolute; top: 50%; transform: translateY(-50%);
    z-index: 3; width: 32px; height: 32px; border-radius: 50%;
    background: rgba(255,255,255,.78); border: none; color: var(--heading);
    font-size: 18px; line-height: 1; cursor: pointer; opacity: 0;
    transition: opacity .2s, background .2s;
    display: flex; align-items: center; justify-content: center;
}
.room-img:hover .room-carousel-btn { opacity: 1; }
.room-img .room-carousel-btn:hover { background: var(--white); }
.room-img .room-carousel-btn.prev { left: 10px; }
.room-img .room-carousel-btn.next { right: 10px; }
.room-img .room-carousel-dots {
    position: absolute; bottom: 10px; left: 50%; transform: translateX(-50%);
    z-index: 3; display: flex; gap: 5px;
}
.room-img .room-carousel-dots button {
    width: 6px; height: 6px; border-radius: 50%; border: none; padding: 0;
    background: rgba(255,255,255,.55); cursor: pointer;
    transition: background .2s, width .2s;
}
.room-img .room-carousel-dots button.is-active { background: var(--accent); width: 18px; border-radius: 3px; }
.room-price-badge {
    position: absolute; top: 16px; right: 16px; background: var(--accent); color: var(--white);
    padding: 6px 16px; border-radius: 20px; font-weight: 600; font-size: 0.82rem;
}
.room-info { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.room-info h3 { font-family: 'Playfair Display', serif; font-size: 1.25rem; margin-bottom: 12px; color: var(--heading); }
.room-info > p { color: var(--text); font-size: 0.9rem; line-height: 1.7; margin-bottom: 18px; flex: 1; }
.room-features { display: flex; gap: 10px 14px; margin-bottom: 20px; flex-wrap: wrap; }
.room-feature { display: flex; align-items: center; gap: 6px; font-size: 0.78rem; color: var(--text); }
.room-feature i { color: var(--accent); font-size: 0.72rem; }
.btn-room {
    display: inline-flex; align-items: center; gap: 8px; color: var(--accent); font-weight: 600;
    font-size: 0.82rem; text-decoration: none; text-transform: uppercase; letter-spacing: 1px; transition: gap 0.3s;
}
.btn-room:hover { gap: 14px; }

.section-cta { text-align: center; margin-top: 50px; }

.gallery-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 40px;
}
.gallery-item {
    position: relative; border-radius: 12px; overflow: hidden; cursor: pointer;
    aspect-ratio: 4 / 3; background: var(--bg-alt); border: 1px solid var(--border);
    transition: transform 0.4s, box-shadow 0.4s;
}
.gallery-item:hover { transform: translateY(-4px); box-shadow: 0 18px 40px rgba(26,46,47,0.15); }
.gallery-item img {
    width: 100%; height: 100%; object-fit: cover; display: block;
    transition: transform 0.6s;
}
.gallery-item:hover img { transform: scale(1.06); }
.gallery-caption {
    position: absolute; left: 0; right: 0; bottom: 0; padding: 40px 18px 16px;
    background: linear-gradient(to top, rgba(10,30,32,0.85) 0%, rgba(10,30,32,0) 100%);
    color: var(--white); pointer-events: none;
}
.gallery-caption .gc-label {
    font-size: 0.65rem; text-transform: uppercase; letter-spacing: 2.5px;
    color: var(--accent-glow); display: block; margin-bottom: 4px;
}
.gallery-caption .gc-name {
    font-family: 'Playfair Display', serif; font-size: 1rem; font-weight: 600; line-height: 1.3;
}
.gallery-item .gc-zoom {
    position: absolute; top: 14px; right: 14px;
    width: 36px; height: 36px; border-radius: 50%;
    background: rgba(255,255,255,0.92); color: var(--heading);
    display: grid; place-items: center; font-size: 0.85rem;
    opacity: 0; transform: scale(0.8); transition: all 0.3s;
}
.gallery-item:hover .gc-zoom { opacity: 1; transform: scale(1); }

.lightbox {
    position: fixed; inset: 0; z-index: 2000;
    background: rgba(10,30,32,0.94); backdrop-filter: blur(8px);
    display: none; align-items: center; justify-content: center;
    padding: 40px 20px;
}
.lightbox.open { display: flex; }
.lightbox-stage {
    position: relative; width: 100%; max-width: 1100px;
    display: flex; flex-direction: column; align-items: center; gap: 18px;
}
.lightbox-img-wrap {
    width: 100%; max-height: 72vh; display: flex; align-items: center; justify-content: center;
}
.lightbox-img-wrap img {
    max-width: 100%; max-height: 72vh; border-radius: 10px;
    box-shadow: 0 30px 80px rgba(0,0,0,0.5);
}
.lightbox-info {
    background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12);
    border-radius: 10px; padding: 16px 22px;
    display: flex; align-items: center; gap: 24px; flex-wrap: wrap; justify-content: center;
    color: var(--white); width: 100%; max-width: 720px;
}
.lightbox-info .li-text { text-align: left; flex: 1; min-width: 200px; }
.lightbox-info .li-label {
    font-size: 0.65rem; text-transform: uppercase; letter-spacing: 3px;
    color: var(--accent-glow); display: block; margin-bottom: 4px;
}
.lightbox-info .li-name {
    font-family: 'Playfair Display', serif; font-size: 1.25rem; font-weight: 600;
}
.lightbox-info .li-counter { font-size: 0.78rem; color: rgba(255,255,255,0.65); margin-top: 4px; }
.lightbox-info a.btn-primary { white-space: nowrap; }
.lightbox-info .li-room-select {
    background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.25);
    color: var(--white); font: inherit; font-size: 0.95rem;
    padding: 10px 14px; border-radius: 8px; cursor: pointer;
    appearance: none; -webkit-appearance: none;
    background-image: linear-gradient(45deg, transparent 50%, rgba(255,255,255,0.7) 50%), linear-gradient(135deg, rgba(255,255,255,0.7) 50%, transparent 50%);
    background-position: calc(100% - 16px) 50%, calc(100% - 11px) 50%;
    background-size: 5px 5px, 5px 5px;
    background-repeat: no-repeat;
    padding-right: 32px;
}
.lightbox-info .li-room-select:focus { outline: 2px solid var(--accent-glow); outline-offset: 2px; }
.lightbox-info .li-room-select option { background: #1a1a1a; color: var(--white); }

.lightbox-btn {
    background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2);
    color: var(--white); width: 48px; height: 48px; border-radius: 50%;
    display: grid; place-items: center; font-size: 1.1rem; cursor: pointer;
    transition: all 0.3s;
}
.lightbox-btn:hover { background: var(--accent); border-color: var(--accent); }
.lightbox-close { position: absolute; top: 24px; right: 24px; }
.lightbox-prev  { position: absolute; top: 50%; left: 24px; transform: translateY(-50%); }
.lightbox-next  { position: absolute; top: 50%; right: 24px; transform: translateY(-50%); }

.room-card.is-target {
    animation: roomFlash 1.6s ease;
    border-color: var(--accent) !important;
}
@keyframes roomFlash {
    0%   { box-shadow: 0 0 0 0 rgba(44,122,123,0.5); }
    50%  { box-shadow: 0 0 0 14px rgba(44,122,123,0); }
    100% { box-shadow: 0 0 0 0 rgba(44,122,123,0); }
}

@media (max-width: 1024px) {
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
    .gallery-grid { grid-template-columns: 1fr; }
    .lightbox-prev { left: 8px; }
    .lightbox-next { right: 8px; }
    .lightbox-close { top: 12px; right: 12px; }
    .lightbox-info { padding: 14px; }
}

.amenities-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.amenity-card {
    background: var(--white); border: 1px solid var(--border); border-radius: 12px;
    padding: 28px 20px; text-align: center; transition: all 0.3s; position: relative; overflow: hidden;
}
.amenity-card::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
    opacity: 0; transition: opacity 0.3s;
}
.amenity-card:hover::before { opacity: 1; }
.amenity-card:hover { transform: translateY(-4px); border-color: rgba(44,122,123,0.25); box-shadow: 0 14px 30px rgba(26,46,47,0.08); }
.amenity-card i  { font-size: 1.6rem; color: var(--accent); margin-bottom: 14px; }
.amenity-card h4 { font-size: 0.92rem; margin-bottom: 6px; color: var(--heading); }
.amenity-card p  { font-size: 0.78rem; color: var(--text); }

.spaces-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-top: 40px; }
.space-card {
    border-radius: 14px; overflow: hidden; background: var(--white);
    border: 1px solid var(--border); transition: all 0.4s;
}
.space-card:hover { transform: translateY(-4px); box-shadow: 0 18px 40px rgba(26,46,47,0.1); }
.space-card-img { height: 220px; overflow: hidden; }
.space-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s; }
.space-card:hover .space-card-img img { transform: scale(1.05); }
.space-card-info { padding: 24px; }
.space-card-info h3 { font-family: 'Playfair Display', serif; font-size: 1.2rem; margin-bottom: 10px; color: var(--heading); }
.space-card-info p { color: var(--text); font-size: 0.88rem; line-height: 1.65; }

.policies { background: var(--bg-alt); border-top: 1px solid var(--border); }
.policies-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 30px; }
.policy-card {
    background: var(--white); border: 1px solid var(--border); border-radius: 12px;
    padding: 30px; display: flex; gap: 20px;
}
.policy-icon {
    width: 50px; height: 50px; min-width: 50px; border-radius: 50%;
    background: rgba(44,122,123,0.1); color: var(--accent);
    display: grid; place-items: center; font-size: 1.2rem;
}
.policy-card h4 { font-family: 'Playfair Display', serif; font-size: 1.1rem; margin-bottom: 8px; color: var(--heading); }
.policy-card p  { color: var(--text); font-size: 0.88rem; line-height: 1.7; }
.policy-card p strong { color: var(--heading); }

.story-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.story-grid.reverse { direction: rtl; }
.story-grid.reverse > * { direction: ltr; }
.story-img { width: 100%; height: 420px; object-fit: cover; border-radius: 12px; box-shadow: 0 20px 40px rgba(26,46,47,0.15); }
.story-text h2 { font-family: 'Playfair Display', serif; font-size: 2.2rem; margin-bottom: 20px; color: var(--heading); }
.story-text p  { color: var(--text); line-height: 1.8; margin-bottom: 16px; }

.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-top: 40px; }
.value-card { text-align: center; padding: 20px; }
.value-icon {
    width: 70px; height: 70px; border-radius: 50%; margin: 0 auto 20px;
    background: rgba(44,122,123,0.1); color: var(--accent);
    display: grid; place-items: center; font-size: 1.5rem;
}
.value-card h4 { font-family: 'Playfair Display', serif; font-size: 1.15rem; margin-bottom: 10px; color: var(--heading); }
.value-card p  { color: var(--text); font-size: 0.9rem; line-height: 1.7; }

.map-wrap { width: 100%; height: 420px; border-radius: 12px; overflow: hidden; border: 1px solid var(--border); box-shadow: 0 16px 40px rgba(26,46,47,0.1); }
.map-wrap iframe { width: 100%; height: 100%; border: 0; display: block; }

.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 50px; align-items: start; }
.contact-info-card {
    background: var(--bg-alt); border: 1px solid var(--border); border-radius: 12px;
    padding: 36px;
}
.contact-info-card h3 { font-family: 'Playfair Display', serif; font-size: 1.4rem; margin-bottom: 20px; color: var(--heading); }
.contact-info-list { list-style: none; }
.contact-info-list li { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 18px; font-size: 0.92rem; color: var(--text-light); line-height: 1.6; }
.contact-info-list li i {
    width: 38px; height: 38px; min-width: 38px; border-radius: 50%; background: var(--white);
    color: var(--accent); display: grid; place-items: center; font-size: 0.9rem; border: 1px solid var(--border);
}
.contact-info-list li strong { display: block; color: var(--heading); font-weight: 600; margin-bottom: 2px; }
.contact-info-list li a { color: var(--text-light); text-decoration: none; }
.contact-info-list li a:hover { color: var(--accent); }

.contact-quick { display: flex; gap: 12px; margin-top: 24px; flex-wrap: wrap; }
.contact-quick a {
    flex: 1; min-width: 140px; display: inline-flex; align-items: center; justify-content: center; gap: 8px;
    padding: 12px 18px; border-radius: 8px; text-decoration: none; font-size: 0.85rem; font-weight: 600;
    transition: all 0.3s;
}
.contact-quick a.wa { background: #25D366; color: var(--white); }
.contact-quick a.wa:hover { background: #1ebd5b; }
.contact-quick a.tel { background: var(--accent); color: var(--white); }
.contact-quick a.tel:hover { background: var(--accent-glow); }

.contact-form-card {
    background: var(--white); border: 1px solid var(--border); border-radius: 12px;
    padding: 36px; box-shadow: 0 16px 40px rgba(26,46,47,0.06);
}
.contact-form-card h3 { font-family: 'Playfair Display', serif; font-size: 1.4rem; margin-bottom: 8px; color: var(--heading); }
.contact-form-card > p { color: var(--text); font-size: 0.9rem; margin-bottom: 24px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-row .booking-field + .booking-field { margin-top: 0; }
.form-row + .booking-field,
.booking-field + .booking-field { margin-top: 16px; }
.contact-form-card textarea { resize: vertical; min-height: 130px; }
.form-success {
    display: none; background: rgba(44,122,123,0.1); border: 1px solid rgba(44,122,123,0.3); color: var(--accent);
    padding: 14px 18px; border-radius: 8px; font-size: 0.88rem; margin-top: 16px;
}
.form-success.visible { display: block; }

.testimonial {
    background: var(--bg-alt); position: relative; overflow: hidden;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}
.testimonial::before {
    content: ''; position: absolute; top: 0; left: 50%; transform: translateX(-50%);
    width: 60px; height: 3px; background: var(--accent);
}
.testimonial-content { max-width: 680px; margin: 0 auto; text-align: center; }
.testimonial-stars   { color: var(--accent); font-size: 1.1rem; margin-bottom: 28px; letter-spacing: 4px; }
.testimonial-quote   { font-family: 'Playfair Display', serif; font-size: 1.5rem; font-style: italic; line-height: 1.65; margin-bottom: 32px; color: var(--text-light); }
.testimonial-author  { display: flex; align-items: center; justify-content: center; gap: 16px; }
.testimonial-avatar  {
    width: 52px; height: 52px; border-radius: 50%;
    background: linear-gradient(135deg, var(--accent), var(--accent-glow));
    display: grid; place-items: center; font-family: 'Playfair Display', serif;
    font-size: 1.1rem; font-weight: 700; color: var(--white);
}
.testimonial-name { font-weight: 600; font-size: 0.95rem; color: var(--heading); }
.testimonial-role { font-size: 0.78rem; color: var(--text); }

.cta { position: relative; padding: 120px 0; overflow: hidden; }
.cta-bg {
    position: absolute; inset: 0;
    background-position: center; background-size: cover; background-repeat: no-repeat;
}
.cta-bg::after {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(26,46,47,0.9) 0%, rgba(26,46,47,0.7) 100%);
}
.cta-content { position: relative; z-index: 2; text-align: center; }
.cta-content h2 { font-family: 'Playfair Display', serif; font-size: 3rem; margin-bottom: 16px; color: var(--white); }
.cta-content p  { color: rgba(255,255,255,0.9); font-size: 1.05rem; margin-bottom: 36px; max-width: 500px; margin-left: auto; margin-right: auto; }

.footer {
    background: var(--bg-alt); border-top: 1px solid var(--border); padding: 60px 0 30px;
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.footer-brand .logo { margin-bottom: 16px; }
.footer-brand .logo-text { color: var(--heading); }
.footer-brand .logo-icon { background: transparent; }
.footer-brand p { color: var(--text); font-size: 0.84rem; line-height: 1.7; margin-bottom: 20px; }

.footer-social { display: flex; gap: 10px; }
.footer-social a {
    width: 38px; height: 38px; border: 1px solid var(--border); background: var(--white); border-radius: 8px;
    display: grid; place-items: center; color: var(--text); text-decoration: none; transition: all 0.3s;
}
.footer-social a:hover { border-color: var(--accent); color: var(--accent); background: rgba(44,122,123,0.08); }

.footer-col h4  { font-family: 'Playfair Display', serif; font-size: 1rem; margin-bottom: 20px; color: var(--heading); }
.footer-col ul  { list-style: none; }
.footer-col li  { margin-bottom: 10px; }
.footer-col a   { color: var(--text); text-decoration: none; font-size: 0.84rem; transition: color 0.3s; }
.footer-col a:hover { color: var(--accent); }
.footer-col .contact-item { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 14px; font-size: 0.84rem; color: var(--text); }
.footer-col .contact-item i { color: var(--accent); margin-top: 3px; font-size: 0.84rem; }

.footer-bottom {
    border-top: 1px solid var(--border); padding-top: 24px;
    display: flex; justify-content: space-between; align-items: center; font-size: 0.78rem; color: var(--text);
}

@media (max-width: 1024px) {
    .hero h1 { font-size: 2.8rem; }
    .subhero h1 { font-size: 2.4rem; }
    .highlights-grid { grid-template-columns: repeat(2, 1fr); }
    .highlight-card { border-bottom: 1px solid rgba(255,255,255,0.04); }
    .rooms-grid     { grid-template-columns: repeat(2, 1fr); }
    .rooms-grid.cols-2 { grid-template-columns: repeat(2, 1fr); }
    .amenities-grid { grid-template-columns: repeat(2, 1fr); }
    .spaces-grid    { grid-template-columns: repeat(2, 1fr); }
    .values-grid    { grid-template-columns: 1fr; }
    .footer-grid    { grid-template-columns: 1fr 1fr; }
    .contact-grid   { grid-template-columns: 1fr; }
    .story-grid     { grid-template-columns: 1fr; gap: 30px; }
    .story-grid.reverse { direction: ltr; }
    .policies-grid  { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .nav-links      { display: none; }
    .nav-links.active {
        display: flex; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0;
        background: var(--white); padding: 20px; gap: 16px; box-shadow: 0 12px 30px rgba(26,46,47,0.12);
    }
    .nav-links.active a { color: var(--heading); }
    .mobile-toggle  { display: block; }
    .hero h1        { font-size: 2.2rem; }
    .subhero { padding: 120px 0 60px; min-height: 50vh; }
    .subhero h1 { font-size: 1.9rem; }
    .hero-stats     { gap: 24px; }
    .hero-stat .number { font-size: 1.8rem; }
    .booking-bar-inner { flex-direction: column; padding: 24px; }
    .booking-field  { width: 100%; }
    .btn-search     { width: 100%; justify-content: center; }
    .about-grid     { grid-template-columns: 1fr; gap: 40px; }
    .about-img-small { display: none; }
    .about-badge    { top: -12px; left: -12px; width: 72px; height: 72px; font-size: 0.65rem; }
    .about-badge .big { font-size: 1.3rem; }
    .rooms-grid,
    .rooms-grid.cols-2 { grid-template-columns: 1fr; }
    .highlights-grid { grid-template-columns: 1fr; }
    .highlight-card { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.04); }
    .amenities-grid { grid-template-columns: 1fr 1fr; }
    .spaces-grid    { grid-template-columns: 1fr; }
    .form-row       { grid-template-columns: 1fr; }
    .footer-grid    { grid-template-columns: 1fr; }
    .footer-bottom  { flex-direction: column; gap: 12px; text-align: center; }
    .cta-content h2 { font-size: 2rem; }
    .testimonial-quote { font-size: 1.2rem; }
    .section { padding: 60px 0; }
    .about-ratings { flex-wrap: wrap; gap: 20px; }
}

.fade-in { opacity: 0; transform: translateY(24px); transition: all 0.7s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }

.booking-modal {
    position: fixed; inset: 0; z-index: 2000;
    display: none; align-items: center; justify-content: center;
    background: rgba(26,46,47,0.45);
    backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
    opacity: 0; transition: opacity 0.3s ease;
    padding: 24px;
}
.booking-modal.active { display: flex; opacity: 1; }
body.modal-open { overflow: hidden; }
.booking-modal-card {
    position: relative;
    background: var(--white); border-radius: 14px;
    width: 520px; max-width: 100%;
    padding: 40px 36px;
    box-shadow: 0 30px 80px rgba(26,46,47,0.25);
    transform: translateY(20px) scale(0.97);
    transition: transform 0.3s ease;
}
.booking-modal.active .booking-modal-card { transform: translateY(0) scale(1); }
.booking-modal-close {
    position: absolute; top: 14px; right: 14px;
    width: 36px; height: 36px; border-radius: 50%;
    border: none; background: var(--bg-alt); color: var(--heading);
    cursor: pointer; font-size: 1rem; display: grid; place-items: center;
    transition: all 0.2s;
}
.booking-modal-close:hover { background: var(--accent-glow); color: var(--white); }
.booking-modal-card .section-label { margin-bottom: 8px; }
.booking-modal-card h3 {
    font-family: 'Playfair Display', serif; font-size: 1.8rem;
    color: var(--heading); margin-bottom: 8px;
}
.booking-modal-card p.modal-sub { color: var(--text); font-size: 0.95rem; margin-bottom: 24px; }
.booking-modal-form { display: grid; gap: 16px; }
.booking-modal-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.booking-modal-row .booking-field + .booking-field { margin-top: 0; }
.booking-modal-form .booking-field input,
.booking-modal-form .booking-field select {
    width: 100%; padding: 12px 14px; border: 1px solid var(--border);
    border-radius: 8px; font-family: inherit; font-size: 0.95rem;
    color: var(--heading); background: var(--white); transition: border-color 0.2s;
}
.booking-modal-form .booking-field input:focus,
.booking-modal-form .booking-field select:focus { outline: none; border-color: var(--accent); }
.booking-modal-form .btn-primary { width: 100%; margin-top: 8px; cursor: pointer; }
@media (max-width: 540px) {
    .booking-modal-card { padding: 32px 22px; }
    .booking-modal-row { grid-template-columns: 1fr; }
}

/* ============ Complex Eforie family bar ============ */
.cefb {
    position: fixed; top: 0; left: 0; right: 0;
    z-index: 1500;
    background: #0A5360;
    color: #ffffff;
    font-family: 'Inter', system-ui, sans-serif;
    font-size: 13px;
    border-bottom: 1px solid rgba(255,255,255,.08);
}
.cefb-inner {
    position: relative;
    max-width: 1200px; margin: 0 auto;
    padding: 0 24px;
    display: flex; align-items: center; gap: 24px;
    min-height: 36px;
}
.cefb-brand {
    display: inline-flex; align-items: center; gap: 8px;
    color: #ffffff; text-decoration: none;
    font-weight: 500; letter-spacing: .3px;
    white-space: nowrap;
}
.cefb-brand strong { font-weight: 700; }
.cefb-mark { color: #E8835C; font-size: 14px; line-height: 1; }
.cefb-brand:hover { color: #E8835C; }

.cefb-links {
    list-style: none; margin: 0 0 0 auto; padding: 0;
    display: flex; align-items: center; gap: 4px;
}
.cefb-links a {
    display: inline-block; padding: 6px 12px;
    color: rgba(255,255,255,.78); text-decoration: none;
    border-radius: 6px;
    transition: color .2s ease, background .2s ease;
    white-space: nowrap;
    font-weight: 500;
}
.cefb-links a:hover { color: #ffffff; background: rgba(255,255,255,.08); }
.cefb[data-current="hub"]      .cefb-links a[data-key="hub"],
.cefb[data-current="egreta"]   .cefb-links a[data-key="egreta"],
.cefb[data-current="meridian"] .cefb-links a[data-key="meridian"],
.cefb[data-current="smarald"]  .cefb-links a[data-key="smarald"],
.cefb[data-current="hostel"]   .cefb-links a[data-key="hostel"] {
    color: #0A5360; background: #ffffff;
    pointer-events: none; cursor: default;
    font-weight: 600;
}

.cefb-toggle {
    display: none;
    margin-left: auto;
    background: transparent; border: 1px solid rgba(255,255,255,.25);
    color: #ffffff; font: inherit; font-size: 13px;
    padding: 4px 12px; border-radius: 6px;
    cursor: pointer;
    align-items: center; gap: 6px;
}
.cefb-toggle:hover { background: rgba(255,255,255,.08); }

@media (max-width: 860px) {
    .cefb-links {
        display: none;
        position: absolute; top: 100%; right: 16px; left: auto;
        flex-direction: column; align-items: stretch;
        background: #0A5360; padding: 8px;
        border-radius: 0 0 10px 10px;
        box-shadow: 0 12px 24px rgba(0,0,0,.25);
        min-width: 220px; gap: 2px;
        margin: 0;
    }
    .cefb.is-open .cefb-links { display: flex; }
    .cefb.is-open .cefb-links a { padding: 10px 14px; }
    .cefb-toggle { display: inline-flex; }
}

/* push existing fixed navbar below family bar */
body { padding-top: 36px; }
.navbar { top: 36px !important; }

.icon{width:1em;height:1em;fill:currentColor;display:inline-block;vertical-align:-0.125em;flex-shrink:0}
