/* ============================================================
   OASIS BEACH HOUSE — style.css
   ============================================================ */

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

:root {
  --gold:  #bba86d;
  --warm:  #daba74;
  --sage:  #727e6b;
  --ivory: #faf8f4;
  --cream: #f0e9dc;
  --sand:  #e2d8c4;
  --dark:  #1e1a16;
  --dim:   #2e2820;
  --muted: #6a6258;
  --white: #ffffff;
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans:  'Jost', sans-serif;
}

html  { scroll-behavior: smooth; }
body  { background: var(--dark); color: var(--ivory); font-family: var(--sans); font-weight: 300; overflow-x: hidden; }
img   { display: block; width: 100%; height: 100%; object-fit: cover; }

/* ── NAV ─────────────────────────────────────────────────── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 28px 48px;
  transition: background .5s, padding .4s;
}
nav.scrolled {
  background: rgba(20,16,12,.92);
  backdrop-filter: blur(12px);
  padding: 18px 48px;
  border-bottom: .5px solid rgba(187,168,109,.2);
}
.nav-logo { font-family: var(--serif); font-size: 17px; font-weight: 400; letter-spacing: .08em; color: var(--white); text-decoration: none; }
.nav-links { display: flex; gap: 36px; list-style: none; }
.nav-links a { font-size: 11px; letter-spacing: .16em; color: rgba(255,255,255,.72); text-decoration: none; text-transform: uppercase; transition: color .3s; }
.nav-links a:hover { color: var(--warm); }
.nav-book { font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: var(--dark); background: var(--warm); border: none; padding: 10px 24px; cursor: pointer; transition: background .3s; text-decoration: none; }
.nav-book:hover { background: var(--gold); }

/* ── HERO ────────────────────────────────────────────────── */
#hero { position: relative; height: 100vh; min-height: 700px; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; background: var(--dim); }
.hero-bg img { position: absolute; inset: 0; }
.hero-overlay { position: absolute; bottom: 0; left: 0; right: 0; height: 75%; background: linear-gradient(to top, rgba(14,12,9,.92) 0%, rgba(14,12,9,.4) 50%, transparent 100%); }
.hero-overlay-top { position: absolute; top: 0; left: 0; right: 0; height: 30%; background: linear-gradient(to bottom, rgba(14,12,9,.55) 0%, transparent 100%); }
.hero-content { position: relative; z-index: 2; text-align: center; padding: 0 24px; animation: heroFade 1.8s ease forwards; }
@keyframes heroFade { from { opacity:0; transform:translateY(24px); } to { opacity:1; transform:translateY(0); } }
.hero-eyebrow { font-size: 10px; letter-spacing: .28em; color: rgba(218,186,116,.80); text-transform: uppercase; margin-bottom: 22px; }
.hero-title { font-family: var(--serif); font-size: clamp(52px,8vw,96px); font-weight: 300; line-height: 1.0; color: var(--white); margin-bottom: 10px; }
.hero-title span { color: var(--warm); }
.hero-rule { width: 72px; height: .5px; background: var(--warm); margin: 22px auto; }
.hero-tagline { font-family: var(--serif); font-size: clamp(16px,2vw,22px); font-weight: 300; font-style: italic; color: rgba(255,255,255,.72); margin-bottom: 44px; letter-spacing: .02em; }
.hero-ctas { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.hero-scroll { position: absolute; bottom: 36px; left: 50%; transform: translateX(-50%); display: flex; flex-direction: column; align-items: center; gap: 8px; z-index: 2; animation: scrollPulse 2.5s ease infinite; }
@keyframes scrollPulse { 0%,100%{opacity:.5;transform:translateX(-50%) translateY(0)} 50%{opacity:.9;transform:translateX(-50%) translateY(5px)} }
.hero-scroll span { font-size: 9px; letter-spacing: .22em; color: rgba(255,255,255,.45); text-transform: uppercase; }
.scroll-line { width: .5px; height: 36px; background: linear-gradient(to bottom, rgba(218,186,116,.6), transparent); }

/* ── BUTTONS ─────────────────────────────────────────────── */
.btn-primary { font-size: 11px; letter-spacing: .18em; text-transform: uppercase; color: var(--dark); background: var(--warm); border: none; padding: 16px 40px; cursor: pointer; transition: all .3s; text-decoration: none; display: inline-block; }
.btn-primary:hover { background: var(--gold); transform: translateY(-1px); }
.btn-ghost { font-size: 11px; letter-spacing: .18em; text-transform: uppercase; color: rgba(255,255,255,.82); background: transparent; border: .5px solid rgba(255,255,255,.35); padding: 16px 40px; cursor: pointer; transition: all .3s; text-decoration: none; display: inline-block; }
.btn-ghost:hover { border-color: var(--warm); color: var(--warm); transform: translateY(-1px); }
.btn-maps { display: inline-block; margin-top: 28px; font-size: 11px; letter-spacing: .16em; text-transform: uppercase; color: var(--dark); background: var(--cream); border: .5px solid var(--gold); padding: 13px 28px; text-decoration: none; transition: all .3s; }
.btn-maps:hover { background: var(--warm); border-color: var(--warm); }
.btn-whatsapp { display: inline-flex; align-items: center; gap: 10px; font-size: 11px; letter-spacing: .16em; text-transform: uppercase; color: var(--dark); background: #25D366; border: none; padding: 16px 36px; text-decoration: none; cursor: pointer; transition: all .3s; }
.btn-whatsapp:hover { background: #1ebe5d; transform: translateY(-1px); }

/* ── SHARED ──────────────────────────────────────────────── */
section { position: relative; }
.section-inner { max-width: 1200px; margin: 0 auto; padding: 0 48px; }
.reveal { opacity: 0; transform: translateY(32px); transition: opacity .9s ease, transform .9s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.eyebrow { font-size: 9px; letter-spacing: .26em; color: var(--gold); text-transform: uppercase; margin-bottom: 18px; display: block; }
.section-title { font-family: var(--serif); font-size: clamp(36px,4vw,54px); font-weight: 300; line-height: 1.15; color: var(--dark); margin-bottom: 24px; }
.section-title em { font-style: italic; color: var(--muted); }
.gold-rule { width: 48px; height: .5px; background: var(--warm); margin-bottom: 28px; }
.body-text { font-size: 15px; font-weight: 300; line-height: 1.85; color: var(--muted); margin-bottom: 16px; }
.gold-em { font-style: italic; color: var(--warm) !important; }

/* ── ABOUT ───────────────────────────────────────────────── */
#about { background: var(--ivory); padding: 120px 0; }
#about .section-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-image { position: relative; }
.about-img-main { width: 100%; aspect-ratio: 4/5; object-fit: cover; }
.about-img-offset { position: absolute; width: 55%; aspect-ratio: 1/1; bottom: -32px; right: -32px; border: 4px solid var(--ivory); object-fit: cover; }
.body-quote { font-family: var(--serif); font-size: 16px; font-style: italic; color: var(--gold); margin-top: 8px; }

/* ── SPECS ───────────────────────────────────────────────── */
#specs { background: var(--dark); padding: 120px 0; }
#specs .section-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.specs-head .section-title { color: var(--ivory); }
.specs-head .body-text { color: rgba(250,248,244,.55); }
.specs-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: rgba(187,168,109,.15); border: .5px solid rgba(187,168,109,.15); }
.spec-item { background: rgba(30,26,22,.95); padding: 28px 24px; transition: background .3s; }
.spec-item:hover { background: rgba(42,36,28,.98); }
.spec-label { font-size: 9px; letter-spacing: .2em; color: rgba(187,168,109,.6); text-transform: uppercase; display: block; margin-bottom: 5px; }
.spec-value { font-family: var(--serif); font-size: 16px; font-weight: 400; color: var(--ivory); }
.spec-sub { font-size: 12px; color: rgba(187,168,109,.6); margin-top: 4px; font-weight: 300; }

/* ── ROOMS ───────────────────────────────────────────────── */
#rooms { background: var(--cream); padding: 120px 0; }
.rooms-title { color: var(--dark); text-align: center; margin: 0 auto 56px; }
.rooms-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; }
.room-card { position: relative; overflow: hidden; cursor: pointer; }
.room-card--tall { grid-row: span 2; }
.room-card img { width: 100%; height: 100%; min-height: 280px; object-fit: cover; transition: transform .6s ease; display: block; }
.room-card--tall img { min-height: 560px; }
.room-card:hover img { transform: scale(1.04); }
.room-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(20,16,12,.75) 0%, transparent 55%); display: flex; flex-direction: column; justify-content: flex-end; padding: 32px; }
.room-name { font-family: var(--serif); font-size: 26px; font-weight: 300; color: var(--white); margin-bottom: 6px; }
.room-detail { font-size: 10px; letter-spacing: .18em; color: rgba(255,255,255,.65); text-transform: uppercase; }
.kitchen-split { max-width: 1200px; margin: 2px auto 0; display: grid; grid-template-columns: 1fr 1fr; }
.kitchen-img { position: relative; overflow: hidden; }
.kitchen-img img { min-height: 300px; transition: transform .6s; }
.kitchen-img:hover img { transform: scale(1.03); }
.kitchen-text { background: var(--dark); padding: 56px 48px; display: flex; flex-direction: column; justify-content: center; }
.kitchen-heading { font-family: var(--serif); font-size: 28px; font-weight: 300; color: var(--ivory); line-height: 1.3; margin-bottom: 20px; }
.kitchen-heading em { font-style: italic; color: var(--warm); }
.kitchen-body { font-size: 13px; font-weight: 300; line-height: 1.85; color: rgba(250,248,244,.52); }

