/* =====================================================================
   GRUDZA 83 — Flex Builder Section Styles
   Palette: #292929 ink · #7b7f6d olive · #ffffff white
   Utility: #f5f5f5 section-bg · #e0e0e0 borders
   ===================================================================== */

:root {
  --g83-ink:      #292929;
  --g83-olive:    #7b7f6d;
  --g83-olive-dk: #6a6e5e;
  --g83-white:    #ffffff;
  --g83-gray:     #f5f5f5;
  --g83-line:     #e0e0e0;
  --g83-maxw:     1200px;
  --g83-font:     'Open Sans', system-ui, Arial, sans-serif;
}

/* ----- Reset inside flex page ----- */
.g83-flex-page *,
.g83-flex-page *::before,
.g83-flex-page *::after { box-sizing: border-box; }
.g83-flex-page img { display: block; max-width: 100%; }
.g83-flex-page a { color: inherit; text-decoration: none; }
.g83-flex-page button { font-family: inherit; cursor: pointer; border: none; background: none; }
.g83-flex-page ul { list-style: none; padding: 0; margin: 0; }

/* ----- Layout helpers ----- */
.g83-wrap { max-width: var(--g83-maxw); margin: 0 auto; padding: 0 32px; }
.g83-rule { display: none; }
.g83-h-sec {
  font-size: clamp(26px, 2.7vw, 36px);
  font-weight: 800;
  color: var(--g83-ink);
  letter-spacing: -.01em;
  line-height: 1.15;
  font-family: var(--g83-font);
}

