/* Forest Lake Booking — public */
:root {
  --flb-green: #1b3022;
  --flb-green-mid: #2a4633;
  --flb-cream: #f5f0e6;
  --flb-cream-dark: #e8e0d0;
  --flb-wood: #8b6b4a;
  --flb-terra: #a66346;
  --flb-terra-dark: #8f5136;
  --flb-gold: #c4a574;
  --flb-red: #b33a3a;
  --flb-ok: #3d6b4f;
  --flb-text: #1b3022;
  --flb-muted: #5a6b5e;
  --flb-font-display: "Cormorant Garamond", Georgia, serif;
  --flb-font-body: "Source Sans 3", "Segoe UI", sans-serif;
}

.flb-site .site-header,
.flb-site .elementor-location-header {
  /* keep theme header; our chrome sits in content */
}

.flb-wrap {
  font-family: var(--flb-font-body);
  color: var(--flb-text);
  background: var(--flb-cream);
  margin: 0 calc(50% - 50vw);
  width: 100vw;
  max-width: 100vw;
}

.flb-wrap * { box-sizing: border-box; }

.flb-inner {
  width: min(1120px, calc(100% - 2.5rem));
  margin: 0 auto;
}

/* Top bar */
.flb-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0;
  background: transparent;
}
.flb-topbar img { height: 48px; width: auto; }
.flb-nav { display: flex; gap: 1.25rem; flex-wrap: wrap; align-items: center; }
.flb-nav a {
  color: var(--flb-cream);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
}
.flb-nav a:hover { text-decoration: underline; }
.flb-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  background: var(--flb-green);
  color: var(--flb-cream) !important;
  text-decoration: none !important;
  border: none;
  padding: 0.85rem 1.4rem;
  font-family: var(--flb-font-body);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}
.flb-btn:hover { background: var(--flb-green-mid); transform: translateY(-1px); }
.flb-btn-outline {
  background: transparent;
  color: var(--flb-cream) !important;
  border: 1px solid rgba(245, 240, 230, 0.55);
}
.flb-btn-wood { background: var(--flb-wood); }
.flb-btn-light {
  background: var(--flb-cream);
  color: var(--flb-green) !important;
}
.flb-btn-ghost {
  background: transparent !important;
  color: var(--flb-green) !important;
  border: 1px solid rgba(27, 48, 34, 0.25);
}

/* Hero */
.flb-hero {
  position: relative;
  min-height: min(92vh, 820px);
  display: grid;
  align-items: end;
  background: var(--flb-green) center/cover no-repeat;
  color: var(--flb-cream);
  overflow: hidden;
}
.flb-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(27,48,34,0.35) 0%, rgba(27,48,34,0.75) 70%, rgba(27,48,34,0.92) 100%);
  pointer-events: none;
}
.flb-hero-content {
  position: relative;
  z-index: 1;
  padding: 2rem 0 3.5rem;
  animation: flb-rise 0.9s ease both;
}
.flb-brand {
  font-family: var(--flb-font-display);
  font-size: clamp(2.8rem, 7vw, 5rem);
  font-weight: 600;
  line-height: 0.95;
  margin: 0 0 0.75rem;
  letter-spacing: 0.01em;
}
.flb-hero h2 {
  font-family: var(--flb-font-display);
  font-weight: 500;
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  margin: 0 0 0.5rem;
  opacity: 0.95;
}
.flb-hero p {
  max-width: 36rem;
  margin: 0 0 1.5rem;
  font-size: 1.05rem;
  opacity: 0.9;
}
.flb-hero-actions { display: flex; flex-wrap: wrap; gap: 0.75rem; }