/* ── EXPERIENCE ──────────────────────────────────────────── */
#experience { background: var(--dark); }
.exp-hero { position: relative; height: 70vh; min-height: 500px; display: flex; align-items: flex-end; overflow: hidden; }
.exp-hero img { position: absolute; inset: 0; }
.exp-hero-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(14,12,9,.90) 0%, rgba(14,12,9,.2) 60%, transparent 100%); }
.exp-hero-content { position: relative; z-index: 2; padding: 64px 48px; max-width: 1200px; width: 100%; margin: 0 auto; }
.exp-title { color: var(--ivory); max-width: 520px; }
.exp-title em { font-style: italic; color: var(--warm); }
.exp-items { display: grid; grid-template-columns: repeat(4,1fr); border-top: .5px solid rgba(187,168,109,.2); }
.exp-item { padding: 56px 40px; border-right: .5px solid rgba(187,168,109,.12); transition: background .4s; }
.exp-item:last-child { border-right: none; }
.exp-item:hover { background: rgba(42,36,28,.8); }
.exp-number { font-family: var(--serif); font-size: 48px; font-weight: 300; color: rgba(187,168,109,.2); line-height: 1; margin-bottom: 16px; }
.exp-item-title { font-family: var(--serif); font-size: 20px; font-weight: 400; color: var(--ivory); margin-bottom: 12px; }
.exp-item-text { font-size: 13px; font-weight: 300; line-height: 1.8; color: rgba(250,248,244,.5); }

