/* ============================================================
   HOUSE MISTRAL — shared stylesheet (all pages, EN + EL)
   Fonts: EB Garamond (display) + Inter (body), self-hosted,
   both with Greek subsets. See assets/fonts/fonts.css.
   ============================================================ */

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

:root {
  --ink: oklch(18% 0.02 230);
  --blue: oklch(32% 0.14 232);
  --blue-mid: oklch(40% 0.14 232);
  --blue-deep: oklch(20% 0.09 232);
  --gold: oklch(72% 0.11 85);
  --gold-deep: oklch(52% 0.11 80);
  --cream: oklch(96% 0.014 72);
  --cream-deep: oklch(94% 0.012 72);
  --bordeaux: #7B2535;
  --wa: #25D366;
  --wa-dark: #1DA851;
  --text-soft: oklch(38% 0.03 230);
  --text-faint: oklch(52% 0.04 230);
  --line: oklch(91% 0.01 230);
  --serif: 'EB Garamond', Georgia, 'Times New Roman', serif;
  --sans: 'Inter', -apple-system, 'Segoe UI', sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-soft: cubic-bezier(0.45, 0, 0.55, 1);
  --shadow-sm: 0 2px 10px rgba(16,32,58,0.05), 0 1px 2px rgba(16,32,58,0.04);
  --shadow-md: 0 10px 30px rgba(16,32,58,0.09), 0 3px 8px rgba(16,32,58,0.05);
  --shadow-lg: 0 30px 70px rgba(16,32,58,0.18), 0 10px 24px rgba(16,32,58,0.09);
  --gold-line: linear-gradient(90deg, transparent, var(--gold), transparent);
}

html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}