@keyframes flb-rise {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Sections */
.flb-section {
  padding: 4.5rem 0;
  background: var(--flb-cream);
}
.flb-section-alt {
  background:
    linear-gradient(180deg, rgba(232,224,208,0.65), rgba(245,240,230,0.9)),
    url("") center/cover;
  background-color: var(--flb-cream-dark);
}
.flb-section h2 {
  font-family: var(--flb-font-display);
  font-size: clamp(2rem, 4vw, 2.75rem);
  margin: 0 0 0.5rem;
  font-weight: 600;
}
.flb-lead {
  color: var(--flb-muted);
  max-width: 40rem;
  margin: 0 0 2rem;
  font-size: 1.05rem;
}

/* Lodge cards — interaction containers */
.flb-lodge-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.75rem;
}
.flb-lodge {
  background: #fff;
  border: 1px solid rgba(27,48,34,0.08);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.flb-lodge:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(27,48,34,0.12);
}
.flb-lodge-media {
  aspect-ratio: 16/10;
  background: var(--flb-green) center/cover no-repeat;
}
.flb-lodge-body { padding: 1.35rem 1.4rem 1.5rem; flex: 1; display: flex; flex-direction: column; }
.flb-lodge-body h3 {
  font-family: var(--flb-font-display);
  font-size: 1.65rem;
  margin: 0 0 0.35rem;
}
.flb-tag {
  display: inline-block;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--flb-wood);
  font-weight: 600;
  margin-bottom: 0.5rem;
}
.flb-price {
  font-weight: 600;
  font-size: 1.15rem;
  margin: 0.5rem 0;
}
.flb-price small { font-weight: 400; color: var(--flb-muted); font-size: 0.85rem; }
.flb-lodge-meta { color: var(--flb-muted); font-size: 0.92rem; margin-bottom: 1rem; }
.flb-lodge-actions { margin-top: auto; display: flex; gap: 0.5rem; flex-wrap: wrap; }
.flb-lodge-actions .flb-btn { color: var(--flb-cream) !important; }
.flb-lodge-actions .flb-btn-ghost {
  background: transparent;
  color: var(--flb-green) !important;
  border: 1px solid rgba(27,48,34,0.25);
}

/* Amenities / activities */
.flb-icon-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 1.25rem;
  margin-top: 1.5rem;
}
.flb-icon-item {
  text-align: center;
  padding: 1rem 0.5rem;
}
.flb-icon-item svg {
  width: 36px;
  height: 36px;
  stroke: var(--flb-green);
  fill: none;
  stroke-width: 1.5;
  margin-bottom: 0.5rem;
}
.flb-icon-item span { display: block; font-size: 0.92rem; font-weight: 500; }

/* Single cabin */
.flb-single-hero {
  min-height: 48vh;
  background: var(--flb-green) center/cover no-repeat;
  position: relative;
}
.flb-single-hero::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(27,48,34,0.85));
}
.flb-single-title {
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 1;
  color: var(--flb-cream);
  padding: 2rem 0;
}
/* Gallery — large featured photo + thumbs underneath */
.flb-gallery {
  display: block;
  margin: 1.5rem 0;
}
.flb-gallery-main {
  background: #fff;
  border: 1px solid rgba(27, 48, 34, 0.08);
  margin-bottom: 0.65rem;
  overflow: hidden;
}
.flb-gallery-main img {
  display: block;
  width: 100%;
  height: auto;
  max-height: min(52vh, 420px);
  object-fit: cover;
  aspect-ratio: 16 / 10;
}
.flb-gallery-thumbs {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(88px, 1fr));
  gap: 0.5rem;
}
.flb-gallery-thumb {
  display: block;
  width: 100%;
  padding: 0;
  border: 2px solid transparent;
  background: #fff;
  cursor: pointer;
  overflow: hidden;
  line-height: 0;
}
.flb-gallery-thumb img {
  display: block;
  width: 100%;
  height: 72px;
  object-fit: cover;
}
.flb-gallery-thumb.is-active,
.flb-gallery-thumb:hover {
  border-color: var(--flb-terra);
}
.flb-gallery-thumb:focus-visible {
  outline: 2px solid var(--flb-green);
  outline-offset: 2px;
}
.flb-two-col {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2rem;
  align-items: start;
}
@media (max-width: 860px) {
  .flb-two-col { grid-template-columns: 1fr; }
}

