/* CortenHuys -- static site styles
   Palette: dark navy header/footer + corten-steel rust accent, matching
   the wood-and-weathering-steel exterior of the lodge itself. */

:root {
  --color-dark: #1c1c1c;
  --color-dark-2: #12141b;
  --color-text: #656565;
  --color-heading: #383838;
  --color-muted: #979797;
  --color-accent: #b5622f;
  --color-accent-dark: #8f4c23;
  --color-cream: #f6f3ee;
  --color-border: #e7e3db;
  --font: "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --max-width: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  color: var(--color-text);
  background: #fff;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3 { color: var(--color-heading); font-weight: 600; margin: 0 0 .6em; line-height: 1.25; }
h2 { font-size: 1.9rem; }
h3 { font-size: 1.15rem; }
p { margin: 0 0 1.2em; }
ul { padding-left: 1.2em; }

/* ---------- buttons ---------- */
.btn {
  display: inline-block;
  padding: .85em 1.8em;
  border-radius: 2px;
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background .2s, color .2s, border-color .2s;
}
.btn-primary { background: #915f47; color: #fff; }
.btn-primary:hover { background: #744c39; }
.btn-outline { border-color: currentColor; }
.btn-outline:hover { background: rgba(255,255,255,.12); }
.btn-small { padding: .6em 1.3em; font-size: .72rem; }

/* ---------- header ----------
   Transparent overlay on top of the hero image while at the top of the
   page (the hero's own dark gradient keeps the white nav text legible).
   Past a scroll threshold, JS adds .is-scrolled: the header becomes a
   fixed, solid, compact bar (topbar hidden) -- matching the live site's
   sticky-on-scroll behaviour. */
.site-header { position: absolute; top: 0; left: 0; right: 0; z-index: 50; background: transparent; transition: background .25s ease; }
.site-header.is-scrolled {
  position: fixed;
  background: var(--color-dark);
  box-shadow: 0 4px 18px rgba(0,0,0,.25);
}
.site-header.is-scrolled .topbar { display: none; }
.site-header.is-scrolled .main-nav { padding: .8em 2rem; }
.topbar {
  color: rgba(255,255,255,.92);
  font-size: .78rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1em 2rem .6em;
}
.topbar-inner { display: flex; gap: 1.6em; }
.topbar-link { display: inline-flex; align-items: center; gap: .4em; letter-spacing: 2px; font-weight: 600; }
.lang-switch { display: flex; gap: .6em; align-items: center; }
.lang-flag { display: inline-flex; opacity: .5; padding: .15em; border-radius: 2px; line-height: 0; }
.lang-flag img { display: block; border-radius: 1px; }
.lang-flag.is-active, .lang-flag:hover { opacity: 1; }

.main-nav {
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: .6em 2rem 1.4em;
  gap: 2rem;
}
.logo { white-space: nowrap; }
.logo-img { height: 34px; width: auto; }
.nav-collapse { display: contents; }
.nav-links { list-style: none; display: flex; gap: 1.8em; margin: 0; padding: 0; flex: 1; justify-content: center; }
.nav-links a { font-size: .85rem; letter-spacing: 2px; font-weight: 600; padding-bottom: .3em; border-bottom: 2px solid transparent; }
.nav-links a:hover, .nav-links a.is-active { border-color: var(--color-accent); }
.nav-cta { color: #fff; white-space: nowrap; }
.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: .4em; }
.nav-toggle span { width: 22px; height: 2px; background: #fff; }

/* ---------- hero ----------
   .hero-bg carries the photo + rounded corners + gradient overlay and clips
   itself (overflow:hidden), while .hero itself stays un-clipped so the
   booking form's dropdowns and native date picker -- which need to render
   outside the hero's box -- are never cut off. */
.hero {
  position: relative;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.hero-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  border-radius: 0 0 20px 20px;
  overflow: hidden;
  z-index: 0;
}
.hero-bg::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(18,20,27,.55), rgba(18,20,27,.45));
}
.hero-home { min-height: 100vh; padding-top: 5rem; }
.hero-page { min-height: 64vh; padding-top: 5rem; }
.tpl-boeken .hero-page { min-height: 32vh; }
.hero-inner { position: relative; z-index: 1; max-width: 1100px; padding: 2rem; width: 100%; }
.hero h1 { color: #fff; font-size: 2.6rem; }
.hero h1.hero-script {
  font-family: "Allison", cursive;
  font-weight: 400;
  font-size: clamp(3rem, 8vw, 5.8rem);
  line-height: 1.15;
  margin-bottom: .15em;
}
.hero-subtitle { font-size: 1.05rem; opacity: .92; }

/* Homepage hero: static aggregate score badge (always the same two
   numbers), sitting above the rotating single-review pill below it. */
.hero-ratings {
  display: inline-flex; align-items: center; gap: .6em;
  margin-top: 1em; padding: .5em 1.1em;
  background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.25);
  border-radius: 30px; font-size: .78rem; letter-spacing: .01em;
  color: #fff; opacity: .95; transition: opacity .2s, background .2s;
  max-width: 100%; min-width: 0; flex-wrap: wrap; justify-content: center;
}
.hero-ratings:hover { opacity: 1; background: rgba(255,255,255,.18); }
.star-row { display: inline-flex; gap: .1em; flex: none; }
.hero-ratings-star-row svg { width: 11px; height: 11px; color: var(--color-accent); }
.hero-ratings b { font-weight: 700; }
.hero-ratings .sep { opacity: .5; }

/* Homepage hero: rotating guest review, one at a time, cross-fading.
   A single fixed-size pill so the layout never jumps between slides. */
.hero-reviews {
  display: inline-flex; align-items: center; gap: .7em;
  margin-top: .7em; padding: .6em 1.3em;
  background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.25);
  border-radius: 30px; color: #fff; opacity: .95;
  max-width: min(34em, 100%); min-width: 0; text-align: left;
  transition: opacity .2s, background .2s;
}
.hero-reviews:hover { opacity: 1; background: rgba(255,255,255,.18); }
.hero-review-content { display: flex; flex-direction: column; gap: .2em; min-width: 0; transition: opacity .4s ease; }
.hero-review-content.is-fading { opacity: 0; }
.hero-review-text {
  display: block; min-width: 0;
  font-size: .78rem; font-style: italic;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.hero-review-meta { font-size: .66rem; letter-spacing: .02em; opacity: .75; }

/* Home hero: heading centered in the free space above, booking bar
   pinned to the bottom edge of the hero (margin-top: auto eats the
   remaining vertical space), matching the live site's layout. */
.hero-home .hero-inner { display: flex; flex-direction: column; align-items: center; min-height: calc(100vh - 5rem); padding-bottom: 2.5rem; }
.hero-heading { width: 100%; max-width: 700px; min-width: 0; margin: auto; }
.hero-home .hero-heading { margin-top: 0; }

.booking-teaser {
  margin-top: auto;
  width: 100%;
  background: #fff;
  border-radius: 6px;
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  box-shadow: 0 18px 40px rgba(0,0,0,.3);
  /* No overflow:hidden here -- the guests dropdown and card corners both
     need to render outside this box, so each end declares its own corner
     radius below instead of relying on clipping. */
}
.booking-date-group { position: relative; display: flex; flex: 2; }
.booking-field {
  position: relative;
  text-align: left;
  padding: .9em 1.8em;
  border-right: 1px solid var(--color-border);
  border-top: 0; border-bottom: 0; border-left: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: .25em;
  cursor: pointer;
  flex: 1;
  background: none;
  font-family: inherit;
  color: inherit;
}
.booking-date-group .booking-field:first-child { border-radius: 6px 0 0 6px; }
.booking-label { font-size: .65rem; letter-spacing: .08em; text-transform: uppercase; color: var(--color-muted); }
.booking-value { font-size: .88rem; font-weight: 600; color: var(--color-heading); }
.booking-teaser .btn { border-radius: 0 6px 6px 0; align-self: stretch; display: flex; align-items: center; justify-content: center; border: 0; flex: 0 0 auto; padding-left: 2.4em; padding-right: 2.4em; }
.booking-guests summary {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: .25em;
}
.booking-guests summary::-webkit-details-marker { display: none; }
.booking-guests summary::after {
  content: ""; position: absolute; right: .6em; top: 50%; margin-top: -3px;
  width: 7px; height: 7px; border-right: 1.5px solid var(--color-muted); border-bottom: 1.5px solid var(--color-muted);
  transform: rotate(45deg);
}
.booking-guests-panel {
  position: absolute; top: 100%; left: 0; margin-top: .5em; z-index: 5;
  background: #fff; border: 1px solid var(--color-border); border-radius: 6px;
  box-shadow: 0 12px 28px rgba(0,0,0,.18); padding: 1.1em 1.3em; display: flex; flex-direction: column; gap: 1em; min-width: 220px;
}
/* Flips the panel to open upward instead, for when the trigger sits low
   enough on the page that opening downward would run off-screen. */
.booking-guests-panel.drop-up { top: auto; bottom: 100%; margin-top: 0; margin-bottom: .5em; }

/* guest count steppers (+/- buttons instead of native number spinners) */
.guest-stepper { display: flex; justify-content: space-between; align-items: center; gap: 1.5em; font-size: .82rem; color: var(--color-heading); white-space: nowrap; }
.stepper-controls { display: flex; align-items: center; gap: .7em; }
.stepper-btn {
  width: 26px; height: 26px; border-radius: 50%; border: 1px solid var(--color-border);
  background: #fff; color: var(--color-heading); font-size: 1rem; line-height: 1;
  cursor: pointer; display: flex; align-items: center; justify-content: center; padding: 0;
}
.stepper-btn:hover:not(:disabled) { border-color: var(--color-accent); color: var(--color-accent); }
.stepper-btn:disabled { opacity: .3; cursor: default; }
.stepper-value { min-width: 1.4em; text-align: center; font-weight: 600; }

/* custom calendar date-range dropdown */
.date-picker-dropdown {
  position: absolute; top: 100%; left: 0; margin-top: .5em; z-index: 10;
  background: #fff; border: 1px solid var(--color-border); border-radius: 6px;
  box-shadow: 0 20px 50px rgba(0,0,0,.25); padding: 1.3em 1.5em; width: 560px; max-width: 90vw;
}
.date-picker-dropdown.drop-up { top: auto; bottom: 100%; margin-top: 0; margin-bottom: .5em; }
.date-picker-header {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 1em; padding-bottom: .9em; border-bottom: 1px solid var(--color-border);
  font-weight: 600; font-size: .85rem; color: var(--color-heading);
}
.date-picker-nav { display: flex; gap: .5em; }
.date-picker-nav-btn {
  background: none; border: 1px solid var(--color-border); border-radius: 4px;
  width: 26px; height: 26px; cursor: pointer; color: var(--color-heading); font-size: 1rem; line-height: 1;
}
.date-picker-nav-btn:hover { border-color: var(--color-accent); color: var(--color-accent); }
.date-picker-months { display: flex; gap: 2.5em; }
.date-picker-month { flex: 1; min-width: 0; }
.date-picker-month-header {
  text-align: center; font-size: .74rem; font-weight: 600; letter-spacing: .06em;
  text-transform: uppercase; color: var(--color-heading); margin-bottom: .7em;
}
.date-picker-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 2px; }
.date-picker-dow { text-align: center; font-size: .66rem; color: var(--color-muted); padding: .3em 0; }
.date-picker-day {
  border: 0; background: none; padding: .5em 0; font-size: .76rem; cursor: pointer;
  border-radius: 50%; color: var(--color-heading);
}
.date-picker-day:hover:not(:disabled) { background: var(--color-cream); }
.date-picker-day.is-selected { background: var(--color-heading); color: #fff; }
.date-picker-day.is-in-range { background: var(--color-cream); border-radius: 0; }
.date-picker-day:disabled { color: var(--color-border); cursor: default; }

/* ---------- sections ---------- */
.section { padding: 4.5rem 2rem; }
.section-muted { background: var(--color-cream); }
.section-booking { padding-top: 0; }
.section-inner { max-width: var(--max-width); margin: 0 auto; }
.section-inner.narrow { max-width: 780px; }
.section-inner.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; }
.section-intro { max-width: 620px; }
.prose p { margin-bottom: 1.3em; }
.center-cta { text-align: center; margin-top: 2.5em; }

/* ---------- homepage welcome (house slideshow + text) ---------- */
.welcome-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.welcome-slideshow {
  position: relative; width: 100%; aspect-ratio: 4 / 5; border-radius: 16px;
  overflow: hidden; box-shadow: 0 25px 60px rgba(0,0,0,.22);
}
.welcome-slide {
  position: absolute; inset: 0; background-size: cover; background-position: center;
  opacity: 0; transition: opacity 1.4s ease;
}
.welcome-slide.is-active { opacity: 1; z-index: 1; }
.welcome-text h2 { margin-bottom: .5em; }
.welcome-text .btn { margin-top: 1em; }

/* ---------- specs / facilities ---------- */
.specs-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; }
.spec { display: flex; gap: 1em; align-items: flex-start; }
.spec-icon { flex: none; width: 26px; height: 26px; color: var(--color-accent); margin-top: .15em; }
.spec h3 { font-size: .95rem; text-transform: uppercase; letter-spacing: .04em; margin-bottom: .2em; }
.spec p { color: var(--color-text); margin: 0; }
.tick-list { list-style: none; padding: 0; }
.tick-list li {
  padding: .5em 0 .5em 1.6em;
  border-bottom: 1px solid var(--color-border);
  position: relative;
}
.tick-list li::before {
  content: "";
  position: absolute; left: 0; top: 1em;
  width: 8px; height: 8px;
  background: var(--color-accent);
  border-radius: 50%;
}

