/* ==========================================================================
   Jaiswal Guest House — shared styles
   Design tokens live in :root. Edit colours/spacing here once.
   ========================================================================== */

:root {
  /* ------------------------------------------------------------------ *
   * "Himalayan Blue" palette                                           *
   * Same structure as before, retuned to a calm, trustworthy blue.     *
   * Cool misty neutrals + deep ocean blue + warm marigold accent.      *
   * Blue reads clean/calm/professional (ideal for medical stays); the  *
   * marigold accent keeps CTAs warm and eye-catching.                  *
   * 60 (neutral) / 30 (blue) / 10 (amber). All text meets WCAG AA.     *
   * Variable names are unchanged, so the whole site re-themes here.    *
   * ------------------------------------------------------------------ */
  --cream: #eef3f8;       /* page background: cool misty off-white */
  --cream-2: #e1eaf3;     /* alternating sections / chips */
  --surface: #fbfdff;     /* card surfaces */
  --clay: #14568f;        /* PRIMARY: deep ocean blue (buttons, links, icons) */
  --clay-dark: #0f4674;   /* hover / deeper blue */
  --brown: #102f52;       /* headings & body: deep navy ink */
  --brown-soft: #44607a;  /* secondary text */
  --muted: #58697c;       /* meta / captions */
  --line: #d3e0ee;        /* hairline borders */
  --accent: #e0982a;      /* marigold amber: warmth + CTA salience */
  --accent-soft: #faead0; /* pale amber surface (badges) */
  --accent-ink: #6a4310;  /* readable text on amber */
  --teal-soft: #dce9f6;   /* soft blue surface for icon chips */
  --shadow: 0 10px 30px rgba(16, 47, 82, 0.10);
  --shadow-sm: 0 4px 14px rgba(16, 47, 82, 0.08);
  --radius: 18px;
  --radius-sm: 12px;
  --maxw: 1200px;
  --font-serif: "Playfair Display", Georgia, "Times New Roman", serif;
  --font-sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 88px; }

body {
  margin: 0;
  font-family: var(--font-sans);
  color: var(--brown);
  background: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 { font-family: var(--font-serif); color: var(--brown); line-height: 1.15; margin: 0 0 .4em; }
h1 { font-size: clamp(2.1rem, 5vw, 3.6rem); }
h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.5rem); }
p { margin: 0 0 1rem; }
a { color: var(--clay); }
img { max-width: 100%; display: block; }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 20px; }

.section { padding: clamp(48px, 8vw, 96px) 0; }
.section--alt { background: var(--cream-2); }

.eyebrow {
  text-transform: uppercase;
  letter-spacing: .22em;
  font-size: .78rem;
  font-weight: 700;
  color: var(--clay);
  margin: 0 0 .6rem;
}
.section-head { max-width: 720px; margin-bottom: 2.5rem; }
.section-head--center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head .rule { width: 72px; height: 3px; background: var(--clay); border-radius: 3px; margin-top: 1rem; }
.section-head--center .rule { margin-left: auto; margin-right: auto; }