/* ── REVIEWS ─────────────────────────────────────────────── */
#reviews { background: var(--ivory); padding: 0 0 80px; }
.reviews-share-bar { background: var(--dark); border-bottom: 1px solid rgba(187,168,109,.15); padding: 20px 0; margin-bottom: 64px; }
.reviews-share-inner { max-width: 1200px; margin: 0 auto; padding: 0 48px; display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.reviews-share-text { display: flex; flex-direction: column; gap: 2px; }
.reviews-share-label { font-family: var(--serif); font-size: 18px; color: var(--ivory); font-weight: 300; }
.reviews-share-sub { font-size: 11px; letter-spacing: .14em; color: rgba(187,168,109,.6); text-transform: uppercase; }
.reviews-share-btns { display: flex; gap: 10px; flex-wrap: wrap; }
.btn-google-review { display: inline-flex; align-items: center; gap: 8px; font-family: var(--sans); font-size: 10px; letter-spacing: .16em; text-transform: uppercase; color: var(--dark); background: var(--warm); border: none; padding: 11px 20px; cursor: pointer; text-decoration: none; transition: all .3s; }
.btn-google-review:hover { background: var(--gold); transform: translateY(-1px); }
.btn-site-review { display: inline-flex; align-items: center; gap: 8px; font-family: var(--sans); font-size: 10px; letter-spacing: .16em; text-transform: uppercase; color: rgba(255,255,255,.82); background: transparent; border: .5px solid rgba(255,255,255,.3); padding: 11px 20px; cursor: pointer; transition: all .3s; }
.btn-site-review:hover { border-color: var(--warm); color: var(--warm); }
.btn-share-link { display: inline-flex; align-items: center; gap: 8px; font-family: var(--sans); font-size: 10px; letter-spacing: .16em; text-transform: uppercase; color: rgba(255,255,255,.5); background: transparent; border: none; padding: 11px 16px; cursor: pointer; transition: color .3s; }
.btn-share-link:hover { color: var(--warm); }
.reviews-title { color: var(--dark); text-align: center; margin: 0 auto 52px; }

/* Carousel */
.reviews-carousel { position: relative; overflow: hidden; margin-bottom: 48px; min-height: 260px; }
.reviews-track { position: relative; min-height: 260px; }
.review-card { position: absolute; top: 0; left: 0; right: 0; background: white; padding: 44px 48px; opacity: 0; transform: translateY(16px); transition: opacity .5s ease, transform .5s ease; pointer-events: none; border-top: 2px solid var(--cream); }
.review-card.active { opacity: 1; transform: translateY(0); pointer-events: auto; position: relative; }
.review-stars { color: var(--warm); font-size: 18px; letter-spacing: 4px; margin-bottom: 20px; }
.review-text { font-family: var(--serif); font-size: 20px; font-weight: 300; line-height: 1.7; color: var(--dark); font-style: italic; margin-bottom: 28px; max-width: 760px; }
.review-footer { display: flex; align-items: center; gap: 16px; }
.review-author { font-size: 11px; letter-spacing: .2em; text-transform: uppercase; color: var(--gold); }
.review-verified { font-size: 10px; color: rgba(114,126,107,.6); letter-spacing: .1em; }
.review-verified::before { content: '· '; }
.carousel-nav { display: flex; align-items: center; justify-content: center; gap: 20px; margin-top: 32px; }
.carousel-btn { background: none; border: .5px solid rgba(187,168,109,.3); color: var(--gold); width: 36px; height: 36px; cursor: pointer; font-size: 16px; transition: all .3s; display: flex; align-items: center; justify-content: center; font-family: var(--sans); }
.carousel-btn:hover { background: var(--gold); color: var(--dark); border-color: var(--gold); }
.carousel-dots { display: flex; gap: 8px; }
.carousel-dot { width: 6px; height: 6px; border-radius: 50%; background: rgba(187,168,109,.25); border: none; cursor: pointer; transition: all .3s; padding: 0; }
.carousel-dot.active { background: var(--warm); transform: scale(1.3); }

/* Rating summary */
.rating-summary { text-align: center; padding: 40px; background: var(--dark); display: flex; flex-direction: column; align-items: center; gap: 6px; }
.rating-big { font-family: var(--serif); font-size: 64px; font-weight: 300; color: var(--ivory); line-height: 1; }
.rating-stars-big { color: var(--warm); font-size: 22px; letter-spacing: 4px; }
.rating-count { font-size: 10px; letter-spacing: .2em; text-transform: uppercase; color: rgba(187,168,109,.5); margin-top: 4px; }
.rating-google-link { font-size: 10px; letter-spacing: .16em; text-transform: uppercase; color: var(--warm); text-decoration: none; margin-top: 8px; transition: color .3s; }
.rating-google-link:hover { color: var(--gold); }

/* Modal */
.review-modal { position: fixed; inset: 0; z-index: 500; display: flex; align-items: center; justify-content: center; padding: 24px; opacity: 0; pointer-events: none; transition: opacity .35s ease; }
.review-modal.open { opacity: 1; pointer-events: auto; }
.review-modal-backdrop { position: absolute; inset: 0; background: rgba(20,16,12,.85); backdrop-filter: blur(6px); }
.review-modal-box { position: relative; z-index: 1; background: var(--dim); border: .5px solid rgba(187,168,109,.2); padding: 48px 44px; max-width: 560px; width: 100%; max-height: 90vh; overflow-y: auto; transform: translateY(24px); transition: transform .35s ease; }
.review-modal.open .review-modal-box { transform: translateY(0); }
.review-modal-close { position: absolute; top: 16px; right: 16px; background: none; border: none; color: rgba(187,168,109,.5); font-size: 16px; cursor: pointer; padding: 8px; transition: color .3s; }
.review-modal-close:hover { color: var(--warm); }
.review-modal-title { font-family: var(--serif); font-size: 26px; font-weight: 300; color: var(--ivory); margin-bottom: 16px; }
.star-picker { display: flex; gap: 6px; margin-top: 8px; }
.star-pick { font-size: 28px; color: rgba(187,168,109,.25); cursor: pointer; transition: color .2s, transform .2s; user-select: none; }
.star-pick.active, .star-pick.hover { color: var(--warm); transform: scale(1.15); }
.review-success { text-align: center; padding: 24px 0; }
.review-success-icon { width: 56px; height: 56px; border-radius: 50%; background: rgba(187,168,109,.15); border: 1px solid var(--gold); display: flex; align-items: center; justify-content: center; font-size: 22px; color: var(--warm); margin: 0 auto 20px; }
.review-success h3 { font-family: var(--serif); font-size: 26px; color: var(--ivory); margin-bottom: 10px; }
.review-success p { font-size: 13px; color: rgba(250,248,244,.5); line-height: 1.7; }
.review-form-btns { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; }
.share-toast { position: fixed; bottom: 96px; left: 50%; transform: translateX(-50%) translateY(16px); background: var(--dark); border: .5px solid rgba(187,168,109,.3); color: var(--warm); font-size: 11px; letter-spacing: .16em; text-transform: uppercase; padding: 12px 24px; z-index: 600; opacity: 0; transition: all .35s ease; pointer-events: none; }
.share-toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }
.review-modal-box .form-group label { color: rgba(187,168,109,.7); }
.review-modal-box input, .review-modal-box select, .review-modal-box textarea { background: rgba(255,255,255,.05); border: .5px solid rgba(187,168,109,.25); color: var(--ivory); font-family: var(--sans); font-size: 14px; font-weight: 300; padding: 13px 15px; outline: none; transition: border-color .3s; width: 100%; -webkit-appearance: none; border-radius: 0; }
.review-modal-box input:focus, .review-modal-box textarea:focus { border-color: var(--warm); }
.review-modal-box input::placeholder, .review-modal-box textarea::placeholder { color: rgba(250,248,244,.2); }