/* ----- Buttons ----- */
.g83-btn {
  display: inline-flex; align-items: center; gap: 9px; white-space: nowrap;
  font-size: 13px; font-weight: 700; letter-spacing: .04em; text-transform: uppercase;
  background: var(--g83-olive); color: var(--g83-white); padding: 14px 26px;
  transition: background .16s ease; font-family: var(--g83-font); cursor: pointer;
  border: none; text-decoration: none;
}
.g83-btn:hover { background: var(--g83-olive-dk); color: var(--g83-white); }
.g83-btn svg { width: 15px; height: 15px; }
.g83-btn-dark { background: var(--g83-ink); }
.g83-btn-dark:hover { background: #000; }
.g83-tlink {
  display: inline-flex; align-items: center; gap: 7px;
  color: var(--g83-olive); font-weight: 700; font-size: 14px;
  font-family: var(--g83-font);
}
.g83-tlink svg { width: 15px; height: 15px; transition: transform .18s ease; }
.g83-tlink:hover svg { transform: translateX(4px); }

/* ----- Pill badge ----- */
.g83-pill {
  display: inline-flex; align-items: center; gap: 8px; align-self: flex-start;
  background: var(--g83-olive); color: var(--g83-white); font-size: 12.5px;
  font-weight: 700; letter-spacing: .02em; padding: 8px 16px;
  border-radius: 100px; margin-bottom: 26px;
}

/* ----- Section shell ----- */
.g83-section { padding: 84px 0; font-family: var(--g83-font); color: var(--g83-ink); background: var(--g83-white); }
.g83-section.gray { background: var(--g83-gray); }
.g83-sec-head { margin-bottom: 40px; }
.g83-sec-head .sub { color: var(--g83-olive); font-size: 16px; font-weight: 600; margin-top: 8px; }
.g83-sec-head.row { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; flex-wrap: wrap; }

/* =====================================================================
   TOP BAR
   ===================================================================== */
.g83-topbar { border-bottom: 1px solid var(--g83-line); background: var(--g83-white); font-family: var(--g83-font); }
.g83-topbar-in { display: flex; align-items: center; justify-content: space-between; height: 42px; font-size: 13px; color: var(--g83-ink); }
.g83-topbar-in .addr { display: flex; align-items: center; gap: 8px; }
.g83-topbar-in .addr svg { width: 14px; height: 14px; color: var(--g83-olive); }
.g83-topbar-soc { display: flex; gap: 16px; }
.g83-topbar-soc a { color: var(--g83-ink); display: grid; place-items: center; transition: color .15s; }
.g83-topbar-soc a:hover { color: var(--g83-olive); }
.g83-topbar-soc svg { width: 16px; height: 16px; }

/* =====================================================================
   NAV HEADER
   ===================================================================== */
.g83-nav { background: var(--g83-ink); position: sticky; top: 0; z-index: 100; font-family: var(--g83-font); }
.g83-nav-in { display: flex; align-items: center; height: 76px; gap: 30px; }
.g83-logo { display: flex; align-items: center; gap: 13px; text-decoration: none; }
.g83-logo-mark { width: 46px; height: 46px; flex: none; }
.g83-logo-txt { display: flex; flex-direction: column; line-height: 1; color: var(--g83-white); }
.g83-logo-txt small { font-size: 9.5px; letter-spacing: .34em; font-weight: 600; opacity: .85; }
.g83-logo-txt b { font-size: 21px; letter-spacing: .04em; font-weight: 800; margin-top: 3px; }
.g83-nav-links { display: flex; gap: 26px; margin: 0 auto; }
.g83-nav-links a {
  color: var(--g83-white); font-size: 12.5px; font-weight: 600; letter-spacing: .09em;
  text-transform: uppercase; padding: 6px 0; position: relative; opacity: .82; transition: opacity .15s;
}
.g83-nav-links a:hover,
.g83-nav-links a.active { opacity: 1; }
.g83-nav-links a.active::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -2px;
  height: 2px; background: var(--g83-olive);
}
.g83-nav .g83-btn { padding: 12px 22px; }
.g83-nav-burger { display: none; color: #fff; background: none; border: none; cursor: pointer; }

/* =====================================================================
   HERO
   ===================================================================== */
.g83-hero { font-family: var(--g83-font); }
.g83-hero-grid { display: grid; grid-template-columns: 42% 58%; min-height: 560px; }
.g83-hero-left { display: flex; flex-direction: column; justify-content: center; padding: 70px 60px 70px 0; }
.g83-hero-left-wrap { max-width: 100%; margin: 0 auto; padding-left: 32px; position: relative; }
.g83-hero-left h1 {
  font-size: clamp(27px, 2.9vw, 38px); font-weight: 800; line-height: 1.22;
  letter-spacing: -.01em; color: var(--g83-ink);
}
.g83-hero-left h1:before{
  display: none;
}
.g83-hero-left p { margin-top: 0px; font-size: 16px; color: var(--g83-ink); max-width: 440px; line-height: 1.75; }
.g83-hero-promo {
  position: relative; display: inline-flex; flex-direction: column;
  align-self: flex-start; margin-top: 28px;
  background: var(--g83-olive); color: var(--g83-white);
  padding: 14px 20px; border: 2px dashed rgba(255,255,255,.55); cursor: default;
  max-width: 100%;
  white-space: normal;
}
.g83-hero-promo .hp-label { font-size: 10.5px; font-weight: 700; letter-spacing: .22em; text-transform: uppercase; color: rgba(255,255,255,.82); }
.g83-hero-promo .hp-title { font-size: 18px; font-weight: 800; color: var(--g83-white); margin-top: 5px; letter-spacing: -.01em; line-height: 1.15; white-space: normal; }
.g83-hero-promo .hp-star {
  position: absolute; top: -13px; right: -13px;
  width: 28px; height: 28px; background: var(--g83-ink); color: var(--g83-white);
  border-radius: 50%; display: grid; place-items: center; font-size: 13px;
}
.g83-hero-cta { display: flex; align-items: center; gap: 16px; margin-top: 20px; flex-wrap: wrap; }
.g83-hero-right { position: relative; min-height: 560px; background: var(--g83-ink); }
.g83-carousel { position: absolute; inset: 0; overflow: hidden; }
.g83-cslide { position: absolute; inset: 0; opacity: 0; transition: opacity .6s ease; background-size: cover; background-position: center; }
.g83-cslide.active { opacity: 1; }
.g83-gal-pill {
  position: absolute; left: 24px; bottom: 24px; z-index: 6;
  background: var(--g83-ink); color: var(--g83-white); font-size: 11px;
  font-weight: 700; letter-spacing: .18em; padding: 8px 16px;
}
.g83-car-arrows { position: absolute; right: 22px; bottom: 22px; z-index: 6; display: flex; gap: 10px; }
.g83-car-arrows button {
  width: 46px; height: 46px; border: 1.5px solid rgba(255,255,255,.7); color: #fff;
  display: grid; place-items: center; transition: all .16s ease; background: rgba(41,41,41,.25);
}
.g83-car-arrows button:hover { background: var(--g83-white); color: var(--g83-ink); border-color: var(--g83-white); }
.g83-car-arrows svg { width: 18px; height: 18px; }
.g83-car-dots { position: absolute; left: 24px; top: 24px; z-index: 6; display: flex; gap: 7px; }
.g83-car-dots button { width: 9px; height: 9px; border-radius: 50%; background: rgba(255,255,255,.45); transition: all .2s; border: none; cursor: pointer; }
.g83-car-dots button.active { background: #fff; width: 26px; border-radius: 100px; }

/* =====================================================================
   BOOKING / 7-DAY GRID
   ===================================================================== */
.g83-days { display: grid; grid-template-columns: repeat(8, 1fr); gap: 12px; }
.g83-day { background: var(--g83-white); border: 1px solid var(--g83-line); padding: 10px 10px; text-align: center; transition: all .15s ease; font-family: var(--g83-font); }
.g83-day:hover { border-color: var(--g83-ink); cursor: pointer; }
.g83-day .dow { font-size: 11.5px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--g83-olive); }
.g83-day .dnum { font-size: 32px; font-weight: 800; color: var(--g83-ink); line-height: 1.05; margin: 5px 0 2px; }
.g83-day .dmon { font-size: 12px; color: var(--g83-olive); font-weight: 600; }
.g83-day.selected { background: var(--g83-ink); border-color: var(--g83-ink); }
.g83-day.selected .dow, .g83-day.selected .dmon { color: rgba(255,255,255,.7); }
.g83-day.selected .dnum { color: var(--g83-white); }
.g83-day--promo { background: var(--g83-olive); border-color: var(--g83-olive); text-decoration: none; display: flex; flex-direction: column; align-items: center; justify-content: center; }
.g83-day--promo .dow { color: var(--g83-white); font-size: 11.5px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.g83-day--promo .dates { font-size: 11px; color: rgba(255,255,255,.8); font-weight: 600; margin: 4px 0; }
.g83-day--promo .price { font-size: 16px; font-weight: 800; color: var(--g83-white); line-height: 1.2; margin: 4px 0; }
.g83-day--promo .g83-day-cta { font-size: 11.5px; font-weight: 700; color: var(--g83-white); letter-spacing: .05em; text-transform: uppercase; margin-top: 8px; }
.g83-day--promo:hover { background: var(--g83-ink); border-color: var(--g83-ink); cursor: pointer; }
.g83-book-form {
  margin-top: 16px; background: var(--g83-white); border: 1px solid var(--g83-line);
  padding: 22px 24px; display: none; grid-template-columns: repeat(12, 1fr); gap: 18px; align-items: end;
}
.g83-book-form.visible { display: grid; animation: g83FormIn .28s ease both; }
@keyframes g83FormIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }
.g83-fld { display: flex; flex-direction: column; gap: 7px; }
.g83-fld.c3 { grid-column: span 3; } .g83-fld.c4 { grid-column: span 4; } .g83-fld.c8 { grid-column: span 8; }
.g83-fld label { font-size: 11.5px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: var(--g83-ink); font-family: var(--g83-font); }
.g83-inp { position: relative; }
.g83-date-inp {
  width: 100%; height: 48px; background: var(--g83-white); border: 1px solid var(--g83-line);
  color: var(--g83-ink); font-family: var(--g83-font); font-size: 15px; font-weight: 600;
  padding: 0 14px; box-sizing: border-box; cursor: pointer; outline: none; caret-color: transparent;
}
.g83-date-inp::placeholder { color: var(--g83-olive); font-weight: 600; }

/* =====================================================================
   FLATPICKR THEME
   ===================================================================== */
.flatpickr-calendar {
  border: 1px solid var(--g83-line); border-radius: 0;
  box-shadow: 0 8px 32px rgba(41,41,41,.12); font-family: var(--g83-font);
}
.flatpickr-calendar.arrowTop::before, .flatpickr-calendar.arrowTop::after,
.flatpickr-calendar.arrowBottom::before, .flatpickr-calendar.arrowBottom::after { display: none; }

.flatpickr-month { background: var(--g83-olive); padding: 6px 0; }
.flatpickr-current-month { color: var(--g83-white); font-size: 14px; font-weight: 700; padding-top: 4px; font-family: var(--g83-font); }
.flatpickr-current-month .flatpickr-monthDropdown-months {
  background: var(--g83-olive); color: var(--g83-white); font-weight: 700; font-family: var(--g83-font);
}
.flatpickr-current-month input.cur-year { color: var(--g83-white); font-weight: 700; font-family: var(--g83-font); }
.numInputWrapper span { border-color: rgba(255,255,255,.2); }
.numInputWrapper span svg path { fill: rgba(255,255,255,.7); }
.flatpickr-prev-month, .flatpickr-next-month { top: 4px; }
.flatpickr-prev-month svg, .flatpickr-next-month svg { fill: rgba(255,255,255,.8); }
.flatpickr-prev-month:hover svg, .flatpickr-next-month:hover svg { fill: var(--g83-white); }
.flatpickr-weekdays { background: var(--g83-olive); padding-bottom: 6px; }
span.flatpickr-weekday { background: var(--g83-olive); color: rgba(255,255,255,.7); font-size: 11px; font-weight: 700; font-family: var(--g83-font); }
.flatpickr-days { border-left: none; border-right: none; }
.dayContainer { padding: 4px; gap: 2px; }
.flatpickr-day {
  border-radius: 0; border: none; font-size: 13px; font-weight: 600;
  color: var(--g83-ink); height: 36px; line-height: 36px; max-width: 36px; font-family: var(--g83-font);
}
.flatpickr-day:hover { background: var(--g83-gray); border: none; }
.flatpickr-day.today { border-bottom: 2px solid var(--g83-olive); }
.flatpickr-day.today:hover { background: var(--g83-olive); color: var(--g83-white); border: none; }
.flatpickr-day.selected, .flatpickr-day.selected:hover,
.flatpickr-day.startRange, .flatpickr-day.startRange:hover,
.flatpickr-day.endRange, .flatpickr-day.endRange:hover {
  background: var(--g83-olive)!important; 
  color: var(--g83-white)!important; 
  border: none!important;
}
.flatpickr-day.disabled, .flatpickr-day.disabled:hover,
.flatpickr-day.prevMonthDay, .flatpickr-day.nextMonthDay { color: var(--g83-line); }
.flatpickr-innerContainer { border-bottom: none; }
.g83-inp .val, .g83-inp select {
  width: 100%; height: 48px; background: var(--g83-white); border: 1px solid var(--g83-line);
  color: var(--g83-ink); font-family: var(--g83-font); font-size: 15px; font-weight: 600;
  padding: 0 14px; appearance: none;
}
.g83-inp .val { display: flex; align-items: center; }
.g83-inp .val.empty { color: var(--g83-olive); font-weight: 600; }
.g83-inp svg.ci { position: absolute; right: 13px; top: 50%; transform: translateY(-50%); width: 17px; height: 17px; color: var(--g83-olive); pointer-events: none; }
.g83-inp select { cursor: pointer; padding-right: 38px; }
.g83-counter { display: flex; align-items: center; justify-content: space-between; height: 48px; border: 1px solid var(--g83-line); padding: 0 8px; }
.g83-counter button { width: 32px; height: 32px; background: var(--g83-ink); color: #fff; font-size: 18px; display: grid; place-items: center; transition: background .15s; }
.g83-counter button:hover { background: var(--g83-olive); }
.g83-counter span { font-weight: 800; font-size: 16px; }
.g83-book-form .go { grid-column: span 12; }
.g83-book-form .go .g83-btn { width: 100%; justify-content: center; padding: 16px; }

/* =====================================================================
   EVENTS GRID
   ===================================================================== */
.g83-ev-slider { position: relative; }
.g83-ev-slider-viewport { overflow: hidden; }
.g83-ev-grid { display: flex; gap: 24px; transition: transform .5s ease; }
.g83-ev-card { position: relative; flex: 0 0 calc((100% - 48px) / 3); aspect-ratio: 4 / 5; overflow: hidden; border: 1px solid var(--g83-line); }
.g83-ev-arrows { position: static; right: auto; bottom: auto; justify-content: center; margin-top: 28px; }
.g83-ev-card .g83-ev-photo { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; background: var(--g83-gray); }
.g83-ev-badge {
  position: absolute; top: 16px; left: 16px; z-index: 4;
  background: var(--g83-olive); color: var(--g83-white); font-size: 11.5px;
  font-weight: 700; letter-spacing: .03em; padding: 7px 14px; border-radius: 100px;
}
.g83-ev-ov {
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 4;
  background: rgba(41,41,41,.85); color: var(--g83-white); padding: 18px 20px 20px;
  display: flex; flex-direction: column; height: 270px;
}
.g83-ev-ov h3 { font-size: 19px; font-weight: 800; color: var(--g83-white); line-height: 1.2; min-height: 2.4em; font-family: var(--g83-font); }
.g83-ev-ov .ev-date { color: var(--g83-olive); font-size: 13px; font-weight: 700; margin-top: 5px; }
.g83-ev-services {
  display: flex; flex-wrap: balance; gap: 5px; margin-top: 8px; padding-bottom: 8px;
  overflow-x: auto; scroll-snap-type: x proximity; -webkit-overflow-scrolling: touch;
  cursor: grab;
  scrollbar-width: thin; scrollbar-color: rgba(255,255,255,.55) rgba(255,255,255,.15);
}
.g83-ev-services.is-dragging { cursor: grabbing; user-select: none; }
.g83-ev-services::-webkit-scrollbar { height: 4px; }
.g83-ev-services::-webkit-scrollbar-track { background: rgba(255,255,255,.15); border-radius: 10px; }
.g83-ev-services::-webkit-scrollbar-thumb { background: rgba(255,255,255,.55); border-radius: 10px; }
.g83-ev-services::-webkit-scrollbar-thumb:hover { background: rgba(255,255,255,.8); }
.g83-ev-svc { display: flex; align-items: center; flex: 0 0 auto; scroll-snap-align: start; }
.g83-ev-svc-name { display: inline-block; font-size: 11px; font-weight: 700; color: var(--g83-white); border: 1px solid rgba(255,255,255,.4); padding: 3px 8px; letter-spacing: .02em; line-height: 1.4; }
.g83-ev-svc-name::before { content: '+ '; }
.g83-ev-ov .ev-btn { margin-top: auto; }
.g83-ev-ov .ev-btn .g83-btn { width: 100%; justify-content: center; padding: 11px; font-size: 11.5px; }
.g83-ev-more { display: flex; justify-content: center; margin-top: 36px; }

/* =====================================================================
   OFFERS TABLE + PROMO CARD
   ===================================================================== */
.g83-ot-grid { display: flex; flex-direction: column; gap: 0; }
.g83-ot-tab-wrap { box-sizing: border-box; /* add background: here to colour the tab area */ }
.g83-ot-tab-content { display: grid; grid-template-columns: 55fr 40fr; gap: 40px; align-items: start; padding: 32px; }
.g83-ot-tab-nav {
  display: flex;
  flex-wrap: nowrap;
  justify-content: flex-start;
  gap: 0;
  margin-top: 32px;
  border-bottom: 2px solid var(--g83-line);
  background: var(--g83-gray);
}
.g83-ot-tab-btn {
  flex: 1;
  font-family: var(--g83-font);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 16px 20px;
  border: none;
  border-bottom: 3px solid transparent;
  margin-bottom: -2px;
  background: none;
  color: var(--g83-ink);
  opacity: .45;
  cursor: pointer;
  transition: opacity .2s, border-color .2s;
}
.g83-ot-tab-btn:hover { opacity: .75; background: none; color: var(--g83-ink); border-color: rgba(123,127,109,.35); }
.g83-ot-tab-btn.active,
.g83-ot-tab-btn.active:focus { opacity: 1; background: none; color: var(--g83-ink); border-color: var(--g83-olive); }
.g83-ot-tab-panel { display: none; }
.g83-ot-tab-panel.active { display: block; }
.g83-promo-card[data-tab] { display: none; }
.g83-promo-card[data-tab].active { display: flex; }
.g83-ot-left { min-width: 0; }
.g83-ot-list { display: flex; flex-direction: column; gap: 12px; min-width: 0; }
.g83-ot-row { background: var(--g83-white); border: 1px solid var(--g83-line); transition: border-color .16s ease; font-family: var(--g83-font); overflow: hidden; }
.g83-ot-row.open { border-color: var(--g83-ink); }
.g83-ot-head { display: flex; align-items: center; gap: 18px; padding: 18px 22px; cursor: pointer; min-width: 0; justify-content: space-between;}
.g83-ot-tier { width: 34px; height: 34px; flex: none; background: var(--g83-ink); color: var(--g83-white); display: grid; place-items: center; font-weight: 800; font-size: 15px; }
.g83-ot-row.open .g83-ot-tier { background: var(--g83-olive); }
.g83-ot-name { font-weight: 800; font-size: 16px; color: var(--g83-ink); }
.g83-ot-desc { color: var(--g83-olive); font-size: 14px; font-weight: 600; margin-left: auto; }
.g83-ot-toggle { display: inline-flex; align-items: center; gap: 6px; color: var(--g83-olive); font-size: 13px; font-weight: 700; white-space: nowrap; background: none; border: none; cursor: pointer; font-family: var(--g83-font); }
.g83-ot-toggle svg { width: 14px; height: 14px; transition: transform .25s ease; }
.g83-ot-row.open .g83-ot-toggle svg { transform: rotate(45deg); }
.g83-ot-body { overflow: hidden; max-height: 0; transition: max-height .38s ease; }
.g83-ot-body.show { max-height: 2000px; }
.g83-ot-min { color: var(--g83-olive); font-size: 13px; font-weight: 600; margin-left: auto; margin-right: 0; }
.g83-ot-panel { padding: 0 22px 22px; border-top: 1px solid var(--g83-line); }
.g83-ot-panel-row { display: flex; align-items: center; justify-content: space-between; padding: 16px 0; border-bottom: 1px solid var(--g83-line); }
.g83-ot-row-label { font-size: 12px; font-weight: 700; letter-spacing: .09em; text-transform: uppercase; color: var(--g83-ink); }
.g83-ot-counter { display: flex; align-items: center; gap: 0; }
.g83-otc-btn { width: 36px; height: 36px; background: var(--g83-ink); color: var(--g83-white); font-size: 18px; font-weight: 400; display: grid; place-items: center; border: none; cursor: pointer; transition: background .15s; flex: none; }
.g83-otc-btn:hover { background: var(--g83-olive); }
.g83-otc-val { min-width: 42px; text-align: center; font-size: 16px; font-weight: 700; color: var(--g83-ink); }
.g83-ot-extras { display: flex; flex-wrap: wrap; gap: 10px; padding: 18px 0 6px; }
.g83-ot-extra { display: inline-flex; align-items: center; gap: 8px; border: 1px solid var(--g83-line); padding: 9px 14px; font-size: 13.5px; font-weight: 600; color: var(--g83-ink); cursor: pointer; transition: border-color .15s, background .15s; font-family: var(--g83-font); }
.g83-ot-extra:has(input:checked) { border-color: var(--g83-ink); background: var(--g83-ink); color: var(--g83-white); }
.g83-ot-extra input[type="checkbox"] { width: 16px; height: 16px; accent-color: var(--g83-olive); cursor: pointer; }
.g83-ot-price-bar { display: flex; align-items: center; justify-content: space-between; padding-top: 20px; gap: 20px; flex-wrap: wrap; }
.g83-ot-est { display: flex; flex-direction: column; }
.g83-ot-est span { font-size: 12px; color: var(--g83-olive); font-weight: 600; }
.g83-ot-price-val { font-size: 28px; font-weight: 800; color: var(--g83-ink); letter-spacing: -.02em; }
.g83-promo-card { background: var(--g83-ink); color: var(--g83-white); padding: 40px 36px 36px; display: flex; flex-direction: column; align-items: center; text-align: center; font-family: var(--g83-font); }
.g83-promo-card .pc-label { font-size: 11px; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; color: var(--g83-olive); }
.g83-promo-card .pc-h { font-size: 26px; font-weight: 800; color: var(--g83-white); letter-spacing: -.01em; }
.g83-promo-pct { font-size: 56px; font-weight: 800; color: var(--g83-olive); line-height: 1; margin: 14px 0 12px; }
.g83-promo-code { font-size: 18px; font-weight: 800; letter-spacing: .08em; color: var(--g83-white); }
.g83-promo-qr { margin: 16px 0 4px; }
.g83-promo-qr img { display: block; width: 140px; height: 140px; object-fit: contain; background: var(--g83-white); padding: 6px; }
.g83-promo-sub { font-size: 13px; color: var(--g83-olive); font-weight: 600; margin-top: 4px; }
.g83-promo-year { font-size: 11px; font-weight: 700; letter-spacing: .24em; text-transform: uppercase; color: var(--g83-white); margin-top: 24px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.18); width: 100%; }

/* =====================================================================
   OFFERS CARDS
   ===================================================================== */
.g83-offer-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.g83-ocard { background: var(--g83-white); border: 1px solid var(--g83-line); display: flex; flex-direction: column; transition: border-color .16s ease; font-family: var(--g83-font); }
.g83-ocard:hover { border-color: var(--g83-ink); }
.g83-ocard .ocard-photo { height: 210px; overflow: hidden; background: var(--g83-gray); }
.g83-ocard .ocard-photo img { width: 100%; height: 100%; object-fit: cover; }
.g83-ocard-b { padding: 22px 24px 24px; display: flex; flex-direction: column; flex: 1; }
.g83-ocard-b h3 { font-size: 21px; font-weight: 800; color: var(--g83-ink); }
.g83-ocard-b h3:before{ display: none; }
.g83-ocard-meta { color: var(--g83-olive); font-size: 13px; font-weight: 600; margin: 7px 0 16px; display: flex; align-items: center; gap: 8px; }
.g83-ocard-meta svg { width: 14px; height: 14px; }
.g83-ocard-desc { font-size: 14px; line-height: 1.65; color: var(--g83-ink); margin-bottom: 14px; display: -webkit-box; -webkit-line-clamp: 4; -webkit-box-orient: vertical; overflow: hidden; }
.g83-ocard-foot { display: flex; align-items: center; justify-content: space-between; margin-top: auto; padding-top: 18px; border-top: 1px solid var(--g83-line); }
.g83-ocard-price b { display: block; font-size: 22px; font-weight: 800; color: var(--g83-ink); line-height: 1.15; white-space: nowrap; }
.g83-ocard-price small { display: block; font-size: 12px; color: var(--g83-olive); font-weight: 600; }
.g83-offers-more { display: flex; justify-content: flex-end; margin-top: 32px; }

/* =====================================================================
   TESTIMONIAL
   ===================================================================== */
.g83-testi { background: var(--g83-white); text-align: center; padding: 90px 0; font-family: var(--g83-font); }
.g83-testi-slider { position: relative; max-width: 90%; margin: 0 auto; padding: 0 32px; }
.g83-testi-viewport { overflow: hidden; }
.g83-testi-track { display: flex; align-items: center; transition: transform .5s ease; }
.g83-testi-slide { flex: 0 0 100%; min-width: 0; }
.g83-testi-in { padding: 0 4px; }
.g83-testi q { display: block; font-size: clamp(19px, 2vw, 24px); font-style: italic; line-height: 1.55; color: var(--g83-ink); quotes: none; }
.g83-testi q::before, .g83-testi q::after { content: ""; }
.g83-testi .by { margin-top: 26px; font-weight: 800; color: var(--g83-olive); letter-spacing: .02em; }
.g83-testi-arrows { position: static; right: auto; bottom: auto; justify-content: center; margin-top: 30px; }
a.g83-testi-link { display: block; text-decoration: none; color: inherit; transition: opacity .18s; }
a.g83-testi-link:hover { opacity: .82; }
.g83-google-badge {
  display: inline-flex; align-items: center; gap: 6px; justify-content: center;
  margin-top: 12px; font-size: 11.5px; font-weight: 600; letter-spacing: .04em;
  color: #5f6368; font-family: var(--g83-font);
}
.g83-google-badge svg { width: 40px; height: 40px; flex: none; }

/* =====================================================================
   ABOUT / RULES
   ===================================================================== */
.g83-about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; font-family: var(--g83-font); }
.g83-about-full { grid-column: 1 / -1; }
.g83-about-col h3 { font-size: 24px; font-weight: 800; color: var(--g83-ink); margin-bottom: 4px; }
.g83-about-col h3:before{
  display: none;
}
.g83-about-col h4 { font-size: 15px; font-weight: 800; color: var(--g83-ink); margin: 0px; padding: 0px }
.g83-about-col p { color: var(--g83-ink); margin-bottom: 8px; }
.g83-blist { display: flex; flex-direction: column; gap: 10px; margin-top: 6px; }
.g83-blist li { position: relative; padding-left: 5px; color: var(--g83-ink); font-size: 15px; line-height: 1.55; }
.g83-blist li::before { content: ""; position: absolute; left: 2px; top: 9px; width: 7px; height: 7px; border: 1.5px solid var(--g83-olive); border-radius: 50%; }

