:root {
    --cream: #f8f3ec;
    --warm-white: #fdfaf6;
    --sage: #7a8c6e;
    --deep-sage: #4a5e3a;
    --terracotta: #c67d5b;
    --terracotta-light: #e8a882;
    --dark: #2a2418;
    --mid: #5a4f3a;
    --gold: #c9a84c;
    --gold-light: #e8d5a0;
    --stone: #b8a898;
    --light-stone: #e8e0d5;
    --shadow: 0 4px 24px rgba(42, 36, 24, 0.08);
    --shadow-lg: 0 14px 44px rgba(42, 36, 24, 0.14);
    --radius: 5px;
    --serif: 'Playfair Display', Georgia, serif;
    --garamond: 'Nunito Sans', system-ui, sans-serif;
    --sans: 'Nunito Sans', system-ui, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: var(--sans);
    background: var(--cream);
    color: var(--dark);
    overflow-x: hidden;
    line-height: 1.65;
    font-size: 16px;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; }
.app-icon { display: inline-block; line-height: 1; }

.container { max-width: 1160px; margin: 0 auto; padding: 0 2rem; }
.section { padding: 5.5rem 0; }
.section-light { background: var(--warm-white); }
.muted-text { color: var(--stone); font-size: 1.05rem; }

.skip-link { position: absolute; left: -9999px; top: 0; z-index: 200; background: var(--deep-sage); color: #fff; padding: 0.6rem 1rem; }
.skip-link:focus { left: 1rem; top: 1rem; border-radius: 4px; }

.section-head { max-width: 640px; margin: 0 auto 3.2rem; text-align: center; }
.section-label { font-size: 0.72rem; letter-spacing: 0.3em; text-transform: uppercase; color: var(--terracotta); font-weight: 700; margin-bottom: 0.8rem; }
.section-title { font-family: var(--serif); font-size: clamp(1.9rem, 4vw, 2.9rem); font-weight: 400; color: var(--deep-sage); line-height: 1.2; margin-bottom: 1.1rem; }
.section-title em { font-style: italic; color: var(--terracotta); }
.section-body { font-size: 1.05rem; line-height: 1.8; color: var(--mid); font-weight: 400; }
.section-intro { margin-top: 0.4rem; }
.section-cta { text-align: center; margin-top: 3rem; }

.divider { display: flex; align-items: center; gap: 0.9rem; margin: 1.3rem 0; color: var(--gold); }
.divider span { flex: none; width: 56px; height: 1px; background: var(--light-stone); }

.btn { display: inline-flex; align-items: center; gap: 0.5rem; font-size: 0.74rem; letter-spacing: 0.16em; text-transform: uppercase; font-weight: 700; padding: 0.95rem 2.1rem; border-radius: 3px; cursor: pointer; border: 1.5px solid transparent; transition: all 0.3s ease; font-family: var(--sans); }
.btn-primary { background: var(--terracotta); color: #fff; }
.btn-primary:hover { background: var(--deep-sage); transform: translateY(-2px); }
.btn-ghost { border-color: rgba(255, 255, 255, 0.8); color: #fff; background: rgba(0, 0, 0, 0.12); }
.btn-ghost:hover { background: rgba(255, 255, 255, 0.18); }
.btn-outline { border-color: var(--deep-sage); color: var(--deep-sage); background: transparent; }
.btn-outline:hover { background: var(--deep-sage); color: #fff; }
.btn-lg { padding: 1.1rem 2.6rem; font-size: 0.78rem; }
.btn-block { width: 100%; justify-content: center; }

.nav { position: fixed; top: 0; left: 0; right: 0; z-index: 100; height: 72px; display: flex; align-items: center; transition: box-shadow 0.4s; background: rgba(248, 243, 236, 0.96); backdrop-filter: blur(8px); box-shadow: 0 1px 16px rgba(42, 36, 24, 0.07); }
.nav-wrap { max-width: 1220px; margin: 0 auto; width: 100%; padding: 0 2rem; display: flex; align-items: center; justify-content: space-between; }
.nav-logo { display: flex; align-items: center; gap: 0.6rem; font-family: var(--serif); font-size: 1.22rem; color: var(--deep-sage); }
.nav-logo-img { width: 40px; height: 40px; border-radius: 50%; border: 1px solid rgba(74, 94, 58, 0.25); }
.nav-links { display: flex; gap: 2rem; }
.nav-links a { font-size: 0.76rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--mid); font-weight: 600; transition: color 0.3s; position: relative; }
.nav-links a::after { content: ''; position: absolute; left: 0; bottom: -4px; width: 0; height: 1.5px; background: var(--gold); transition: width 0.3s; }
.nav-links a:hover::after, .nav-links a.is-active::after { width: 100%; }
.nav-links a:hover, .nav-links a.is-active { color: var(--terracotta); }
.nav-actions { display: flex; align-items: center; gap: 1.1rem; }
.lang-switch { display: flex; align-items: center; gap: 0.3rem; font-size: 0.74rem; font-weight: 700; color: var(--mid); }
.lang-switch a { color: var(--mid); }
.lang-switch a.active { color: var(--terracotta); }
.nav-reserve { font-size: 0.7rem; letter-spacing: 0.16em; text-transform: uppercase; font-weight: 700; border: 1.5px solid var(--deep-sage); color: var(--deep-sage); padding: 0.5rem 1.1rem; border-radius: 3px; transition: all 0.3s; background: transparent; }
.nav-reserve:hover { background: var(--deep-sage); border-color: var(--deep-sage); color: #fff; }
.nav-toggle { display: none; background: none; border: none; color: var(--deep-sage); font-size: 1.4rem; cursor: pointer; }
.nav.scrolled { box-shadow: 0 2px 22px rgba(42, 36, 24, 0.1); }

.mobile-menu { position: fixed; top: 72px; left: 0; right: 0; background: var(--warm-white); box-shadow: var(--shadow-lg); transform: translateY(-130%); transition: transform 0.35s ease; z-index: 99; }
.mobile-menu.open { transform: translateY(0); }
.mobile-menu ul { padding: 1rem 0; }
.mobile-menu li { border-bottom: 1px solid var(--light-stone); }
.mobile-menu a { display: block; padding: 1rem 2rem; color: var(--mid); font-weight: 600; letter-spacing: 0.06em; }
.mobile-menu a.mobile-reserve { color: var(--terracotta); }

.hero { position: relative; height: 100vh; min-height: 600px; display: flex; align-items: center; justify-content: center; overflow: hidden; text-align: center; }
.hero-bg { position: absolute; inset: 0; background-size: cover; background-position: center; transform: scale(1.05); animation: heroZoom 20s ease-in-out infinite alternate; }
@keyframes heroZoom { from { transform: scale(1.05); } to { transform: scale(1.13); } }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(16, 22, 8, 0.5) 0%, rgba(16, 22, 8, 0.32) 42%, rgba(16, 14, 8, 0.72) 100%); }
.hero-inner { position: relative; color: #fff; padding: 0 1.5rem; max-width: 800px; text-shadow: 0 1px 3px rgba(0, 0, 0, 0.65), 0 2px 24px rgba(0, 0, 0, 0.6); }
.hero-eyebrow { font-size: 0.92rem; letter-spacing: 0.32em; text-transform: uppercase; color: var(--gold-light); margin-bottom: 1.2rem; font-weight: 600; animation: fadeUp 1s 0.2s both; }
.hero-title { font-family: var(--serif); font-size: clamp(2.6rem, 6vw, 5rem); line-height: 1.12; font-weight: 400; margin-bottom: 1.3rem; animation: fadeUp 1s 0.45s both; }
.hero-title em { font-style: italic; color: var(--gold-light); }
.hero-sub { font-size: 1.12rem; line-height: 1.7; color: rgba(255, 255, 255, 0.95); margin-bottom: 2.2rem; font-weight: 400; max-width: 620px; margin-left: auto; margin-right: auto; animation: fadeUp 1s 0.7s both; }
.hero-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; animation: fadeUp 1s 0.95s both; }
.hero-scroll { position: absolute; bottom: 1.8rem; left: 50%; transform: translateX(-50%); color: rgba(255, 255, 255, 0.85); display: flex; flex-direction: column; align-items: center; gap: 0.3rem; font-size: 0.62rem; letter-spacing: 0.2em; text-transform: uppercase; animation: floaty 2.4s ease-in-out infinite; text-shadow: 0 1px 8px rgba(0, 0, 0, 0.5); }
@keyframes floaty { 0%, 100% { transform: translateX(-50%) translateY(0); } 50% { transform: translateX(-50%) translateY(8px); } }
@keyframes fadeUp { from { opacity: 0; transform: translateY(28px); } to { opacity: 1; transform: translateY(0); } }

.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4.5rem; align-items: center; }
.about-media { position: relative; height: 500px; }
.about-img-main { position: absolute; top: 0; left: 0; width: 76%; height: 80%; object-fit: cover; border-radius: 4px; box-shadow: 12px 12px 40px rgba(42, 36, 24, 0.14); }
.about-img-accent { position: absolute; bottom: 0; right: 0; width: 54%; height: 54%; object-fit: cover; border-radius: 4px; border: 6px solid var(--warm-white); box-shadow: var(--shadow); }
.about-badge { position: absolute; top: 54%; left: 56%; transform: translate(-50%, -50%); background: var(--deep-sage); color: #fff; width: 116px; height: 116px; border-radius: 50%; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; border: 5px solid var(--cream); z-index: 2; }
.about-badge .num { font-family: var(--serif); font-size: 2rem; line-height: 1; }
.about-badge .lbl { font-size: 0.54rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold-light); margin-top: 4px; padding: 0 6px; }
.features-list { display: grid; grid-template-columns: 1fr 1fr; gap: 0.8rem 1.4rem; margin-top: 1.8rem; }
.feature-item { display: flex; align-items: center; gap: 0.6rem; font-size: 0.92rem; color: var(--mid); }
.feature-item .app-icon { color: var(--sage); font-size: 1rem; flex-shrink: 0; }

.rooms-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.rooms-grid-full { display: flex; flex-wrap: wrap; justify-content: center; gap: 2rem; }
.rooms-grid-full .room-card { flex: 0 1 340px; max-width: 360px; }
.room-card { background: var(--warm-white); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); border: 1px solid var(--light-stone); transition: transform 0.4s, box-shadow 0.4s; display: flex; flex-direction: column; }
.room-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.room-img { position: relative; height: 240px; overflow: hidden; display: block; }
.room-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s; }
.room-img::after { content: ''; position: absolute; inset: 10px; border: 1px solid rgba(255, 255, 255, 0.6); border-radius: 2px; pointer-events: none; z-index: 1; transition: inset 0.4s; }
.room-card:hover .room-img::after { inset: 6px; }
.room-card:hover .room-img img { transform: scale(1.06); }
.room-tag { position: absolute; top: 1rem; left: 1rem; z-index: 2; background: rgba(74, 94, 58, 0.92); color: #fff; font-size: 0.66rem; letter-spacing: 0.06em; font-weight: 700; padding: 0.35rem 0.7rem; border-radius: 2px; display: inline-flex; align-items: center; gap: 0.35rem; }
.room-body { padding: 1.6rem 1.6rem 1.7rem; display: flex; flex-direction: column; flex: 1; }
.room-name { font-family: var(--serif); font-size: 1.4rem; font-weight: 400; color: var(--deep-sage); margin-bottom: 0.6rem; }
.room-desc { font-size: 0.96rem; line-height: 1.65; color: var(--mid); margin-bottom: 1.1rem; }
.room-amenities { display: flex; flex-wrap: wrap; gap: 0.4rem; margin-bottom: 1.2rem; }
.amenity-tag { font-size: 0.68rem; color: var(--sage); border: 1px solid var(--light-stone); padding: 0.28rem 0.65rem; border-radius: 20px; font-weight: 600; display: inline-flex; align-items: center; gap: 0.3rem; }
.room-foot { margin-top: auto; display: flex; align-items: center; justify-content: space-between; gap: 0.6rem; flex-wrap: wrap; }
.room-price .from-label { font-size: 0.64rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--stone); display: block; }
.room-price strong { font-family: var(--serif); font-size: 1.3rem; color: var(--terracotta); }
.room-price .per-label { font-size: 0.74rem; color: var(--stone); }
.room-link { font-size: 0.7rem; letter-spacing: 0.14em; text-transform: uppercase; font-weight: 700; color: var(--terracotta); display: inline-flex; align-items: center; gap: 0.4rem; transition: gap 0.3s; }
.room-link:hover { gap: 0.7rem; }