/* ── LOCATION ────────────────────────────────────────────── */
#location { background: var(--ivory); padding: 120px 0; }
#location .section-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.location-text .section-title { color: var(--dark); }
.location-details { margin-top: 32px; }
.location-detail { display: flex; align-items: baseline; gap: 12px; padding: 18px 0; border-bottom: .5px solid rgba(114,126,107,.2); }
.location-label { font-size: 9px; letter-spacing: .2em; color: var(--gold); text-transform: uppercase; min-width: 90px; }
.location-value { font-size: 14px; font-weight: 300; color: var(--muted); }
.map-container { position: relative; aspect-ratio: 4/3; overflow: hidden; }
.map-container img { position: absolute; inset: 0; object-fit: cover; }
.map-pin-overlay { position: absolute; bottom: 24px; left: 24px; display: flex; align-items: center; gap: 10px; background: rgba(20,16,12,.75); padding: 10px 16px; }
.map-pin { width: 10px; height: 10px; background: var(--warm); border-radius: 50%; flex-shrink: 0; }
.map-pin-label { font-size: 10px; letter-spacing: .14em; color: rgba(255,255,255,.8); text-transform: uppercase; }

/* ── CTA ─────────────────────────────────────────────────── */
#cta { position: relative; padding: 160px 0; overflow: hidden; }
.cta-bg-img { position: absolute; inset: 0; }
.cta-bg-img img { position: absolute; inset: 0; }
.cta-overlay { position: absolute; inset: 0; background: rgba(14,12,9,.78); }
.cta-glow { position: absolute; inset: 0; background: radial-gradient(ellipse 80% 60% at 50% 50%, rgba(218,186,116,.07) 0%, transparent 70%); z-index: 1; }
.cta-inner { position: relative; z-index: 2; text-align: center; }
.cta-eyebrow { font-size: 9px; letter-spacing: .26em; color: var(--gold); text-transform: uppercase; margin-bottom: 20px; display: block; }
.cta-title { font-family: var(--serif); font-size: clamp(42px,6vw,76px); font-weight: 300; color: var(--white); line-height: 1.1; margin-bottom: 14px; }
.cta-title em { font-style: italic; color: var(--warm); }
.cta-rule { width: 48px; height: .5px; background: var(--warm); margin: 0 auto 28px; }
.cta-subtitle { font-family: var(--serif); font-size: 18px; font-style: italic; color: rgba(250,248,244,.55); margin-bottom: 52px; }
.cta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-bottom: 64px; }
.cta-tagline { font-family: var(--serif); font-size: 15px; font-style: italic; color: rgba(250,248,244,.35); letter-spacing: .03em; }