body { font-family: var(--sans); font-weight: 350; background: #fff; color: var(--ink); -webkit-font-smoothing: antialiased; overflow-x: hidden; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; font-family: inherit; border: none; background: none; color: inherit; }
input, textarea, select { font-family: inherit; font-size: inherit; }
img { display: block; max-width: 100%; height: auto; }
h1, h2, h3 { font-family: var(--serif); font-weight: 450; }
section { scroll-margin-top: 76px; }
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-thumb { background: oklch(70% 0.08 225); border-radius: 4px; }
::selection { background: var(--gold); color: var(--blue-deep); }

@keyframes fadeUp { from { opacity: 0; transform: translateY(28px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes scaleIn { from { opacity: 0; transform: scale(0.94); } to { opacity: 1; transform: scale(1); } }

.wrap { max-width: 1200px; margin: 0 auto; padding: 0 40px; }

/* Skip link (accessibility) */
.skip-link { position: absolute; top: -48px; left: 12px; z-index: 300; background: var(--blue); color: #fff; padding: 10px 20px; border-radius: 0 0 8px 8px; font-size: 14px; transition: top .2s; }
.skip-link:focus { top: 0; }

/* Scroll-reveal */
.reveal { opacity: 0; transform: translateY(32px); transition: opacity 1s var(--ease), transform 1s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
/* Staggered reveals within grids — editorial cascade */
.rooms-grid .reveal:nth-of-type(2), .why-grid .reveal:nth-of-type(2), .guide-grid .reveal:nth-of-type(2), .reviews-grid .reveal:nth-of-type(2) { transition-delay: .09s; }
.rooms-grid .reveal:nth-of-type(3), .why-grid .reveal:nth-of-type(3), .guide-grid .reveal:nth-of-type(3), .reviews-grid .reveal:nth-of-type(3) { transition-delay: .18s; }
.rooms-grid .reveal:nth-of-type(4), .why-grid .reveal:nth-of-type(4), .guide-grid .reveal:nth-of-type(4), .reviews-grid .reveal:nth-of-type(4) { transition-delay: .27s; }
.guide-grid .reveal:nth-of-type(5), .reviews-grid .reveal:nth-of-type(5) { transition-delay: .36s; }
.guide-grid .reveal:nth-of-type(6), .reviews-grid .reveal:nth-of-type(6) { transition-delay: .45s; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } }

/* Elegant page-load veil (home only) */
.page-veil { position: fixed; inset: 0; z-index: 9998; background: var(--cream); display: flex; align-items: center; justify-content: center; pointer-events: none; animation: veilOut 1.1s var(--ease) .35s forwards; }
.page-veil span { font-family: var(--serif); font-size: 1.5rem; letter-spacing: .28em; color: var(--blue); opacity: 0; animation: veilMark 1.3s var(--ease) both; }
@keyframes veilOut { to { opacity: 0; visibility: hidden; } }
@keyframes veilMark { 0% { opacity: 0; letter-spacing: .4em; } 40% { opacity: 1; } 100% { opacity: 0; letter-spacing: .28em; } }
@media (prefers-reduced-motion: reduce) { .page-veil { display: none; } }

/* ---------- BUTTONS ---------- */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 10px; padding: 14px 32px; border-radius: 50px; font-size: 15px; font-weight: 500; letter-spacing: .02em; transition: transform .35s var(--ease), box-shadow .35s var(--ease), background .35s var(--ease); }
.btn svg { width: 18px; height: 18px; flex-shrink: 0; }
.btn-wa { background: var(--wa); color: #fff; box-shadow: 0 4px 24px rgba(37,211,102,0.38); }
.btn-wa:hover { transform: translateY(-3px); box-shadow: 0 10px 32px rgba(37,211,102,0.5); background: var(--wa-dark); }
.btn-primary { background: var(--blue); color: #fff; }
.btn-primary:hover { background: var(--blue-mid); transform: translateY(-2px); }
.btn-ghost { border: 1px solid oklch(80% 0.04 232); color: var(--blue); }
.btn-ghost:hover { background: var(--cream); }
.btn-ghost-light { border: 1px solid rgba(255,255,255,0.45); color: #fff; }
.btn-ghost-light:hover { background: rgba(255,255,255,0.12); }
.btn-lg { padding: 18px 46px; font-size: 17px; }

.section-label { display: inline-flex; align-items: center; gap: 13px; font-size: 11px; letter-spacing: .34em; text-transform: uppercase; color: var(--gold-deep); font-weight: 500; }
.section-label::before { content: ""; width: 26px; height: 1px; background: currentColor; opacity: .55; }
.center-head .section-label::after { content: ""; width: 26px; height: 1px; background: currentColor; opacity: .55; }
.section-title { font-size: clamp(2.3rem, 4.2vw, 3.6rem); color: var(--ink); line-height: 1.06; letter-spacing: -0.015em; }
.center-head { text-align: center; margin-bottom: 72px; }
.center-head h2 { margin: 18px 0; }
.center-head p { font-size: 16px; color: var(--text-faint); max-width: 540px; margin: 0 auto; line-height: 1.7; }

/* ---------- NAV ---------- */
nav.site-nav { position: fixed; top: 0; left: 0; right: 0; z-index: 100; transition: background .35s, box-shadow .35s; background: rgba(10,22,46,0.1); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px); }
nav.site-nav.solid, nav.site-nav.scrolled { background: rgba(255,255,255,0.97); box-shadow: 0 1px 24px rgba(0,0,0,0.09); }
.nav-inner { max-width: 1240px; margin: 0 auto; padding: 0 36px; height: 72px; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.brand { font-family: var(--serif); font-size: 1.25rem; letter-spacing: .12em; color: #fff; transition: color .35s; flex-shrink: 0; }
nav.solid .brand, nav.scrolled .brand,
nav.solid .nav-links a, nav.scrolled .nav-links a,
nav.solid .lang-link, nav.scrolled .lang-link,
nav.solid .hamburger, nav.scrolled .hamburger { color: var(--blue); }
.nav-links { display: flex; align-items: center; gap: 22px; }
.nav-links a { position: relative; font-size: 12px; letter-spacing: .12em; text-transform: uppercase; color: #fff; opacity: .85; transition: opacity .25s var(--ease); }
.nav-links a:hover, .nav-links a[aria-current="page"] { opacity: 1; }
.nav-links a:not(.nav-book):not(.lang-link)::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -6px; height: 1px; background: var(--gold); transition: right .35s var(--ease); }
.nav-links a:not(.nav-book):not(.lang-link):hover::after, .nav-links a[aria-current="page"]:not(.nav-book)::after { right: 0; }
.nav-links .nav-book { border: 1px solid var(--gold); color: var(--gold); padding: 8px 20px; border-radius: 24px; opacity: 1; }
nav.solid .nav-links .nav-book, nav.scrolled .nav-links .nav-book { color: var(--gold-deep); border-color: var(--gold-deep); }
.nav-links .nav-book:hover { background: var(--gold); color: var(--blue-deep) !important; }
.lang-link { color: #fff; padding: 6px 14px; border-radius: 20px; font-size: 11px; letter-spacing: .15em; border: 1px solid rgba(255,255,255,0.5); transition: all .25s; }
nav.solid .lang-link, nav.scrolled .lang-link { border-color: oklch(75% 0.08 232); }
.lang-link:hover { background: rgba(255,255,255,0.15); }
nav.solid .lang-link:hover, nav.scrolled .lang-link:hover { background: var(--cream); }
.hamburger { display: none; align-items: center; justify-content: center; width: 44px; height: 44px; color: #fff; transition: color .35s; }
.hamburger svg { width: 24px; height: 24px; }

.mobile-menu { display: none; position: fixed; top: 72px; left: 0; right: 0; z-index: 99; background: #fff; box-shadow: 0 10px 30px rgba(0,0,0,0.13); padding: 12px 24px 22px; flex-direction: column; animation: fadeIn .2s ease; }
.mobile-menu.open { display: flex; }
.mobile-menu a { padding: 14px 0; font-size: 13px; letter-spacing: .12em; text-transform: uppercase; color: oklch(28% 0.06 232); border-bottom: 1px solid oklch(94% 0.01 230); }
.mobile-menu a:last-of-type { border-bottom: none; }
.mobile-menu .lang-link { margin-top: 16px; align-self: flex-start; background: var(--blue); color: #fff; padding: 10px 24px; border: none; letter-spacing: .14em; border-radius: 24px; }

/* ---------- HERO (home) ---------- */
.hero { min-height: 100svh; position: relative; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.hero::after { content: ""; position: absolute; inset: 24px; border: 1px solid rgba(255,255,255,0.24); z-index: 1; pointer-events: none; }
.hero-bg { position: absolute; inset: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(168deg, rgba(8,20,45,0.26) 0%, rgba(8,20,45,0.5) 48%, rgba(6,16,38,0.82) 100%); }
.hero-overlay::after { content: ""; position: absolute; inset: 0; background: radial-gradient(120% 92% at 50% 32%, transparent 42%, rgba(6,16,38,0.5) 100%); pointer-events: none; }
.hero-content { position: relative; z-index: 2; text-align: center; padding: 90px 24px 60px; width: 100%; max-width: 900px; }
.hero-pre { display: inline-flex; align-items: center; gap: 15px; font-size: 11px; letter-spacing: .4em; text-transform: uppercase; color: oklch(86% 0.08 90); margin-bottom: 26px; animation: fadeUp 1s var(--ease) both .15s; }
.hero-pre::before, .hero-pre::after { content: ""; width: 30px; height: 1px; background: currentColor; opacity: .5; }
.hero h1 { font-size: clamp(3.6rem, 8.2vw, 7rem); letter-spacing: .03em; color: #fff; margin-bottom: 26px; line-height: .96; animation: fadeUp 1s var(--ease) both .35s; font-weight: 400; text-shadow: 0 2px 40px rgba(0,0,0,0.22); }
.hero-sub { font-size: clamp(1.1rem, 2vw, 1.35rem); color: rgba(255,255,255,0.88); margin-bottom: 44px; font-weight: 300; line-height: 1.55; font-family: var(--serif); font-style: italic; animation: fadeUp 1s var(--ease) both .55s; }
.hero-sub::before { content: ""; display: block; width: 60px; height: 1px; background: var(--gold-line); margin: 0 auto 24px; opacity: .9; }
.hero-ctas { display: flex; align-items: center; justify-content: center; gap: 14px; flex-wrap: wrap; animation: fadeUp .9s ease both .75s; }
.score-badge { display: flex; align-items: center; gap: 12px; background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.24); backdrop-filter: blur(10px); padding: 11px 22px; border-radius: 50px; }
.score-badge .num { font-family: var(--serif); font-size: 1.7rem; color: #fff; line-height: 1; }
.score-badge .lbl { font-size: 13px; font-weight: 500; color: #fff; line-height: 1.2; text-align: left; }
.score-badge .sub { font-size: 11px; color: rgba(255,255,255,0.68); margin-top: 2px; text-align: left; }
.scroll-cue { position: absolute; bottom: 28px; left: 0; right: 0; margin-inline: auto; width: fit-content; z-index: 2; display: flex; flex-direction: column; align-items: center; gap: 6px; color: rgba(255,255,255,0.55); }
.scroll-cue span { font-size: 10px; letter-spacing: .24em; text-transform: uppercase; }
.scroll-cue svg { width: 18px; height: 18px; }

/* ---------- PAGE HERO (subpages) ---------- */
.page-hero { position: relative; min-height: 52vh; display: flex; align-items: flex-end; overflow: hidden; padding-top: 72px; }
.page-hero::after { content: ""; position: absolute; inset: 20px; border: 1px solid rgba(255,255,255,0.2); z-index: 1; pointer-events: none; }
.page-hero-content { z-index: 2; }
.page-hero .hero-bg img { animation: none; }
.page-hero .hero-overlay { background: linear-gradient(180deg, rgba(8,20,45,0.3) 0%, rgba(8,20,45,0.78) 100%); }
.page-hero-content { position: relative; z-index: 1; width: 100%; max-width: 1200px; margin: 0 auto; padding: 60px 40px 44px; color: #fff; }
.page-hero-content h1 { font-size: clamp(2.4rem, 5vw, 4rem); line-height: 1.05; margin: 10px 0 8px; font-weight: 400; }
.page-hero-content .meta { display: flex; gap: 20px; flex-wrap: wrap; font-size: 14px; color: rgba(255,255,255,0.82); margin-top: 12px; }
.page-hero-content .meta span { display: inline-flex; align-items: center; gap: 7px; }
.page-hero-content .meta svg { width: 15px; height: 15px; color: var(--gold); }
.breadcrumbs { font-size: 12px; letter-spacing: .06em; color: rgba(255,255,255,0.65); }
.breadcrumbs a:hover { color: #fff; }
.breadcrumbs .sep { margin: 0 8px; opacity: .5; }

/* ---------- PREMIUM GRAIN TEXTURE on dark sections (static, subtle) ---------- */
.trust-strip, .area, .booking, .cta-band, footer.site-footer { position: relative; }
.trust-strip > *, .area > *, .booking > *, .cta-band > *, footer.site-footer > * { position: relative; z-index: 1; }
.trust-strip::before, .area::before, .booking::before, .cta-band::before, footer.site-footer::before {
  content: ""; position: absolute; inset: 0; z-index: 0; pointer-events: none; opacity: .055;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.82' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ---------- TRUST STRIP ---------- */
.trust-strip { background: var(--blue-deep); color: #fff; padding: 22px 0; }
.trust-strip .wrap { display: flex; align-items: center; justify-content: center; gap: 40px; flex-wrap: wrap; }
.trust-item { display: flex; align-items: center; gap: 10px; font-size: 13.5px; color: rgba(255,255,255,0.85); }
.trust-item svg { width: 17px; height: 17px; color: var(--gold); flex-shrink: 0; }

/* ---------- ABOUT ---------- */
.about { background: var(--cream); padding: 110px 0 130px; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-img-wrap { position: relative; }
.about-img-wrap img { width: 100%; height: 520px; object-fit: cover; border-radius: 16px; box-shadow: var(--shadow-lg); }
.about-img-wrap::after { content: ""; position: absolute; inset: 0; border-radius: 16px; box-shadow: inset 0 0 0 1px rgba(255,255,255,0.12); pointer-events: none; }
.stats-box { position: absolute; bottom: -32px; right: -24px; background: var(--blue); color: #fff; border-radius: 16px; padding: 26px 30px; display: flex; flex-wrap: wrap; gap: 26px; box-shadow: 0 20px 54px rgba(13,50,100,0.42); }
.stat .n { font-family: var(--serif); font-size: 2.1rem; line-height: 1; }
.stat .l { font-size: 10px; letter-spacing: .12em; text-transform: uppercase; opacity: .7; margin-top: 5px; }
.stats-div { width: 1px; background: rgba(255,255,255,0.18); }
.about-text h2 { margin: 18px 0 24px; }
.about-body { font-size: 15.5px; line-height: 1.85; color: var(--text-soft); margin-bottom: 36px; }
.host-card { display: flex; flex-wrap: wrap; align-items: center; gap: 16px; padding: 18px 22px; background: #fff; border-radius: 12px; box-shadow: var(--shadow-sm); border: 1px solid rgba(16,32,58,0.05); }
.host-avatar { width: 52px; height: 52px; border-radius: 50%; background: var(--blue); display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-family: var(--serif); font-size: 1.4rem; color: #fff; }
.host-label { font-size: 10px; text-transform: uppercase; letter-spacing: .14em; color: var(--gold-deep); margin-bottom: 3px; }
.host-name { font-size: 15px; font-weight: 500; }
.host-wa { margin-left: auto; display: flex; align-items: center; gap: 8px; background: var(--wa); color: #fff; padding: 10px 18px; border-radius: 22px; font-size: 13px; font-weight: 500; transition: transform .2s, background .2s; }
.host-wa:hover { transform: scale(1.05); background: var(--wa-dark); }
.host-wa svg { width: 15px; height: 15px; }

/* ---------- ROOM CARDS ---------- */
.rooms { background: #fff; padding: 110px 0; }
.rooms-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(255px, 1fr)); gap: 28px; }
.room-card { border-radius: 16px; overflow: hidden; box-shadow: var(--shadow-md); border: 1px solid rgba(16,32,58,0.05); transition: transform .55s var(--ease), box-shadow .55s var(--ease); display: flex; flex-direction: column; background: #fff; }
.room-card:hover { transform: translateY(-10px); box-shadow: var(--shadow-lg); }
.room-img-wrap { height: 235px; overflow: hidden; position: relative; }
.room-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.room-card:hover .room-img-wrap img { transform: scale(1.06); }
.room-badge { position: absolute; top: 14px; right: 14px; color: #fff; font-size: 10px; letter-spacing: .1em; padding: 5px 12px; border-radius: 20px; text-transform: uppercase; font-weight: 500; background: var(--gold-deep); }
.room-badge.badge-blue { background: var(--blue); }
.room-body { padding: 28px 24px 24px; display: flex; flex-direction: column; flex: 1; }
.room-head { display: flex; align-items: flex-start; justify-content: space-between; gap: 10px; margin-bottom: 12px; }
.room-head h3 { font-size: 1.4rem; line-height: 1.2; }
.room-size { font-size: 12px; color: var(--text-faint); background: var(--cream-deep); padding: 4px 12px; border-radius: 20px; flex-shrink: 0; white-space: nowrap; }
.room-desc { font-size: 14px; line-height: 1.72; color: var(--text-soft); margin-bottom: 14px; }
.room-meta { font-size: 13px; color: var(--text-faint); margin-bottom: 22px; display: flex; align-items: center; gap: 6px; }
.room-meta svg { width: 14px; height: 14px; }
.room-actions { margin-top: auto; display: flex; gap: 10px; }
.room-actions .room-more { flex: 1; text-align: center; background: var(--blue); color: #fff; padding: 13px; border-radius: 8px; font-size: 13px; letter-spacing: .05em; transition: background .25s; }
.room-actions .room-more:hover { background: var(--blue-mid); }
.room-actions .room-wa { display: flex; align-items: center; justify-content: center; width: 46px; border-radius: 8px; background: var(--wa); color: #fff; transition: background .2s; }
.room-actions .room-wa:hover { background: var(--wa-dark); }
.room-actions .room-wa svg { width: 19px; height: 19px; }

/* ---------- GALLERY ---------- */
.gallery { background: var(--cream-deep); padding: 110px 0; }
.gallery .wrap { max-width: 1300px; }
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 10px; }
.gallery-item { aspect-ratio: 4/3; overflow: hidden; border-radius: 8px; cursor: pointer; padding: 0; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease), filter .6s var(--ease); }
.gallery-item:hover img, .gallery-item:focus-visible img { transform: scale(1.07); filter: brightness(1.04) saturate(1.05); }
.gallery-item:focus-visible { outline: 3px solid var(--gold); outline-offset: 2px; }

/* ---------- AMENITIES ---------- */
.amenities { background: #fff; padding: 104px 0; }
.amen-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(230px, 1fr)); column-gap: 48px; }
.amen-item { display: flex; align-items: center; gap: 12px; padding: 14px 0; border-bottom: 1px solid var(--line); }
.amen-item svg { width: 15px; height: 15px; flex-shrink: 0; color: var(--gold-deep); }
.amen-item span { font-size: 14px; color: oklch(28% 0.03 230); }

/* ---------- AREA / MAP ---------- */
.area { background: var(--blue); color: #fff; padding: 110px 0; }
.area-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: start; }
.area h2 { margin: 18px 0 12px; line-height: 1.08; color: #fff; }
.area-sub { font-size: 1.1rem; color: oklch(80% 0.07 215); margin-bottom: 26px; font-style: italic; font-family: var(--serif); }
.area-body { font-size: 15px; line-height: 1.85; color: rgba(255,255,255,0.8); margin-bottom: 38px; }
.nearby-title { font-size: 10px; letter-spacing: .22em; text-transform: uppercase; color: var(--gold); margin-bottom: 18px; }
.nearby { display: flex; flex-direction: column; gap: 12px; margin-bottom: 36px; }
.nearby div { display: flex; align-items: center; gap: 14px; font-size: 14px; color: rgba(255,255,255,0.86); }
.nearby .dot { width: 5px; height: 5px; border-radius: 50%; background: var(--gold); flex-shrink: 0; }
.map { border-radius: 16px; overflow: hidden; height: 480px; box-shadow: 0 24px 64px rgba(0,0,0,0.35); position: relative; }
.map-ph { position: absolute; inset: 0; background: oklch(24% 0.09 232); display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 14px; color: rgba(255,255,255,0.6); font-size: 14px; text-align: center; padding: 24px; }
.map-ph svg { width: 32px; height: 32px; opacity: .4; }
.map-ph button { background: rgba(255,255,255,0.12); color: #fff; border: 1px solid rgba(255,255,255,0.25); padding: 9px 22px; border-radius: 20px; font-size: 13px; transition: background .2s; }
.map-ph button:hover { background: rgba(255,255,255,0.22); }
.map iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: none; display: block; }

/* ---------- WHY BOOK DIRECT ---------- */
.why-direct { background: var(--cream); padding: 104px 0; }
.why-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 24px; }
.why-card { background: #fff; border-radius: 14px; padding: 36px 30px; box-shadow: var(--shadow-sm); border: 1px solid rgba(16,32,58,0.05); transition: transform .5s var(--ease), box-shadow .5s var(--ease); }
.why-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.why-card svg { width: 30px; height: 30px; color: var(--gold-deep); margin-bottom: 18px; }
.why-card h3 { font-size: 1.25rem; margin-bottom: 10px; }
.why-card p { font-size: 14px; line-height: 1.7; color: var(--text-soft); }

/* ---------- REVIEWS ---------- */
.reviews { background: #fff; padding: 110px 0; }
.reviews-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 18px; margin-bottom: 44px; }
.review-card { background: var(--cream); border-radius: 14px; padding: 28px; border: 1px solid rgba(16,32,58,0.05); box-shadow: var(--shadow-sm); transition: transform .5s var(--ease), box-shadow .5s var(--ease); position: relative; }
.review-card::before { content: "\201C"; position: absolute; top: 6px; right: 22px; font-family: var(--serif); font-size: 4.5rem; line-height: 1; color: var(--gold); opacity: .18; }
.review-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.review-top { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.review-avatar { width: 40px; height: 40px; border-radius: 50%; background: var(--blue); display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-family: var(--serif); font-size: 1.05rem; color: #fff; }
.review-name { font-weight: 500; font-size: 14px; }
.review-country { font-size: 12px; color: var(--text-faint); }
.review-score { background: var(--blue); color: #fff; padding: 3px 10px; border-radius: 14px; font-size: 13px; font-weight: 500; flex-shrink: 0; margin-left: auto; }
.review-text { font-size: 13.5px; line-height: 1.7; color: var(--text-soft); font-style: italic; }
.review-date { margin-top: 14px; font-size: 11px; color: oklch(65% 0.04 230); }
.reviews-links { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; }

/* ---------- FAQ ---------- */
.faq { background: var(--cream-deep); padding: 104px 0; }
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item:first-child { border-top: 1px solid var(--line); }
.faq-q { width: 100%; text-align: left; padding: 20px 0; display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.faq-q span { font-size: 15px; font-weight: 500; color: var(--ink); line-height: 1.4; }
.faq-q svg { width: 18px; height: 18px; flex-shrink: 0; color: var(--gold-deep); transition: transform .3s; }
.faq-item.open .faq-q svg { transform: rotate(45deg); }
.faq-a { font-size: 14px; line-height: 1.78; color: var(--text-soft); max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.faq-a p { padding-bottom: 20px; }

/* ---------- BOOKING FORM ---------- */
.booking { background: var(--blue-deep); color: #fff; padding: 110px 0; }
.booking .center-head p { color: rgba(255,255,255,0.72); }
.booking .section-title { color: #fff; }
.booking-panel { max-width: 720px; margin: 0 auto; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.14); border-radius: 20px; padding: 44px; backdrop-filter: blur(8px); }
.bf-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-bottom: 18px; }
.bf-field { display: flex; flex-direction: column; gap: 8px; min-width: 0; }
.bf-field.full { grid-column: 1 / -1; }
.bf-field label { font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: var(--gold); }
.bf-field input, .bf-field select { background: rgba(255,255,255,0.09); border: 1px solid rgba(255,255,255,0.2); border-radius: 10px; padding: 13px 14px; color: #fff; font-size: 15px; transition: border-color .2s; color-scheme: dark; }
.bf-field input:focus, .bf-field select:focus { outline: none; border-color: var(--gold); }
.bf-field select option { color: var(--ink); background: #fff; }
.bf-error { display: none; font-size: 13px; color: oklch(78% 0.15 25); margin-bottom: 14px; }
.bf-error.show { display: block; }
.bf-actions { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; margin-top: 8px; }
.bf-note { font-size: 12.5px; color: rgba(255,255,255,0.55); margin-top: 22px; line-height: 1.6; }
.bf-note a { color: var(--gold); text-decoration: underline; }
.booking-contacts { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 28px; border-top: 1px solid rgba(255,255,255,0.1); padding-top: 44px; margin-top: 60px; max-width: 900px; margin-left: auto; margin-right: auto; text-align: center; }
.booking-contacts .k { font-size: 10px; letter-spacing: .18em; text-transform: uppercase; color: var(--gold); margin-bottom: 10px; }
.booking-contacts a, .booking-contacts .v { font-size: 13px; color: rgba(255,255,255,0.85); line-height: 1.7; white-space: pre-line; }
.booking-contacts a:hover { color: #fff; }

/* ---------- ROOM PAGE ---------- */
.room-detail { padding: 90px 0; }
.room-detail-grid { display: grid; grid-template-columns: 1.6fr 1fr; gap: 60px; align-items: start; }
.room-detail-body { font-size: 15.5px; line-height: 1.85; color: var(--text-soft); }
.room-detail-body h2 { font-size: 1.9rem; margin-bottom: 18px; color: var(--ink); }
.room-detail-body p + p { margin-top: 14px; }
.room-features { margin-top: 36px; display: grid; grid-template-columns: 1fr 1fr; column-gap: 32px; }
.room-side { position: sticky; top: 96px; background: var(--cream); border-radius: 16px; padding: 32px; }
.room-side h3 { font-size: 1.3rem; margin-bottom: 6px; }
.room-side .facts { margin: 18px 0 24px; display: flex; flex-direction: column; gap: 10px; }
.room-side .facts div { display: flex; align-items: center; gap: 10px; font-size: 14px; color: var(--text-soft); }
.room-side .facts svg { width: 16px; height: 16px; color: var(--gold-deep); flex-shrink: 0; }
.room-side .btn { width: 100%; margin-bottom: 10px; }
.room-side .side-note { font-size: 12px; color: var(--text-faint); text-align: center; margin-top: 10px; line-height: 1.6; }
.room-gallery { background: var(--cream-deep); padding: 80px 0 100px; }
.other-rooms { padding: 90px 0; background: #fff; }

/* ---------- GUIDE PAGE ---------- */
.guide-section { padding: 90px 0; }
.guide-section:nth-of-type(even) { background: var(--cream); }
.guide-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }
.guide-card { background: #fff; border-radius: 14px; padding: 34px 30px; box-shadow: var(--shadow-sm); border: 1px solid rgba(16,32,58,0.05); transition: transform .5s var(--ease), box-shadow .5s var(--ease); }
.guide-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.guide-card .dist { font-size: 11px; letter-spacing: .18em; text-transform: uppercase; color: var(--gold-deep); margin-bottom: 10px; }
.guide-card h3 { font-size: 1.35rem; margin-bottom: 10px; }
.guide-card p { font-size: 14px; line-height: 1.75; color: var(--text-soft); }

/* ---------- CTA BAND ---------- */
.cta-band { background: var(--blue); color: #fff; padding: 80px 0; text-align: center; }
.cta-band h2 { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 14px; color: #fff; }
.cta-band p { font-size: 15.5px; color: rgba(255,255,255,0.75); margin-bottom: 36px; max-width: 560px; margin-left: auto; margin-right: auto; line-height: 1.65; }

/* ---------- FOOTER ---------- */
footer.site-footer { background: oklch(11% 0.02 230); padding: 56px 40px 32px; color: rgba(255,255,255,0.6); }
.footer-grid { max-width: 1200px; margin: 0 auto 40px; display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 48px; }
.footer-grid .brand-f { font-family: var(--serif); font-size: 1.3rem; letter-spacing: .1em; color: rgba(255,255,255,0.9); margin-bottom: 12px; }
.footer-grid p { font-size: 13px; line-height: 1.75; }
.footer-grid h4 { font-size: 11px; letter-spacing: .2em; text-transform: uppercase; color: var(--gold); margin-bottom: 16px; font-weight: 500; }
.footer-grid ul { list-style: none; }
.footer-grid li { margin-bottom: 10px; }
.footer-grid li a { font-size: 13.5px; color: rgba(255,255,255,0.65); transition: color .2s; }
.footer-grid li a:hover { color: #fff; }
.footer-bottom { max-width: 1200px; margin: 0 auto; border-top: 1px solid rgba(255,255,255,0.1); padding-top: 24px; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; }
.footer-bottom .lic { font-size: 11px; color: rgba(255,255,255,0.46); }
.footer-social { display: flex; align-items: center; gap: 14px; }
.footer-social .fb { display: flex; align-items: center; justify-content: center; width: 34px; height: 34px; border-radius: 50%; background: rgba(255,255,255,0.08); color: rgba(255,255,255,0.5); transition: background .2s, color .2s; }
.footer-social .fb:hover { background: rgba(255,255,255,0.18); color: #fff; }
.footer-social .fb svg { width: 16px; height: 16px; }
.footer-bottom .copy { font-size: 12px; color: rgba(255,255,255,0.46); }
.made-by { font-size: 12px; color: rgba(255,255,255,0.5); letter-spacing: .04em; transition: color .2s; }
.made-by:hover { color: #fff; }

/* ---------- FLOATING WA + SCROLL TOP ---------- */
.float-wa { position: fixed; bottom: 28px; right: 28px; z-index: 90; width: 58px; height: 58px; border-radius: 50%; background: var(--wa); display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 24px rgba(37,211,102,0.45); transition: transform .25s, box-shadow .25s, opacity .25s; }
.float-wa.footer-hide { opacity: 0; pointer-events: none; }
.float-wa:hover { transform: scale(1.12); box-shadow: 0 8px 32px rgba(37,211,102,0.6); }
.float-wa svg { width: 28px; height: 28px; }
.scroll-top { position: fixed; bottom: 100px; right: 28px; z-index: 89; width: 42px; height: 42px; border-radius: 50%; background: var(--blue); color: #fff; display: flex; align-items: center; justify-content: center; opacity: 0; pointer-events: none; transition: opacity .3s, transform .3s; box-shadow: 0 4px 16px rgba(0,0,0,0.22); }
.scroll-top.visible { opacity: 1; pointer-events: auto; }
.scroll-top:hover { transform: translateY(-3px); }
.scroll-top svg { width: 18px; height: 18px; }

/* ---------- STICKY MOBILE BOOK BAR ---------- */
.mobile-book-bar { display: none; position: fixed; bottom: 0; left: 0; right: 0; z-index: 95; background: rgba(255,255,255,0.97); backdrop-filter: blur(10px); box-shadow: 0 -4px 24px rgba(0,0,0,0.14); padding: 10px 14px calc(10px + env(safe-area-inset-bottom)); gap: 10px; }
.mobile-book-bar a { flex: 1; display: flex; align-items: center; justify-content: center; gap: 8px; padding: 13px; border-radius: 10px; font-size: 14px; font-weight: 500; }
.mobile-book-bar .mb-wa { background: var(--wa); color: #fff; }
.mobile-book-bar .mb-book { background: var(--blue); color: #fff; }
.mobile-book-bar svg { width: 17px; height: 17px; }

/* ---------- LIGHTBOX ---------- */
.lightbox { position: fixed; inset: 0; z-index: 9999; background: rgba(5,15,30,0.95); display: none; align-items: center; justify-content: center; }
.lightbox.open { display: flex; }
.lightbox img { max-width: 90vw; max-height: 88vh; object-fit: contain; border-radius: 6px; animation: scaleIn .25s ease; }
.lightbox .close { position: absolute; top: 20px; right: 24px; background: rgba(255,255,255,0.15); color: #fff; font-size: 24px; width: 44px; height: 44px; border-radius: 50%; display: flex; align-items: center; justify-content: center; transition: background .2s; }
.lightbox .close:hover { background: rgba(255,255,255,0.28); }
.lb-nav { position: absolute; top: 50%; transform: translateY(-50%); background: rgba(255,255,255,0.15); color: #fff; font-size: 36px; width: 52px; height: 52px; border-radius: 50%; display: flex; align-items: center; justify-content: center; transition: background .2s; }
.lb-nav:hover { background: rgba(255,255,255,0.3); }
.lb-prev { left: 16px; }
.lb-next { right: 16px; }
.lb-counter { position: absolute; bottom: 20px; left: 50%; transform: translateX(-50%); color: rgba(255,255,255,0.6); font-size: 13px; letter-spacing: .08em; white-space: nowrap; pointer-events: none; }

/* ---------- COOKIE + LANG BANNERS ---------- */
.cookie-banner { position: fixed; bottom: 0; left: 0; right: 0; z-index: 200; background: oklch(16% 0.07 232); color: #fff; padding: 14px 28px; display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; box-shadow: 0 -4px 24px rgba(0,0,0,0.25); transform: translateY(110%); transition: transform .4s ease; }
.cookie-banner.show { transform: translateY(0); }
.cookie-text { font-size: 13px; color: rgba(255,255,255,0.8); line-height: 1.5; }
.cookie-text a { color: var(--gold); text-decoration: underline; }
.cookie-btns { display: flex; gap: 10px; flex-shrink: 0; }
.cookie-btn { padding: 8px 20px; border-radius: 20px; font-size: 13px; font-weight: 500; border: 1px solid rgba(255,255,255,0.28); color: #fff; background: transparent; transition: all .2s; }
.cookie-btn.accept { background: var(--wa); border-color: var(--wa); }
.cookie-btn:hover { opacity: .85; }

.lang-banner { position: fixed; top: 84px; left: 50%; transform: translateX(-50%) translateY(-20px); z-index: 150; background: #fff; border-radius: 40px; box-shadow: 0 8px 32px rgba(0,0,0,0.18); padding: 10px 12px 10px 22px; display: flex; align-items: center; gap: 14px; font-size: 14px; opacity: 0; pointer-events: none; transition: opacity .4s, transform .4s; max-width: calc(100vw - 32px); }
.lang-banner.show { opacity: 1; transform: translateX(-50%) translateY(0); pointer-events: auto; }
.lang-banner a { background: var(--blue); color: #fff; padding: 9px 20px; border-radius: 24px; font-size: 13px; white-space: nowrap; }
.lang-banner button { color: var(--text-faint); font-size: 18px; padding: 4px 8px; }

/* ---------- RESPONSIVE ---------- */
@media (max-width: 980px) {
  .about-grid, .area-grid, .room-detail-grid { grid-template-columns: 1fr; gap: 40px; }
  .stats-box { position: static; margin-top: 16px; border-radius: 12px; }
  .map { height: 300px; }
  .about-img-wrap img { height: 320px; }
  .room-side { position: static; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .wrap { padding-left: 20px; padding-right: 20px; }
  .nav-inner { padding-left: 20px; padding-right: 20px; }
  .about, .rooms, .gallery, .amenities, .area, .reviews, .booking, .room-detail, .guide-section, .why-direct, .faq { padding-top: 64px; padding-bottom: 64px; }
  .hero-ctas { flex-direction: column; align-items: stretch; }
  .hero-ctas .btn, .hero-ctas .score-badge { justify-content: center; }
  .hero::after, .page-hero::after { inset: 14px; }
  .hero-content { padding-left: 20px; padding-right: 20px; }
  .hero h1 { font-size: clamp(2.6rem, 11vw, 3.6rem); }
  .hero-pre { font-size: 10px; letter-spacing: .2em; gap: 9px; max-width: 100%; }
  .hero-pre::before, .hero-pre::after { width: 16px; }
  .booking-panel { padding: 30px 22px; }
  .bf-grid { grid-template-columns: 1fr; }
  .mobile-book-bar { display: flex; }
  .float-wa { display: none; }
  .scroll-top { bottom: 84px; }
  .cookie-banner { padding-bottom: calc(14px + env(safe-area-inset-bottom)); }
  body { padding-bottom: 66px; }
  .room-features { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .page-hero { min-height: 38vh; }
  .page-hero-content { padding: 50px 20px 32px; }
  .trust-strip .wrap { gap: 18px; justify-content: flex-start; }
}