/* =====================================================================
   FOOTER SECTION
   ===================================================================== */
.g83-footer { background: var(--g83-ink); color: var(--g83-white); padding: 70px 0 28px; font-family: var(--g83-font); }
.g83-foot-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; }
.g83-foot-logo { width: 78px; height: 78px; }
.g83-foot-brand .fb-name { font-size: 22px; font-weight: 800; letter-spacing: .04em; margin-top: 16px; color: var(--g83-white); }
.g83-foot-col .g83-rule { background: var(--g83-olive); }
.g83-foot-col h4 { font-size: 14px; font-weight: 800; color: var(--g83-white); margin-bottom: 18px; letter-spacing: .02em; }
.g83-foot-col ul { display: flex; flex-direction: column; gap: 11px; }
.g83-foot-col a { font-size: 14px; color: rgba(255,255,255,.82); transition: color .15s; }
.g83-foot-col a:hover { color: var(--g83-olive); }
.g83-foot-bottom {
  display: flex; align-items: center; justify-content: space-between;
  margin-top: 54px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.14);
  font-size: 13px; color: rgba(255,255,255,.6); flex-wrap: wrap; gap: 14px;
}
.g83-foot-bottom .fb-links { display: flex; gap: 22px; }
.g83-foot-bottom a:hover { color: var(--g83-olive); }
/* =====================================================================
   MPHB SEARCH RESULTS — side-by-side layout
   ===================================================================== */