/* Calendar */
.flb-calendar {
  background: #fff;
  border: 1px solid rgba(27,48,34,0.1);
  padding: 1rem;
}
.flb-cal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.75rem;
}
.flb-cal-header button {
  background: transparent;
  border: 1px solid rgba(27,48,34,0.2);
  width: 36px; height: 36px;
  cursor: pointer;
  color: var(--flb-green);
  font-size: 1.1rem;
}
.flb-cal-title {
  font-family: var(--flb-font-display);
  font-size: 1.35rem;
  margin: 0;
}
.flb-cal-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
}
.flb-cal-dow {
  text-align: center;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--flb-muted);
  padding: 0.35rem 0;
}
.flb-cal-day {
  aspect-ratio: 1;
  border: none;
  background: var(--flb-cream);
  color: var(--flb-green);
  font-family: var(--flb-font-body);
  font-size: 0.9rem;
  cursor: pointer;
  position: relative;
}
.flb-cal-day:disabled,
.flb-cal-day.is-unavailable {
  background: #f0d6d6;
  color: var(--flb-red);
  cursor: not-allowed;
  text-decoration: line-through;
}
.flb-cal-day.is-muted { opacity: 0.35; cursor: default; background: transparent; }
.flb-cal-day.is-in-range { background: #cfe0d4; }
.flb-cal-day.is-start,
.flb-cal-day.is-end {
  background: var(--flb-ok);
  color: #fff;
  font-weight: 600;
}
.flb-cal-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 0.85rem;
  font-size: 0.85rem;
  color: var(--flb-muted);
}
.flb-cal-legend i {
  display: inline-block;
  width: 12px; height: 12px;
  margin-right: 0.35rem;
  vertical-align: middle;
}
.flb-cal-legend .l-free { background: var(--flb-cream); border: 1px solid #ccc; }
.flb-cal-legend .l-busy { background: #f0d6d6; }
.flb-cal-legend .l-sel { background: var(--flb-ok); }

/* Booking page — same layout language as single cabin (hero + two-col) */
.flb-wrap .flb-two-col {
  display: grid !important;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr) !important;
  gap: 2rem !important;
  align-items: start !important;
}
@media (max-width: 860px) {
  .flb-wrap .flb-two-col {
    grid-template-columns: 1fr !important;
  }
}

.flb-book-lodge-switch {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0 0 1.25rem;
}
.flb-book-lodge-btn {
  background: #fff !important;
  border: 1px solid rgba(27, 48, 34, 0.2) !important;
  color: var(--flb-green) !important;
  font-family: var(--flb-font-body) !important;
  font-size: 0.9rem !important;
  font-weight: 600 !important;
  padding: 0.55rem 0.9rem !important;
  cursor: pointer;
  border-radius: 2px !important;
  box-shadow: none !important;
}
.flb-book-lodge-btn.is-active,
.flb-book-lodge-btn:hover {
  background: var(--flb-green) !important;
  border-color: var(--flb-green) !important;
  color: var(--flb-cream) !important;
}

.flb-book-aside [data-flb-panel][hidden] {
  display: none !important;
}
.flb-book-aside {
  position: sticky;
  top: 1rem;
  background: #fff;
  border: 1px solid rgba(27, 48, 34, 0.1);
  padding: 1rem;
}
@media (max-width: 860px) {
  .flb-book-aside {
    position: static;
  }
}
.flb-book-aside .flb-calendar {
  margin-bottom: 0.75rem;
}
.flb-book-steps {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin-bottom: 0.85rem;
}
.flb-book-steps span {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--flb-muted);
  background: var(--flb-cream);
  border: 1px solid rgba(27, 48, 34, 0.12);
  padding: 0.35rem 0.5rem;
}
.flb-book-steps span.is-active {
  background: var(--flb-green);
  border-color: var(--flb-green);
  color: var(--flb-cream);
}
.flb-book-steps span.is-done {
  background: #dfeadf;
  border-color: transparent;
  color: var(--flb-green);
}

.flb-book-aside label {
  display: block;
  font-weight: 600;
  font-size: 0.88rem;
  margin: 0 0 0.85rem;
  color: var(--flb-green);
}
.flb-book-aside input[type="text"],
.flb-book-aside input[type="email"],
.flb-book-aside input[type="number"],
.flb-book-aside input[type="file"],
.flb-book-aside textarea {
  display: block;
  width: 100%;
  margin-top: 0.35rem;
  padding: 0.7rem 0.8rem;
  border: 1px solid rgba(27, 48, 34, 0.2);
  background: var(--flb-cream);
  font-family: var(--flb-font-body);
  font-size: 1rem;
  color: var(--flb-green);
  box-sizing: border-box;
}
.flb-book-aside .flb-check {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  font-weight: 500;
  font-size: 0.9rem;
  line-height: 1.4;
}
.flb-book-aside .flb-check input {
  width: auto;
  margin: 0.2rem 0 0;
  flex: 0 0 auto;
}