.section-sage { background: var(--deep-sage); color: #fff; }
.section-sage .section-label { color: var(--terracotta-light); }
.section-sage .section-title { color: var(--gold-light); }
.section-sage .section-body { color: rgba(255, 255, 255, 0.82); }
.why-inner { display: grid; grid-template-columns: 1fr 1.3fr; gap: 4rem; align-items: center; }
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.6rem; }
.why-card { background: rgba(255, 255, 255, 0.06); border: 1px solid rgba(255, 255, 255, 0.1); border-radius: var(--radius); padding: 1.8rem; }
.why-icon { font-size: 1.6rem; color: var(--gold-light); }
.why-card h4 { font-family: var(--serif); font-size: 1.1rem; font-weight: 400; color: #fff; margin: 0.7rem 0 0.5rem; }
.why-card p { font-size: 0.9rem; color: rgba(255, 255, 255, 0.75); line-height: 1.6; }

.gallery-preview-grid { display: grid; grid-template-columns: repeat(3, 1fr); grid-auto-rows: 232px; gap: 1rem; }
.gallery-preview-item { overflow: hidden; border-radius: 4px; position: relative; border: 1px solid var(--light-stone); }
.gallery-preview-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s; }
.gallery-preview-item:hover img { transform: scale(1.06); }
.gallery-preview-item::after { content: ''; position: absolute; inset: 8px; border: 1px solid rgba(255, 255, 255, 0.5); border-radius: 2px; pointer-events: none; }

