/* =====================================================
   HILSTON PARK  --  style.css
   Canvas: 1440px max, centred on grey body
   ===================================================== */

/* ----- FONTS ----- */
@font-face {
  font-family: "Bodoni72";
  src: url("fonts/Bodoni72-Book.woff2") format("woff2"),
       url("fonts/Bodoni72.ttc") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "DartyZhedant";
  src: url("fonts/DartyZhedant.ttf") format("truetype");
  font-display: swap;
}
@font-face {
  font-family: "HelveticaNeue";
  src: url("fonts/HelveticaNeue-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "HelveticaNeue";
  src: url("fonts/HelveticaNeue-Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "HelveticaNeue";
  src: url("fonts/HelveticaNeue-Light.woff2") format("woff2");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

/* ----- VARIABLES ----- */
:root {
  --teal:       #3c7a6c;
  --teal-dark:  #2f6358;
  --dark:       #4a6371;
  --dark-deep:  #36505d;
  --beige:      #e9e6df;
  --beige-soft: #f5f2ee;
  --beige-2:    #d8d4cc;
  --page-bg:    #f5f2ee;
  --white:      #ffffff;
  --text:       #2a2a2a;
  --text-muted: #5c5c5c;
  --border:     #cfcec9;
  --canvas:     1440px;
  --font-serif: "Bodoni72","Bodoni 72",Georgia,serif;
  --font-script:"DartyZhedant",cursive;
  --font-sans:  "HelveticaNeue","Helvetica Neue",Helvetica,Arial,sans-serif;
}

/* ----- RESET ----- */
*,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-sans);
  color: var(--text);
  line-height: 1.6;
  background: var(--page-bg);
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
address { font-style: normal; }
button { font: inherit; cursor: pointer; }

/* ----- SITE WRAP (full-width canvas) ----- */
.site-wrap {
  width: 100%;
  margin: 0 auto;
  background: var(--beige-soft);
}

/* Shared content cap inside full-bleed sections */
.container,
.experience-grid,
.svc-cards,
.expertise-grid,
.testimonials-inner,
.footer-grid,
.insta-header,
.stats-inner,
.stays-intro,
.stay-row,
.plan-cards,
.history-intro-block,
.timeline,
.testimonial-wrap,
.testimonial-dots,
.accom-block,
.accom-options-intro,
.accom-options-cta,
.eve-accom-header,
.eve-accom-cta,
.age-gallery-header,
.gallery-track,
.rates-widget-panel,
.newsletter-form,
.visit-trio,
[class$="-grid"],
[class$="-inner"],
[class$="-header"]:not(.site-header) {
  max-width: 1240px;
  margin-left: auto;
  margin-right: auto;
}
.plan-day > .heading-display,
.newsletter-band > h2,
.newsletter-band > p,
.planning-cta > h2,
.planning-cta > p,
body section > .heading-display,
body section > .section-intro {
  max-width: 1240px;
  margin-left: auto;
  margin-right: auto;
}
.stays > .heading-display,
.choose-exp > .heading-display,
.choose-exp > .section-intro {
  max-width: 1240px;
  margin-left: auto;
  margin-right: auto;
}
/* prevent horizontal overflow from hero/insta strips without clipping sticky.
   overflow-x:clip (not hidden) on body so it doesn't create a scroll container
   that breaks position:fixed children (e.g. the booking modal overlay). */
html { overflow-x: hidden; }
body { overflow-x: clip; }

/* ----- ANTI-ORPHAN: prevent single words stranded on last line ----- */
h1, h2, h3, h4, h5, h6 {
  text-wrap: balance; /* balances line lengths, kills end-of-line orphans */
}
p, li, blockquote, figcaption, .section-intro, .hero-sub, .card-desc,
.eyebrow, .stat-label, .blog-excerpt, .blog-desc {
  text-wrap: pretty;  /* avoids single orphan word on last line */
}

/* ----- TYPOGRAPHY HELPERS ----- */
.heading-display {
  font-family: var(--font-serif);
  font-weight: normal;
  font-size: clamp(1.9rem, 2.8vw, 2.85rem);
  line-height: 1.15;
  color: var(--text);
  text-wrap: balance; /* explicit for the custom class */
}
.heading-display.light { color: var(--white); }
.heading-display.center { text-align: center; }
.script {
  font-family: var(--font-script);
  font-style: normal;
  font-size: 1.35em;
  line-height: 1;
  display: inline-block;
  font-weight: normal;
}

/* ----- BUTTONS ----- */
.btn-book {
  display: inline-block;
  padding: 12px 30px;
  border: 2px solid #4A6372;
  background: #4A6372;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--white);
  text-transform: uppercase;
  transition: background 0.2s, border-color 0.2s;
}
.btn-book:hover { background: #3a5060; border-color: #3a5060; }

.btn-hero {
  display: block;
  padding: 14px 24px;
  background: var(--teal);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-align: center;
  text-transform: uppercase;
  transition: background 0.2s;
}
.btn-hero:hover { background: var(--teal-dark); }

.btn-pill {
  display: inline-block;
  padding: 11px 28px;
  background: var(--teal);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transition: background 0.22s, transform 0.22s, box-shadow 0.22s;
}
.btn-pill:hover {
  background: var(--teal-dark);
  transform: translateY(-2px);
  box-shadow: 0 5px 16px rgba(47,99,88,0.28);
}

/* =====================================================
   STICKY SHELL
   ===================================================== */
.site-sticky {
  position: sticky;
  top: 0;
  z-index: 500;
  background: var(--white);
  transition: box-shadow 0.3s ease;
}
.site-sticky.scrolled {
  box-shadow: 0 2px 24px rgba(0,0,0,0.10);
}
.site-sticky.scrolled .site-header {
  padding-top: 14px;
  padding-bottom: 14px;
}
.site-sticky.scrolled .header-logo img {
  height: 44px;
}

/* =====================================================
   HEADER
   ===================================================== */
.site-header { background: var(--white); padding: 26px 56px; transition: padding 0.3s ease; }
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header-logo {
  display: flex;
  align-items: center;
  gap: 18px;
}
.header-logo a { display: flex; align-items: center; }
.header-logo img {
  height: 56px;
  width: auto;
  max-width: 320px;
  object-fit: contain;
  transition: height 0.3s ease;
}

/* header right: book btn + hamburger */
.header-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

/* ---- Hamburger button ---- */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  padding: 4px;
  cursor: pointer;
}
.nav-toggle-bar {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease, background 0.2s ease;
  transform-origin: center;
}
/* open state: X */
.nav-toggle.is-open .nav-toggle-bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.is-open .nav-toggle-bar:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle.is-open .nav-toggle-bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.logo-text { display: flex; flex-direction: column; gap: 3px; }
.logo-name {
  font-family: var(--font-serif);
  font-size: 1.7rem;
  letter-spacing: 0.14em;
  color: var(--text);
  line-height: 1;
  font-weight: normal;
}
.logo-name strong {
  font-weight: 700;
  letter-spacing: 0.14em;
}
.logo-name-light {
  font-weight: 300;
  letter-spacing: 0.14em;
  margin-left: 2px;
}
.logo-tagline {
  font-family: var(--font-sans);
  font-size: 0.6rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--text);
}

/* =====================================================
   NAV
   ===================================================== */
.main-nav {
  background: var(--teal);
  padding: 14px 0;
}
.nav-list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0;
  gap: 40px;
}
.nav-list a {
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 4px 0;
  position: relative;
  transition: opacity 0.2s;
}
.nav-list a::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0; right: 0;
  height: 2px;
  background: rgba(255,255,255,0.85);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}
.nav-list a:hover::after,
.nav-list a.active::after,
.nav-list a.nav-active::after { transform: scaleX(1); }
.nav-list a:hover { opacity: 1; }
.nav-list a.active,
.nav-list a.nav-active { opacity: 1; }

/* =====================================================
   MOBILE NAV OVERLAY
   ===================================================== */
.mobile-nav-overlay {
  position: fixed;
  inset: 0;
  z-index: 450;
  background: var(--dark-deep);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  overflow-y: auto;
  padding: 60px 24px 40px;
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  transform: translateY(-16px);
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0s ease 0.3s;
}
.mobile-nav-overlay.is-open {
  opacity: 1;
  pointer-events: all;
  visibility: visible;
  transform: translateY(0);
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0s ease 0s;
}
.mobile-nav-list {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  margin-bottom: 24px;
  width: 100%;
}
.mobile-nav-list li a {
  font-family: var(--font-serif);
  font-size: clamp(1.25rem, 4vw, 1.75rem);
  font-weight: normal;
  color: var(--white);
  letter-spacing: 0.06em;
  padding: 8px 20px;
  display: block;
  text-align: center;
  transition: color 0.2s ease;
  position: relative;
}
.mobile-nav-list li a::before {
  content: '';
  position: absolute;
  bottom: 8px; left: 50%; right: 50%;
  height: 1px;
  background: var(--teal);
  transition: left 0.3s ease, right 0.3s ease;
}
.mobile-nav-list li a:hover { color: var(--teal); }
.mobile-nav-list li a:hover::before { left: 20px; right: 20px; }
/* Book Now button — keep white text on hover, suppress underline */
.mobile-nav-book-item a::before { display: none; }
.mobile-nav-book-item a:hover { color: var(--white); }
.mobile-nav-book-item {
  display: flex;
  justify-content: center;
}
.mobile-nav-book-item a.mobile-nav-book {
  display: inline-block;
  padding: 14px 40px;
  border: 2px solid var(--teal);
  background: var(--teal);
  color: var(--white);
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transition: background 0.2s, border-color 0.2s;
  margin-top: 8px;
}
.mobile-nav-book {
  display: inline-block;
  padding: 14px 40px;
  border: 2px solid var(--teal);
  background: var(--teal);
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transition: background 0.2s, border-color 0.2s;
  margin-top: 8px;
}
.mobile-nav-book:hover { background: var(--teal-dark); border-color: var(--teal-dark); }

.mobile-nav-close {
  position: absolute;
  top: 24px;
  right: 24px;
  background: none;
  border: none;
  color: rgba(255,255,255,0.70);
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  padding: 8px;
  transition: color 0.2s, transform 0.25s;
  z-index: 2;
}
.mobile-nav-close:hover { color: var(--white); transform: rotate(90deg); }

/* =====================================================
   COOKIE PREFERENCES RE-OPEN BUTTON
   ===================================================== */