/* ---------- facility icon cards (wellness / lodge) ---------- */
.facility-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); gap: .8rem; margin-top: 1.2em; }
.facility-card {
  display: flex; align-items: center; gap: .7em;
  border: 1px solid var(--color-border); border-radius: 4px;
  padding: .8em 1em; background: #fff; font-size: .85rem; color: var(--color-heading);
}
.facility-icon { flex: none; width: 22px; height: 22px; color: var(--color-accent); }

/* ---------- accordion (native <details>) ---------- */
.faq-group-title { margin-top: 2em; }
.accordion-item { border-bottom: 1px solid var(--color-border); padding: .9em 0; }
.accordion-item summary {
  cursor: pointer;
  font-weight: 600;
  color: var(--color-heading);
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.accordion-item summary::-webkit-details-marker { display: none; }
.accordion-item summary::after { content: "+"; font-size: 1.3rem; color: var(--color-accent); }
.accordion-item[open] summary::after { content: "\2212"; }
.accordion-body { padding-top: .8em; }
.accordion-body video { width: 100%; margin-top: 1em; border-radius: 4px; }

/* ---------- gallery ---------- */
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: .6rem; }
.gallery-item {
  aspect-ratio: 4/3; background-size: cover; background-position: center; border-radius: 3px;
  border: 0; padding: 0; cursor: pointer; display: block; width: 100%;
  transition: opacity .15s;
}
.gallery-item:hover { opacity: .85; }