.mphb-room-type {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 2rem;
}
.mphb-room-type-images {
  flex: 0 0 45%;
  max-width: 45%;
}
.mphb-room-type-info {
  flex: 1;
  min-width: 0;
}

/* =====================================================================
   RESPONSIVE
   ===================================================================== */
@media (max-width: 980px) {
  .g83-hero-grid { grid-template-columns: 1fr; }
  .g83-hero-left { padding: 56px 32px; }
  .g83-hero-left-wrap { padding-left: 0; }
  .g83-hero-right { min-height: 420px; }
  .g83-days { grid-template-columns: repeat(4, 1fr); }
  .g83-ev-card { flex-basis: calc((100% - 24px) / 2); }
  .g83-ot-grid { grid-template-columns: 1fr; gap: 28px; }
  .g83-offer-grid { grid-template-columns: 1fr 1fr; }
  .g83-about-grid { grid-template-columns: 1fr; gap: 40px; }
  .g83-foot-grid { grid-template-columns: 1fr 1fr; gap: 34px; }
  .g83-nav-links { display: none; }
  .g83-nav-burger { display: grid !important; margin-left: auto; }
  .g83-book-form { grid-template-columns: repeat(6, 1fr); }
  .g83-fld.c4, .g83-fld.c3, .g83-fld.c8 { grid-column: span 3; }
}
@media (max-width: 600px) {
  .g83-wrap { padding: 0 20px; }
  .g83-days { grid-template-columns: repeat(2, 1fr); }
  .g83-offer-grid { grid-template-columns: 1fr; }
  .g83-ev-card { flex-basis: 100%; }
  .g83-foot-grid { grid-template-columns: 1fr; }
  .g83-about-grid { grid-template-columns: 1fr; }
  .g83-book-form { grid-template-columns: 1fr 1fr; }
  .g83-fld.c4, .g83-fld.c3, .g83-fld.c8 { grid-column: span 1; }

  .g83-ot-name { margin-top: 10px; }

  /* Offers table: wrap head row on small screens */
  .g83-ot-head { flex-wrap: wrap; gap: 0; padding: 14px 16px; justify-content: center; align-items: center; flex-direction: column; }
  .g83-ot-tier-name { min-width: 0; flex: 1 1 auto; }
  .g83-ot-desc { margin-left: 0; order: 3; width: 100%; }
  .g83-ot-min { margin-left: 0; order: 4; }
  .g83-ot-toggle { order: 2; }

  /* Extras: truncate long labels with ellipsis */
  .g83-ot-extra { max-width: 100%; width: 100%; overflow-wrap: anywhere;}
  .g83-ot-extra-txt { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; min-width: 0; }

  /* MPHB search results: stack on mobile */
  .mphb-room-type { flex-direction: column; }
  .mphb-room-type-images { flex: none; max-width: 100%; width: 100%; }

  .g83-ot-tab-nav { flex-wrap: wrap; }
  .g83-ot-tab-btn { flex: 0 0 50%; width: 50%; box-sizing: border-box; }
}