.hp-cookie-reopen {
  position: fixed;
  bottom: 96px;
  right: 28px;
  z-index: 10000;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--teal);
  color: var(--white);
  border: none;
  cursor: pointer;
  font-size: 1.3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 12px rgba(0,0,0,0.18);
  opacity: 0;
  transform: scale(0.7) translateY(12px);
  pointer-events: none;
  transition: opacity 0.4s ease, transform 0.4s ease, background 0.2s ease, box-shadow 0.2s ease;
  line-height: 1;
}
.hp-cookie-reopen.is-visible {
  opacity: 1;
  transform: scale(1) translateY(0);
  pointer-events: auto;
}
.hp-cookie-reopen:hover { background: var(--teal-dark, #2d5e52); transform: scale(1.08); }

/* Hide GTM's own cookie badge — replaced by #hp-cookie-reopen */
#ccm-trigger-badge { display: none !important; }

/* Centre the GTM cookie consent modal in the full-screen wrapper */
#custom-cookie-manager .ccm-container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* Equalise a11y toggle button to match WhatsApp (58px) */
.a11y-toggle {
  width: 58px !important;
  height: 58px !important;
}
.a11y-toggle svg {
  width: 30px !important;
  height: 30px !important;
}

/* =====================================================
   STATS BAR
   ===================================================== */
.stats-bar {
  background: transparent;
  border-top: 1px solid var(--beige-2);
  border-bottom: 1px solid var(--beige-2);
  padding: 44px 56px;
}
.stats-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  max-width: 900px;
  margin: 0 auto;
}
.stat-item {
  flex: 1;
  text-align: center;
  padding: 0 24px;
}
.stat-number {
  font-family: var(--font-serif);
  font-size: clamp(2.4rem, 4vw, 3.4rem);
  font-weight: normal;
  color: var(--teal);
  line-height: 1;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 2px;
}
.stat-suffix {
  font-size: 0.55em;
  font-family: var(--font-sans);
  font-weight: 700;
  color: var(--teal);
  letter-spacing: 0.05em;
  line-height: 1;
  margin-left: 1px;
}
.stat-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.stat-divider {
  width: 1px;
  height: 52px;
  background: var(--beige-2);
  flex-shrink: 0;
}

/* =====================================================
   SCROLL REVEAL ANIMATIONS
   ===================================================== */
[data-reveal] {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}
[data-reveal="left"] {
  transform: translateX(-32px);
}
[data-reveal="right"] {
  transform: translateX(32px);
}
[data-reveal].is-visible {
  opacity: 1;
  transform: none;
}
/* staggered delay for card grids */
[data-reveal] .svc-card:nth-child(1) { transition-delay: 0s; }
[data-reveal] .svc-card:nth-child(2) { transition-delay: 0.12s; }
[data-reveal] .svc-card:nth-child(3) { transition-delay: 0.24s; }

/* =====================================================
   HERO  (3-column — with hover reveal)
   ===================================================== */
.hero {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3px;
  background: var(--dark-deep);
}
.hero-card {
  position: relative;
  min-height: 620px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
/* scalable background layer — now an <img> for LCP discoverability */
.hero-card > picture {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  z-index: 0;
}
.hero-card:hover .hero-bg { transform: scale(1.08); }

/* gradient overlay */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(15,30,40,0.90) 0%,
    rgba(15,30,40,0.35) 52%,
    rgba(15,30,40,0.08) 100%
  );
  z-index: 1;
  transition: background 0.55s ease;
}
.hero-card:hover .hero-overlay {
  background: linear-gradient(
    to top,
    rgba(15,30,40,0.97) 0%,
    rgba(15,30,40,0.55) 60%,
    rgba(15,30,40,0.18) 100%
  );
}

.hero-frame {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.65);
  background: rgba(20,35,45,0.35);
  padding: 18px 36px;
  backdrop-filter: blur(6px);
  cursor: pointer;
  text-decoration: none;
  transition: background 0.35s ease, border-color 0.35s ease, letter-spacing 0.35s ease;
}
.hero-card:hover .hero-label {
  background: rgba(20,35,45,0.65);
  border-color: rgba(255,255,255,1);
  letter-spacing: 0.28em;
}

/* =====================================================
   EXPERIENCE
   ===================================================== */
.experience {
  background: transparent;
  padding: 80px 64px 96px;
  border-top: 1px solid rgba(0,0,0,0.06);
}
.experience-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: stretch;
  min-height: 560px;
}
.experience-text {
  display: flex;
  flex-direction: column;
}
.experience-text .heading-display { margin-bottom: 28px; }
.experience-text p {
  color: var(--text-muted);
  line-height: 1.85;
  font-size: 0.92rem;
  margin-bottom: 1.1rem;
}
.discover-box {
  background: var(--teal);
  color: var(--white);
  padding: 26px 30px;
  margin-top: 32px;
}
.discover-box h3 {
  font-family: var(--font-serif);
  font-weight: normal;
  font-size: 1.25rem;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255,255,255,0.35);
}
.discover-box ul li {
  font-size: 0.85rem;
  padding: 7px 0 7px 16px;
  position: relative;
  color: rgba(255,255,255,0.95);
  line-height: 1.5;
}
.discover-box ul li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: rgba(255,255,255,0.9);
}

.experience-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  align-self: stretch;
}
.exp-img--wide { grid-column: 1 / -1; }
.exp-img {
  overflow: hidden;
  min-height: 0;
}
.exp-img img {
  width: 100%;
  height: 100%;
  min-height: 220px;
  object-fit: cover;
  display: block;
}
.exp-img--wide img { min-height: 320px; }

/* =====================================================
   CHOOSE YOUR EXPERIENCE  (replaces Plan Your Day)
   ===================================================== */
.choose-exp {
  background: var(--dark-deep);
  padding: 84px 56px 100px;
}
.choose-exp .heading-display { margin-bottom: 14px; }
.choose-exp .section-intro {
  text-align: center;
  color: rgba(255,255,255,0.85);
  font-size: 0.88rem;
  letter-spacing: 0.06em;
  line-height: 1.7;
  margin-bottom: 56px;
}

/* grid */
.svc-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

/* individual card */
.svc-card {
  position: relative;
  min-height: 540px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  cursor: pointer;
}

/* colour accent bar at top */
.svc-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  z-index: 4;
  transition: height 0.3s ease;
}
.svc-card:hover::before { height: 6px; }
.svc-card--edu::before    { background: #5dab8c; }
.svc-card--events::before { background: var(--teal); }
.svc-card--stays::before  { background: #c9a96e; }

/* scalable background image */
.svc-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  z-index: 0;
}
.svc-card:hover .svc-bg { transform: scale(1.07); }

/* gradient overlay */
.svc-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(10,22,32,0.95) 30%,
    rgba(10,22,32,0.25) 75%,
    rgba(10,22,32,0.06) 100%
  );
  z-index: 1;
  transition: background 0.5s ease;
}
.svc-card:hover .svc-overlay {
  background: linear-gradient(
    to top,
    rgba(10,22,32,0.98) 40%,
    rgba(10,22,32,0.35) 75%,
    rgba(10,22,32,0.12) 100%
  );
}

/* content body */
.svc-body {
  position: relative;
  z-index: 2;
  padding: 28px 32px 44px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* audience tag — prominent, full-width label */
.svc-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  padding: 0;
  align-self: flex-start;
  margin-bottom: 14px;
  color: inherit;
}
.svc-tag::before {
  content: "";
  display: block;
  width: 20px;
  height: 1px;
  flex-shrink: 0;
}
.svc-card--edu .svc-tag {
  color: #8ed9b8;
}
.svc-card--edu .svc-tag::before { background: #8ed9b8; }
.svc-card--events .svc-tag {
  color: #7ecfbc;
}
.svc-card--events .svc-tag::before { background: #7ecfbc; }
.svc-card--stays .svc-tag {
  color: #e0c98e;
}
.svc-card--stays .svc-tag::before { background: #e0c98e; }

.svc-body h3 {
  font-family: var(--font-serif);
  font-weight: normal;
  font-size: clamp(1.25rem, 1.65vw, 1.75rem);
  color: var(--white);
  line-height: 1.18;
  margin-bottom: 0;
  transition: transform 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              margin-bottom 0.45s ease;
}
.svc-card:hover .svc-body h3 {
  transform: translateY(-6px);
  margin-bottom: 20px;
}

/* reveal block: bullets + CTA slide up on hover */
.svc-reveal {
  display: flex;
  flex-direction: column;
  gap: 22px;
  transform: translateY(16px);
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition: transform 0.5s ease, opacity 0.45s ease, max-height 0.5s ease;
  pointer-events: none;
}
.svc-card:hover .svc-reveal {
  transform: translateY(0);
  opacity: 1;
  max-height: 200px;
  pointer-events: auto;
}

/* bullet list */
.svc-list { display: flex; flex-direction: column; gap: 9px; }
.svc-list li {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.82);
  padding-left: 20px;
  position: relative;
  line-height: 1.5;
}
.svc-list li::before {
  content: '—';
  position: absolute;
  left: 0;
  font-weight: 700;
}
.svc-card--edu .svc-list li::before    { color: #5dab8c; }
.svc-card--events .svc-list li::before { color: var(--teal); }
.svc-card--stays .svc-list li::before  { color: #c9a96e; }

.svc-reveal .btn-hero { align-self: flex-start; }


/* =====================================================
   STAYS
   ===================================================== */
.stays {
  background: transparent;
  padding: 80px 56px;
  border-top: 1px solid rgba(0,0,0,0.06);
}
.stays .heading-display { margin-bottom: 16px; }
.stays-intro {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 44px;
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.75;
}

.stay-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 1px solid var(--beige-2);
  background: var(--beige);
  margin-bottom: 26px;
  min-height: 380px;
}
.stay-row--reverse .stay-image { order: 2; }
.stay-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.stay-info {
  padding: 28px 28px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 8px;
}
.stay-info h3 {
  font-family: var(--font-serif);
  font-weight: normal;
  font-size: 1.85rem;
  margin-bottom: 4px;
}
.stay-lead {
  color: var(--text-muted);
  font-size: 0.88rem;
  line-height: 1.7;
  max-width: 380px;
  margin-bottom: 10px;
}
.stay-stats { display: flex; flex-direction: column; gap: 10px; margin-bottom: 16px; }
.stay-stats li {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text);
}

/* =====================================================
   EXPERTISE
   ===================================================== */
.expertise {
  background: var(--teal);
  padding: 70px 56px 80px;
}
.expertise-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 30px;
  align-items: center;
}
.expertise-image img {
  width: 100%;
  height: 540px;
  object-fit: cover;
  object-position: center;
  display: block;
}
.expertise-content { padding: 0 20px; }
.expertise-content .heading-display { margin-bottom: 18px; }
.expertise-sub {
  color: #ffffff;
  text-align: center;
  font-size: 0.9rem;
  line-height: 1.65;
  margin-bottom: 28px;
}

/* Accordion */
.accordion { display: flex; flex-direction: column; gap: 8px; }
.accordion-item {
  background: var(--beige-soft);
  overflow: hidden;
  border-radius: 2px;
}

.accordion-btn {
  width: 100%;
  background: transparent;
  border: 0;
  padding: 14px 20px;
  display: grid;
  grid-template-columns: 1fr 20px;
  align-items: center;
  gap: 14px;
  cursor: pointer;
}
.acc-question {
  text-align: left;
  font-family: var(--font-sans);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--text);
  transition: color 0.2s ease;
  white-space: normal;
}
.accordion-item.open .acc-question { color: var(--teal-dark); }