/* ---------- lightbox ---------- */
.lightbox {
  position: fixed; inset: 0; z-index: 100;
  background: rgba(12,13,17,.92);
  display: flex; align-items: center; justify-content: center;
  padding: 3rem 1.5rem;
}
.lightbox[hidden] { display: none; }
.lightbox-img { max-width: 100%; max-height: 100%; border-radius: 4px; box-shadow: 0 20px 60px rgba(0,0,0,.5); }
.lightbox-close {
  position: absolute; top: 1.2rem; right: 1.5rem;
  background: none; border: 0; color: #fff; font-size: 2.2rem; line-height: 1;
  cursor: pointer; opacity: .8;
}
.lightbox-close:hover { opacity: 1; }

/* ---------- cards / listing ---------- */
.filter-tabs { display: flex; flex-wrap: wrap; gap: 1.6em; margin-bottom: 2.5em; font-size: .82rem; letter-spacing: .06em; text-transform: uppercase; }
.filter-tabs a { opacity: .55; padding-bottom: .3em; border-bottom: 2px solid transparent; }
.filter-tabs a:hover, .filter-tabs a.is-active { opacity: 1; color: var(--color-accent); border-color: var(--color-accent); }
.card-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 1.8rem; }
.card { border: 1px solid var(--color-border); border-radius: 4px; overflow: hidden; display: block; background: #fff; transition: box-shadow .2s, transform .2s; }
.card:hover { box-shadow: 0 12px 28px rgba(27,30,39,.12); transform: translateY(-2px); }
.card-image { aspect-ratio: 4/3; background-size: cover; background-position: center; background-color: var(--color-cream); }
.card-body { padding: 1.2em 1.3em 1.4em; }
.card-cats { display: flex; flex-wrap: wrap; gap: .4em; margin-bottom: .6em; }
.card-cat { font-size: .65rem; text-transform: uppercase; letter-spacing: .06em; color: var(--color-accent); background: rgba(181,98,47,.1); padding: .25em .6em; border-radius: 2px; }
.card-title { margin-bottom: .4em; font-size: 1.05rem; }
.card-excerpt { font-size: .88rem; margin: 0; color: var(--color-text); }
.empty-state { color: var(--color-muted); }

/* ---------- reviews ---------- */
.review-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 2rem; max-width: 700px; margin: 0 auto; }
.review-card {
  background: #fff; border: 1px solid var(--color-border); border-radius: 6px;
  padding: 2.4em 1.5em; text-align: center; display: flex; flex-direction: column; align-items: center;
  transition: box-shadow .2s, transform .2s;
}
.review-card:hover { box-shadow: 0 12px 28px rgba(27,30,39,.12); transform: translateY(-2px); }
.review-star-row { margin-bottom: .5em; gap: .15em; }
.review-star-row svg { width: 18px; height: 18px; color: var(--color-accent); }
.review-rating { font-size: 2.3rem; font-weight: 700; color: var(--color-heading); line-height: 1; }
.review-scale { font-size: 1rem; font-weight: 500; color: var(--color-muted); }
.review-count { font-size: .85rem; color: var(--color-muted); margin-top: .3em; }
.review-platform { font-size: 1.05rem; font-weight: 600; color: var(--color-heading); margin-top: .6em; }
.review-cta { font-size: .75rem; letter-spacing: .05em; text-transform: uppercase; color: var(--color-accent); margin-top: 1.1em; font-weight: 600; }