/* =====================================================================
   GALLERY PAGE — masonry grid + lightbox
   ===================================================================== */
.g83-gallery-page { background: #ffffff; min-height: 60vh; padding-bottom: 80px; font-family: var(--g83-font); }
.g83-gallery-head { padding: 56px 32px 40px; max-width: var(--g83-maxw); margin: 0 auto; }
.g83-gallery-head h1 { font-size: clamp(26px, 3vw, 42px); font-weight: 800; color: var(--g83-white); letter-spacing: -.01em; margin: 0; }

.g83-masonry { columns: 4; column-gap: 4px; padding: 0; }
.g83-masonry-item { break-inside: avoid; margin-bottom: 4px; cursor: zoom-in; overflow: hidden; display: block; }
.g83-masonry-item img { display: block; width: 100%; height: auto; transition: transform .35s ease, filter .3s ease; }
.g83-masonry-item:hover img { transform: scale(1.04); filter: brightness(.82); }
.g83-masonry-item:focus { outline: 3px solid var(--g83-olive); outline-offset: -3px; }

/* Lightbox overlay */
.g83-lb { display: none; position: fixed; inset: 0; background: rgba(0,0,0,.94); z-index: 9999; align-items: center; justify-content: center; }
.g83-lb.open { display: flex; }
.g83-lb-img-wrap { display: flex; align-items: center; justify-content: center; max-width: 90vw; max-height: 90vh; }
.g83-lb-img { display: block; max-width: 90vw; max-height: 88vh; object-fit: contain; box-shadow: 0 24px 80px rgba(0,0,0,.7); }
.g83-lb-close { position: fixed; top: 18px; right: 22px; background: none; border: none; color: #fff; font-size: 40px; line-height: 1; cursor: pointer; opacity: .7; padding: 4px 10px; transition: opacity .15s; z-index: 1; }
.g83-lb-close:hover { opacity: 1; }
.g83-lb-prev,
.g83-lb-next { position: fixed; top: 50%; transform: translateY(-50%); background: rgba(0,0,0,.5); border: none; color: #fff; font-size: 40px; line-height: 1; cursor: pointer; padding: 16px 20px; transition: background .15s; z-index: 1; }
.g83-lb-prev { left: 12px; }
.g83-lb-next { right: 12px; }
.g83-lb-prev:hover,
.g83-lb-next:hover { background: rgba(0,0,0,.75); }
.g83-lb-caption { position: fixed; bottom: 18px; left: 50%; transform: translateX(-50%); color: rgba(255,255,255,.65); font-size: 13px; text-align: center; max-width: 640px; padding: 0 20px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }

@media (max-width: 980px) { .g83-masonry { columns: 3; } }
@media (max-width: 600px) {
  .g83-masonry { columns: 2; column-gap: 3px; }
  .g83-masonry-item { margin-bottom: 3px; }
  .g83-lb-prev { left: 4px; padding: 12px 14px; }
  .g83-lb-next { right: 4px; padding: 12px 14px; }
}

/* =====================================================================
   BLOG / CHILD-PAGES GRID — uniform thumbnail height
   ===================================================================== */
.child-pages-grid .post-thumbnail {
  display: block;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}
.child-pages-grid .post-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}


/* =====================================================================
   MPHB FORMS — shared visual styles (search + checkout)
   ===================================================================== */

/* Labels */
.mphb_sc_search-form label,
.mphb_sc_checkout-form label,
.mphb-booking-form label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--g83-ink);
  margin-bottom: 7px;
  font-family: var(--g83-font);
}
.mphb_sc_search-form label abbr,
.mphb_sc_checkout-form label abbr,
.mphb-booking-form label abbr { display: none; }
.mphb_sc_search-form p > br,
.mphb_sc_checkout-form p > br,
.mphb-booking-form p > br { display: none; }