/* Buttons -------------------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; gap: .5rem;
  font-family: var(--font-sans); font-weight: 600; font-size: 1rem;
  padding: .8rem 1.5rem; border-radius: 999px; border: 2px solid transparent;
  cursor: pointer; text-decoration: none; transition: transform .15s ease, background .2s ease, color .2s ease, box-shadow .2s ease;
}
.btn:active { transform: translateY(1px); }
.btn--primary { background: var(--clay); color: #fff; }
.btn--primary:hover { background: var(--clay-dark); box-shadow: var(--shadow-sm); }
.btn--dark { background: var(--brown); color: #fff; }
.btn--dark:hover { background: #0a2338; box-shadow: var(--shadow-sm); }
.btn--ghost { background: var(--surface); color: var(--clay); border-color: var(--clay); }
.btn--ghost:hover { background: var(--clay); color: #fff; border-color: var(--clay); }
.btn--block { width: 100%; justify-content: center; }

/* Header / nav --------------------------------------------------------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(238, 243, 248, 0.92);
  backdrop-filter: saturate(140%) blur(8px);
  border-bottom: 1px solid var(--line);
}
.nav { display: flex; align-items: center; justify-content: space-between; gap: 1rem; min-height: 72px; }
.brand { display: flex; align-items: center; gap: .6rem; text-decoration: none; color: var(--brown); font-weight: 700; }
.brand img { height: 42px; width: auto; }
.brand strong { font-family: var(--font-serif); font-size: 1.2rem; }
.brand span { display: block; font-size: .72rem; color: var(--muted); font-weight: 500; letter-spacing: .04em; }
.nav-links { display: flex; align-items: center; gap: 1.4rem; list-style: none; margin: 0; padding: 0; }
.nav-links a { text-decoration: none; color: var(--brown-soft); font-weight: 500; font-size: .95rem; }
.nav-links a:hover { color: var(--clay); }
/* The Book Now inside the link list is for the mobile dropdown only; the
   desktop CTA lives in .nav-actions. Hide the duplicate on desktop. */
.nav-links .btn { display: none; }
/* .nav-links a sets a dark link colour; restore the button's white text so the
   mobile-menu "Book Now" stays legible on its teal fill. */
.nav-links a.btn--primary { color: #fff; }
.brand strong { white-space: nowrap; }
.nav-actions { display: flex; align-items: center; gap: .8rem; }
.nav-toggle { display: none; background: none; border: 0; cursor: pointer; padding: 8px; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--brown); margin: 5px 0; transition: .25s; }

/* Hero ----------------------------------------------------------------- */
.hero { position: relative; overflow: hidden; }
.hero__media { position: absolute; inset: 0; }
.hero__media img { width: 100%; height: 100%; object-fit: cover; opacity: 0.15; }
.hero__overlay { position: absolute; inset: 0; background: transparent; }
.hero__inner { position: relative; padding: clamp(56px, 10vw, 120px) 0; max-width: 640px; }
.hero__inner h1 { margin-bottom: .5rem; }
.hero__lede { font-size: clamp(1.05rem, 2vw, 1.25rem); color: var(--brown-soft); }
.rating { display: inline-flex; align-items: center; gap: .6rem; background: var(--surface); border: 1px solid var(--line); padding: .5rem .9rem; border-radius: 999px; box-shadow: var(--shadow-sm); margin: .4rem 0 1.4rem; font-weight: 600; }
.stars { color: var(--accent); letter-spacing: 1px; }
.rating small { color: var(--muted); font-weight: 500; }
.hero__cta { display: flex; flex-wrap: wrap; gap: .8rem; margin-bottom: 1.8rem; }
.hero__features { display: flex; flex-wrap: wrap; gap: .6rem; list-style: none; margin: 0; padding: 0; }
.hero__features li { display: inline-flex; align-items: center; gap: .45rem; background: var(--surface); border: 1px solid var(--line); border-radius: 999px; padding: .45rem .9rem; font-size: .9rem; font-weight: 500; color: var(--brown-soft); }
.hero__features svg { width: 18px; height: 18px; color: var(--clay); }

/* Generic cards -------------------------------------------------------- */
.card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow-sm); }

