/* ============ tokens ============ */
:root {
  --sand: #f3ece0;
  --sand-2: #ebe1d0;
  --cream: #fbf8f2;
  --ink: #2c2a22;
  --muted: #736a5b;
  --line: #e0d5c2;
  --olive: #56663a;
  --olive-deep: #36411f;
  --olive-soft: #e5e8d6;
  --terracotta: #b8653f;
  --terracotta-soft: #f5e1d5;
  --gold: #b48b45;
  --free: #6f8a45;
  --taken: #c4633d;
  --wa: #1f9d55;
  --radius: 18px;
  --radius-sm: 12px;
  --shadow: 0 1px 2px rgba(60, 45, 20, .05), 0 8px 24px -8px rgba(60, 45, 20, .14);
  --shadow-lg: 0 2px 4px rgba(60, 45, 20, .06), 0 24px 48px -16px rgba(60, 45, 20, .28);
  --font-head: 'El Messiri', 'Tajawal', serif;
  --font-body: 'Tajawal', system-ui, sans-serif;
  --nav-h: 64px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--nav-h) + 8px); -webkit-text-size-adjust: 100%; }
body {
  margin: 0; background: var(--sand); color: var(--ink);
  font: 400 16px/1.7 var(--font-body);
  -webkit-font-smoothing: antialiased; overflow-x: hidden;
}
img, video, iframe { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; cursor: pointer; border: 0; background: none; padding: 0; }
button:disabled { cursor: default; }
h1, h2, h3, h4 { font-family: var(--font-head); line-height: 1.3; margin: 0; font-weight: 700; }
p { margin: 0; }
[hidden] { display: none !important; }
:focus-visible { outline: 2px solid var(--terracotta); outline-offset: 3px; border-radius: 6px; }