.acc-icon, .acc-icon-l {
  color: var(--text-muted);
  display: flex;
  align-items: center;
  transition: transform 0.3s ease, color 0.2s ease;
}
.acc-icon { justify-self: end; }
.acc-icon-l { justify-self: start; pointer-events: none; }
.acc-svg { width: 16px; height: 16px; display: block; }
.accordion-item.open .acc-icon,
.accordion-item.open .acc-icon-l { transform: rotate(180deg); color: var(--teal-dark); }

.accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}
.accordion-item.open .accordion-body { max-height: 260px; }
.accordion-body p {
  padding: 2px 28px 16px;
  color: var(--text-muted);
  font-size: 0.84rem;
  line-height: 1.75;
  text-align: left;
}

/* =====================================================
   FOOTER
   ===================================================== */
.site-footer {
  background: linear-gradient(180deg, #395562 0%, #2f4854 55%, #243943 100%);
  color: var(--white);
  width: 100%;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  align-items: start;
  gap: 42px;
  max-width: 1240px;
  margin: 0 auto;
  padding: 68px 0 42px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  align-self: stretch;
  text-align: left;
  gap: 18px;
}

.footer-crest {
  display: block;
}
.footer-crest img {
  width: 230px;
  height: auto;
  display: block;
  opacity: 0.98;
}

.footer-brand address {
  font-size: 0.86rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.84);
  width: 230px;
  text-align: center;
}

.social-icons { display: flex; gap: 12px; justify-content: center; width: 230px; }
.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(18, 31, 39, 0.64);
  color: var(--white);
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.16);
  transition: transform 0.2s, background 0.2s, border-color 0.2s;
}
.social-icon svg { width: 16px; height: 16px; }
.social-icon:hover {
  transform: translateY(-2px);
  background: rgba(78,148,132,0.28);
  border-color: rgba(255,255,255,0.32);
}

.footer-links {
  display: contents;
}
.footer-col h2 {
  font-family: var(--font-serif);
  font-weight: normal;
  font-size: 1.35rem;
  color: var(--white);
  margin-bottom: 22px;
}
.footer-col ul li { padding: 6px 0; }
.footer-col ul li a {
  color: rgba(255,255,255,0.78);
  font-size: 0.92rem;
  transition: color 0.2s;
}
.footer-col ul li a:hover { color: var(--white); }

.footer-meta {
  grid-column: 1 / -1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.10);
}
.footer-copy,
.footer-madeby {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.6;
}

.footer-bar { height: 10px; background: var(--teal); }

/* =====================================================
   EDU-ACCOM — School Group Accommodation section
   ===================================================== */
.edu-accom { background: var(--white); padding: 88px 80px; }
.edu-accom-heading { text-align: center; margin-bottom: 12px; }
.edu-accom-sub {
  text-align: center; font-size: 0.9rem; color: var(--text-muted);
  max-width: 680px; margin: 0 auto 48px; line-height: 1.72;
}
.edu-accom-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.edu-accom-img { display: grid; grid-template-columns: 1fr 1fr; grid-template-rows: 260px 260px; gap: 8px; }
.edu-accom-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.edu-accom-content { counter-reset: accom-counter; }
.accom-section { counter-increment: accom-counter; padding: 20px 0; border-bottom: 1px solid var(--border); }
.accom-section:first-child { padding-top: 0; }
.accom-section h3 {
  font-family: var(--font-serif); font-weight: normal;
  font-size: 1.15rem; color: var(--text); margin-bottom: 10px;
  display: flex; align-items: baseline; gap: 14px;
}
.accom-section h3::before {
  content: counter(accom-counter, decimal-leading-zero);
  font-family: var(--font-sans); font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.16em; color: var(--teal); flex-shrink: 0;
}
.accom-section p { font-size: 0.88rem; line-height: 1.78; color: var(--text-muted); }
.accom-cta { margin-top: 22px; }

@media (max-width: 1080px) {
  .edu-accom { padding: 72px 40px; }
}
@media (max-width: 780px) {
  .edu-accom { padding: 56px 24px; }
  .edu-accom-grid { grid-template-columns: 1fr; gap: 40px; }
  .edu-accom-img { grid-template-rows: 190px 190px; }
}
@media (max-width: 480px) {
  .edu-accom { padding: 44px 16px; }
  .edu-accom-img { grid-template-rows: 160px 160px; }
}

/* =====================================================
   HERO — tagline overlay
   ===================================================== */
.hero { position: relative; }
.hero-tagline {
  position: absolute;
  top: 0; left: 0; right: 0;
  z-index: 10;
  text-align: center;
  padding: 20px 20px;
  background: linear-gradient(to bottom, rgba(0,0,0,0.52) 0%, transparent 100%);
  pointer-events: none;
}
.hero-tagline p {
  color: rgba(255,255,255,0.90);
  font-family: var(--font-sans);
  font-size: clamp(0.75rem, 1.1vw, 0.9rem);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 500;
}

/* =====================================================
   TESTIMONIALS BAND
   ===================================================== */
.testimonials-band {
  background: transparent;
  padding: 88px 60px;
  border-top: 1px solid rgba(0,0,0,0.06);
}
.testimonials-inner { max-width: 1240px; margin: 0 auto; }
.testimonials-head {
  text-align: center;
  margin-bottom: 52px;
}
.testimonials-head .eyebrow {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--teal-dark);
  margin-bottom: 14px;
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
@media (max-width: 1024px) {
  .testimonials-grid { grid-template-columns: 1fr; gap: 20px; }
}
.tcard {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 2px;
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.tcard {
  transition: opacity 0.7s ease, transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}
.tcard:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.10);
  border-color: var(--teal);
}
/* staggered entrance for the three cards */
.testimonials-grid .tcard:nth-child(1) { transition-delay: 0s; }
.testimonials-grid .tcard:nth-child(2) { transition-delay: 0.15s; }
.testimonials-grid .tcard:nth-child(3) { transition-delay: 0.30s; }
.testimonials-grid .tcard.is-visible { transition-delay: 0s; }
.tcard-stars { color: var(--teal); font-size: 1.1rem; letter-spacing: 2px; }
.tcard-quote {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--text);
  flex: 1;
}
.tcard-footer {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: auto;
  padding-top: 4px;
}
.tcard-avatar {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--av-bg, var(--teal));
  color: #fff;
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  justify-content: center;
  user-select: none;
}
.tcard-author {
  display: flex;
  flex-direction: column;
  gap: 3px;
  font-style: normal;
}
.tcard-name {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text);
  letter-spacing: 0.02em;
}
.tcard-org {
  font-size: 0.70rem;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.testimonials-cta {
  margin-top: 48px;
  text-align: center;
}
.btn-google-reviews {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 40px;
  background: var(--white);
  color: var(--text);
  border: 2px solid var(--border);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  transition: border-color 0.22s, background 0.22s, color 0.22s;
}
.btn-google-reviews:hover { border-color: var(--teal); background: var(--teal); color: var(--white); }
.btn-google-reviews svg { transition: fill 0.22s; }
.btn-google-reviews:hover svg path { fill: #fff; }
@media (max-width: 480px) {
  .btn-google-reviews { width: 100%; justify-content: center; }
}

/* =====================================================
   INSTAGRAM STRIP
   ===================================================== */
.insta-strip {
  background: var(--dark-deep);
  padding-top: 80px;
  overflow: hidden;
  width: 100%;
}

.insta-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding: 0 64px 52px;
  gap: 24px;
}

.insta-eyebrow {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 10px;
}

.insta-heading .heading-display { color: var(--white); }

.insta-handle {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  flex-shrink: 0;
  padding-bottom: 4px;
  transition: color 0.25s;
}
.insta-handle:hover { color: var(--white); }
.insta-handle svg { flex-shrink: 0; }

/* Marquee */
.insta-track {
  overflow: hidden;
  width: 100%;
}

.insta-inner {
  display: flex;
  width: max-content;
  /* set-width = 16 images × (340px + 6px gap) = 5536px */
  animation: insta-scroll 90s linear infinite;
}

.insta-track:hover .insta-inner { animation-play-state: paused; }

.insta-set {
  display: flex;
  gap: 6px;
  margin-right: 6px; /* matches gap so seam is invisible */
}

.insta-set a {
  display: block;
  flex-shrink: 0;
  width: 340px;
  height: 340px;
  overflow: hidden;
}

.insta-set img {
  width: 340px;
  height: 340px;
  object-fit: cover;
  object-position: center;
  flex-shrink: 0;
  display: block;
  filter: brightness(0.88);
  transition: filter 0.3s ease;
}
.insta-track:hover .insta-set img { filter: brightness(1); }

@keyframes insta-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(var(--scroll-dist, -5536px)); }
}

@media (prefers-reduced-motion: reduce) {
  .insta-inner { animation: none; }
  .insta-track { overflow-x: auto; scrollbar-width: thin; }
}

/* =====================================================
   RESPONSIVE
   ===================================================== */