.flb-book-hint,
.flb-book-range {
  margin: 0.5rem 0 0.85rem;
  font-size: 0.9rem;
  color: var(--flb-muted);
}
.flb-book-range {
  font-weight: 600;
  color: var(--flb-green);
}

.flb-book-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 0.75rem;
}
.flb-book-aside .flb-btn,
.flb-book-aside button.flb-btn {
  width: 100%;
  background: var(--flb-green) !important;
  color: var(--flb-cream) !important;
  border: 2px solid var(--flb-green) !important;
  min-height: 46px;
  font-weight: 700 !important;
}
.flb-book-aside .flb-btn:hover,
.flb-book-aside button.flb-btn:hover {
  background: var(--flb-green-mid) !important;
  border-color: var(--flb-green-mid) !important;
  color: var(--flb-cream) !important;
}
.flb-book-actions .flb-btn {
  width: auto;
  flex: 1 1 auto;
}
.flb-book-aside .flb-btn:disabled,
.flb-book-aside button.flb-btn:disabled {
  opacity: 1;
  background: #9aa89e !important;
  border-color: #9aa89e !important;
  color: #fff !important;
  cursor: not-allowed;
  transform: none;
}
.flb-book-aside .flb-btn-ghost,
.flb-book-aside button.flb-btn-ghost {
  background: #fff !important;
  color: var(--flb-green) !important;
  border: 2px solid rgba(27, 48, 34, 0.35) !important;
}

.flb-book-total {
  background: var(--flb-cream);
  border: 1px solid rgba(27, 48, 34, 0.12);
  padding: 0.85rem 1rem;
  margin: 0 0 0.85rem;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}
.flb-book-total[hidden] {
  display: none !important;
}
.flb-book-total-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--flb-terra);
}
.flb-book-total-amount {
  font-family: var(--flb-font-display);
  font-size: 1.85rem;
  font-weight: 600;
  color: var(--flb-green);
  line-height: 1.15;
}
.flb-book-total-detail {
  font-size: 0.86rem;
  color: var(--flb-muted);
  line-height: 1.35;
}
.flb-book-total.is-error .flb-book-total-amount {
  font-size: 1rem;
  font-family: var(--flb-font-body);
  color: var(--flb-red, #9b2c2c);
}
.flb-book-aside .flb-bank {
  background: var(--flb-cream);
  border-left: 3px solid var(--flb-wood);
  padding: 0.85rem 1rem;
  margin: 0 0 0.85rem;
  font-size: 0.92rem;
}
.flb-book-msg {
  margin: 0 0 0.75rem;
  font-size: 0.92rem;
  color: var(--flb-green);
}
.flb-book-msg[hidden] {
  display: none !important;
}
.flb-book-msg.is-error {
  color: var(--flb-red, #9b2c2c);
}

.flb-stepper-field {
  display: block;
  margin: 0 0 1rem;
}
.flb-stepper-label {
  display: block;
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--flb-green);
}
.flb-stepper-hint {
  display: block;
  margin: 0.15rem 0 0.45rem;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--flb-muted);
}
.flb-stepper {
  display: flex;
  align-items: center;
  gap: 0;
  width: 100%;
  max-width: 16rem;
  border: 1px solid rgba(27, 48, 34, 0.2);
  background: var(--flb-cream);
  user-select: none;
}
.flb-stepper-value {
  flex: 1 1 auto;
  text-align: center;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--flb-green);
  min-width: 2.5rem;
  line-height: 1;
}
.flb-book-aside .flb-stepper-btn,
.flb-stepper-btn {
  flex: 0 0 3rem;
  width: 3rem;
  height: 3rem;
  margin: 0 !important;
  padding: 0 !important;
  border: none !important;
  background: transparent !important;
  color: var(--flb-green) !important;
  font-size: 1.55rem !important;
  font-weight: 500 !important;
  line-height: 1 !important;
  cursor: pointer;
  touch-action: manipulation;
  border-radius: 0 !important;
  box-shadow: none !important;
  min-height: 3rem !important;
}
.flb-book-aside .flb-stepper-btn:hover:not(:disabled),
.flb-stepper-btn:hover:not(:disabled) {
  background: rgba(27, 48, 34, 0.08) !important;
  color: var(--flb-green) !important;
}
.flb-book-aside .flb-stepper-btn:disabled,
.flb-stepper-btn:disabled {
  opacity: 0.35;
  cursor: not-allowed;
  background: transparent !important;
}
.flb-btn-spinner {
  width: 1rem;
  height: 1rem;
  border: 2px solid rgba(245, 240, 230, 0.35);
  border-top-color: var(--flb-cream);
  border-radius: 50%;
  animation: flb-spin 0.7s linear infinite;
}
.flb-book-aside .flb-btn.is-busy {
  gap: 0.55rem;
}
@keyframes flb-spin {
  to { transform: rotate(360deg); }
}