/* ── FOOTER ──────────────────────────────────────────────── */
footer { background: var(--dark); border-top: .5px solid rgba(187,168,109,.15); padding: 40px 48px; display: flex; align-items: center; justify-content: space-between; }
.footer-brand { font-family: var(--serif); font-size: 15px; font-weight: 400; color: rgba(250,248,244,.6); }
.footer-location { font-size: 10px; letter-spacing: .16em; color: rgba(250,248,244,.3); text-transform: uppercase; }
.footer-copy { font-size: 10px; color: rgba(250,248,244,.25); }

/* ── WHATSAPP FLOAT ──────────────────────────────────────── */
.wa-float { position: fixed; bottom: 28px; right: 28px; z-index: 200; width: 56px; height: 56px; border-radius: 50%; background: #25D366; display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 20px rgba(37,211,102,.4); transition: transform .3s, box-shadow .3s; }
.wa-float:hover { transform: scale(1.1); box-shadow: 0 6px 28px rgba(37,211,102,.55); }

/* ── LANGUAGE SWITCHER ───────────────────────────────────── */
.nav-right { display: flex; align-items: center; gap: 20px; }
.lang-switcher { display: flex; align-items: center; gap: 6px; }
.lang-btn { background: none; border: none; cursor: pointer; font-family: var(--sans); font-size: 10px; letter-spacing: .16em; color: rgba(255,255,255,.45); padding: 4px 2px; transition: color .3s; }
.lang-btn.active { color: var(--warm); }
.lang-btn:hover { color: var(--warm); }
.lang-divider { color: rgba(255,255,255,.2); font-size: 10px; }

/* ── LOGO ────────────────────────────────────────────────── */
.nav-logo-img { height: 48px; width: auto; display: block; mix-blend-mode: screen; filter: brightness(1.05); transition: opacity .3s; }
.nav-logo-img:hover { opacity: .85; }
.hero-logo { width: 160px; height: auto; margin: 0 auto 8px; display: block; mix-blend-mode: screen; filter: brightness(1.05); animation: heroFade 1.8s ease forwards; }

/* ── PRICE BLOCK ─────────────────────────────────────────── */
.price-block { margin: 28px 0 16px; }
.price-from { font-size: 10px; letter-spacing: .18em; text-transform: uppercase; color: var(--sage); display: block; margin-bottom: 4px; }
.price-value { font-family: var(--serif); font-size: 34px; font-weight: 300; color: var(--dark); line-height: 1; }
.price-unit { font-size: 16px; color: var(--muted); }
.price-note { font-size: 11px; color: var(--muted); margin-top: 6px; font-style: italic; }
#specs .price-value { color: var(--ivory); }
#specs .price-from { color: rgba(187,168,109,.7); }
#specs .price-note { color: rgba(250,248,244,.4); }
#booking-form .price-value { color: var(--ivory); }
#booking-form .price-from { color: rgba(187,168,109,.7); }
#booking-form .price-note { color: rgba(250,248,244,.4); }

/* ── BEACH BADGE ─────────────────────────────────────────── */
.beach-badge { display: flex; align-items: center; gap: 14px; background: rgba(187,168,109,.08); border-left: 2px solid var(--gold); padding: 14px 18px; margin-top: 28px; }
.beach-icon { font-size: 22px; flex-shrink: 0; }
.beach-label { font-size: 8px; letter-spacing: .2em; text-transform: uppercase; color: rgba(187,168,109,.7); margin-bottom: 3px; }
.beach-value { font-family: var(--serif); font-size: 15px; color: var(--ivory); }

/* ── VIDEO SECTION ───────────────────────────────────────── */
#video-section { background: var(--dark); }
.video-split { display: grid; grid-template-columns: 1fr 1fr; min-height: 600px; }
.video-side { position: relative; overflow: hidden; background: #111; display: flex; align-items: center; justify-content: center; }
.video-side video, .video-side iframe { width: 100%; height: 100%; object-fit: contain; display: block; max-height: 680px; }
.video-play-btn { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; cursor: pointer; background: rgba(0,0,0,.18); transition: background .3s; }
.video-play-btn:hover { background: rgba(0,0,0,.28); }
.play-icon { width: 64px; height: 64px; border-radius: 50%; background: rgba(218,186,116,.85); display: flex; align-items: center; justify-content: center; font-size: 22px; color: var(--dark); padding-left: 4px; transition: opacity .3s, transform .3s; }
.play-icon:hover { transform: scale(1.08); }
.video-text { padding: 80px 64px; display: flex; flex-direction: column; justify-content: center; }
.video-title { color: var(--ivory); max-width: 400px; }
.video-title em { font-style: italic; color: var(--warm); }
.video-text .body-text { color: rgba(250,248,244,.55); }

/* ── BOOKING FORM ────────────────────────────────────────── */
#booking-form { background: var(--dim); padding: 120px 0; border-top: .5px solid rgba(187,168,109,.15); }
.booking-inner { display: grid; grid-template-columns: 1fr 1.6fr; gap: 80px; align-items: start; }
.booking-form { display: flex; flex-direction: column; gap: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-row--info { align-items: end; }
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group label { font-size: 9px; letter-spacing: .2em; text-transform: uppercase; color: rgba(187,168,109,.7); }
.form-group input, .form-group select, .form-group textarea { background: rgba(255,255,255,.05); border: .5px solid rgba(187,168,109,.25); color: var(--ivory); font-family: var(--sans); font-size: 14px; font-weight: 300; padding: 14px 16px; outline: none; transition: border-color .3s; -webkit-appearance: none; border-radius: 0; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--warm); }
.form-group input::placeholder, .form-group textarea::placeholder { color: rgba(250,248,244,.25); }
.form-group select option { background: var(--dim); color: var(--ivory); }
.form-group textarea { resize: vertical; min-height: 90px; }
.form-group input[type="date"]::-webkit-calendar-picker-indicator { filter: invert(.6) sepia(1) saturate(.5) hue-rotate(5deg); cursor: pointer; }
.form-nights { display: flex; flex-direction: column; align-items: center; justify-content: center; background: rgba(218,186,116,.08); border: .5px solid rgba(218,186,116,.3); padding: 14px; min-height: 52px; }
.nights-number { font-family: var(--serif); font-size: 28px; font-weight: 300; color: var(--warm); line-height: 1; }
.nights-label { font-size: 8px; letter-spacing: .2em; text-transform: uppercase; color: rgba(218,186,116,.6); margin-top: 3px; }
.form-notice { display: flex; gap: 12px; align-items: flex-start; background: rgba(187,168,109,.07); border-left: 2px solid var(--gold); padding: 14px 16px; }
.form-notice span { color: var(--gold); font-size: 14px; flex-shrink: 0; margin-top: 1px; }
.form-notice p { font-size: 12px; font-weight: 300; line-height: 1.7; color: rgba(250,248,244,.5); }
.form-desc { font-size: 13px; font-weight: 300; line-height: 1.8; color: rgba(250,248,244,.5); max-width: 340px; }
.btn-submit { font-family: var(--sans); font-size: 11px; letter-spacing: .18em; text-transform: uppercase; color: var(--dark); background: #25D366; border: none; padding: 18px 32px; cursor: pointer; transition: all .3s; display: flex; align-items: center; justify-content: center; gap: 10px; }
.btn-submit:hover { background: #1ebe5d; transform: translateY(-1px); }

/* ── RESPONSIVE ──────────────────────────────────────────── */
@media (max-width: 900px) {
  nav { padding: 24px 28px; }
  nav.scrolled { padding: 16px 28px; }
  .nav-links { display: none; }
  .nav-right { gap: 12px; }
  .lang-switcher { display: none; }
  .section-inner { padding: 0 28px; }
  #about .section-inner, #specs .section-inner, #location .section-inner { grid-template-columns: 1fr; gap: 48px; }
  .about-image { display: grid; grid-template-columns: 1fr 1fr; gap: 3px; }
  .about-img-main { aspect-ratio: 3/4; width: 100%; }
  .about-img-offset { position: static; width: 100%; aspect-ratio: 3/4; border: none; display: block; }
  .rooms-grid { grid-template-columns: 1fr; }
  .room-card--tall { grid-row: span 1; }
  .room-card--tall img { min-height: 320px; }
  .kitchen-split { grid-template-columns: 1fr; }
  .exp-items { grid-template-columns: 1fr 1fr; }
  .exp-hero-content { padding: 48px 28px; }
  #cta { padding: 100px 0; }
  footer { flex-direction: column; gap: 12px; text-align: center; padding: 32px 28px; }
  .video-split { grid-template-columns: 1fr; }
  .video-side video { max-height: 500px; }
  .video-text { padding: 48px 28px; }
  .booking-inner { grid-template-columns: 1fr; gap: 48px; }
  .form-row { grid-template-columns: 1fr; }
  .price-value { font-size: 26px; }
  .reviews-share-inner { padding: 0 28px; flex-direction: column; gap: 16px; align-items: flex-start; }
  .review-card { padding: 32px 28px; }
  .review-text { font-size: 17px; }
  .review-modal-box { padding: 36px 28px; }
}
@media (max-width: 600px) {
  .hero-title { font-size: 42px; }
  .exp-items { grid-template-columns: 1fr; }
  .specs-grid { grid-template-columns: 1fr; }
  .nav-logo-img { height: 38px; }
  .hero-logo { width: 120px; }
  .reviews-share-btns { flex-direction: column; width: 100%; }
  .btn-google-review, .btn-site-review { justify-content: center; }
  .rating-big { font-size: 48px; }
}