@media (max-width: 1100px) {
  .site-header { padding: 22px 40px; }
  .experience,
  .stays,
  .expertise,
  .plan-day { padding-left: 40px; padding-right: 40px; }
  .footer-grid { padding: 56px 40px 38px; }
  .experience-grid,
  .expertise-grid { gap: 36px; }
  .expertise-image img { height: 420px; object-position: center top; }
  .insta-header { padding: 0 40px 44px; }
  .stats-bar { padding: 40px 40px; }
}
@media (max-width: 1060px) {
  /* Choose Your Experience → stack vertically (1 col) on iPad */
  .svc-cards { grid-template-columns: 1fr; }
  .svc-card:last-child:nth-child(odd) { grid-column: auto; max-width: 100%; margin: 0; }
  .svc-card { min-height: 400px; }

  /* Header → logo row 1, nav + book row 2 on iPad */
  .header-inner { flex-wrap: wrap; justify-content: center; gap: 6px; }
  .header-logo { flex: 0 0 100%; justify-content: center; margin-bottom: 2px; }
  .header-logo img { height: 48px; }
  .main-nav { flex: 1; justify-content: center; padding: 10px 0; }
  .header-actions { flex-shrink: 0; }
  .site-header { padding: 14px 40px; }

  /* Booking modal close button — more visible on iPad */
  .bkm-close {
    color: var(--text);
    background: var(--beige-soft);
    border-radius: 50%;
    width: 34px; height: 34px;
    padding: 0;
    display: flex; align-items: center; justify-content: center;
    top: 14px; right: 14px;
    font-size: 1.1rem;
  }
}
@media (max-width: 880px) {
  /* Show hamburger, hide desktop nav links */
  .nav-toggle { display: flex; }
  .main-nav { display: none; }
  /* Hide Book Now from header — it lives inside the hamburger overlay */
  .header-actions .btn-book { display: none; }
  /* Reset iPad 2-row header — mobile is single row: logo + hamburger */
  .header-inner { flex-direction: row; flex-wrap: nowrap; justify-content: space-between; gap: 0; }
  .header-logo { flex: 0 0 auto; margin-bottom: 0; justify-content: flex-start; }
  .header-logo img { height: 46px; max-width: none; }
  .header-actions { gap: 14px; }
  .site-header { padding: 16px 24px; }

  .hero { grid-template-columns: 1fr; }
  .hero-card { min-height: 460px; }

  .stats-bar { padding: 32px 24px; }
  .stats-inner { gap: 0; }
  .stat-item { padding: 0 16px; }
  .stat-label { font-size: 0.64rem; letter-spacing: 0.1em; }

  .experience-grid,
  .expertise-grid { grid-template-columns: 1fr; }
  .plan-cards { grid-template-columns: 1fr; }
  .svc-cards { grid-template-columns: 1fr; }
  .choose-exp { padding-left: 24px; padding-right: 24px; }
  .blogs-grid,
  .visit-us-grid { grid-template-columns: 1fr; }
  .stay-row,
  .stay-row--reverse { grid-template-columns: 1fr; }
  .stay-row--reverse .stay-image { order: unset; }
  .stay-image img { height: 280px; }
  .stay-info { padding: 36px 30px; }
  .expertise-image img { height: 360px; }
  .footer-grid { grid-template-columns: 1fr 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-meta { grid-column: 1 / -1; }

  /* service cards: show content without hover on touch */
  .svc-reveal {
    transform: none;
    opacity: 1;
    max-height: 300px;
    pointer-events: auto;
  }
  .svc-body h3 {
    transform: none;
    margin-bottom: 16px;
  }
  .svc-card { min-height: 460px; }

  /* Instagram */
  .insta-header { flex-direction: column; align-items: flex-start; padding: 0 40px 36px; gap: 20px; }
  .insta-set a { width: 260px; height: 260px; }
  .insta-set img { width: 260px; height: 260px; }
  @keyframes insta-scroll {
    from { transform: translateX(0); }
    to   { transform: translateX(var(--scroll-dist, -4256px)); } /* 16 × (260 + 6) */
  }
}
@media (max-width: 560px) {
  .site-header,
  .experience,
  .stays,
  .expertise,
  .plan-day { padding-left: 20px; padding-right: 20px; }
  .stats-bar { padding: 28px 16px; }
  .stats-inner { flex-wrap: wrap; gap: 24px 0; }
  .stat-item { min-width: 50%; }
  .stat-divider { display: none; }
  /* Accordion — remove left dummy column, allow question text to wrap */
  .accordion-btn {
    grid-template-columns: 1fr 20px;
  }
  .acc-icon-l { display: none; }
  .acc-question { font-size: 0.8rem; }
  .nav-list { flex-wrap: wrap; gap: 14px; }
  .nav-list a { font-size: 0.7rem; letter-spacing: 0.14em; }
  .logo-name { font-size: 1.3rem; }
  .header-logo img { height: 50px; }
  .footer-grid { padding: 36px 20px 30px; gap: 0; grid-template-columns: 1fr; }
  .footer-brand { align-items: center; text-align: center; margin-bottom: 28px; }
  .social-icons { justify-content: center; }
  /* Collapsible footer columns */
  .footer-col {
    border-bottom: 1px solid rgba(255,255,255,0.10);
  }
  .footer-col h2 {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    cursor: pointer;
    padding: 16px 0;
    margin-bottom: 0;
    user-select: none;
    -webkit-user-select: none;
    text-align: center;
  }
  .footer-col h2::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    width: 8px;
    height: 8px;
    border-right: 2px solid rgba(255,255,255,0.55);
    border-bottom: 2px solid rgba(255,255,255,0.55);
    transform: translateY(-65%) rotate(45deg);
    transition: transform 0.25s ease, top 0.25s ease;
  }
  .footer-col.is-open h2::after {
    transform: translateY(-35%) rotate(-135deg);
  }
  .footer-col ul {
    overflow: hidden;
    max-height: 0;
    opacity: 0;
    transition: max-height 0.3s ease, opacity 0.25s ease, padding 0.25s ease;
    padding-bottom: 0;
  }
  .footer-col.is-open ul {
    max-height: 320px;
    opacity: 1;
    padding-bottom: 16px;
  }
  .footer-meta { margin-top: 24px; }
  /* Instagram */
  .insta-strip { padding-top: 56px; }
  .insta-header { padding: 0 20px 30px; }
  .insta-set a { width: 200px; height: 200px; }
  .insta-set img { width: 200px; height: 200px; }
  @keyframes insta-scroll {
    from { transform: translateX(0); }
    to   { transform: translateX(var(--scroll-dist, -3296px)); } /* 16 × (200 + 6) */
  }
}

/* =====================================================
   BOOKING MODAL
   ===================================================== */
.bkm-overlay {
  position: fixed; inset: 0; z-index: 10001;
  background: rgba(8, 16, 22, 0.55);
  backdrop-filter: blur(4px);
  display: flex; align-items: center; justify-content: center;
  padding: 24px;
  opacity: 0; pointer-events: none;
  transition: opacity 0.28s ease;
}
.bkm-overlay.is-open {
  opacity: 1; pointer-events: all;
}

/* Floating popup panel */
.bkm-panel {
  display: grid;
  grid-template-columns: 280px 1fr;
  max-width: 860px; width: 100%;
  position: relative;
  box-shadow: 0 32px 80px rgba(0,0,0,0.38), 0 0 0 1px rgba(0,0,0,0.08);
  border-radius: 0;
  overflow: hidden;
  transform: translateY(24px) scale(0.98);
  opacity: 0;
  transition: transform 0.42s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.32s ease;
  max-height: 92vh;
}
.bkm-overlay.is-open .bkm-panel {
  transform: translateY(0) scale(1);
  opacity: 1;
}

/* ---- LEFT: full estate image with overlay ---- */
.bkm-brand {
  position: relative;
  overflow: hidden;
  min-height: 420px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 36px 32px;
  border-radius: 0;
}
.bkm-brand-bg {
  position: absolute; inset: 0;
  background-image: url('images/manor-house.jpg');
  background-size: cover;
  background-position: center;
  transition: transform 0.6s ease;
}
.bkm-overlay.is-open .bkm-brand-bg {
  transform: scale(1.03);
}
.bkm-brand-grad {
  position: absolute; inset: 0;
  background: linear-gradient(
    to top,
    rgba(10,22,32,0.97) 0%,
    rgba(10,22,32,0.55) 50%,
    rgba(10,22,32,0.18) 100%
  );
}
.bkm-brand-inner {
  position: relative; z-index: 2;
  display: flex; flex-direction: column; gap: 20px;
  align-items: center;
  text-align: center;
}
.bkm-logo {
  width: 140px; height: auto;
  opacity: 0.92; display: block;
}
.bkm-brand-heading {
  font-family: var(--font-serif);
  font-weight: normal;
  font-size: 2.4rem;
  color: var(--white);
  line-height: 1.08;
  letter-spacing: -0.01em;
  text-align: center;
}
.bkm-brand-script {
  font-family: var(--font-script);
  font-style: normal;
  font-size: 1.3em;
  display: block;
  color: var(--white);
  line-height: 1;
  margin-top: 4px;
  opacity: 0.9;
}
.bkm-brand-address {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.38);
  line-height: 1.9;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  position: relative; z-index: 2;
  text-align: center;
}

/* live weather widget */
.bkm-weather {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  position: relative; z-index: 2;
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid rgba(255,255,255,0.12);
  width: 100%;
}
.bkm-weather-icon {
  font-size: 2.6rem; line-height: 1; flex-shrink: 0;
}
.bkm-weather-info {
  display: flex; flex-direction: column; gap: 4px;
}
.bkm-weather-temp {
  font-family: var(--font-serif);
  font-size: 2.2rem; color: var(--white); line-height: 1;
}
.bkm-weather-desc {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.75);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* teal accent bar at bottom of image panel */
.bkm-brand::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--teal);
  z-index: 3;
}