.flb-toast {
  position: fixed;
  top: max(4.25rem, calc(env(safe-area-inset-top, 0px) + 3.5rem));
  left: 50%;
  z-index: 100000;
  width: min(calc(100vw - 1.5rem), 26rem);
  padding: 1rem 1.15rem;
  background: #fff;
  color: var(--flb-green);
  border: 1px solid rgba(27, 48, 34, 0.12);
  border-left: 4px solid var(--flb-wood);
  box-shadow: 0 12px 36px rgba(27, 48, 34, 0.18);
  font-family: var(--flb-font-body);
  font-size: 1.02rem;
  font-weight: 600;
  line-height: 1.5;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateX(-50%) translateY(-10px);
  transition: opacity 0.35s ease, transform 0.35s ease, visibility 0.35s ease;
  cursor: pointer;
}
.flb-toast.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.flb-toast.is-error {
  border-left-color: var(--flb-red, #b33a3a);
  color: #6d2424;
  background: #fff8f6;
}

/* Hide WP/Elementor page title on booking page */
.page-id-430 .page-header,
.page-id-430 .entry-header,
.page-id-430 h1.entry-title,
.page-id-430 .entry-title,
.page-id-430 .page-title {
  display: none !important;
}
body.page-id-430 .site-main,
body.page-id-430 article.page,
body.page-id-430 .entry-content,
body.page-id-430 .page-content {
  max-width: none !important;
  width: 100% !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
}

/* Booking wizard */
.flb-wizard {
  background: #fff;
  border: 1px solid rgba(27,48,34,0.08);
  padding: 1.5rem;
}
.flb-steps {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}
.flb-step-pill {
  padding: 0.4rem 0.75rem;
  font-size: 0.8rem;
  background: var(--flb-cream-dark);
  color: var(--flb-muted);
}
.flb-step-pill.is-active {
  background: var(--flb-green);
  color: var(--flb-cream);
}
.flb-field { margin-bottom: 1rem; }
.flb-field label {
  display: block;
  font-weight: 600;
  font-size: 0.88rem;
  margin-bottom: 0.35rem;
}
.flb-field input,
.flb-field select,
.flb-field textarea {
  width: 100%;
  padding: 0.7rem 0.8rem;
  border: 1px solid rgba(27,48,34,0.2);
  background: var(--flb-cream);
  font-family: var(--flb-font-body);
  font-size: 1rem;
}
.flb-field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
@media (max-width: 600px) {
  .flb-field-row { grid-template-columns: 1fr; }
}
.flb-bank-box {
  background: var(--flb-cream);
  border-left: 3px solid var(--flb-wood);
  padding: 1rem 1.1rem;
  margin: 1rem 0;
}
.flb-summary {
  background: var(--flb-cream);
  padding: 1rem;
  margin-top: 1rem;
}
.flb-summary-row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.35rem 0;
  border-bottom: 1px solid rgba(27,48,34,0.08);
  font-size: 0.95rem;
}
.flb-summary-total {
  font-weight: 700;
  font-size: 1.15rem;
  border-bottom: none;
  margin-top: 0.5rem;
}
.flb-error {
  background: #f8e0e0;
  color: var(--flb-red);
  padding: 0.75rem 1rem;
  margin: 0.75rem 0;
  font-size: 0.95rem;
}
.flb-wizard-nav {
  display: flex;
  justify-content: space-between;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

/* Footer strip */
.flb-footer {
  background: var(--flb-green);
  color: var(--flb-cream);
  padding: 2.5rem 0;
  text-align: center;
}
.flb-footer a { color: var(--flb-cream); }
.flb-wa {
  position: fixed;
  right: 1.1rem;
  bottom: 1.1rem;
  z-index: 99;
  background: #25d366;
  color: #fff !important;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
  text-decoration: none !important;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  transition: transform 0.2s ease;
}
.flb-wa:hover { transform: scale(1.06); }

.flb-thanks {
  text-align: center;
  padding: 4rem 1rem;
}
.flb-thanks h1 {
  font-family: var(--flb-font-display);
  font-size: 2.5rem;
}

/* ——— Accommodations page (matches Elementor Over Ons language) ——— */
.page-id-354 .page-header,
.page-id-354 .entry-header,
.page-id-354 h1.entry-title,
.page-id-354 .entry-title,
.page-id-354 .page-title,
.page-id-354 .elementor-page-title,
body.page-id-354 main > article > .entry-title,
body.page-id-354 .site-main > article > header {
  display: none !important;
}

/* True full-bleed inside Elementor Full Width / Hello content shell */
body.page-id-354 .site-main,
body.page-id-354 article.page,
body.page-id-354 .entry-content,
body.page-id-354 .page-content,
body.page-id-354 .elementor-location-single,
body.page-id-354 #content {
  max-width: none !important;
  width: 100% !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
  margin: 0 !important;
}
body.page-id-354 .flb-wrap {
  margin-left: 0;
  margin-right: 0;
  width: 100%;
  max-width: 100%;
}