.ico { width: 1.25em; height: 1.25em; flex: none; }
.skip { position: absolute; inset-inline-start: 8px; top: -60px; z-index: 100; background: var(--ink); color: #fff; padding: 8px 14px; border-radius: 8px; }
.skip:focus { top: 8px; }

.container { width: min(1140px, 100% - 32px); margin-inline: auto; }
.container--narrow { width: min(820px, 100% - 32px); }

/* ============ buttons ============ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5em;
  min-height: 46px; padding: 0 22px; border-radius: 999px;
  font-weight: 700; font-size: 15px; white-space: nowrap;
  transition: transform .15s ease, background-color .2s, box-shadow .2s, border-color .2s;
}
.btn:active { transform: scale(.97); }
.btn--sm { min-height: 38px; padding: 0 16px; font-size: 14px; }
.btn--lg { min-height: 54px; padding: 0 28px; font-size: 16px; }
.btn--primary { background: var(--olive); color: #fff; box-shadow: 0 6px 18px -6px rgba(54, 65, 31, .55); }
.btn--primary:hover { background: var(--olive-deep); }
.btn--accent { background: var(--terracotta); color: #fff; }
.btn--accent:hover { background: #9e5433; }
.btn--outline { border: 1.5px solid var(--olive); color: var(--olive); }
.btn--outline:hover { background: var(--olive); color: #fff; }
.btn--ghost { border: 1.5px solid rgba(255, 255, 255, .55); color: #fff; backdrop-filter: blur(6px); background: rgba(255, 255, 255, .08); }
.btn--ghost:hover { background: rgba(255, 255, 255, .18); }
.btn--wa { background: var(--wa); color: #fff; }
.btn--wa:hover { background: #178046; }
.linkbtn { color: var(--terracotta); font-weight: 700; text-decoration: underline; }

/* ============ nav ============ */
.nav {
  position: fixed; inset: 0 0 auto; z-index: 50; height: var(--nav-h);
  transition: background-color .3s, box-shadow .3s, backdrop-filter .3s;
  color: #fff;
}
.nav--solid, .nav--open { background: rgba(251, 248, 242, .94); backdrop-filter: blur(12px); box-shadow: 0 1px 0 var(--line); color: var(--ink); }
.nav__inner { height: 100%; width: min(1180px, 100% - 32px); margin-inline: auto; display: flex; align-items: center; gap: 16px; }
.brand { display: flex; align-items: center; gap: 10px; font-family: var(--font-head); font-weight: 700; font-size: 20px; margin-inline-end: auto; }
.brand__logo { height: 40px; width: auto; }
.brand__mark { display: inline-grid; place-items: center; width: 36px; height: 36px; border-radius: 50%; background: var(--olive); color: #fff; }
.brand__mark .ico { width: 20px; height: 20px; }
.nav__links { display: none; gap: 4px; }
.nav__links a { padding: 8px 12px; border-radius: 999px; font-weight: 500; font-size: 15px; opacity: .9; transition: background-color .2s; }
.nav__links a:hover { background: rgba(127, 110, 80, .14); opacity: 1; }
.nav__cta { display: none; }
.nav__toggle { display: grid; place-items: center; width: 44px; height: 44px; border-radius: 50%; }
.nav__toggle .ico { width: 26px; height: 26px; }

@media (max-width: 899px) {
  .nav--open .nav__links {
    display: flex; flex-direction: column; position: absolute; top: var(--nav-h); inset-inline: 0;
    background: var(--cream); padding: 8px 16px 20px; box-shadow: var(--shadow-lg); gap: 2px;
  }
  .nav--open .nav__links a { padding: 14px 12px; font-size: 17px; border-bottom: 1px solid var(--line); border-radius: 0; }
}
@media (min-width: 900px) {
  .nav__links { display: flex; }
  .nav__cta { display: inline-flex; }
  .nav__toggle { display: none; }
}

/* ============ hero ============ */
.hero {
  position: relative; min-height: 100svh; display: grid; place-items: center;
  color: #fff; text-align: center; overflow: hidden; isolation: isolate;
}
.hero__bg { position: absolute; inset: 0; z-index: -2; background: center/cover no-repeat; animation: heroZoom 18s ease-out both; }
@keyframes heroZoom { from { transform: scale(1.08); } to { transform: scale(1); } }
/* Placeholder art until the owner's photo arrives: a dusk garden in CSS. */
.hero__bg--art {
  background:
    radial-gradient(ellipse 60% 40% at 50% 105%, rgba(184, 101, 63, .55), transparent 70%),
    radial-gradient(circle at 78% 22%, rgba(255, 230, 180, .35) 0 4%, transparent 4.5%),
    radial-gradient(ellipse 90% 60% at 20% 0%, #56663a 0%, transparent 60%),
    linear-gradient(180deg, #2a3218 0%, #3c4a24 45%, #6b5a3a 100%);
}
.hero__bg--art::after {
  content: ''; position: absolute; inset: auto 0 0; height: 38%;
  background:
    radial-gradient(ellipse 18% 70% at 8% 100%, #1d2410 60%, transparent 61%),
    radial-gradient(ellipse 14% 90% at 22% 100%, #232c13 60%, transparent 61%),
    radial-gradient(ellipse 20% 60% at 86% 100%, #1d2410 60%, transparent 61%),
    radial-gradient(ellipse 12% 85% at 96% 100%, #232c13 60%, transparent 61%);
}
.hero__shade { position: absolute; inset: 0; z-index: -1; background: linear-gradient(180deg, rgba(20, 22, 12, .55) 0%, rgba(20, 22, 12, .25) 40%, rgba(20, 22, 12, .65) 100%); }
.hero__content { width: min(760px, 100% - 32px); padding: calc(var(--nav-h) + 24px) 0 96px; }
.hero__eyebrow { display: inline-flex; align-items: center; gap: 6px; font-size: 15px; font-weight: 500; color: #f1dcae; background: rgba(0, 0, 0, .25); padding: 6px 14px; border-radius: 999px; backdrop-filter: blur(6px); }
.hero__title { font-size: clamp(38px, 9vw, 76px); margin: 18px 0 10px; text-shadow: 0 2px 24px rgba(0, 0, 0, .45); }
.hero__tagline { font-size: clamp(17px, 3.6vw, 22px); opacity: .92; max-width: 34ch; margin-inline: auto; text-shadow: 0 1px 12px rgba(0, 0, 0, .5); }
.hero__actions { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; margin-top: 32px; }
.hero__actions .btn { flex: 1 1 200px; max-width: 260px; }
.hero__scroll { position: absolute; bottom: 24px; inset-inline-start: 50%; translate: 50% 0; width: 26px; height: 42px; border: 2px solid rgba(255, 255, 255, .6); border-radius: 14px; }
.hero__scroll span { position: absolute; top: 8px; left: 50%; width: 4px; height: 8px; margin-left: -2px; border-radius: 2px; background: #fff; animation: scrollDot 1.8s infinite; }
@keyframes scrollDot { 0% { opacity: 0; transform: translateY(0); } 40% { opacity: 1; } 80% { opacity: 0; transform: translateY(12px); } 100% { opacity: 0; } }

/* ============ offer ============ */
.offer { background: var(--olive-deep); color: #fff; }
.offer__card {
  width: min(1140px, 100% - 32px); margin-inline: auto; padding: 28px 0 22px;
  display: grid; grid-template-columns: auto 1fr; gap: 16px 18px; align-items: center;
}
.offer__badge { display: grid; place-items: center; width: 84px; height: 84px; border-radius: 50%; background: var(--terracotta); line-height: 1; box-shadow: 0 0 0 6px rgba(184, 101, 63, .25); }
.offer__badge strong { font-size: 26px; font-weight: 800; }
.offer__badge span { font-size: 13px; margin-top: -14px; }
.offer__text h2 { font-size: 22px; }
.offer__text p { opacity: .85; font-size: 15px; margin-top: 4px; }
.offer__card .btn { grid-column: 1 / -1; }
@media (min-width: 700px) {
  .offer__card { grid-template-columns: auto 1fr auto; }
  .offer__card .btn { grid-column: auto; }
}
.marquee { overflow: hidden; border-top: 1px solid rgba(255, 255, 255, .12); padding: 10px 0; font-size: 14px; }
.marquee__track { display: flex; width: max-content; animation: marquee 40s linear infinite; }
.marquee__track span { padding-inline: 18px; white-space: nowrap; opacity: .9; }
.marquee__track i { color: var(--gold); font-style: normal; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(50%); } }

/* ============ sections ============ */
.section { padding: 72px 0; }
.section--tint { background: var(--sand-2); }
.section__head { text-align: center; margin-bottom: 36px; }
.section__kicker { display: inline-block; color: var(--terracotta); font-weight: 700; font-size: 14px; letter-spacing: .02em; margin-bottom: 6px; }
.section__head h2 { font-size: clamp(28px, 6vw, 40px); }
.section__head h2::after { content: ''; display: block; width: 56px; height: 3px; border-radius: 2px; margin: 14px auto 0; background: linear-gradient(90deg, var(--gold), var(--terracotta)); }
.section__lead { color: var(--muted); margin-top: 12px; }
.subhead { font-size: 22px; margin: 48px 0 18px; text-align: center; }
@media (min-width: 900px) { .section { padding: 104px 0; } .section__head { margin-bottom: 52px; } }

/* ============ amenities ============ */
.facts { list-style: none; padding: 0; margin: 0 0 28px; display: grid; gap: 10px; }
.facts li { display: flex; align-items: center; gap: 12px; background: var(--cream); border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 14px 16px; font-weight: 500; }
.facts .ico { color: var(--olive); width: 24px; height: 24px; }
@media (min-width: 700px) { .facts { grid-template-columns: repeat(3, 1fr); } }
.amenities { display: grid; gap: 14px; grid-template-columns: 1fr; }
@media (min-width: 560px) { .amenities { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 960px) { .amenities { grid-template-columns: repeat(3, 1fr); gap: 20px; } }
.amenity { background: var(--cream); border-radius: var(--radius); padding: 24px; box-shadow: var(--shadow); transition: transform .25s, box-shadow .25s; }
.amenity:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.amenity__icon { display: grid; place-items: center; width: 52px; height: 52px; border-radius: 14px; background: var(--olive-soft); color: var(--olive); margin-bottom: 14px; }
.amenity__icon .ico { width: 28px; height: 28px; }
.amenity h3 { font-size: 20px; margin-bottom: 6px; }
.amenity p { color: var(--muted); font-size: 15px; }
/* Phones: icon beside the text keeps six cards from becoming a long scroll. */
@media (max-width: 559px) {
  .amenity { display: grid; grid-template-columns: auto 1fr; column-gap: 14px; padding: 18px 16px; }
  .amenity__icon { grid-row: span 2; margin: 0; width: 48px; height: 48px; }
  .amenity h3 { font-size: 18px; margin-bottom: 2px; }
  .amenity p { font-size: 14.5px; }
}

/* ============ gallery ============ */
.slider { position: relative; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-lg); background: var(--olive-deep); }
.slider__stage { position: relative; aspect-ratio: 4 / 3; cursor: zoom-in; }
@media (min-width: 700px) { .slider__stage { aspect-ratio: 16 / 9; } }
.slide { position: absolute; inset: 0; margin: 0; opacity: 0; transition: opacity .5s ease; }
.slide.is-active { opacity: 1; }
.slide img { width: 100%; height: 100%; object-fit: cover; }
.slider__btn { position: absolute; top: 50%; translate: 0 -50%; width: 44px; height: 44px; border-radius: 50%; display: grid; place-items: center; background: rgba(251, 248, 242, .88); color: var(--ink); box-shadow: var(--shadow); }
.slider__btn--prev { right: 12px; }
.slider__btn--next { left: 12px; }
.slider__meta { position: absolute; inset: auto 0 0; display: flex; justify-content: space-between; align-items: end; gap: 12px; padding: 36px 18px 14px; color: #fff; background: linear-gradient(transparent, rgba(0, 0, 0, .55)); pointer-events: none; font-weight: 500; }
.slider__count { font-size: 14px; background: rgba(0, 0, 0, .35); padding: 2px 10px; border-radius: 999px; direction: ltr; }
.thumbs { display: flex; gap: 8px; overflow-x: auto; padding: 12px 2px 4px; scrollbar-width: none; }
.thumbs::-webkit-scrollbar { display: none; }
.thumb { flex: none; width: 76px; height: 56px; border-radius: 10px; overflow: hidden; background: var(--cream); border: 2px solid transparent; display: grid; place-items: center; color: var(--muted); opacity: .6; transition: opacity .2s, border-color .2s; }
.thumb.is-active { opacity: 1; border-color: var(--terracotta); }
.thumb img { width: 100%; height: 100%; object-fit: cover; }

/* placeholder until the owner's photos arrive */
.ph {
  width: 100%; height: 100%; display: grid; place-content: center; justify-items: center; gap: 6px; text-align: center;
  color: rgba(255, 255, 255, .92);
  background:
    repeating-linear-gradient(135deg, rgba(255, 255, 255, .04) 0 14px, transparent 14px 28px),
    radial-gradient(circle at 30% 20%, #6b7b47, transparent 60%),
    linear-gradient(160deg, #56663a, #36411f);
}
.ph .ico { width: 44px; height: 44px; opacity: .7; }
.ph span { font-family: var(--font-head); font-size: 20px; font-weight: 600; }
.ph small { opacity: .7; font-size: 13px; }
.ph--video { background: repeating-linear-gradient(135deg, rgba(255, 255, 255, .04) 0 14px, transparent 14px 28px), linear-gradient(160deg, #8a5a3e, #5a3a26); }

/* Phones: a swipeable row instead of three full-width cards stacked. */
.videos { display: grid; gap: 12px; grid-auto-flow: column; grid-auto-columns: 78%; overflow-x: auto; scroll-snap-type: x mandatory; padding-bottom: 6px; scrollbar-width: none; }
.videos::-webkit-scrollbar { display: none; }
.videos > * { scroll-snap-align: start; }
@media (min-width: 640px) { .videos { grid-auto-flow: row; grid-template-columns: repeat(3, 1fr); overflow: visible; } }
.video { position: relative; aspect-ratio: 16 / 10; border-radius: var(--radius); overflow: hidden; background: var(--olive-deep); box-shadow: var(--shadow); text-align: start; }
.video img, .video__art { width: 100%; height: 100%; object-fit: cover; }
.video__play { position: absolute; top: 50%; left: 50%; translate: -50% -50%; width: 60px; height: 60px; border-radius: 50%; background: rgba(251, 248, 242, .92); color: var(--terracotta); display: grid; place-items: center; transition: transform .2s; }
.video:hover .video__play { transform: scale(1.08); }
.video__title { position: absolute; inset: auto 0 0; padding: 28px 14px 12px; color: #fff; font-weight: 700; background: linear-gradient(transparent, rgba(0, 0, 0, .6)); }
.video--empty .video__title { display: none; }

/* ============ lightbox ============ */
.lightbox { position: fixed; inset: 0; z-index: 90; background: rgba(15, 14, 10, .92); display: grid; place-items: center; padding: 16px; }
.lightbox__media { width: min(1100px, 100%); max-height: 88svh; display: grid; place-items: center; }
.lightbox__media img { max-height: 88svh; border-radius: 12px; }
.lightbox--video .lightbox__media > * { width: 100%; aspect-ratio: 16 / 9; max-height: 88svh; border: 0; border-radius: 12px; background: #000; }
.lightbox__close { position: absolute; top: 14px; left: 14px; width: 46px; height: 46px; border-radius: 50%; display: grid; place-items: center; background: rgba(255, 255, 255, .12); color: #fff; }

/* ============ prices ============ */
.tabs { display: grid; grid-template-columns: repeat(3, 1fr); gap: 6px; background: var(--cream); padding: 6px; border-radius: 18px; box-shadow: var(--shadow); max-width: 720px; margin: 0 auto 28px; }
.tab { padding: 10px 6px; border-radius: 13px; text-align: center; line-height: 1.35; transition: background-color .2s, color .2s; }
.tab strong { display: block; font-size: 15px; }
.tab small { color: var(--muted); font-size: 12px; }
.tab[aria-selected="true"] { background: var(--olive); color: #fff; }
.tab[aria-selected="true"] small { color: rgba(255, 255, 255, .8); }
.plans { display: grid; gap: 16px; }
@media (min-width: 860px) { .plans { grid-template-columns: repeat(3, 1fr); align-items: center; } }
.plan { position: relative; background: var(--cream); border-radius: var(--radius); padding: 28px 24px; text-align: center; box-shadow: var(--shadow); display: flex; flex-direction: column; align-items: center; gap: 6px; }
.plan--featured { background: var(--olive-deep); color: #fff; box-shadow: var(--shadow-lg); }
@media (min-width: 860px) { .plan--featured { padding-block: 40px; } }
.plan__badge { position: absolute; top: -12px; background: var(--terracotta); color: #fff; font-size: 13px; font-weight: 700; padding: 3px 14px; border-radius: 999px; }
.plan__icon { width: 54px; height: 54px; border-radius: 50%; display: grid; place-items: center; background: var(--olive-soft); color: var(--olive); margin-bottom: 4px; }
.plan--featured .plan__icon { background: rgba(255, 255, 255, .12); color: #f1dcae; }
.plan__icon .ico { width: 28px; height: 28px; }
.plan h3 { font-size: 22px; }
.plan__time { color: var(--muted); font-size: 14px; }
.plan--featured .plan__time { color: rgba(255, 255, 255, .75); }
.price { display: flex; flex-direction: column; align-items: center; margin: 12px 0 16px; }
.price__old { color: var(--muted); text-decoration: line-through; font-size: 15px; }
.plan--featured .price__old { color: rgba(255, 255, 255, .6); }
.price__now { font-size: 30px; font-weight: 800; color: var(--olive-deep); letter-spacing: -.01em; }
.plan--featured .price__now { color: #fff; }
.price__tag { font-size: 12px; font-weight: 700; color: var(--terracotta); background: var(--terracotta-soft); padding: 1px 10px; border-radius: 999px; margin-top: 4px; }
.plan .btn { width: 100%; }
.plan--featured .btn--primary { background: var(--terracotta); box-shadow: none; }
.plan--featured .btn--primary:hover { background: #9e5433; }
.notes { margin: 32px auto 0; max-width: 720px; background: var(--cream); border-radius: var(--radius); padding: 22px 22px 16px; border: 1px dashed var(--line); }
.notes h3 { font-size: 18px; margin-bottom: 10px; }
.notes ul { list-style: none; margin: 0; padding: 0; }
.notes li { display: flex; gap: 10px; padding: 7px 0; font-size: 15px; border-bottom: 1px solid var(--sand-2); }
.notes li:last-child { border-bottom: 0; }
.notes li .ico { color: var(--olive); margin-top: 3px; }
.notes li.is-offer { color: var(--terracotta); font-weight: 700; }
.notes li.is-offer .ico { color: var(--terracotta); }

/* ============ booking calendar ============ */
.cal { background: var(--cream); border-radius: var(--radius); padding: 14px 12px 16px; box-shadow: var(--shadow); }
@media (min-width: 560px) { .cal { padding: 22px 20px 20px; } }
.cal.is-loading .cal__grid, .cal.is-loading .cal__list { opacity: .4; pointer-events: none; }
.cal__head { display: flex; align-items: center; justify-content: space-between; margin: 14px 0 12px; }
.cal__title { font-size: 21px; }
.cal__nav { width: 42px; height: 42px; border-radius: 50%; display: grid; place-items: center; background: var(--sand); transition: background-color .2s; }
.cal__nav:hover:not(:disabled) { background: var(--olive-soft); }
.cal__nav:disabled { opacity: .3; }
.cal__grid, .cal__list { transition: opacity .2s; }

/* guest count — applies to every price in the calendar */
.guests { background: var(--sand); border-radius: 14px; padding: 10px 12px; }
.guests__field { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.guests__label { font-weight: 700; font-size: 15px; }
.guests select {
  min-width: 150px; height: 44px; border: 1.5px solid var(--line); border-radius: 10px; background: #fff;
  font: 700 15px var(--font-body); color: var(--ink); padding: 0 12px; cursor: pointer;
}
.guests select:focus { border-color: var(--olive); outline: none; }
.guests__note { font-size: 13px; color: var(--muted); margin-top: 6px; }
.guests__note.is-extra { color: var(--terracotta); font-weight: 700; }

/* shift buttons, shared by both layouts */
.chip {
  display: flex; align-items: center; justify-content: space-between; gap: 6px;
  padding: 5px 8px; border-radius: 8px; font-size: 12.5px; line-height: 1.3; border: 1px solid transparent;
}
.chip b { font-weight: 700; }
.chip small { font-size: 11.5px; font-weight: 700; white-space: nowrap; }
.chip--free { background: #e8efd9; border-color: #c5d4a4; color: var(--olive-deep); transition: background-color .15s, color .15s, transform .1s; }
.chip--free:hover { background: var(--free); border-color: var(--free); color: #fff; }
.chip--free:active { transform: scale(.96); }
.chip--taken { background: #f6e0d5; color: #a34f2d; }
.chip--taken b { text-decoration: line-through; text-decoration-color: rgba(163, 79, 45, .45); }
.chip--closed { justify-content: center; background: var(--sand-2); color: var(--muted); font-weight: 700; }

.day__num { font-weight: 800; font-size: 16px; line-height: 1; }
.day__tag { font-style: normal; font-size: 11px; font-weight: 700; color: #8a6a2c; background: #f3e6c8; padding: 1px 7px; border-radius: 999px; }
.day__tag--today { color: #fff; background: var(--gold); }

/* phones & tablets: one row per remaining day */
.cal__desktop { display: none; }
.cal__list { display: grid; gap: 8px; }
.day--row { display: grid; grid-template-columns: 58px minmax(0, 1fr); gap: 10px; align-items: center; background: var(--sand); border-radius: 14px; padding: 8px; border: 1.5px solid transparent; }
.day--row.day--today { border-color: var(--gold); }
.day__date { display: flex; flex-direction: column; align-items: center; gap: 3px; text-align: center; }
.day--row .day__num { font-size: 22px; }
.day__dow { font-size: 12px; color: var(--muted); font-weight: 700; }
.day--row.day--holiday .day__num { color: #8a6a2c; }
.day--row .day__chips { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 6px; }
.day--row .chip { flex-direction: column; justify-content: center; gap: 1px; min-height: 52px; padding: 6px 4px; text-align: center; border-radius: 10px; }
.day--row .chip b { font-size: 13.5px; }
.day--row .chip--closed { grid-column: 1 / -1; min-height: 52px; }

/* desktop: month grid with the three shifts inside each day */
@media (min-width: 900px) {
  .cal__list { display: none; }
  .cal__desktop { display: block; }
  .cal__weekdays, .cal__grid { display: grid; grid-template-columns: repeat(7, minmax(0, 1fr)); gap: 6px; }
  .cal__weekdays { margin-bottom: 6px; }
  .cal__weekdays span { text-align: center; font-size: 13px; font-weight: 700; color: var(--muted); }
  .day { background: var(--sand); border-radius: 12px; padding: 8px; min-height: 118px; border: 1.5px solid transparent; display: flex; flex-direction: column; gap: 6px; }
  .day--blank { background: none; }
  .day--past { opacity: .4; }
  .day--today { border-color: var(--gold); }
  .day--holiday .day__num { color: #8a6a2c; }
  .day__head { display: flex; align-items: center; justify-content: space-between; min-height: 18px; }
  .day__chips { display: grid; gap: 4px; }
}

.cal__legend { display: flex; flex-wrap: wrap; gap: 8px 16px; justify-content: center; align-items: center; margin-top: 16px; font-size: 13px; color: var(--muted); }
.cal__legend > span { display: inline-flex; align-items: center; gap: 6px; }
.chipkey { width: 14px; height: 14px; border-radius: 4px; display: inline-block; }
.chipkey--free { background: #e8efd9; border: 1px solid #c5d4a4; }
.chipkey--taken { background: #f6e0d5; }
.chipkey--holiday { background: #f3e6c8; }
.cal__hint { text-align: center; color: var(--muted); font-size: 13px; margin-top: 8px; }
.cal__status { text-align: center; color: var(--terracotta); font-size: 14px; margin-top: 8px; }
.cal__status:empty { display: none; }

/* ============ policies ============ */
.accordion { display: grid; gap: 12px; }
.acc { background: var(--cream); border-radius: var(--radius); box-shadow: var(--shadow); overflow: hidden; }
.acc summary { list-style: none; display: flex; align-items: center; gap: 12px; padding: 18px; cursor: pointer; font-weight: 700; font-size: 17px; }
.acc summary::-webkit-details-marker { display: none; }
.acc__icon { width: 42px; height: 42px; border-radius: 12px; display: grid; place-items: center; background: var(--olive-soft); color: var(--olive); flex: none; }
.acc__title { flex: 1; font-family: var(--font-head); }
.acc__chev { color: var(--muted); transition: transform .25s; }
.acc[open] .acc__chev { transform: rotate(-90deg); }
.acc__body { padding: 0 18px 20px; }
.acc__body h4 { font-size: 16px; color: var(--olive); margin: 14px 0 6px; }
.acc__body h4:first-child { margin-top: 0; }
.acc__body ul { margin: 0; padding-inline-start: 22px; color: #4a4539; font-size: 15px; }
.acc__body li { margin-bottom: 6px; }
.acc__body li::marker { color: var(--terracotta); }
.quick { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; margin-top: 24px; }
@media (min-width: 700px) { .quick { grid-template-columns: repeat(4, 1fr); } }
.quick__item { background: var(--olive-deep); color: #fff; border-radius: var(--radius-sm); padding: 16px 12px; text-align: center; display: flex; flex-direction: column; align-items: center; gap: 4px; }
.quick__item .ico { color: #f1dcae; width: 26px; height: 26px; }
.quick__item small { opacity: .75; font-size: 12.5px; }
.quick__item strong { font-size: 18px; }

/* ============ reviews ============ */
.reviews { display: grid; gap: 14px; }
@media (min-width: 860px) { .reviews { grid-template-columns: repeat(3, 1fr); gap: 20px; } }
.review { margin: 0; background: var(--cream); border-radius: var(--radius); padding: 24px; box-shadow: var(--shadow); display: flex; flex-direction: column; gap: 12px; }
.review__stars { color: var(--gold); display: flex; gap: 2px; }
.review__stars .ico { fill: currentColor; width: 18px; height: 18px; }
.review blockquote { margin: 0; font-size: 16px; flex: 1; }
.review figcaption { color: var(--muted); font-weight: 700; font-size: 14px; }

/* ============ contact / footer ============ */
.contact { background: var(--olive-deep); color: #fff; padding: 64px 0; }
.contact__inner { display: grid; gap: 22px; text-align: center; }
.contact h2 { font-size: clamp(26px, 5vw, 34px); }
.contact p { opacity: .8; margin-top: 6px; }
.contact__actions { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }
.contact__actions .btn { flex: 1 1 220px; max-width: 280px; }
@media (min-width: 900px) { .contact__inner { grid-template-columns: 1fr auto; text-align: start; align-items: center; } .contact__actions { justify-content: flex-end; } }
.map { margin-top: 32px; }
.map iframe { width: 100%; height: 320px; border: 0; border-radius: var(--radius); }
.footer { background: #262d15; color: rgba(255, 255, 255, .7); font-size: 14px; padding: 20px 0 calc(20px + env(safe-area-inset-bottom)); }
.footer__inner { display: flex; flex-wrap: wrap; gap: 8px; justify-content: space-between; align-items: center; }
.footer .brand__mark { width: 26px; height: 26px; vertical-align: middle; }
.footer .brand__mark .ico { width: 15px; height: 15px; }

.wa-float {
  position: fixed; z-index: 60; bottom: calc(18px + env(safe-area-inset-bottom)); left: 18px;
  width: 58px; height: 58px; border-radius: 50%; display: grid; place-items: center;
  background: var(--wa); color: #fff; box-shadow: 0 10px 24px -6px rgba(31, 157, 85, .6);
  transition: transform .2s;
}
.wa-float:hover { transform: scale(1.07); }
.wa-float--away { opacity: 0; transform: scale(.6); pointer-events: none; }
.wa-float { transition: transform .2s, opacity .2s; }
.wa-float .ico { width: 30px; height: 30px; }

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