/* ---- RIGHT: white column wrapper, holds all phases ---- */
.bkm-right {
  background: var(--white);
  position: relative;
  display: flex;
  flex-direction: column;
  border-radius: 0;
  overflow-y: auto;
  min-height: 420px;
  max-height: 92vh;
  border-left: 3px solid var(--teal);
}
.bkm-phase {
  padding: 44px 44px 40px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.bkm-phase[hidden] { display: none; }

/* legacy alias kept so widget-active rules still apply */
.bkm-form {
  background: var(--white);
  padding: 44px 44px 40px;
  position: relative;
  display: flex;
  flex-direction: column;
  border-radius: 0;
}

/* ---- Phase 0: service picker tiles ---- */
.bkm-tiles {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 8px;
}
.bkm-tile {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
  text-align: left;
  padding: 18px 16px;
  background: var(--white);
  border: 1px solid var(--beige-2);
  border-left: 3px solid transparent;
  border-radius: 0;
  cursor: pointer;
  font-family: var(--font-sans);
  transition: border-color 0.2s, background 0.2s;
}
.bkm-tile:hover {
  border-color: var(--beige-2);
  border-left-color: var(--teal);
  background: var(--beige-soft);
  transform: none;
}
.bkm-tile:focus-visible {
  outline: 2px solid var(--teal);
  outline-offset: 2px;
}
.bkm-tile-icon {
  font-size: 1.4rem;
  line-height: 1;
}
.bkm-tile-label {
  font-size: 0.86rem;
  font-weight: 700;
  color: var(--text);
  letter-spacing: 0.01em;
}
.bkm-tile-desc {
  font-size: 0.7rem;
  color: var(--text-muted);
  line-height: 1.45;
}
.bkm-tile-inq {
  grid-column: 1 / -1;
  flex-direction: row;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  background: var(--beige-1, #f6f1ea);
}
.bkm-tile-inq .bkm-tile-icon { font-size: 1.15rem; }
.bkm-tile-inq .bkm-tile-label { font-size: 0.78rem; }
.bkm-tile-inq .bkm-tile-desc { font-size: 0.66rem; margin-left: auto; }

/* ---- "Choose different service" link ---- */
.bkm-crumb { margin-bottom: 18px; }
.bkm-switch {
  background: none; border: none; padding: 0;
  color: var(--teal);
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: color 0.2s;
}
.bkm-switch:hover { color: var(--teal-dark); }

/* ---- Inquiry form ---- */
.bkm-inq-form .bkm-field { margin-bottom: 16px; }
.bkm-inq-form input[type="text"],
.bkm-inq-form input[type="email"],
.bkm-inq-form input[type="tel"],
.bkm-inq-form textarea {
  border: none;
  border-bottom: 1px solid var(--beige-2);
  padding: 10px 0 9px;
  font-family: var(--font-sans);
  font-size: 0.92rem; color: var(--text);
  background: transparent;
  outline: none;
  transition: border-bottom-color 0.22s;
  width: 100%;
  border-radius: 0;
  resize: vertical;
}
.bkm-inq-form input:focus,
.bkm-inq-form textarea:focus { border-bottom-color: var(--teal); }
.bkm-field-guests { margin-top: 22px; max-width: 160px; }
.bkm-field-guests input[type="number"] {
  border: none;
  border-bottom: 1px solid var(--beige-2);
  padding: 11px 0 10px;
  font-family: var(--font-sans);
  font-size: 0.92rem;
  color: var(--text);
  background: transparent;
  outline: none;
  width: 100%;
}
.bkm-field-guests input[type="number"]:focus { border-bottom-color: var(--teal); }
.bkm-inq-success { padding-top: 40px; }
.bkm-close {
  position: absolute; top: 20px; right: 22px;
  background: none; border: none;
  font-size: 1.3rem; line-height: 1;
  color: var(--border); cursor: pointer;
  padding: 4px 8px;
  transition: color 0.2s;
  font-weight: 300;
}
.bkm-close:hover { color: var(--text); }

/* form heading */
.bkm-form-title {
  font-family: var(--font-serif);
  font-weight: normal;
  font-size: 1.7rem;
  color: var(--text);
  line-height: 1.15;
  margin-bottom: 8px;
}
.bkm-form-sub {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 36px;
}

/* date fields */
.bkm-fields {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 28px; margin-bottom: 10px;
}
.bkm-field { display: flex; flex-direction: column; gap: 10px; }
.bkm-field label {
  font-size: 0.62rem; letter-spacing: 0.2em;
  text-transform: uppercase; font-weight: 700;
  color: var(--text-muted);
}
.bkm-field input[type="date"] {
  border: none;
  border-bottom: 1px solid var(--beige-2);
  padding: 11px 0 10px;
  font-family: var(--font-sans);
  font-size: 0.92rem; color: var(--text);
  background: transparent;
  outline: none;
  transition: border-bottom-color 0.22s;
  width: 100%; cursor: pointer;
  border-radius: 0;
}
.bkm-field input[type="date"]:focus {
  border-bottom-color: var(--teal);
}

/* Number inputs and selects — underline style matching date fields */
.bkm-field input[type="number"] {
  border: none;
  border-bottom: 1px solid var(--beige-2);
  padding: 11px 0 10px;
  font-family: var(--font-sans);
  font-size: 0.92rem;
  color: var(--text);
  background: transparent;
  outline: none;
  transition: border-bottom-color 0.22s;
  width: 100%;
  border-radius: 0;
  -moz-appearance: textfield;
  appearance: textfield;
}
.bkm-field input[type="number"]::-webkit-inner-spin-button,
.bkm-field input[type="number"]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.bkm-field input[type="number"]:focus {
  border-bottom-color: var(--teal);
}
.bkm-field select {
  border: none;
  border-bottom: 1px solid var(--beige-2);
  padding: 11px 28px 10px 0;
  font-family: var(--font-sans);
  font-size: 0.92rem;
  color: var(--text);
  background: transparent url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath d='M0 0l5 6 5-6z' fill='%234e9484'/%3E%3C/svg%3E") no-repeat right 4px center;
  outline: none;
  transition: border-bottom-color 0.22s;
  width: 100%;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  border-radius: 0;
}
.bkm-field select:focus {
  border-bottom-color: var(--teal);
}

/* Custom guest stepper +/- */
.bkm-stepper {
  display: flex;
  align-items: center;
  border: 1px solid var(--beige-2);
  border-radius: 2px;
  overflow: hidden;
  width: fit-content;
  min-width: 110px;
}
.bkm-step-btn {
  width: 36px; height: 36px;
  background: none; border: none;
  font-size: 1.2rem; font-weight: 400;
  color: var(--teal); cursor: pointer;
  transition: background 0.15s;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  line-height: 1;
}
.bkm-step-btn:hover { background: var(--beige-soft); }
.bkm-step-val {
  flex: 1;
  text-align: center;
  font-size: 0.92rem; font-weight: 600; color: var(--text);
  border-left: 1px solid var(--beige-2);
  border-right: 1px solid var(--beige-2);
  padding: 0 8px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  min-width: 36px;
}
/* When .bkm-step-val is used on an <input type="number"> */
input.bkm-step-val {
  -webkit-appearance: textfield;
  -moz-appearance: textfield;
  appearance: textfield;
  background: none;
  border-top: none;
  border-bottom: none;
  outline: none;
  font-family: var(--font-sans);
  width: 54px;
  cursor: text;
}
input.bkm-step-val:focus {
  border-bottom: none;
  outline: none;
}
input.bkm-step-val::-webkit-inner-spin-button,
input.bkm-step-val::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.bkm-error {
  font-size: 0.73rem; color: #b03030;
  margin: 10px 0 4px; display: none;
  letter-spacing: 0.01em;
}
.bkm-error.visible { display: block; }

.bkm-field-err {
  font-size: 0.71rem;
  color: #b03030;
  display: none;
  margin-top: 2px;
  line-height: 1.4;
}
.bkm-field-err.visible { display: block; }
.bkm-inq-form input.bkm-invalid,
.bkm-inq-form textarea.bkm-invalid { border-bottom-color: #b03030; }
.bkm-inq-form .hcs--invalid .hcs-btn { border-bottom-color: #b03030; }

.bkm-btn {
  margin-top: 36px;
  display: block; width: 100%;
  padding: 16px 30px;
  background: var(--teal); color: var(--white);
  border: none;
  font-family: var(--font-sans);
  font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s;
  border-radius: 0;
}
.bkm-btn:hover { background: var(--teal-dark); }

.bkm-note {
  margin-top: auto;
  padding-top: 20px;
  font-size: 0.67rem;
  color: var(--text-muted);
  line-height: 1.65;
  letter-spacing: 0.03em;
}

/* ---- Phase 2: booking widget panel ---- */
.bkm-widget-panel {
  display: none;
  flex-direction: column;
  background: var(--white);
  overflow: hidden;
  /* spans both grid columns when active */
  grid-column: 1 / -1;
}
.bkm-panel.bkm-widget-active {
  grid-template-columns: 1fr;
  max-width: 980px;
  height: min(88vh, 860px);
  border-radius: 0;
}
.bkm-panel.bkm-widget-active .bkm-brand,
.bkm-panel.bkm-widget-active .bkm-form,
.bkm-panel.bkm-widget-active .bkm-right { display: none; }
.bkm-panel.bkm-widget-active .bkm-widget-panel { display: flex; }

.bkm-widget-header {
  background: var(--dark-deep);
  height: 58px;
  padding: 0 20px 0 0;
  display: flex;
  align-items: center;
  gap: 0;
  flex-shrink: 0;
}
.bkm-back-btn {
  background: none; border: none;
  color: rgba(255,255,255,0.5); cursor: pointer;
  font-family: var(--font-sans);
  font-size: 0.68rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  padding: 0 20px;
  height: 100%;
  border-right: 1px solid rgba(255,255,255,0.1);
  transition: color 0.2s, background 0.2s;
  flex-shrink: 0;
}
.bkm-back-btn:hover {
  color: var(--white);
  background: rgba(255,255,255,0.05);
}
.bkm-widget-logo {
  height: 28px; opacity: 0.85;
  margin-left: 20px; flex-shrink: 0;
}
.bkm-widget-title {
  flex: 1;
  font-size: 0.62rem; letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  font-weight: 700;
  padding-left: 18px;
}
.bkm-widget-close {
  background: none; border: none;
  color: rgba(255,255,255,0.4); cursor: pointer;
  font-size: 1.3rem; font-weight: 300;
  line-height: 1; padding: 12px;
  transition: color 0.18s;
  flex-shrink: 0;
}
.bkm-widget-close:hover { color: var(--white); }
.bkm-widget-accent {
  height: 3px;
  background: var(--teal);
  flex-shrink: 0;
}
.bkm-booking-iframe {
  flex: 1;
  width: 100%; border: none;
  display: block; min-height: 0;
}

/* Mobile */
@media (max-width: 700px) {
  .bkm-panel { grid-template-columns: 1fr; border-radius: 0; max-height: 92dvh; overflow: hidden; }
  .bkm-brand { min-height: 150px; padding: 24px 24px 28px; justify-content: flex-end; border-radius: 0; }
  .bkm-brand-heading { font-size: 1.6rem; }
  .bkm-logo { width: 100px; }
  .bkm-brand-address { display: none; }
  .bkm-form { padding: 32px 24px 28px; border-radius: 0; }
  .bkm-right { border-radius: 0; min-height: 0; border-left: none; border-top: 3px solid var(--teal); overflow-y: auto; max-height: calc(92dvh - 150px); -webkit-overflow-scrolling: touch; }
  .bkm-phase { padding: 28px 24px 28px; }
  .bkm-tiles { grid-template-columns: 1fr; }
  .bkm-tile-inq { flex-direction: column; align-items: flex-start; }
  .bkm-tile-inq .bkm-tile-desc { margin-left: 0; }
  .bkm-fields { grid-template-columns: 1fr; gap: 20px; }
  .bkm-panel.bkm-widget-active { height: 92dvh; max-width: 100%; }
  .bkm-back-btn { padding: 0 14px; font-size: 0.62rem; }
  /* Close button — white × on dark circle, clearly visible on mobile */
  .bkm-close {
    color: var(--white);
    background: rgba(10, 22, 32, 0.55);
    border-radius: 50%;
    width: 32px; height: 32px;
    padding: 0;
    display: flex; align-items: center; justify-content: center;
    top: 12px; right: 12px;
    font-size: 1rem;
  }
  .bkm-close:hover { color: var(--white); background: rgba(10, 22, 32, 0.8); }
}

/* Extra-small phones: hide brand image, slide-up sheet style */
@media (max-width: 500px) {
  .bkm-overlay { padding: 0; align-items: flex-end; }
  .bkm-brand { display: none; }
  .bkm-panel { border-radius: 12px 12px 0 0; max-height: 90dvh; }
  .bkm-right { max-height: 90dvh; overflow-y: auto; border-top: 3px solid var(--teal); }
}

/* =====================================================
   RATES WIDGET (accommodation page inline)
   ===================================================== */
.rates-widget-section {
  background: var(--dark);
  padding: 0;
  display: grid;
  grid-template-columns: 340px 1fr;
  min-height: 480px;
}

/* Left panel — calendar widget */
.rates-cal-panel {
  background: var(--dark-deep);
  padding: 48px 40px;
  display: flex; flex-direction: column; gap: 36px;
  border-right: 1px solid rgba(255,255,255,0.07);
}
.rates-cal-eyebrow {
  font-size: 0.63rem; font-weight: 700; letter-spacing: 0.25em;
  text-transform: uppercase; color: var(--teal);
}
.rates-cal-title {
  font-family: var(--font-serif); font-weight: normal;
  font-size: 1.75rem; color: var(--white); line-height: 1.15;
  margin-top: 8px;
}
.rates-cal-month { display: none; }
.rates-date-form {
  display: flex; flex-direction: column; gap: 14px;
}
.rates-date-field {
  display: flex; flex-direction: column; gap: 6px;
}
.rates-date-field label {
  font-size: 0.6rem; font-weight: 700; letter-spacing: 0.2em;
  text-transform: uppercase; color: rgba(255,255,255,0.42);
}
.rates-date-field input[type="date"] {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.14);
  color: var(--white);
  padding: 11px 12px;
  font-size: 0.88rem;
  font-family: var(--font-sans);
  border-radius: 3px;
  outline: none;
  width: 100%;
  box-sizing: border-box;
  color-scheme: dark;
  transition: border-color 0.2s;
}
.rates-date-field input[type="date"]:focus {
  border-color: var(--teal);
}
.rates-date-btn {
  background: var(--teal);
  color: var(--white);
  border: none;
  padding: 13px 20px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-family: var(--font-sans);
  cursor: pointer;
  border-radius: 2px;
  margin-top: 6px;
  transition: background 0.2s;
}
.rates-date-btn:hover {
  background: var(--teal-dark);
}
.rates-cal-note {
  font-size: 0.78rem; line-height: 1.72;
  color: rgba(255,255,255,0.38);
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 20px;
}

/* Right panel — booking widget */
.rates-widget-panel {
  background: var(--white);
  display: flex; flex-direction: column;
}
.rates-widget-bar {
  background: var(--teal-dark);
  padding: 14px 28px;
  display: flex; align-items: center; justify-content: space-between;
}
.rates-widget-bar span {
  font-size: 0.62rem; font-weight: 700; letter-spacing: 0.28em;
  text-transform: uppercase; color: rgba(255,255,255,0.75);
}
.rates-widget-bar-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: rgba(255,255,255,0.4);
  animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot {
  0%,100% { opacity: 0.4; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.3); }
}
.rates-widget-panel iframe {
  display: block; width: 100%; border: none; flex: 1;
}

@media (max-width: 1000px) {
  .rates-widget-section { grid-template-columns: 1fr; }
  .rates-cal-panel { padding: 40px; border-right: none; border-bottom: 1px solid rgba(255,255,255,0.07); }
  .rates-cal-month { display: none; }
}
@media (max-width: 560px) {
  .rates-cal-panel { padding: 32px 24px; }
}

/* =====================================================
   FOOTER META (copyright row)
   ===================================================== */
.footer-meta {
  grid-column: 1 / -1;
  border-top: 1px solid rgba(255,255,255,0.10);
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}
.footer-copy {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.42);
  letter-spacing: 0.04em;
}
.footer-madeby {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.28);
  letter-spacing: 0.04em;
}
.footer-madeby strong {
  color: rgba(255,255,255,0.48);
  font-weight: 600;
}