.flb-acc-page {
  background: #fff;
}

.flb-acc-page .flb-btn-terra,
.flb-acc-page a.flb-btn-terra {
  background: var(--flb-terra) !important;
  color: #fff !important;
  border: none !important;
  border-radius: 2px;
}
.flb-acc-page .flb-btn-terra:hover,
.flb-acc-page a.flb-btn-terra:hover {
  background: var(--flb-terra-dark) !important;
  color: #fff !important;
}
.flb-acc-page .flb-btn-ghost-light,
.flb-acc-page a.flb-btn-ghost-light {
  background: transparent !important;
  color: #fff !important;
  border: 1px solid rgba(255,255,255,0.7) !important;
}
.flb-acc-page .flb-btn-ghost-dark,
.flb-acc-page a.flb-btn-ghost-dark {
  background: transparent !important;
  color: var(--flb-green) !important;
  border: 1px solid rgba(27,48,34,0.28) !important;
}
.flb-acc-page .flb-btn-light,
.flb-acc-page a.flb-btn-light {
  background: #fff !important;
  color: var(--flb-terra) !important;
}

.flb-acc-eyebrow {
  margin: 0 0 0.75rem;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--flb-gold);
}
.flb-acc-eyebrow.dark { color: var(--flb-terra); }
.flb-acc-eyebrow.light { color: rgba(255,255,255,0.85); }

.flb-acc-hero {
  position: relative;
  min-height: min(78vh, 640px);
  display: flex;
  align-items: flex-end;
  color: #fff !important;
  background:
    linear-gradient(105deg, rgba(20,32,24,0.88) 0%, rgba(20,32,24,0.55) 55%, rgba(20,32,24,0.62) 100%),
    var(--flb-acc-hero) center/cover no-repeat;
  padding: 5.5rem 0 5rem;
  overflow: hidden;
}
.flb-acc-hero .flb-acc-title,
.flb-acc-hero h1 {
  color: #fff !important;
}
.flb-acc-hero .flb-acc-intro,
.flb-acc-hero p {
  color: rgba(255, 255, 255, 0.92) !important;
}
.flb-acc-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 40rem;
  animation: flb-rise 0.85s ease both;
}
.flb-acc-title {
  font-family: var(--flb-font-display);
  font-size: clamp(2.6rem, 6.5vw, 4.4rem);
  font-weight: 600;
  line-height: 1.02;
  margin: 0 0 1rem;
  color: #fff;
}
.flb-acc-intro {
  margin: 0 0 1.6rem;
  font-size: 1.08rem;
  line-height: 1.55;
  opacity: 0.92;
  max-width: 34rem;
}
.flb-acc-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.flb-acc-wave {
  position: absolute;
  left: 0; right: 0; bottom: -1px;
  color: #fff;
  line-height: 0;
  z-index: 2;
}
.flb-acc-wave svg { width: 100%; height: 56px; display: block; }