/* Inputs, selects, textareas */
.mphb_sc_search-form input[type="text"],
.mphb_sc_search-form select,
.mphb_sc_checkout-form input[type="text"],
.mphb_sc_checkout-form input[type="email"],
.mphb_sc_checkout-form input[type="tel"],
.mphb_sc_checkout-form select,
.mphb_sc_checkout-form textarea,
.mphb-booking-form input[type="text"],
.mphb-booking-form input[type="email"],
.mphb-booking-form input[type="tel"],
.mphb-booking-form select,
.mphb-booking-form textarea,
.mphb_sc_checkout-service-quantity,
.mphb_checkout-service-quantity {
  width: 100%;
  box-sizing: border-box;
  border: 1px solid var(--g83-line);
  border-radius: 0;
  padding: 11px 14px;
  font-size: 14px;
  font-family: var(--g83-font);
  color: var(--g83-ink);
  background: var(--g83-white);
  -webkit-appearance: none;
  appearance: none;
  transition: border-color .15s;
  box-shadow: none;
}
.mphb_sc_search-form input[type="text"]:focus,
.mphb_sc_search-form select:focus,
.mphb_sc_checkout-form input:focus,
.mphb_sc_checkout-form select:focus,
.mphb_sc_checkout-form textarea:focus,
.mphb-booking-form input:focus,
.mphb-booking-form select:focus,
.mphb-booking-form textarea:focus {
  outline: none;
  border-color: var(--g83-olive);
}

/* Submit buttons */
.mphb_sc_search-form input[type="submit"].button,
.mphb_sc_checkout-form input[type="submit"],
.mphb_sc_checkout-form button[type="submit"],
.mphb-booking-form input[type="submit"],
.mphb-booking-form button[type="submit"] {
  width: 100%;
  display: block;
  background: var(--g83-olive);
  color: var(--g83-white);
  border: none;
  border-radius: 0;
  padding: 14px 26px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  cursor: pointer;
  font-family: var(--g83-font);
  transition: background .16s ease;
}
.mphb_sc_search-form input[type="submit"].button:hover,
.mphb_sc_checkout-form input[type="submit"]:hover,
.mphb_sc_checkout-form button[type="submit"]:hover,
.mphb-booking-form input[type="submit"]:hover,
.mphb-booking-form button[type="submit"]:hover { background: var(--g83-olive-dk); }

/* =====================================================================
   MPHB AVAILABILITY SEARCH FORM — grid layout
   ===================================================================== */