/* =====================================================
   BOOK NOW — subtle pulse on desktop idle
   ===================================================== */
@keyframes btn-pulse {
  0%, 100% { transform: scale(1); }
  50%       { transform: scale(1.04); }
}
.btn-book {
  animation: btn-pulse 3.5s ease-in-out 4s infinite;
}
.btn-book:hover {
  animation: none;
  background: var(--teal-dark);
  color: var(--white);
}

/* =====================================================
   REDUCED MOTION — respect user preferences
   ===================================================== */
@media (prefers-reduced-motion: reduce) {
  [data-reveal] {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .site-sticky.scrolled .site-header,
  .site-sticky.scrolled .header-logo img { transition: none; }
  .btn-book { animation: none; }
  .hero-bg, .svc-bg { transition: none; }
  .mobile-nav-overlay { transition: none; }
}

/* =====================================================
   MOBILE RESPONSIVE FIXES (audit 2026-06)
   ===================================================== */

/* --- Header: prevent overflow on small phones --- */
@media (max-width: 640px) {
  .site-header { padding: 14px 16px; }
  .header-actions { gap: 10px; }
  .header-logo img { height: 40px; max-width: none; }
  .btn-book {
    padding: 9px 14px;
    font-size: 0.66rem;
    letter-spacing: 0.08em;
    border-width: 1.5px;
  }
  /* WCAG 2.5.5: 44px minimum tap target */
  .nav-toggle { width: 44px; height: 44px; }
  .site-sticky.scrolled .header-logo img { height: 38px; }
  .site-sticky.scrolled .site-header { padding-top: 10px; padding-bottom: 10px; }
}
@media (max-width: 380px) {
  .header-logo img { height: 32px; max-width: none; }
  .btn-book { padding: 8px 10px; font-size: 0.6rem; letter-spacing: 0.06em; }
}

/* --- Bottom nav bar wraps cleanly on small phones --- */
@media (max-width: 480px) {
  .main-nav { padding: 10px 8px; }
  .nav-list { gap: 10px 14px; row-gap: 8px; }
  .nav-list a { font-size: 0.66rem; letter-spacing: 0.1em; }
}

/* --- Testimonial dots: enlarge tap target while keeping visual size --- */
.testimonial-dots { gap: 4px; }
.testimonial-dots button {
  width: 44px;
  height: 44px;
  background: transparent;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.testimonial-dots button::before {
  content: '';
  display: block;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.3);
  transition: background 0.25s, width 0.25s, border-radius 0.25s;
}
.testimonial-dots button.active { background: transparent; width: 44px; }
.testimonial-dots button.active::before {
  background: var(--teal);
  width: 24px;
  border-radius: 4px;
}

/* --- About page: tighter padding on small phones --- */
@media (max-width: 560px) {
  .about-intro,
  .history,
  .safety,
  .testimonials,
  .visit-us,
  .blogs,
  .faq,
  .plan-day { padding-left: 20px !important; padding-right: 20px !important; padding-top: 56px !important; padding-bottom: 56px !important; }
  .about-hero-inner { padding: 36px 20px !important; }
  .about-hero { min-height: 440px; }
  .about-hero-inner h1 { font-size: clamp(2.2rem, 9vw, 3rem); }
  .about-intro-images img { height: 180px; }
  .tl-card-body { padding: 22px 20px 26px; }
  .tl-card-img { height: 180px; }
  .safety-point { padding: 28px 22px 30px; }
  .testimonial-text { font-size: 1rem; line-height: 1.6; padding: 0 8px; }
  .testimonial-quote-mark { font-size: 4rem; }
  .visit-card { padding: 28px 24px; }
  .blog-card-img { height: 200px; }
  .plan-overlay { padding: 24px 20px; }
  .plan-overlay h3 { font-size: 1.3rem; }
  .faq-grid { gap: 32px !important; }
  .accordion-body p { padding: 2px 18px 16px; }
}

/* --- Safety grid: tighten padding on small phones --- */
@media (max-width: 560px) {
  .safety-point:nth-child(even) { padding: 28px 22px 30px !important; }
}

/* --- Buttons: ensure 44px tap target everywhere --- */
@media (max-width: 768px) {
  .btn-pill,
  .btn-hero,
  .blog-read-more,
  .tl-card-body .btn-outline,
  .rates-date-btn,
  .bkm-btn {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
}

/* --- Index page: improve hero card heights on phone --- */
@media (max-width: 560px) {
  .hero-card { min-height: 380px; }
  .hero-label { padding: 14px 26px; font-size: 0.68rem; }
  .experience,
  .stays,
  .expertise,
  .choose-exp { padding-top: 56px; padding-bottom: 56px; }
  .choose-exp { padding-left: 16px; padding-right: 16px; }
  .experience-grid { gap: 32px; }
  .discover-box { padding: 22px 22px; }
  .stay-info { padding: 28px 22px; }
  .stay-info h3 { font-size: 1.55rem; }
  .stay-image img { height: 220px; }
  .expertise { padding-left: 20px; padding-right: 20px; }
  .expertise-content { padding: 0; }
  .expertise-image img { height: 280px; }
  .svc-card { min-height: 400px; }
  .svc-body { padding: 22px 22px 32px; }
  .testimonials-band { padding: 56px 20px; }
  .testimonials-grid { grid-template-columns: 1fr; gap: 16px; }
  .tcard { padding: 28px 24px; }
}

/* --- Tablet portrait: switch to single column earlier where useful --- */
@media (max-width: 768px) {
  .testimonials-grid { grid-template-columns: 1fr; }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 36px;
    padding: 48px 32px 32px;
    text-align: center;
  }
  .footer-brand { grid-column: 1 / -1; align-items: center; text-align: center; }
  .footer-col { text-align: center; }
  .footer-col h2 { margin-bottom: 14px; }
  .footer-col ul li { padding: 4px 0; }
  .social-icons { justify-content: center; }
  .footer-meta {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 6px;
  }
}


/* ---- Phase 3: Booking summary ---- */
.bkm-summary {
  margin: 20px 0 8px;
  border: 1px solid var(--beige-2);
  border-radius: 0;
  overflow: hidden;
}
.bkm-sum-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 13px 16px;
  font-size: 0.88rem;
  border-bottom: 1px solid var(--beige-2);
}
.bkm-sum-row:last-child { border-bottom: none; }
.bkm-sum-loading {
  padding: 20px 16px;
  font-size: 0.8rem;
  color: var(--text-muted);
  text-align: center;
  letter-spacing: 0.05em;
}
.bkm-sum-label {
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--text-muted);
}
.bkm-sum-value {
  font-weight: 600;
  color: var(--text);
}
/* Summary section headers */
.bkm-sum-section {
  padding: 8px 16px 6px;
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--teal);
  background: var(--beige-soft);
  border-bottom: 1px solid var(--beige-2);
}
/* Subtotal row (room total) */
.bkm-sum-row--subtotal {
  background: var(--beige-soft);
}
.bkm-sum-row--subtotal .bkm-sum-value {
  font-weight: 700;
}
/* Meal extra rows */
.bkm-sum-row--meal .bkm-sum-label {
  color: var(--text);
}
.bkm-sum-row--meal .bkm-sum-value {
  color: var(--text-muted);
  font-weight: 500;
}
/* Grand total row */
.bkm-sum-row--total {
  background: var(--teal);
}
.bkm-sum-row--total .bkm-sum-label,
.bkm-sum-row--total .bkm-sum-value {
  color: #fff;
}
.bkm-sum-row--total .bkm-sum-label {
  letter-spacing: 0.16em;
}
/* Muted row (unavailable nights) */
.bkm-sum-row--muted .bkm-sum-value {
  color: var(--text-muted);
  font-style: italic;
  font-weight: 400;
}
/* Footnote below meal extras */
.bkm-sum-footnote {
  padding: 10px 16px;
  font-size: 0.72rem;
  color: var(--text-muted);
  line-height: 1.5;
  border-top: 1px solid var(--beige-2);
  font-style: italic;
}

.bkm-sum-footnote--rate-note {
  color: var(--forest);
  font-style: normal;
  font-weight: 500;
  border-top: none;
  padding-top: 4px;
}

/* Inline notice shown when a specific room type is selected but the rate displayed
   is the property's lowest available (not that room's confirmed rate) */