/* Rooms ---------------------------------------------------------------- */
.rooms-overview { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
.room-cat {
  text-align: left; padding: 0; overflow: hidden; cursor: pointer; border: 1px solid var(--line);
  background: var(--surface); border-radius: var(--radius); box-shadow: var(--shadow-sm);
  transition: transform .18s ease, box-shadow .18s ease; font: inherit; color: inherit; width: 100%;
}
.room-cat:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.room-cat__media { position: relative; aspect-ratio: 4 / 3; background: var(--cream-2); }
.room-cat__media img { width: 100%; height: 100%; object-fit: cover; }
.room-cat__badge { position: absolute; top: 12px; left: 12px; background: var(--clay); color: #fff; font-size: .78rem; font-weight: 700; padding: .3rem .7rem; border-radius: 999px; }
.room-cat__body { padding: 1.2rem 1.3rem 1.4rem; }
.room-cat__body h3 { margin-bottom: .2rem; }
.room-cat__price { font-weight: 700; color: var(--clay); }
.room-cat__more { display: inline-flex; align-items: center; gap: .4rem; margin-top: .8rem; font-weight: 600; color: var(--brown); }
.room-cat__more svg { width: 16px; height: 16px; }

/* Fallback: with no JS every room detail stays visible. The .js class is set
   by an inline head script, so only JS-enabled browsers collapse to overview. */
.js .room-detail { display: none; }
.js .room-detail.is-active { display: block; }
.room-detail__head { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 1rem; margin-bottom: 1.4rem; }
.variant-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }

.variant { overflow: hidden; display: flex; flex-direction: column; }
.gallery { position: relative; aspect-ratio: 4 / 3; background: var(--cream-2); overflow: hidden; }
.gallery__track { display: flex; height: 100%; transition: transform .45s ease; will-change: transform; touch-action: pan-y; }
.gallery__track img { min-width: 100%; width: 100%; height: 100%; object-fit: cover; cursor: zoom-in; user-select: none; -webkit-user-drag: none; }
.gallery__btn { position: absolute; top: 50%; transform: translateY(-50%); width: 38px; height: 38px; border-radius: 50%; border: 0; background: rgba(251,253,255,.92); color: var(--brown); cursor: pointer; display: grid; place-items: center; box-shadow: var(--shadow-sm); z-index: 2; }
.gallery__btn:hover { background: #fff; }
.gallery__btn--prev { left: 10px; } .gallery__btn--next { right: 10px; }
.gallery__zoom { position: absolute; top: 10px; right: 10px; width: 36px; height: 36px; border-radius: 50%; border: 0; background: rgba(251,253,255,.92); color: var(--brown); cursor: zoom-in; display: grid; place-items: center; box-shadow: var(--shadow-sm); z-index: 2; }
.gallery__zoom:hover { background: #fff; }
.gallery__zoom svg { width: 18px; height: 18px; }
.gallery__dots { position: absolute; bottom: 10px; left: 0; right: 0; display: flex; justify-content: center; gap: 6px; z-index: 2; }
.gallery__dots span { width: 7px; height: 7px; border-radius: 50%; background: rgba(251,253,255,.6); }
.gallery__dots span.is-active { background: #fff; }

/* Fullscreen photo viewer (zoom) */
.lightbox { position: fixed; inset: 0; z-index: 200; display: none; align-items: center; justify-content: center; background: rgba(10, 22, 20, .92); padding: 24px; }
.lightbox.is-open { display: flex; }
.lightbox__img { max-width: 92vw; max-height: 86vh; object-fit: contain; border-radius: 10px; box-shadow: 0 24px 70px rgba(0, 0, 0, .5); transition: transform .25s ease; cursor: zoom-in; }
.lightbox__img.is-zoomed { transform: scale(2); cursor: zoom-out; }
.lightbox__btn { position: absolute; background: rgba(255, 255, 255, .14); color: #fff; border: 0; width: 48px; height: 48px; border-radius: 50%; cursor: pointer; display: grid; place-items: center; }
.lightbox__btn:hover { background: rgba(255, 255, 255, .28); }
.lightbox__btn svg { width: 24px; height: 24px; }
.lightbox__close { top: 18px; right: 18px; }
.lightbox__prev { left: 18px; top: 50%; transform: translateY(-50%); }
.lightbox__next { right: 18px; top: 50%; transform: translateY(-50%); }
.lightbox__count { position: absolute; bottom: 18px; left: 0; right: 0; text-align: center; color: #fff; font-size: .9rem; opacity: .85; }
@media (max-width: 600px) { .lightbox__prev { left: 8px; } .lightbox__next { right: 8px; } .lightbox__btn { width: 42px; height: 42px; } }

.variant__body { padding: 1.2rem 1.3rem 1.4rem; display: flex; flex-direction: column; flex: 1; }
.variant__body h4 { font-family: var(--font-serif); font-size: 1.25rem; margin: 0 0 .6rem; }
.feature-list { list-style: none; margin: 0 0 1rem; padding: 0; display: grid; grid-template-columns: 1fr 1fr; gap: .35rem .8rem; }
.feature-list li { display: flex; align-items: center; gap: .45rem; font-size: .9rem; color: var(--brown-soft); }
.feature-list svg { width: 15px; height: 15px; color: var(--clay); flex: none; }

.price-row { display: flex; align-items: baseline; gap: .6rem; margin: .2rem 0 .3rem; }
.price-now { font-size: 1.7rem; font-weight: 800; color: var(--brown); font-family: var(--font-serif); }
.price-was { text-decoration: line-through; color: var(--muted); font-weight: 600; }
.price-off { background: var(--accent-soft); color: var(--accent-ink); font-weight: 700; font-size: .78rem; padding: .2rem .5rem; border-radius: 6px; }
.price-note { font-size: .82rem; color: var(--muted); margin: 0 0 .8rem; }

.breakfast-note { display: flex; align-items: center; gap: .55rem; background: var(--cream-2); border: 1px solid var(--line); border-radius: var(--radius-sm); padding: .7rem .9rem; margin: 0 0 1rem; font-size: .9rem; font-weight: 600; color: var(--brown-soft); }
.breakfast-note svg { width: 18px; height: 18px; color: var(--clay); flex: none; }

.variant__actions { margin-top: auto; display: flex; gap: .6rem; }
.variant__actions .btn { flex: 1; }

.caution { display: flex; align-items: flex-start; gap: .6rem; margin-top: 1.2rem; background: var(--accent-soft); border: 1px solid #f0ddb6; color: var(--accent-ink); border-radius: var(--radius-sm); padding: .8rem 1rem; font-size: .9rem; font-weight: 500; }
.caution svg { width: 20px; height: 20px; flex: none; margin-top: 1px; }

/* Services ------------------------------------------------------------- */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.service { position: relative; overflow: hidden; padding: 1.6rem 1.5rem; display: flex; flex-direction: column; }
/* Faint photo backdrop on each service card; the text stays fully on top. */
.service__bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0.20; z-index: 0; pointer-events: none; }
.service > :not(.service__bg) { position: relative; z-index: 1; }
.service__icon { width: 52px; height: 52px; border-radius: 14px; background: var(--teal-soft); color: var(--clay); display: grid; place-items: center; margin-bottom: 1rem; }
.service__icon svg { width: 26px; height: 26px; }
.service h3 { margin-bottom: .5rem; }
.service p { font-size: .93rem; color: var(--brown-soft); }
.service ul { list-style: none; margin: .3rem 0 0; padding: 0; display: grid; gap: .4rem; }
.service ul li { display: flex; align-items: flex-start; gap: .5rem; font-size: .92rem; color: var(--brown-soft); }
.service ul li::before { content: ""; width: 7px; height: 7px; margin-top: .5rem; border-radius: 50%; background: var(--clay); flex: none; }
.service .muted-tag { color: var(--muted); font-style: italic; }
/* Darker body/list text so it stays readable over the photo backdrop. */
.service p, .service ul li { color: var(--brown); }

/* Amenities ------------------------------------------------------------ */
.amenities-grid { display: flex; flex-wrap: wrap; justify-content: center; gap: 1rem; }
.amenity { flex: 0 1 calc(25% - 0.85rem); display: flex; align-items: center; gap: .8rem; padding: 1rem 1.1rem; }
.amenity svg { width: 24px; height: 24px; color: var(--clay); flex: none; }
.amenity span { font-weight: 500; font-size: .95rem; }
.not-provided { margin-top: 1.6rem; background: var(--surface); border: 1px dashed var(--line); border-radius: var(--radius); padding: 1.1rem 1.3rem; }
.not-provided h3 { font-size: 1.05rem; margin-bottom: .5rem; }
.not-provided ul { display: flex; flex-wrap: wrap; gap: .6rem; list-style: none; margin: 0; padding: 0; }
.not-provided li { background: var(--cream-2); border: 1px solid var(--line); border-radius: 999px; padding: .35rem .8rem; font-size: .88rem; color: var(--muted); }

/* Policies ------------------------------------------------------------- */
.policy-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.2rem; }
.policy { padding: 1.4rem 1.4rem 1.5rem; }
.policy svg { width: 26px; height: 26px; color: var(--clay); margin-bottom: 1rem; }
.policy .p-label { text-transform: uppercase; letter-spacing: .12em; font-size: .74rem; font-weight: 700; color: var(--muted); margin-bottom: .3rem; }
.policy .p-value { font-size: 1.05rem; font-weight: 600; color: var(--brown); }

/* Reviews -------------------------------------------------------------- */
.reviews-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
.review { padding: 2rem 2rem 1.6rem; }
.review__quote { font-family: var(--font-serif); font-style: italic; font-size: 1.2rem; color: var(--brown); margin-bottom: 1.4rem; }
.review__author { display: flex; align-items: center; gap: .9rem; }
.review__avatar { width: 46px; height: 46px; border-radius: 50%; background: var(--teal-soft); display: grid; place-items: center; font-weight: 700; color: var(--clay); }
.review__name { font-weight: 700; }
.review__meta { font-size: .8rem; color: var(--muted); text-transform: uppercase; letter-spacing: .08em; }

/* Contact -------------------------------------------------------------- */
.contact-card { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; padding: 2rem; align-items: center; }
.contact-list { list-style: none; margin: 1.4rem 0 1.6rem; padding: 0; display: grid; gap: 1.2rem; }
.contact-list li { display: flex; gap: .9rem; }
/* Let the long email/text wrap instead of pushing the page off-screen on mobile */
.contact-list li > span { min-width: 0; overflow-wrap: anywhere; }
.contact-list svg { width: 22px; height: 22px; color: var(--clay); flex: none; margin-top: 3px; }
.contact-list .c-label { font-weight: 700; }
.contact-list a { color: var(--brown); text-decoration: none; }
.contact-list a:hover { color: var(--clay); }
.map-embed { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); box-shadow: var(--shadow-sm); aspect-ratio: 4 / 3; }
.map-embed iframe { width: 100%; height: 100%; border: 0; display: block; }

/* Footer --------------------------------------------------------------- */
.site-footer { background: var(--brown); color: #cdddef; padding: 3rem 0 2rem; }
.site-footer a { color: #cdddef; text-decoration: none; }
.site-footer a:hover { color: #fff; }
.footer-grid { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 2rem; }
.footer-brand strong { font-family: var(--font-serif); font-size: 1.3rem; display: block; }
.footer-links { display: flex; gap: 1.4rem; flex-wrap: wrap; list-style: none; margin: 0; padding: 0; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.12); margin-top: 2rem; padding-top: 1.2rem; font-size: .85rem; color: #8fa6bd; }

/* Booking page --------------------------------------------------------- */
.page-top { padding: 1.2rem 0; border-bottom: 1px solid var(--line); background: var(--surface); }
.back-link { display: inline-flex; align-items: center; gap: .45rem; text-decoration: none; color: var(--brown); font-weight: 600; }
.back-link svg { width: 18px; height: 18px; }
.booking-hero { text-align: center; max-width: 720px; margin: 0 auto; }
.otas { display: flex; flex-wrap: wrap; justify-content: center; gap: 1.2rem; max-width: 720px; margin: 2rem auto 0; }
.ota__logo { font-size: 1rem; letter-spacing: -.01em; }
.ota { flex: 0 1 calc(33.333% - 0.9rem); display: flex; align-items: center; gap: 1rem; padding: 1.2rem 1.4rem; text-decoration: none; color: var(--brown); transition: transform .15s ease, box-shadow .15s ease; }
.ota:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.ota__logo { width: 48px; height: 48px; border-radius: 12px; display: grid; place-items: center; font-weight: 800; color: #fff; flex: none; }
.ota strong { display: block; }
.ota small { color: var(--muted); }
.direct-banner { max-width: 720px; margin: 2.5rem auto 0; text-align: center; background: linear-gradient(135deg, var(--accent-soft), var(--cream-2)); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.6rem; }
.direct-banner strong { color: var(--clay-dark); }
.direct-offer { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: .3rem .65rem; margin: 1.1rem 0 0; font-weight: 600; font-size: 1.1rem; color: var(--brown); }
.direct-offer .off-badge { background: var(--clay); color: #fff; font-weight: 800; font-size: 1.3rem; padding: .4rem 1.05rem; border-radius: 999px; box-shadow: var(--shadow-sm); }
.direct-actions { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.2rem; max-width: 720px; margin: 1.5rem auto 0; }
.action-card { display: flex; flex-direction: column; align-items: center; text-align: center; gap: .5rem; padding: 1.8rem 1.4rem; text-decoration: none; color: var(--brown); transition: transform .15s ease, box-shadow .15s ease; }
.action-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.action-card__icon { width: 58px; height: 58px; border-radius: 16px; display: grid; place-items: center; margin-bottom: .3rem; }
.action-card__icon svg { width: 30px; height: 30px; }
.action-card .call-ic { background: var(--teal-soft); color: var(--clay); }
.action-card .wa-ic { background: #e4f4e6; color: #25843a; }
.action-card strong { font-size: 1.15rem; }
.action-card span { color: var(--muted); font-size: .92rem; }

.skip-link { position: absolute; left: -999px; top: 0; background: var(--clay); color: #fff; padding: .6rem 1rem; border-radius: 0 0 8px 0; z-index: 100; }
.skip-link:focus { left: 0; }

/* Responsive ----------------------------------------------------------- */
@media (max-width: 960px) {
  .services-grid { grid-template-columns: 1fr; }
  .amenity { flex-basis: calc(50% - 0.6rem); }
  .policy-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-card { grid-template-columns: 1fr; }
}
@media (max-width: 760px) {
  .nav-links, .nav-actions .btn { display: none; }
  .nav-toggle { display: block; }
  .site-header.nav-open .nav-links {
    display: flex; flex-direction: column; align-items: flex-start; gap: 1rem;
    position: absolute; left: 0; right: 0; top: 72px; background: var(--cream);
    border-bottom: 1px solid var(--line); padding: 1.2rem 20px 1.6rem;
  }
  .site-header.nav-open .nav-links .btn { display: inline-flex; }
  .rooms-overview, .variant-grid, .reviews-grid, .direct-actions { grid-template-columns: 1fr; }
  .ota { flex-basis: 100%; }
  .hero__overlay { background: transparent; }
}
@media (max-width: 480px) {
  .policy-grid { grid-template-columns: 1fr; }
  .amenity { flex-basis: 100%; }
  .feature-list { grid-template-columns: 1fr; }
  .variant__actions { flex-direction: column; }
}

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

/* ==========================================================================
   Enhancements: focus, active nav, location, reviews CTA, contact actions,
   floating quick-contact buttons, and defensive scroll-reveal.
   ========================================================================== */

/* Visible keyboard focus (mouse users don't see it thanks to :focus-visible) */
:focus-visible { outline: 3px solid var(--clay); outline-offset: 3px; border-radius: 6px; }

/* Active section highlight in the nav */
.nav-links a.is-current { color: var(--clay); }
.nav-links a.is-current::after { content: ""; display: block; height: 2px; background: var(--clay); border-radius: 2px; margin-top: 2px; }

/* Lock background scroll while the mobile menu is open */
body.menu-open { overflow: hidden; }

/* Location & connectivity ------------------------------------------------ */
.locality-groups { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.locality-col h3 { display: flex; align-items: center; gap: .55rem; font-size: 1.1rem; margin-bottom: 1rem; }
.locality-col h3 svg { width: 22px; height: 22px; color: var(--clay); flex: none; }
.locality-list { list-style: none; margin: 0; padding: 0; display: grid; gap: .7rem; }
.reach { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: .8rem 1rem; }
.reach .place { font-weight: 600; color: var(--brown); }
.reach .dist { font-family: var(--font-serif); font-weight: 800; color: var(--clay); white-space: nowrap; }
.reach .dist small { display: block; font-family: var(--font-sans); font-weight: 500; font-size: .72rem; color: var(--muted); text-align: right; }
.locality-note { text-align: center; color: var(--muted); font-size: .85rem; margin-top: 1.4rem; }

/* Reviews CTA & contact quick actions ------------------------------------ */
.reviews-cta { display: flex; flex-wrap: wrap; gap: .8rem; justify-content: center; margin-top: 2rem; }
.contact-actions { display: flex; flex-wrap: wrap; gap: .7rem; margin-top: .4rem; }
.btn--wa { background: #25843a; color: #fff; }
.btn--wa:hover { background: #1e6e30; box-shadow: var(--shadow-sm); }
.btn--ig { background: linear-gradient(45deg, #f58529, #dd2a7b 45%, #8134af); color: #fff; }
.btn--ig:hover { filter: brightness(1.06); box-shadow: var(--shadow-sm); }
.btn svg { width: 18px; height: 18px; }

/* Booking: selected-room notice ------------------------------------------ */
.selected-room { display: none; align-items: center; gap: .6rem; justify-content: center; max-width: 720px; margin: 1.4rem auto 0; background: var(--teal-soft); border: 1px solid var(--line); color: var(--clay-dark); border-radius: 999px; padding: .7rem 1.2rem; font-weight: 600; }
.selected-room.is-visible { display: flex; }
.selected-room svg { width: 20px; height: 20px; flex: none; }

/* Floating quick-contact buttons ----------------------------------------- */
.fab-stack { position: fixed; right: 18px; bottom: 18px; z-index: 60; display: flex; flex-direction: column; gap: .7rem; align-items: center; }
.fab { position: relative; width: 56px; height: 56px; border-radius: 50%; display: grid; place-items: center; box-shadow: 0 10px 24px rgba(16, 47, 82, .25); border: 0; cursor: pointer; text-decoration: none; color: #fff; transition: transform .15s ease, box-shadow .2s ease; }
.fab:hover { transform: translateY(-3px); box-shadow: 0 14px 30px rgba(16, 47, 82, .3); }
.fab svg { width: 26px; height: 26px; }
.fab--wa { background: #25843a; }
.fab--ig { background: linear-gradient(45deg, #f58529, #dd2a7b 45%, #8134af); }
.fab--call { background: var(--clay); }
.fab--top { background: var(--brown); width: 46px; height: 46px; opacity: 0; visibility: hidden; transform: translateY(8px); }
.fab--top svg { width: 22px; height: 22px; }
.fab--top.is-visible { opacity: 1; visibility: visible; transform: none; }
.fab__label { position: absolute; right: calc(100% + 10px); top: 50%; transform: translateY(-50%); white-space: nowrap; background: var(--brown); color: #fff; font-size: .8rem; font-weight: 600; padding: .35rem .65rem; border-radius: 8px; opacity: 0; pointer-events: none; transition: opacity .15s ease; }
.fab:hover .fab__label, .fab:focus-visible .fab__label { opacity: 1; }
@media (max-width: 480px) { .fab__label { display: none; } .fab { width: 52px; height: 52px; } }

/* Defensive scroll-reveal: content is ALWAYS shown unless JS is present AND
   motion is allowed AND the reveal hasn't fired yet. Fallbacks guarantee it
   can never leave content permanently hidden. */
.js .reveal { opacity: 0; transform: translateY(18px); transition: opacity .6s ease, transform .6s ease; }
.js .reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .js .reveal { opacity: 1; transform: none; } }

@media (max-width: 960px) { .locality-groups { grid-template-columns: 1fr; } }