.mphb_sc_search-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px 20px;
  align-items: end;
  font-family: var(--g83-font);
}
.mphb_sc_search-form p { margin: 0; }
.mphb_sc_search-form .mphb-required-fields-tip,
.mphb_sc_search-submit-button-wrapper { grid-column: 1 / -1; }
.mphb_sc_search-form .mphb-required-fields-tip { display: none; }

/* Mobile: single column */
@media (max-width: 600px) {
  .mphb_sc_search-form { grid-template-columns: 1fr; }
  .mphb_sc_search-submit-button-wrapper { grid-column: 1; }
}

/* =====================================================================
   MPHB CHECKOUT FORM — inline pairs
   ===================================================================== */

/* Left of each pair */
.mphb_sc_checkout-form .mphb-adults-chooser,
.mphb_sc_checkout-form .mphb-customer-first-name,
.mphb_sc_checkout-form .mphb-customer-email,
.mphb-booking-form .mphb-adults-chooser,
.mphb-booking-form .mphb-customer-first-name,
.mphb-booking-form .mphb-customer-email,
.mphb-booking-form .mphb-check-in-date-wrapper {
  display: inline-block;
  width: calc(49% - 10px);
  vertical-align: top;
  box-sizing: border-box;
  margin-right: 20px;
}

/* Right of each pair */
.mphb_sc_checkout-form .mphb-guest-name-wrapper,
.mphb_sc_checkout-form .mphb-customer-last-name,
.mphb_sc_checkout-form .mphb-customer-phone,
.mphb-booking-form .mphb-guest-name-wrapper,
.mphb-booking-form .mphb-customer-last-name,
.mphb-booking-form .mphb-customer-phone,
.mphb-booking-form .mphb-check-out-date-wrapper {
  display: inline-block;
  width: calc(49% - 10px);
  vertical-align: top;
  box-sizing: border-box;
}

/* Mobile: stack all pairs */
@media (max-width: 600px) {
  .mphb_sc_checkout-form .mphb-adults-chooser,
  .mphb_sc_checkout-form .mphb-customer-first-name,
  .mphb_sc_checkout-form .mphb-customer-email,
  .mphb_sc_checkout-form .mphb-guest-name-wrapper,
  .mphb_sc_checkout-form .mphb-customer-last-name,
  .mphb_sc_checkout-form .mphb-customer-phone,
  .mphb-booking-form .mphb-adults-chooser,
  .mphb-booking-form .mphb-customer-first-name,
  .mphb-booking-form .mphb-customer-email,
  .mphb-booking-form .mphb-check-in-date-wrapper,
  .mphb-booking-form .mphb-guest-name-wrapper,
  .mphb-booking-form .mphb-customer-last-name,
  .mphb-booking-form .mphb-customer-phone,
  .mphb-booking-form .mphb-check-out-date-wrapper {
    display: block;
    width: 100%;
    margin-right: 0;
  }
}

/* =====================================================================
   MPHB CHECKOUT / BOOKING — Services list
   ===================================================================== */
.mphb_sc_checkout-services-list,
.mphb_checkout-services-list {
  list-style: none;
  padding: 0;
  margin: 8px 0 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-family: var(--g83-font);
}

.mphb_sc_checkout-services-list > li,
.mphb_checkout-services-list > li {
  border: 1px solid var(--g83-line);
  padding: 14px 16px;
  background: var(--g83-white);
  font-size: 14px;
  color: var(--g83-ink);
  line-height: 1.6;
  transition: border-color .15s;
}

.mphb_sc_checkout-services-list > li:has(input:checked),
.mphb_checkout-services-list > li:has(input:checked) {
  border-color: var(--g83-olive);
}

/* Main checkbox label row */
.mphb_sc_checkout-services-list .mphb-checkbox-label,
.mphb_checkout-services-list .mphb-checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
  color: var(--g83-ink);
  margin: 0;
}

.mphb_sc_checkout-services-list .mphb-checkbox-label input[type="checkbox"],
.mphb_checkout-services-list .mphb-checkbox-label input[type="checkbox"] {
  flex: none;
  width: 17px;
  height: 17px;
  accent-color: var(--g83-olive);
  margin-top: 3px;
  cursor: pointer;
}

/* Price text */
.mphb_sc_checkout-services-list .mphb-checkbox-label em,
.mphb_checkout-services-list .mphb-checkbox-label em {
  font-style: normal;
  font-size: 12px;
  font-weight: 600;
  color: var(--g83-olive);
  white-space: nowrap;
}

/* Adults count label (non-checkbox) */
.mphb_sc_checkout-services-list li > label:not(.mphb-checkbox-label),
.mphb_checkout-services-list li > label:not(.mphb-checkbox-label) {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 10px;
  margin-left: 27px;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--g83-ink);
}

/* Adults select */
.mphb_sc_checkout-service-adults,
.mphb_checkout-service-adults {
  width: auto !important;
  min-width: 64px;
  padding: 5px 10px !important;
  font-size: 13px !important;
}

/* Quantity input (× N dzień/dni) — shared input styles applied above */
.mphb_sc_checkout-service-quantity,
.mphb_checkout-service-quantity {
  display: inline-block;
  width: 56px;
  text-align: center;
  margin-left: 27px;
  vertical-align: middle;
}

.mphb_sc_checkout-services-list .mphb-price,
.mphb_checkout-services-list .mphb-price {
  font-family: var(--g83-font);
}

/* Bike insurance toggle (injected via JS for service 93) */
.g83-insurance-toggle {
  margin-top: 12px;
  margin-left: 27px;
  padding: 12px 14px;
  background: var(--g83-gray);
  border-left: 3px solid var(--g83-olive);
}

.g83-insurance-toggle__q {
  margin: 0 0 10px;
  font-size: 13px;
  font-weight: 700;
  color: var(--g83-ink);
  font-family: var(--g83-font);
}

.g83-insurance-toggle__opts {
  display: flex;
  gap: 20px;
}

.g83-insurance-toggle__opt {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--g83-ink);
  font-family: var(--g83-font);
  cursor: pointer;
}

.g83-insurance-toggle__opt input[type="radio"] {
  flex: none;
  width: 16px;
  height: 16px;
  accent-color: var(--g83-olive);
  cursor: pointer;
}

.g83-ins-price-note {
  font-size: 11px;
  font-weight: 700;
  color: var(--g83-olive);
  margin-left: 2px;
}

.g83-ins-total {
  margin: 10px 0 0;
  font-size: 13px;
  font-weight: 700;
  color: var(--g83-olive);
  font-family: var(--g83-font);
}


/* =====================================================================
   BIKE INSURANCE PAGE (page-bike-insurance.php template)
   ===================================================================== */
.g83-ins-page {
  padding: 64px 0 80px;
  font-family: var(--g83-font);
  color: var(--g83-ink);
  background: var(--g83-white);
  min-height: 60vh;
}