/* individual guest testimonials */
.testimonial-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(230px, 1fr)); gap: 1.1rem; }
.testimonial-card {
  background: #fff; border: 1px solid var(--color-border); border-radius: 6px;
  padding: 1.1em 1.3em; display: flex; flex-direction: column; gap: .5em;
}
.testimonial-header { display: flex; justify-content: space-between; align-items: flex-start; gap: .8em; }
.testimonial-name { display: block; font-weight: 600; color: var(--color-heading); font-size: .82rem; }
.testimonial-date { display: block; font-size: .66rem; color: var(--color-muted); margin-top: .1em; }
.testimonial-platform {
  flex: none; font-size: .58rem; font-weight: 600; letter-spacing: .03em; text-transform: uppercase;
  padding: .25em .5em; border-radius: 3px; white-space: nowrap;
}
.testimonial-platform.is-airbnb { background: rgba(255,90,95,.1); color: #d33; }
.testimonial-platform.is-natuurhuisje { background: rgba(88,129,87,.12); color: #4a7a49; }
.testimonial-rating { display: flex; align-items: center; gap: .35em; font-size: .74rem; font-weight: 600; color: var(--color-heading); }
.testimonial-star-row svg { width: 11px; height: 11px; color: var(--color-accent); }
.testimonial-text { font-size: .8rem; color: var(--color-text); margin: 0; font-style: italic; line-height: 1.5; }
.testimonial-more-btn {
  align-self: flex-start; margin-top: -.3em; padding: 0; border: 0; background: none;
  font-size: .74rem; font-weight: 600; color: var(--color-accent); cursor: pointer;
  text-decoration: underline; text-underline-offset: 2px;
}
.testimonial-more-btn:hover { color: var(--color-accent-dark); }

/* ---------- contact ---------- */
.contact-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 2rem; }
.contact-card h3 { text-transform: uppercase; font-size: .9rem; letter-spacing: .06em; }
.contact-value { font-weight: 600; color: var(--color-heading); }

/* ---------- booking iframe ---------- */
.booking-iframe { width: 100%; min-height: 900px; border: 0; }

/* ---------- quote ---------- */
.quote { font-style: italic; font-size: 1.15rem; color: var(--color-heading); border-left: 3px solid var(--color-accent); padding-left: 1em; }
.quote-author { display: block; font-size: .8rem; font-style: normal; color: var(--color-muted); margin-top: .3em; }

/* ---------- footer ---------- */
.site-footer { background: var(--color-dark); color: #c7c9d1; border-radius: 20px 20px 0 0; }
.footer-inner { max-width: var(--max-width); margin: 0 auto; padding: 4rem 2rem 2.5rem; display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 2.5rem; }
.footer-col h3 { color: #fff; font-size: .85rem; text-transform: uppercase; letter-spacing: .06em; margin-bottom: .8em; }
.footer-col p { margin: 0 0 .5em; font-size: .9rem; }
.footer-col a:hover { color: var(--color-accent); }
.footer-tagline { opacity: .7; font-size: .88rem; margin-top: .6em; }
.footer-social { display: flex; gap: .7em; margin-top: 1em; }
.footer-social a {
  width: 30px; height: 30px; border-radius: 50%; border: 1px solid rgba(255,255,255,.25);
  display: flex; align-items: center; justify-content: center; opacity: .85;
}
.footer-social a:hover { opacity: 1; border-color: var(--color-accent); color: var(--color-accent); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); padding: 1.2em 2rem; max-width: var(--max-width); margin: 0 auto; display: flex; flex-wrap: wrap; justify-content: space-between; gap: 1em; font-size: .78rem; }
.footer-links { list-style: none; display: flex; gap: 1.4em; margin: 0; padding: 0; }
.footer-links a:hover { color: var(--color-accent); }
.footer-copy { opacity: .6; margin: 0; }

/* ---------- whatsapp fab ---------- */
.whatsapp-fab {
  position: fixed; right: 1.4rem; bottom: 1.4rem;
  width: 54px; height: 54px; border-radius: 50%;
  background: #25D366; color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 18px rgba(0,0,0,.25);
  z-index: 60;
}

/* ---------- responsive ---------- */
@media (max-width: 900px) {
  .section-inner.two-col { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .welcome-grid { grid-template-columns: 1fr; text-align: center; justify-items: center; }
  .booking-teaser { flex-direction: column; width: 100%; }
  .booking-date-group { flex-direction: column; }
  .booking-field { border-right: 0; border-bottom: 1px solid var(--color-border); width: 100%; border-radius: 0; }
  .booking-date-group .booking-field:first-child { border-radius: 6px 6px 0 0; }
  .booking-teaser .btn { border-radius: 0 0 6px 6px; }
  .date-picker-dropdown { width: 100%; }
  .date-picker-months { flex-direction: column; gap: 1.2em; }
}
@media (max-width: 760px) {
  .topbar { padding: .5em 1rem; font-size: .7rem; }
  .topbar-inner { gap: 1.1em; }
  .topbar-link-text { display: none; }
  .topbar-link { padding: .3em; margin: -.3em; }
  .topbar-link svg { width: 19px; height: 19px; }
  .lang-flag { padding: .3em; margin: -.3em; }
  .lang-flag img { width: 26px; height: 18px; }
  .main-nav { padding: 1em; flex-wrap: wrap; }
  .nav-toggle { display: flex; }
  .nav-collapse {
    display: block;
    order: 3; flex-basis: 100%;
    max-height: 0; overflow: hidden; transition: max-height .25s ease;
    background: #1c1c1c;
  }
  .nav-collapse.is-open { max-height: 500px; margin-top: 1em; }
  .nav-links { flex-direction: column; gap: 0; padding: 0 1em; }
  .nav-links a { display: block; padding: .7em 0; border-bottom: 1px solid rgba(255,255,255,.08); }
  .nav-cta { display: block; text-align: center; margin: 1em; }
  .hero h1 { font-size: 1.9rem; }
  .footer-inner { grid-template-columns: 1fr; padding: 3rem 1.5rem; }
  .section { padding: 3rem 1.2rem; }
}