.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.8rem; }
.review-card { background: var(--warm-white); border-radius: var(--radius); padding: 1.8rem 1.6rem; box-shadow: var(--shadow); border: 1px solid var(--light-stone); position: relative; }
.review-quote { position: absolute; top: 1.1rem; right: 1.4rem; font-size: 1.7rem; color: var(--light-stone); }
.review-card .stars { color: var(--gold); font-size: 0.9rem; display: inline-flex; gap: 2px; margin-bottom: 0.7rem; }
.review-card blockquote { font-size: 1rem; line-height: 1.65; color: var(--mid); margin-bottom: 1rem; }
.review-card figcaption { display: flex; flex-direction: column; }
.review-card figcaption strong { font-family: var(--serif); color: var(--deep-sage); font-weight: 600; }
.review-card figcaption span { font-size: 0.82rem; color: var(--stone); }

.cta-band { background: linear-gradient(120deg, var(--terracotta), var(--terracotta-light)); padding: 4.5rem 0; text-align: center; color: #fff; }
.cta-inner h2 { font-family: var(--serif); font-size: clamp(1.8rem, 3.5vw, 2.6rem); font-weight: 400; margin-bottom: 0.8rem; }
.cta-inner p { font-size: 1.1rem; margin-bottom: 1.8rem; opacity: 0.96; }
.cta-band .btn-primary { background: #fff; color: var(--terracotta); }
.cta-band .btn-primary:hover { background: var(--dark); color: #fff; }

.footer { background: var(--dark); color: rgba(255, 255, 255, 0.55); padding: 3.5rem 0 2rem; }
.footer-inner { display: grid; grid-template-columns: 2fr 1fr 1fr 1.3fr; gap: 2.5rem; padding-bottom: 2rem; border-bottom: 1px solid rgba(255, 255, 255, 0.08); }
.footer-logo { font-family: var(--serif); font-size: 1.4rem; color: var(--gold-light); margin-bottom: 0.9rem; }
.footer-brand p { font-size: 0.95rem; line-height: 1.7; max-width: 300px; margin-bottom: 1.1rem; }
.footer-social { display: flex; gap: 0.7rem; }
.footer-social a { width: 36px; height: 36px; border: 1px solid rgba(255, 255, 255, 0.18); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: rgba(255, 255, 255, 0.7); transition: all 0.3s; }
.footer-social a:hover { background: var(--deep-sage); color: #fff; border-color: var(--deep-sage); }
.footer-col h4 { font-size: 0.66rem; letter-spacing: 0.22em; text-transform: uppercase; color: rgba(255, 255, 255, 0.35); margin-bottom: 1rem; }
.footer-col li { margin-bottom: 0.55rem; font-size: 0.9rem; }
.footer-col a:hover { color: var(--gold-light); }
.footer-contact li { display: flex; gap: 0.6rem; align-items: flex-start; }
.footer-contact .app-icon { color: var(--sage); margin-top: 3px; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 1.4rem; font-size: 0.78rem; flex-wrap: wrap; gap: 0.5rem; }

.whatsapp-float { position: fixed; bottom: 1.4rem; right: 1.4rem; width: 54px; height: 54px; background: #25d366; color: #fff; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25); z-index: 90; transition: transform 0.25s; }
.whatsapp-float:hover { transform: scale(1.08); }

.scroll-top { position: fixed; bottom: 1.4rem; left: 1.4rem; width: 46px; height: 46px; background: var(--deep-sage); color: #fff; border: none; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.05rem; cursor: pointer; box-shadow: 0 6px 18px rgba(0, 0, 0, 0.22); opacity: 0; visibility: hidden; transform: translateY(10px); transition: opacity 0.3s, transform 0.3s, visibility 0.3s, background 0.3s; z-index: 89; }
.scroll-top.show { opacity: 1; visibility: visible; transform: translateY(0); }
.scroll-top:hover { background: var(--terracotta); }

.site-credit { display: flex; align-items: center; justify-content: center; gap: 0.4rem; padding: 1rem 0 0; font-size: 0.78rem; }
.site-credit a { display: inline-flex; flex-direction: column; align-items: center; gap: 0.5rem; opacity: 0.8; transition: opacity 0.3s; }
.site-credit a:hover { opacity: 1; }
.site-credit .credit-text { display: inline-flex; align-items: center; gap: 0.4rem; }
.site-credit img { height: 50px; width: auto; border-radius: 4px; }
.site-credit .twoon-two { color: #ff4444; font-weight: 800; }
.site-credit .twoon-on { color: #00ff44; font-weight: 800; }
.site-credit .twoon-ind { color: #ffffff; font-weight: 600; }

.page-header { padding: 9rem 0 3.5rem; background-size: cover; background-position: center; text-align: center; color: #fff; }
.page-title { font-family: var(--serif); font-size: clamp(2.1rem, 4.5vw, 3.2rem); font-weight: 400; text-shadow: 0 2px 20px rgba(0, 0, 0, 0.5); }
.page-subtitle { font-size: 1.1rem; color: rgba(255, 255, 255, 0.95); margin-top: 0.5rem; text-shadow: 0 1px 14px rgba(0, 0, 0, 0.5); }

.room-detail { display: grid; grid-template-columns: 1.5fr 1fr; gap: 3rem; align-items: start; }
.room-main-image { border-radius: var(--radius); overflow: hidden; height: 440px; box-shadow: var(--shadow); position: relative; }
.room-main-image::after { content: ''; position: absolute; inset: 12px; border: 1px solid rgba(255, 255, 255, 0.55); border-radius: 3px; pointer-events: none; }
.room-main-image img { width: 100%; height: 100%; object-fit: cover; }
.room-thumbs { display: flex; gap: 0.7rem; margin-top: 0.8rem; flex-wrap: wrap; }
.room-thumb { width: 84px; height: 64px; border-radius: 4px; overflow: hidden; border: 2px solid transparent; cursor: pointer; padding: 0; background: none; }
.room-thumb.is-active { border-color: var(--terracotta); }
.room-thumb img { width: 100%; height: 100%; object-fit: cover; }
.room-detail-info { background: var(--warm-white); border-radius: var(--radius); padding: 2rem; box-shadow: var(--shadow); border: 1px solid var(--light-stone); position: sticky; top: 90px; }
.room-detail-name { font-family: var(--serif); font-size: 1.7rem; font-weight: 400; color: var(--deep-sage); margin-bottom: 1rem; }
.room-meta { display: flex; flex-wrap: wrap; gap: 1rem; margin-bottom: 1.2rem; font-size: 0.88rem; color: var(--mid); }
.room-meta span { display: inline-flex; align-items: center; gap: 0.4rem; }
.room-meta .app-icon { color: var(--sage); }
.room-detail-desc { font-size: 1.02rem; line-height: 1.75; color: var(--mid); margin-bottom: 1.4rem; }
.room-amenities-title { font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--stone); margin-bottom: 0.8rem; font-weight: 700; }
.room-amenities-list { display: grid; grid-template-columns: 1fr 1fr; gap: 0.5rem 1rem; margin-bottom: 1.6rem; }
.room-amenities-list li { display: flex; align-items: center; gap: 0.5rem; font-size: 0.88rem; color: var(--mid); }
.room-amenities-list .app-icon { color: var(--sage); }
.room-detail-foot { border-top: 1px solid var(--light-stone); padding-top: 1.3rem; }
.room-detail-price { margin-bottom: 1rem; }
.room-detail-price .from-label { font-size: 0.66rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--stone); }
.room-detail-price strong { font-family: var(--serif); font-size: 1.7rem; color: var(--terracotta); margin: 0 0.3rem; }
.room-detail-price .per-label { font-size: 0.8rem; color: var(--stone); }

.gallery-filters { display: flex; flex-wrap: wrap; gap: 0.6rem; justify-content: center; margin-bottom: 2.5rem; }
.gallery-filter { background: none; border: 1px solid var(--light-stone); color: var(--mid); padding: 0.5rem 1.1rem; border-radius: 30px; font-size: 0.76rem; font-weight: 600; cursor: pointer; transition: all 0.25s; letter-spacing: 0.04em; }
.gallery-filter:hover { border-color: var(--sage); }
.gallery-filter.is-active { background: var(--deep-sage); border-color: var(--deep-sage); color: #fff; }
.gallery-grid { columns: 3; column-gap: 1rem; }
.gallery-item { break-inside: avoid; margin-bottom: 1rem; position: relative; border-radius: var(--radius); overflow: hidden; cursor: pointer; border: 1px solid var(--light-stone); }
.gallery-item img { width: 100%; transition: transform 0.5s; }
.gallery-item:hover img { transform: scale(1.05); }
.gallery-item figcaption { position: absolute; inset: 0; display: flex; align-items: flex-end; padding: 1rem; background: linear-gradient(to top, rgba(20, 30, 10, 0.78), transparent 55%); color: #fff; font-size: 0.92rem; opacity: 0; transition: opacity 0.35s; }
.gallery-item:hover figcaption { opacity: 1; }
.gallery-item.is-hidden { display: none; }

.lightbox { position: fixed; inset: 0; background: rgba(20, 18, 12, 0.92); z-index: 200; display: none; align-items: center; justify-content: center; padding: 2rem; }
.lightbox.open { display: flex; }
.lightbox-figure { max-width: 90vw; max-height: 90vh; text-align: center; }
.lightbox-img { max-width: 90vw; max-height: 82vh; border-radius: 4px; }
.lightbox-caption { color: rgba(255, 255, 255, 0.85); margin-top: 0.8rem; }
.lightbox-close { position: absolute; top: 1.4rem; right: 1.6rem; background: none; border: none; color: #fff; font-size: 1.8rem; cursor: pointer; }

.form { display: block; }
.form-card { background: var(--warm-white); border-radius: var(--radius); padding: 2.2rem; box-shadow: var(--shadow); border: 1px solid var(--light-stone); }
.form-card-title, .res-card-title { font-family: var(--serif); font-size: 1.4rem; font-weight: 400; color: var(--deep-sage); margin-bottom: 1.3rem; display: flex; align-items: center; gap: 0.6rem; }
.res-card-title .app-icon { color: var(--terracotta); font-size: 1.1rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-grid-3 { display: grid; grid-template-columns: 1.3fr 1fr 1fr; gap: 1rem; }
.form-group { margin-bottom: 1.1rem; }
.form-group label { display: block; font-size: 0.68rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--stone); font-weight: 700; margin-bottom: 0.45rem; }
.form-group input, .form-group textarea, .form-group select { width: 100%; padding: 0.8rem 1rem; border: 1px solid var(--light-stone); border-radius: 3px; background: #fff; font-family: var(--sans); font-size: 1rem; color: var(--dark); outline: none; transition: border-color 0.3s; }
.form-group input:focus, .form-group textarea:focus, .form-group select:focus { border-color: var(--sage); }
.form-group textarea { resize: vertical; }
.hp-field { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; }
.checkbox-row { display: flex; gap: 0.6rem; align-items: flex-start; font-size: 0.9rem; color: var(--mid); margin: 0.4rem 0 1.3rem; }
.checkbox-row input { margin-top: 3px; }
.checkbox-row a { color: var(--terracotta); text-decoration: underline; }

.alert { padding: 0.9rem 1.1rem; border-radius: 4px; margin-bottom: 1.2rem; font-size: 0.92rem; display: flex; gap: 0.6rem; align-items: flex-start; }
.alert-success { background: #e8f0e0; color: #3c5a28; border: 1px solid #c4d9b2; }
.alert-error { background: #f6e3da; color: #97432a; border: 1px solid #e6c2b2; }
.alert-error ul { list-style: disc; padding-left: 1.2rem; }

.rating-input { display: inline-flex; flex-direction: row-reverse; gap: 0.2rem; font-size: 1.6rem; }
.rating-input input { position: absolute; left: -9999px; }
.rating-input label { color: var(--light-stone); cursor: pointer; transition: color 0.2s; }
.rating-input input:checked ~ label, .rating-input label:hover, .rating-input label:hover ~ label { color: var(--gold); }

.contact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 3.5rem; align-items: start; }
.contact-details { margin-top: 1.6rem; display: flex; flex-direction: column; gap: 1.2rem; }
.contact-details li { display: flex; gap: 1rem; align-items: flex-start; }
.contact-details .ci { color: var(--terracotta); font-size: 1.1rem; margin-top: 3px; }
.contact-details h5 { font-size: 0.68rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--stone); font-weight: 700; margin-bottom: 0.2rem; }
.contact-details a, .contact-details span { font-size: 1rem; color: var(--dark); }
.contact-details a:hover { color: var(--terracotta); }
.contact-map { margin-top: 3rem; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }

.reservation-wrap { max-width: 880px; margin: 0 auto; display: flex; flex-direction: column; gap: 1.6rem; }
.res-card { background: var(--warm-white); border-radius: var(--radius); padding: 2rem; box-shadow: var(--shadow); border: 1px solid var(--light-stone); }
.availability-result { margin-top: 1.2rem; display: flex; flex-direction: column; gap: 0.7rem; }
.avail-room { display: flex; align-items: center; gap: 1rem; padding: 0.9rem 1rem; border: 1px solid var(--light-stone); border-radius: 4px; }
.avail-room img { width: 64px; height: 48px; object-fit: cover; border-radius: 3px; }
.avail-room .ar-name { font-family: var(--serif); color: var(--deep-sage); font-size: 1.05rem; }
.avail-room .ar-state { margin-left: auto; font-size: 0.82rem; font-weight: 700; }
.avail-room.ok { border-color: #c4d9b2; background: #f1f6ea; }
.avail-room.ok .ar-state { color: #3c5a28; }
.avail-room.no { border-color: #e6c2b2; background: #f8ece5; opacity: 0.85; }
.avail-room.no .ar-state { color: #97432a; }
.avail-room .ar-price { font-family: var(--serif); color: var(--terracotta); font-weight: 600; }

.thanks-section { text-align: center; min-height: 70vh; display: flex; align-items: center; }
.thanks-inner { max-width: 560px; margin: 0 auto; }
.thanks-icon { width: 78px; height: 78px; border-radius: 50%; background: var(--deep-sage); color: #fff; display: inline-flex; align-items: center; justify-content: center; font-size: 2rem; margin-bottom: 1.4rem; }
.thanks-code { display: inline-block; background: var(--cream); border: 1px dashed var(--sage); color: var(--deep-sage); font-family: var(--serif); font-size: 1.4rem; letter-spacing: 0.1em; padding: 0.7rem 1.6rem; border-radius: 4px; margin: 1.4rem 0 2rem; }

.page-content { max-width: 820px; margin: 0 auto; font-size: 1.06rem; line-height: 1.85; color: var(--mid); }
.page-content h2, .page-content h3 { font-family: var(--serif); color: var(--deep-sage); margin: 1.6rem 0 0.8rem; font-weight: 400; }
.page-content p { margin-bottom: 1.1rem; }
.page-content strong { color: var(--dark); }

.reviews-page { max-width: 980px; margin: 0 auto; }
.reviews-summary { display: flex; align-items: center; gap: 1.6rem; background: var(--warm-white); padding: 1.6rem 2rem; border-radius: var(--radius); box-shadow: var(--shadow); border: 1px solid var(--light-stone); margin-bottom: 2.4rem; }
.rating-big { font-family: var(--serif); font-size: 3rem; color: var(--terracotta); line-height: 1; }
.rating-meta .stars { color: var(--gold); font-size: 1.1rem; display: inline-flex; gap: 2px; }
.rating-meta p { font-size: 0.9rem; color: var(--stone); margin-top: 0.3rem; }
.reviews-list { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; margin-bottom: 3rem; }
.review-card-full { padding: 1.5rem 1.6rem; }
.review-card-full .review-title { font-family: var(--serif); font-size: 1.1rem; color: var(--deep-sage); font-weight: 400; margin-bottom: 0.4rem; }
.review-card-full blockquote { font-size: 0.98rem; line-height: 1.6; }

.stars { display: inline-flex; gap: 2px; }
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.8s, transform 0.8s; }
.reveal.visible { opacity: 1; transform: none; }

@media (max-width: 980px) {
    .about-grid, .why-inner, .contact-grid, .room-detail { grid-template-columns: 1fr; gap: 2.5rem; }
    .room-detail-info { position: static; }
    .footer-inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 760px) {
    .nav-links { display: none; }
    .nav-toggle { display: block; }
    .nav-reserve { display: none; }
    .rooms-grid, .reviews-grid, .reviews-list { grid-template-columns: 1fr; }
    .why-grid { grid-template-columns: 1fr; }
    .gallery-grid { columns: 2; }
    .gallery-preview-grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 170px; }
    .form-row, .form-grid-2, .form-grid-3 { grid-template-columns: 1fr; }
    .about-media { height: 380px; }
    .footer-inner { grid-template-columns: 1fr; }
    .section { padding: 4rem 0; }
}
@media (max-width: 480px) {
    .gallery-grid { columns: 1; }
    .container { padding: 0 1.3rem; }
}