.flb-acc-h2 {
  font-family: var(--flb-font-display);
  font-size: clamp(2rem, 4vw, 2.85rem);
  font-weight: 600;
  margin: 0 0 0.65rem;
  color: var(--flb-green);
  line-height: 1.1;
}
.flb-acc-lead {
  color: var(--flb-muted);
  max-width: 38rem;
  margin: 0 0 2.25rem;
  font-size: 1.05rem;
}

.flb-acc-how { background: #fff; padding-top: 3.5rem; }
.flb-acc-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 1.75rem;
}
.flb-acc-step {
  padding: 1.35rem 1.25rem 1.5rem;
  background: var(--flb-cream);
  border-top: 3px solid var(--flb-terra);
}
.flb-acc-step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  background: var(--flb-green);
  color: #fff;
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 0.75rem;
}
.flb-acc-step h3 {
  font-family: var(--flb-font-display);
  font-size: 1.35rem;
  margin: 0 0 0.4rem;
}
.flb-acc-step p {
  margin: 0;
  color: var(--flb-muted);
  font-size: 0.95rem;
  line-height: 1.5;
}

.flb-acc-lodges { background: var(--flb-cream); }
.flb-acc-compare {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.75rem;
}
.flb-acc-lodge {
  background: #fff;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid rgba(27,48,34,0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.flb-acc-lodge:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px rgba(27,48,34,0.1);
}
.flb-acc-lodge-media {
  position: relative;
  display: block;
  aspect-ratio: 16 / 11;
  background: var(--flb-green) center/cover no-repeat;
  text-decoration: none;
}
.flb-acc-badge {
  position: absolute;
  left: 1rem;
  top: 1rem;
  background: var(--flb-terra);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.4rem 0.65rem;
}
.flb-acc-cap {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  background: rgba(27,48,34,0.82);
  color: #fff;
  font-size: 0.82rem;
  padding: 0.35rem 0.65rem;
}
.flb-acc-lodge-body {
  padding: 1.4rem 1.4rem 1.55rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.flb-acc-lodge-body h3 {
  font-family: var(--flb-font-display);
  font-size: 1.85rem;
  margin: 0 0 0.35rem;
  color: var(--flb-green);
}
.flb-acc-price {
  font-size: 1.2rem;
  font-weight: 700;
  margin: 0 0 1rem;
  color: var(--flb-green);
}
.flb-acc-price small {
  font-weight: 400;
  color: var(--flb-muted);
  font-size: 0.85rem;
}
.flb-acc-facts {
  list-style: none;
  margin: 0 0 1.35rem;
  padding: 0;
  color: var(--flb-muted);
  font-size: 0.94rem;
}
.flb-acc-facts li {
  padding: 0.35rem 0 0.35rem 1.15rem;
  position: relative;
  border-bottom: 1px solid rgba(27,48,34,0.06);
}
.flb-acc-facts li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.75rem;
  width: 0.45rem;
  height: 0.45rem;
  background: var(--flb-terra);
}
.flb-acc-lodge-actions {
  margin-top: auto;
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.flb-acc-included { background: #fff; }
.flb-acc-included-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 1.5rem;
}
.flb-acc-included-grid div {
  padding: 1.1rem 1rem;
  background: var(--flb-cream);
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.flb-acc-included-grid strong {
  font-family: var(--flb-font-display);
  font-size: 1.2rem;
  color: var(--flb-green);
}
.flb-acc-included-grid span {
  color: var(--flb-muted);
  font-size: 0.9rem;
}

.flb-acc-band {
  background: var(--flb-terra);
  color: #fff;
  padding: 2.25rem 0;
}
.flb-acc-band-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  flex-wrap: wrap;
}
.flb-acc-band h2 {
  font-family: var(--flb-font-display);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  margin: 0.25rem 0 0;
  font-weight: 600;
}

@media (max-width: 900px) {
  .flb-acc-steps,
  .flb-acc-compare,
  .flb-acc-included-grid {
    grid-template-columns: 1fr;
  }
  .flb-acc-hero { min-height: 70vh; padding-top: 4rem; }
}