.bkm-sum-room-rate-notice {
  margin: 4px 16px 8px;
  padding: 8px 12px;
  background: #fff8e1;
  border-left: 3px solid #e6a817;
  border-radius: 3px;
  font-size: 0.72rem;
  line-height: 1.55;
  color: #6b4c00;
}

/* ---- Capacity hint (config form, below acctype select) ---- */
.bkm-capacity-hint {
  font-size: 0.72rem;
  line-height: 1.4;
  margin-top: 6px;
  padding: 6px 0 6px 10px;
  border-radius: 0;
  border-left: 2px solid transparent;
  display: none;
}
.bkm-capacity-hint--ok {
  display: block;
  color: var(--teal);
  border-left-color: var(--teal);
  background: rgba(78,148,132,0.06);
}
.bkm-capacity-hint--warn {
  display: block;
  color: #b34a00;
  border-left-color: #b34a00;
  background: #fff4eb;
}
.bkm-capacity-hint--info {
  display: block;
  color: var(--text-muted);
  border-left-color: var(--border);
  background: var(--beige-soft);
}
/* ---- Capacity warning in booking summary ---- */
.bkm-sum-capwarn {
  padding: 10px 16px;
  font-size: 0.75rem;
  line-height: 1.5;
  color: #b34a00;
  background: #fff4eb;
  border-top: 1px solid #ffd8b0;
  border-bottom: 1px solid #ffd8b0;
}
/* ---- Availability warning in booking summary ---- */
.bkm-sum-avail-warn {
  padding: 12px 16px;
  margin: 12px 0;
  font-size: 0.75rem;
  line-height: 1.5;
  color: #7a1818;
  background: #fdf2f2;
  border: 1px solid #f0b8b8;
  border-radius: 2px;
}
.bkm-btn-proceed {
  display: block;
  text-align: center;
  text-decoration: none;
  margin-top: 28px;
  padding: 18px 30px;
  background: var(--dark-deep);
  color: var(--white);
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  transition: background 0.2s, color 0.2s;
  border-radius: 0;
}
.bkm-btn-proceed:hover {
  background: var(--teal);
  color: var(--white);
}
.bkm-req { color: var(--teal); }

/* --- Booking modal: actually fit smaller phones --- */
@media (max-width: 560px) {
  .bkm-overlay { padding: 0; align-items: flex-end; }
  .bkm-panel { max-height: 94dvh; border-radius: 0; }
  .bkm-form { padding: 26px 22px 22px; }
  .bkm-form-title { font-size: 1.45rem; }
  .bkm-fields { gap: 18px; margin-bottom: 6px; }
}

/* --- Plan-day cards spacing on phone --- */
@media (max-width: 560px) {
  .plan-cards { gap: 16px; }
  .plan-card { min-height: 300px; }
}

/* --- Newsletter form: stack on very small phones --- */
@media (max-width: 480px) {
  .newsletter-form {
    flex-direction: column !important;
    gap: 0;
  }
  .newsletter-btn {
    width: 100%;
  }
}

/* --- Newsletter band: reduce horizontal padding on phones (overrides inline page styles) --- */
@media (max-width: 640px) {
  .newsletter-band {
    padding-left: 24px !important;
    padding-right: 24px !important;
  }
}

/* --- FAQ: hide large decorative heading on mobile, show compact label --- */
@media (max-width: 880px) {
  .faq-grid > div:first-child .heading-display {
    font-size: 1.1rem;
    margin-bottom: 8px;
  }
  .faq-grid > div:first-child .heading-display br { display: none; }
  .faq-grid { gap: 24px !important; }
}

/* =====================================================
   COOKIE CONSENT BANNER + PREFERENCES MODAL
   (Hilston brand: rectangular, no curves)
   ===================================================== */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9998;
  background: var(--dark-deep);
  color: var(--white);
  border-top: 3px solid var(--teal);
  border-radius: 0;
  box-shadow: 0 -12px 36px rgba(0, 0, 0, 0.28);
  padding: 22px 32px;
  font-family: var(--font-sans);
  opacity: 0;
  transform: translateY(100%);
  pointer-events: none;
  transition: opacity .35s ease, transform .4s cubic-bezier(0.22, 1, 0.36, 1);
}
.cookie-banner.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.cookie-banner-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}
.cookie-banner-text {
  flex: 1 1 320px;
  min-width: 0;
}
.cookie-banner-text strong {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.05rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  margin-bottom: 6px;
  color: var(--white);
}
.cookie-banner-text p {
  margin: 0;
  font-size: .9rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.85);
}
.cookie-banner-text a {
  color: var(--white);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.cookie-banner-text a:hover { color: var(--beige); }
.cookie-banner-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.cookie-btn {
  border: 0;
  border-radius: 0;
  padding: 13px 28px;
  font-family: var(--font-sans);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background .25s ease, color .25s ease, border-color .25s ease;
  white-space: nowrap;
}
.cookie-btn-manage {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255, 255, 255, 0.55);
}
.cookie-btn-manage:hover {
  background: var(--white);
  color: var(--dark-deep);
  border-color: var(--white);
}
.cookie-btn-accept {
  background: var(--teal);
  color: var(--white);
  border: 1.5px solid var(--teal);
}
.cookie-btn-accept:hover {
  background: var(--teal-dark);
  border-color: var(--teal-dark);
}

.cookie-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(20, 28, 34, 0.65);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s ease;
}
.cookie-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}
.cookie-modal-panel {
  position: relative;
  background: var(--beige-soft);
  color: var(--text);
  border-radius: 0;
  border-top: 3px solid var(--teal);
  max-width: 580px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  padding: 40px 36px 32px;
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.38);
  transform: translateY(16px);
  opacity: 0;
  transition: transform .32s cubic-bezier(0.22, 1, 0.36, 1), opacity .25s ease;
}
.cookie-modal.is-open .cookie-modal-panel {
  transform: translateY(0);
  opacity: 1;
}
.cookie-modal-close {
  position: absolute;
  top: 8px;
  right: 12px;
  background: transparent;
  border: 0;
  font-size: 1.8rem;
  line-height: 1;
  color: var(--text-muted);
  cursor: pointer;
  padding: 6px 10px;
  transition: color .2s ease;
}
.cookie-modal-close:hover { color: var(--dark-deep); }
.cookie-modal-panel h2 {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  letter-spacing: .04em;
  margin-bottom: 10px;
  color: var(--dark-deep);
}
.cookie-modal-panel > p {
  font-size: .92rem;
  color: var(--text-muted);
  margin-bottom: 22px;
  line-height: 1.6;
}
.cookie-pref {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 26px;
}
.cookie-pref-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 20px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 0;
}
.cookie-pref-row > div:first-child { flex: 1; min-width: 0; }
.cookie-pref-row strong {
  display: block;
  font-family: var(--font-serif);
  font-size: 1rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--dark-deep);
  margin-bottom: 4px;
}
.cookie-pref-row p {
  margin: 0;
  font-size: .82rem;
  color: var(--text-muted);
  line-height: 1.5;
}
.cookie-toggle-fixed {
  font-size: .7rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--teal);
  font-weight: 600;
  padding: 6px 10px;
  border: 1px solid var(--teal);
  flex-shrink: 0;
  margin-top: 2px;
}
.cookie-toggle {
  position: relative;
  display: inline-block;
  width: 48px;
  height: 24px;
  flex-shrink: 0;
  margin-top: 4px;
}
.cookie-toggle input {
  opacity: 0;
  width: 0;
  height: 0;
}
.cookie-toggle-slider {
  position: absolute;
  inset: 0;
  background: var(--beige-2);
  border: 1px solid var(--border);
  border-radius: 0;
  transition: background .2s ease, border-color .2s ease;
}
.cookie-toggle-slider::before {
  content: "";
  position: absolute;
  height: 18px;
  width: 18px;
  left: 2px;
  top: 2px;
  background: var(--white);
  border-radius: 0;
  transition: transform .25s ease, background .2s ease;
}
.cookie-toggle input:checked + .cookie-toggle-slider {
  background: var(--teal);
  border-color: var(--teal);
}
.cookie-toggle input:checked + .cookie-toggle-slider::before { transform: translateX(24px); }
.cookie-toggle input:focus-visible + .cookie-toggle-slider {
  outline: 2px solid var(--teal);
  outline-offset: 2px;
}
.cookie-modal-actions {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
}
.cookie-modal-actions .cookie-btn-accept {
  background: var(--teal);
  color: var(--white);
  border-color: var(--teal);
}
.cookie-modal-actions .cookie-btn-accept:hover {
  background: var(--teal-dark);
  border-color: var(--teal-dark);
}

@media (max-width: 760px) {
  .cookie-banner { padding: 18px 20px; }
  .cookie-banner-inner { gap: 16px; }
  .cookie-banner-actions { width: 100%; }
  .cookie-banner-actions .cookie-btn { flex: 1; padding: 13px 14px; font-size: .72rem; letter-spacing: .14em; }
  .cookie-modal-panel { padding: 32px 22px 24px; }
  .cookie-pref-row { padding: 14px 16px; gap: 14px; }
}



/* =================================================================
   HCS — Hilston Custom Select
   Replaces native <select> for consistent cross-platform styling.
   Variants: .hcs--box (bordered, forms), .hcs--line (underline, modal)
   ================================================================= */
.hcs { position: relative; width: 100%; }
.hcs-btn {
  display: flex; align-items: center; justify-content: space-between;
  width: 100%; background: none; border: none; padding: 0;
  cursor: pointer; text-align: left; font-family: var(--font-sans);
  -webkit-tap-highlight-color: transparent;
}
.hcs-btn:focus { outline: none; }
.hcs-btn:focus-visible { outline: 2px solid var(--teal); outline-offset: 2px; }
.hcs-value {
  flex: 1; overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
  transition: color 0.15s;
}
.hcs-placeholder { color: rgba(74,99,113,0.45); }
.hcs-arrow {
  flex-shrink: 0; margin-left: 8px; transition: transform 0.22s ease, opacity 0.22s ease;
  pointer-events: none; color: var(--teal); display: block; line-height: 0;
}
.hcs.hcs-open .hcs-arrow { transform: rotate(180deg); }

/* --- Box variant (contact form, matches input/textarea styling) --- */
.hcs--box .hcs-btn {
  padding: 13px 16px; border: 1px solid var(--border);
  background: var(--beige); font-size: 0.88rem; color: var(--text);
  transition: border-color 0.2s;
}
.hcs--box.hcs-open .hcs-btn,
.hcs--box .hcs-btn:focus-visible { border-color: var(--teal); }

/* --- Line variant (booking modal, matches date/number field underline style) --- */
.hcs--line { position: relative; }
.hcs--line .hcs-btn {
  padding: 11px 22px 10px 0; border-bottom: 1px solid var(--beige-2);
  font-size: 0.92rem; color: var(--text); transition: border-bottom-color 0.22s;
}
.hcs--line.hcs-open .hcs-btn,
.hcs--line .hcs-btn:focus-visible {
  border-bottom-color: var(--teal); outline: none;
}
.hcs--line .hcs-arrow {
  position: absolute; right: 0; top: 50%;
  transform: translateY(-50%); margin-left: 0; opacity: 0.65;
}
.hcs--line.hcs-open .hcs-arrow { transform: translateY(-50%) rotate(180deg); opacity: 1; }