/* State screens (invalid link / success) */
.g83-ins-state {
  max-width: 520px;
  margin: 0 auto;
  text-align: center;
  padding: 40px 0;
}
.g83-ins-state__icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin-bottom: 24px;
}
.g83-ins-state__icon--ok    { background: #e8f5e9; color: #166534; }
.g83-ins-state__icon--error { background: #fdecea; color: #991b1b; }
.g83-ins-state__title { font-size: 28px; font-weight: 800; margin: 0 0 12px; }
.g83-ins-state__desc  { font-size: 15px; line-height: 1.7; color: var(--g83-ink); margin: 0; }

/* Form wrapper */
.g83-ins-form-wrap { max-width: 680px; }

.g83-ins-header { margin-bottom: 36px; }
.g83-ins-pill {
  display: inline-block;
  background: var(--g83-olive);
  color: var(--g83-white);
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 5px 14px;
  margin-bottom: 14px;
}
.g83-ins-intro {
  margin: 10px 0 0;
  font-size: 15px;
  line-height: 1.7;
  color: var(--g83-ink);
  max-width: 560px;
}

/* Error notice */
.g83-ins-notice {
  padding: 12px 16px;
  margin-bottom: 24px;
  font-size: 14px;
  font-weight: 600;
}
.g83-ins-notice--error { background: #fdecea; color: #c0392b; border-left: 3px solid #c0392b; }

/* Section label */
.g83-ins-section-title {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--g83-olive);
  margin: 28px 0 14px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--g83-line);
}
.g83-ins-form .g83-ins-section-title:first-of-type { margin-top: 0; }

/* Rows */
.g83-ins-row { display: flex; gap: 20px; }
.g83-ins-row > .g83-ins-field { flex: 1; min-width: 0; }

/* Fields */
.g83-ins-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}
.g83-ins-field label {
  font-size: 13px;
  font-weight: 700;
  color: var(--g83-ink);
}
.g83-ins-field label span { color: var(--g83-olive); }

.g83-ins-field input,
.g83-ins-field textarea {
  width: 100%;
  box-sizing: border-box;
  padding: 10px 14px;
  border: 1px solid var(--g83-line);
  background: var(--g83-white);
  font-size: 14px;
  font-family: var(--g83-font);
  color: var(--g83-ink);
  transition: border-color .15s;
  outline: none;
  border-radius: 0;
  -webkit-appearance: none;
  appearance: none;
}
.g83-ins-field input:focus,
.g83-ins-field textarea:focus { border-color: var(--g83-olive); }
.g83-ins-field textarea { resize: vertical; }

/* Actions */
.g83-ins-actions {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 28px;
  flex-wrap: wrap;
}
.g83-ins-required-note { margin: 0; font-size: 12px; color: #888; }

/* Narrow single field (e.g. bikes count) */
.g83-ins-field--narrow { max-width: 160px; }

/* Per-person group */
.g83-ins-person {
  padding: 16px;
  margin-bottom: 12px;
  background: var(--g83-gray);
  border-left: 3px solid var(--g83-olive);
}
.g83-ins-person__num {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--g83-olive);
  margin-bottom: 12px;
}

@media (max-width: 600px) {
  .g83-ins-row { flex-direction: column; gap: 0; }
  .g83-ins-actions { flex-direction: column; align-items: flex-start; }
  .g83-ins-field--narrow { max-width: 100%; }
}

/* =====================================================================
   MPHB SEARCH RESULTS
   ===================================================================== */
.mphb_sc_search_results-wrapper .mphb-reservation-cart{
  margin-bottom: 0px;
}

.content-area.no-sidebar {
    max-width: 1516px!important;
    margin: 0 auto;
    padding: 0px;
}

.mphb_sc_search_results-wrapper .mphb-reserve-room-section{
  width: auto;
  float: left;
}

.mphb_sc_search_results-wrapper .mphb-view-details-button-wrapper{
  margin: 0px;
  margin-left: 20px;
  margin-top: 0px!important;
}

.mphb-room-type-title.entry-title:before,h1:before, h2:before, h3:before, h4:before, h5:before, h6:before, .g83-blist li::before{
  display: none;
}

button.g83-ot-head{
  background: #fff;
  width: 100%;
  border: none!important;
}


.location-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  align-items: flex-start;
}

.location-map {
  flex: 1 1 400px;
  order: 1;
}

.location-map iframe {
  width: 100%;
  height: 450px;
  border: 0;
  display: block;
}

.location-content {
  flex: 1 1 400px;
  order: 2;
}

/* Mobile: map goes AFTER content */
@media (max-width: 767px) {
  .location-map {
    order: 2;
  }
  .location-content {
    order: 1;
  }
}

.clear {
  clear: both;
}

/* Large screens: map and content each take exactly 50% width */
@media (min-width: 992px) {
  .location-map,
  .location-content {
    width: 50%;
    flex: 0 0 49%;
  }
}


.location-content h5{
  margin: 0px;
  padding-bottom: 10px;
  padding-top: 0px;
}

.wpcf7 .cf7-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 16px;
}

.wpcf7 .cf7-row > p {
  flex: 1 1 220px;
  margin: 0;
}

.wpcf7 .cf7-field-label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 6px;
}

.wpcf7 input[type="text"],
.wpcf7 input[type="email"],
.wpcf7 input[type="tel"],
.wpcf7 input[type="date"],
.wpcf7 textarea {
  width: 100%;
  max-width: none;
  padding: 12px 14px;
  border: 1px solid #ccc;
  border-radius: 0px;
  font-size: 15px;
  box-sizing: border-box;
  transition: border-color 0.2s ease;
}

.wpcf7 input:focus,
.wpcf7 textarea:focus {
  border-color: #333;
  outline: none;
}

.wpcf7 textarea {
  min-height: 120px;
  resize: vertical;
}

.wpcf7 .cf7-submit-row {
  margin-top: 8px;
}

.wpcf7 input[type="submit"] {
  padding: 12px 32px;
  border: none;
  border-radius: 0px;
  background: var(--g83-olive); 
  color: #fff;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  transition: background 0.2s ease;
}



.mphb_sc_search-form .mphb_sc_search-adults,
.mphb-country-control select,
.mphb-customer-note textarea{
  max-width: none!important;
  width: 100%!important;
}


.mphb_sc_checkout-wrapper .mphb-login-form-wrap,
.mphb-room-details {
  padding-bottom: 1.1em!important;
  margin-bottom: 1.6em!important;
  margin-top: 1.6em!important;
  padding-top: 1.1em!important;
}

.mphb-services-details {
  margin-top: 0em!important;
}

.mphb_cb_checkout_form>.mphb-checkout-section:not(:first-of-type), .mphb_sc_checkout-form>.mphb-checkout-section:not(:first-of-type){
  margin-top: 2rem!important;
}

body .mphb_sc_checkout-form > section:not(:first-of-type) {
  padding-top: 2.6em !important;
}