/* --- Filter variant (gallery mobile, shown at full width) --- */
.hcs--filter .hcs-btn {
  padding: 10px 36px 10px 16px;
  border: 1.5px solid var(--border);
  background: var(--white); font-size: 0.78rem; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase; color: var(--text);
  transition: border-color 0.2s;
}
.hcs--filter.hcs-open .hcs-btn { border-color: var(--teal); }
.hcs--filter .hcs-arrow { margin-left: 0; position: absolute; right: 12px; top: 50%; transform: translateY(-50%); }
.hcs--filter.hcs-open .hcs-arrow { transform: translateY(-50%) rotate(180deg); }

/* --- Dropdown list --- */
.hcs-list {
  display: none; position: absolute; top: calc(100% + 1px); left: 0;
  width: 100%; background: var(--white);
  border: 1px solid var(--border); border-top: none;
  z-index: 9999; list-style: none; margin: 0; padding: 0;
  box-shadow: 0 8px 24px rgba(0,0,0,0.10); max-height: 260px;
  overflow-y: auto;
}
.hcs.hcs-open .hcs-list { display: block; }
.hcs-opt {
  padding: 11px 16px; font-family: var(--font-sans); font-size: 0.88rem;
  color: var(--text); cursor: pointer; user-select: none;
  transition: background 0.12s, color 0.12s;
}
.hcs-opt--placeholder { color: rgba(74,99,113,0.45); font-style: italic; }
.hcs-opt:hover,
.hcs-opt.hcs-focused { background: var(--beige); color: var(--teal); }
.hcs-opt.hcs-selected { background: var(--teal); color: var(--white); }
.hcs-opt.hcs-selected:hover { background: var(--teal-dark); color: var(--white); }


/* =================================================================
   Flatpickr — Hilston Brand Theme
   Rectangular, teal accent, dark header, Bodoni month label
   ================================================================= */

/* Calendar wrapper */
.flatpickr-calendar {
  font-family: var(--font-sans) !important;
  border: 1px solid var(--border);
  border-radius: 0 !important;
  box-shadow: 0 24px 64px rgba(36,50,58,0.18), 0 4px 16px rgba(36,50,58,0.08);
  padding: 0;
  width: 322px;
  overflow: hidden;
}
.flatpickr-calendar::before,
.flatpickr-calendar::after { display: none !important; }

/* ── Header bar ── */
.flatpickr-months {
  background: var(--dark-deep) !important;
  height: 54px; padding: 0;
}
.flatpickr-months .flatpickr-month {
  background: transparent !important;
  color: var(--white) !important;
  fill: var(--white) !important;
  height: 54px;
}

/* Month + year — Bodoni, clean, no native chevron */
.flatpickr-current-month {
  font-family: var(--font-serif) !important;
  font-size: 1.05rem; font-weight: normal; letter-spacing: 0.04em;
  color: var(--white) !important;
  padding-top: 0;
  display: flex !important;
  align-items: center;
  justify-content: center;
  height: 54px;
  gap: 0;
}

/* Month select — strip native dropdown arrow, fit to content */
.flatpickr-current-month .flatpickr-monthDropdown-months {
  color: var(--white) !important;
  background: transparent !important;
  font-family: var(--font-serif) !important;
  font-size: 1.05rem; font-weight: normal;
  -webkit-appearance: none; -moz-appearance: none; appearance: none;
  border: none !important; outline: none !important;
  cursor: pointer; padding: 0;
  margin: 0 6px 0 0;
  transition: opacity 0.15s;
}
.flatpickr-current-month .flatpickr-monthDropdown-months:hover { opacity: 0.8; }

/* Year input — strip spinners, tight width */
.flatpickr-current-month .numInputWrapper { width: auto; margin: 0; }
.flatpickr-current-month .numInputWrapper span.arrowUp,
.flatpickr-current-month .numInputWrapper span.arrowDown { display: none !important; }
.flatpickr-current-month input.cur-year {
  color: var(--white) !important;
  font-family: var(--font-serif) !important;
  font-size: 1.05rem; font-weight: normal;
  background: transparent; border: none; padding: 0;
  width: 4.2ch;
  -webkit-appearance: none; -moz-appearance: none;
  cursor: default;
}

/* Nav arrows — refined, vertically centred */
.flatpickr-prev-month, .flatpickr-next-month {
  fill: rgba(255,255,255,0.55) !important;
  padding: 0 14px;
  top: 0; height: 54px;
  display: flex !important;
  align-items: center; justify-content: center;
  transition: fill 0.18s, background 0.18s;
}
.flatpickr-prev-month:hover, .flatpickr-next-month:hover {
  fill: var(--white) !important;
  background: rgba(255,255,255,0.1) !important;
}
.flatpickr-prev-month svg, .flatpickr-next-month svg { width: 9px; height: 9px; }

/* ── Weekday labels ── */
.flatpickr-weekdays {
  background: var(--beige) !important;
  padding: 0 8px;
  height: 34px;
  border-bottom: 1px solid rgba(74,99,113,0.1);
}
.flatpickr-weekdaycontainer { height: 34px; }
span.flatpickr-weekday {
  font-size: 0.57rem; font-weight: 700; letter-spacing: 0.13em;
  text-transform: uppercase; color: var(--text-muted);
  background: transparent; line-height: 34px;
}

/* ── Day grid ── */
.flatpickr-days { border: none !important; padding: 6px 8px 10px; width: 322px !important; }
.dayContainer {
  padding: 0;
  width: 306px !important;
  min-width: 306px !important;
  max-width: 306px !important;
}
.flatpickr-day {
  border-radius: 0 !important;
  font-family: var(--font-sans); font-size: 0.84rem; color: var(--text);
  max-width: none;
  width: calc(306px / 7); flex-basis: calc(306px / 7);
  height: 38px; line-height: 38px;
  border: none !important; margin: 1px 0;
  transition: background 0.12s, color 0.12s;
}
.flatpickr-day:hover { background: var(--beige) !important; color: var(--teal) !important; }

/* Today — teal underline only, no fill */
.flatpickr-day.today {
  border: none !important;
  border-bottom: 2px solid var(--teal) !important;
  border-radius: 0 !important;
  background: transparent !important;
  color: var(--teal) !important; font-weight: 700;
}
.flatpickr-day.today:hover {
  background: var(--teal) !important;
  color: var(--white) !important;
  border-bottom-color: var(--teal) !important;
}

/* Selected */
.flatpickr-day.selected,
.flatpickr-day.selected:hover,
.flatpickr-day.startRange,
.flatpickr-day.endRange {
  background: var(--teal) !important; color: var(--white) !important;
  border-color: var(--teal) !important; border-radius: 0 !important; font-weight: 600;
}

/* Disabled / out-of-month */
.flatpickr-day.flatpickr-disabled,
.flatpickr-day.flatpickr-disabled:hover,
.flatpickr-day.prevMonthDay,
.flatpickr-day.nextMonthDay {
  color: rgba(74,99,113,0.18) !important; background: transparent !important;
}

/* Alt-input styling: booking modal (line underline style) */
.bkm-field input[type="text"] {
  border: none; border-bottom: 1px solid var(--beige-2);
  padding: 11px 0 10px; font-family: var(--font-sans); font-size: 0.92rem;
  color: var(--text); background: transparent; outline: none;
  transition: border-bottom-color 0.22s; width: 100%; cursor: pointer;
  border-radius: 0; box-shadow: none;
}
.bkm-field input[type="text"]:focus { border-bottom-color: var(--teal); outline: none; }
.bkm-field input[type="text"]::placeholder { color: rgba(74,99,113,0.38); font-size: 0.88rem; }

/* Alt-input styling: accommodation rates bar (dark bg, white text) */
.rates-filter-group input[type="text"] {
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.18);
  color: var(--white); padding: 10px 14px; font-size: 0.88rem;
  font-family: var(--font-sans); outline: none; width: 100%;
  cursor: pointer; border-radius: 0; box-shadow: none;
}
.rates-filter-group input[type="text"]::placeholder { color: rgba(255,255,255,0.4); }
.rates-filter-group input[type="text"]:focus { border-color: rgba(255,255,255,0.5); outline: none; }

/* =====================================================
   WHATSAPP FLOATING BUTTON
   ===================================================== */
.wa-btn {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 10001;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  box-shadow: 0 4px 18px rgba(0,0,0,0.22);
  text-decoration: none;
  opacity: 0;
  transform: scale(0.7) translateY(12px);
  pointer-events: none;
  cursor: pointer;
  transition: opacity 0.4s ease, transform 0.4s ease, background 0.2s ease, box-shadow 0.2s ease;
}
.wa-btn.is-visible {
  opacity: 1;
  transform: scale(1) translateY(0);
  pointer-events: auto;
}
/* Shift above consent banner when it's showing */
body:has(#hp-cookie-banner.hpcc-show) .wa-btn {
  transform: translateY(-122px);
}
.wa-btn:hover {
  background: #1ebe5d;
  box-shadow: 0 6px 24px rgba(0,0,0,0.28);
  transform: scale(1.07) translateY(-2px);
}
body:has(#hp-cookie-banner.hpcc-show) .wa-btn:hover {
  transform: scale(1.07) translateY(-124px);
}
.wa-btn svg {
  width: 30px;
  height: 30px;
  flex-shrink: 0;
}
/* Tooltip */
.wa-tooltip {
  position: absolute;
  right: 68px;
  top: 50%;
  transform: translateY(-50%);
  background: #1a1a1a;
  color: #fff;
  font-size: 0.78rem;
  font-family: var(--font-sans);
  white-space: nowrap;
  padding: 5px 10px;
  border-radius: 4px;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.2s;
}
.wa-tooltip::after {
  content: '';
  position: absolute;
  left: 100%;
  top: 50%;
  transform: translateY(-50%);
  border: 5px solid transparent;
  border-left-color: #1a1a1a;
}
.wa-btn:hover .wa-tooltip,
.wa-btn:focus .wa-tooltip {
  opacity: 1;
}
/* On mobile push up if a cookie banner might overlap */
@media (max-width: 600px) {
  .wa-btn { bottom: 20px; right: 16px; width: 52px; height: 52px; }
  .wa-btn svg { width: 26px; height: 26px; }
  .wa-tooltip { display: none; }
  body:has(#hp-cookie-banner.hpcc-show) .wa-btn { transform: translateY(-125px); }
  .hp-cookie-reopen { bottom: 82px; right: 16px; width: 52px; height: 52px; font-size: 1.1rem; }
  .hp-cookie-reopen.is-visible { opacity: 1; transform: scale(1) translateY(0); pointer-events: auto; }
}
