/* =========================================================
   Blue Horizon Chanioti — styles
   Palette taken from the listing photos: bright Aegean blue,
   whitewashed walls, and the apricot of the sunset shots.
   ========================================================= */
:root {
  --deep:      #0a3d5c;   /* deep sea — headings, dark sections */
  --azure:     #1782c4;   /* bright Aegean — primary accent      */
  --azure-dk:  #12699f;
  --sky:       #6fb9e0;   /* light water                          */
  --pale:      #eef6fb;   /* cool off-white section background    */
  --paler:     #f7fbfd;
  --white:     #ffffff;
  --ink:       #14283a;
  --ink-soft:  #536777;
  --line:      #dbe7f0;
  --sun:       #e0873c;   /* sunset apricot — sparing highlights  */
  --ok:        #2e7d51;
  --radius: 16px;
  --radius-sm: 10px;
  --shadow: 0 12px 34px rgba(10, 61, 92, .10);
  --shadow-lg: 0 22px 60px rgba(10, 61, 92, .18);
  --display: "Marcellus", Georgia, serif;
  --body: "Manrope", -apple-system, system-ui, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: var(--body); color: var(--ink); background: var(--white); line-height: 1.68; font-weight: 400; }
img { max-width: 100%; display: block; }
a { color: var(--azure); text-decoration: none; }
a:hover { text-decoration: underline; }
.ico { width: 24px; height: 24px; flex: 0 0 auto; display: block; color: var(--azure); }

h1, h2, h3 { font-family: var(--display); font-weight: 400; line-height: 1.15; letter-spacing: .01em; }
h2 { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 1rem; color: var(--deep); }
h3 { font-size: 1.4rem; margin-bottom: .5rem; color: var(--deep); }
h4 { font-family: var(--display); font-weight: 400; margin-bottom: .5rem; }

.container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }
.container-narrow { max-width: 780px; }
.section { padding: 92px 0; }
.section-alt { background: var(--pale); }
.section-deep { background: linear-gradient(165deg, var(--deep), #0f5580 75%); color: var(--white); }
.section-deep h2 { color: var(--white); }
.section-deep a { color: var(--sky); }
.section-kicker { text-transform: uppercase; letter-spacing: .3em; font-size: .72rem; font-weight: 600; color: var(--azure); margin-bottom: .8rem; }
.section-deep .section-kicker { color: var(--sky); }
.section-sub { color: var(--ink-soft); max-width: 660px; margin-bottom: 2rem; }
.section-deep .section-sub { color: #bfdcee; }
.muted { color: var(--ink-soft); font-size: .95rem; }

/* ===== Buttons ===== */
.btn { display: inline-block; padding: 14px 32px; border-radius: 999px; font-family: var(--body); font-weight: 600;
  font-size: .93rem; cursor: pointer; border: none; transition: transform .16s ease, box-shadow .16s ease, background .16s ease; }
.btn:hover { transform: translateY(-2px); text-decoration: none; box-shadow: var(--shadow); }
.btn-primary { background: var(--azure); color: var(--white); }
.btn-primary:hover { background: var(--azure-dk); }
.btn-light { background: var(--white); color: var(--deep); }
.btn-outline { background: transparent; color: var(--azure); border: 1.5px solid var(--azure); }
.btn-outline:hover { background: var(--azure); color: var(--white); }
.btn-wide { width: 100%; font-size: 1rem; padding: 16px; }
.btn:disabled { opacity: .5; cursor: default; transform: none; box-shadow: none; }

/* ===== Nav ===== */
.nav { position: fixed; inset: 0 0 auto 0; z-index: 100; background: rgba(255,255,255,.93);
  backdrop-filter: blur(14px); border-bottom: 1px solid var(--line); }
.nav-inner { max-width: 1180px; margin: 0 auto; padding: 13px 24px; display: flex; align-items: center; justify-content: space-between; }
.nav-logo { font-family: var(--display); font-size: 1.4rem; color: var(--deep); display: flex; align-items: baseline; gap: .4rem; }
.nav-logo:hover { text-decoration: none; }
.nav-logo span { color: var(--azure); }
.nav-links { display: flex; gap: 26px; align-items: center; }
.nav-links a { color: var(--ink); font-size: .9rem; font-weight: 500; }
.nav-links a:hover { color: var(--azure); text-decoration: none; }
.nav-links a:not(.nav-cta) { position: relative; padding-bottom: 3px; }
.nav-links a:not(.nav-cta)::after { content: ""; position: absolute; left: 0; right: 100%; bottom: 0; height: 2px;
  background: var(--azure); transition: right .25s ease; }
.nav-links a:not(.nav-cta).active { color: var(--azure); font-weight: 700; }
.nav-links a:not(.nav-cta).active::after { right: 0; }
.nav-cta { background: var(--azure); color: var(--white) !important; padding: 10px 22px; border-radius: 999px; line-height: 1.4; }
.nav-cta:hover { background: var(--azure-dk); }
.nav-burger { display: none; background: none; border: none; font-size: 1.45rem; color: var(--deep); cursor: pointer; }

/* ===== Hero ===== */
.hero { position: relative; min-height: 94vh; display: flex; align-items: center; justify-content: center; text-align: center; overflow: hidden; }
.hero-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero-overlay { position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(10,61,92,.42), rgba(10,61,92,.18) 45%, rgba(10,61,92,.68)); }
.hero-content { position: relative; z-index: 2; color: var(--white); padding: 110px 24px 48px; max-width: 860px; }
.hero-kicker { text-transform: uppercase; letter-spacing: .38em; font-size: .74rem; margin-bottom: 1rem; color: #cfeaf8; }
.hero h1 { font-size: clamp(2.8rem, 8vw, 5.4rem); text-shadow: 0 4px 34px rgba(0,0,0,.32); }
.hero h1 em { font-style: normal; color: var(--sky); }
.hero-sub { font-size: clamp(1.02rem, 2vw, 1.26rem); margin: 1.1rem auto 1.7rem; max-width: 600px; color: #e9f5fb; }
.hero-badges { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; margin-bottom: 2rem; }
.badge { background: rgba(255,255,255,.15); border: 1px solid rgba(255,255,255,.34); backdrop-filter: blur(6px);
  padding: 7px 16px; border-radius: 999px; font-size: .84rem; }

/* ===== House selector ===== */
.house-tabs { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin-bottom: 34px; }
.house-tab { background: var(--white); border: 1.5px solid var(--line); border-radius: var(--radius); padding: 0;
  cursor: pointer; text-align: left; overflow: hidden; font-family: var(--body); transition: border-color .16s, box-shadow .16s, transform .16s; }
.house-tab:hover { border-color: var(--sky); transform: translateY(-2px); box-shadow: var(--shadow); }
.house-tab.active { border-color: var(--azure); box-shadow: var(--shadow); }
.house-tab.active .ht-body { background: var(--azure); color: var(--white); }
.house-tab.active .ht-meta { color: #d6ecf8; }
.ht-thumb { width: 100%; aspect-ratio: 16/10; object-fit: cover; background: var(--pale); }
/* These are spans inside a span, so they must be made block-level or the
   name and the meta line run together on one line. */
.ht-body { display: block; padding: 13px 16px; transition: background .16s, color .16s; }
.ht-name { display: block; font-family: var(--display); font-size: 1.08rem; line-height: 1.25; }
.ht-meta { display: block; font-size: .77rem; color: var(--ink-soft); margin-top: 3px; line-height: 1.35; }

/* ===== House detail ===== */
.house-panel { display: grid; grid-template-columns: 1.45fr 1fr; gap: 46px; align-items: start; }
.house-text p { margin-bottom: 1rem; color: var(--ink-soft); }
.house-text p:first-of-type { color: var(--ink); font-size: 1.06rem; }
.facts { list-style: none; display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; margin: 1.6rem 0; }
.facts li { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 13px 10px;
  text-align: center; font-size: .78rem; color: var(--ink-soft); }
.facts strong { display: block; font-family: var(--display); font-size: 1.5rem; color: var(--deep); }
.rooms-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 24px; box-shadow: var(--shadow); }
.room-row { display: flex; justify-content: space-between; gap: 12px; padding: 11px 0; border-bottom: 1px solid var(--line); font-size: .9rem; }
.room-row:last-child { border-bottom: none; }
.room-row .r-beds { color: var(--ink-soft); text-align: right; }
/* A room with photographs of its own is a button into the gallery. */
.room-link { font: inherit; color: var(--azure); background: none; border: 0; padding: 0;
  text-align: left; cursor: pointer; text-decoration: underline; text-underline-offset: 3px;
  text-decoration-color: color-mix(in srgb, var(--azure) 35%, transparent); }
.room-link:hover { text-decoration-color: currentColor; }
.room-link:focus-visible { outline: 2px solid var(--azure); outline-offset: 3px; border-radius: 3px; }
.room-row small { color: var(--sky); display: block; }
.house-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 1.4rem; }
/* Choosing a house scrolls it into view; keep it clear of the fixed nav. */
.house-panel { scroll-margin-top: 84px; }

/* ===== Gallery ===== */
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 186px; gap: 10px; }
.gallery-item { border-radius: var(--radius-sm); overflow: hidden; cursor: pointer; background: var(--pale); }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s ease; }
.gallery-item:hover img { transform: scale(1.06); }
/* The two establishing shots lead the gallery at double width. */
.gallery-item.g-wide { grid-column: span 2; }
.gallery-item.g-wide:first-child { grid-row: span 2; }
/* Section headings sit on their own full-width row between the photographs. */
.gallery-sect { grid-column: 1 / -1; align-self: end; font-size: 1.05rem; font-weight: 600;
  letter-spacing: .02em; color: var(--ink); margin: 18px 0 -2px; }
.gallery-sect:first-child { margin-top: 0; }
.hidden-photo { display: none; }
.gallery-more { display: block; margin: 26px auto 0; }

/* ===== Amenities & location ===== */
.amenities-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); gap: 13px; }
.amenity { display: flex; align-items: center; gap: 13px; background: var(--white); border: 1px solid var(--line);
  border-radius: var(--radius-sm); padding: 15px 17px; font-size: .9rem; }
.amenity .a-icon { width: 25px; height: 25px; flex: 0 0 auto; }
.amenity small { display: block; color: var(--sky); font-size: .78rem; margin-top: 2px; }
.location-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 44px; align-items: start; }
.location-list { list-style: none; margin: 1.2rem 0; }
.location-list li { display: flex; align-items: center; gap: 13px; padding: 11px 0; border-bottom: 1px solid var(--line); font-size: .93rem; }
.location-list li:last-child { border-bottom: none; }
.location-list .l-icon { width: 22px; height: 22px; }
.map-embed { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.map-embed iframe { width: 100%; height: 400px; border: 0; display: block; }

/* ===== Reviews ===== */
.reviews-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 20px; }
.review-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 25px; box-shadow: var(--shadow); }
.review-head { display: flex; align-items: center; gap: 13px; margin-bottom: 11px; }
.review-avatar { width: 43px; height: 43px; border-radius: 50%; background: linear-gradient(135deg, var(--sky), var(--azure));
  color: var(--white); display: flex; align-items: center; justify-content: center; font-weight: 700; flex-shrink: 0; }
.review-name { font-weight: 700; font-size: .94rem; }
.review-meta { font-size: .77rem; color: var(--ink-soft); }
.review-stars { color: var(--sun); font-size: .84rem; letter-spacing: 2px; margin-bottom: 8px; }
.review-house { float: right; letter-spacing: 0; font-size: .67rem; text-transform: uppercase; color: var(--ink-soft);
  background: var(--pale); border-radius: 999px; padding: 2px 10px; }
.review-text { font-size: .91rem; color: var(--ink-soft); }
.host-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 26px; box-shadow: var(--shadow); }

/* ===== Calendar ===== */
.calendar-wrap { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow); padding: 28px; position: relative; }
.calendar-nav { position: absolute; top: 24px; right: 24px; display: flex; gap: 8px; z-index: 2; }
.cal-arrow { width: 37px; height: 37px; border-radius: 50%; border: 1.5px solid var(--line); background: var(--white);
  font-size: 1.15rem; cursor: pointer; color: var(--deep); }
.cal-arrow:hover:not(:disabled) { background: var(--pale); }
.cal-arrow:disabled { opacity: .35; cursor: default; }
.calendar-months { display: grid; grid-template-columns: 1fr 1fr; gap: 38px; }
.cal-month h3 { text-align: center; font-size: 1.18rem; margin-bottom: 12px; }
.cal-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 4px; }
.cal-dow { text-align: center; font-size: .68rem; text-transform: uppercase; letter-spacing: .07em; color: var(--ink-soft); padding-bottom: 5px; }
.cal-day { aspect-ratio: 1; display: flex; align-items: center; justify-content: center; font-size: .84rem; border-radius: 8px; }
.cal-day.has-price { flex-direction: column; gap: 1px; }
.cal-day .cal-price { font-size: .6rem; font-weight: 600; opacity: .85; letter-spacing: -.02em; }
.cal-day.avail { background: #e6f4ec; color: var(--ok); cursor: pointer; font-weight: 600; }
.cal-day.avail:hover { outline: 2px solid var(--ok); }
.cal-day.co-ok { background: var(--white); outline: 2px dashed var(--ok); outline-offset: -2px; color: var(--ok); }
.cal-day.open { background: #f2f6f8; color: #7f909c; }
.cal-day.booked { background: #fdeeea; color: #d09283; text-decoration: line-through; }
.cal-day.past { background: none; color: #c6d2da; text-decoration: line-through; }
.cal-day.empty { background: none; }
.cal-day.selected { background: var(--azure); color: var(--white); font-weight: 700; }
.cal-day.in-range { background: #d4e9f6; color: var(--deep); }
.calendar-legend { display: flex; gap: 22px; justify-content: center; margin-top: 22px; font-size: .82rem; color: var(--ink-soft); flex-wrap: wrap; }
.leg { display: inline-block; width: 13px; height: 13px; border-radius: 4px; vertical-align: -2px; margin-right: 6px; }
.leg-avail { background: #e6f4ec; border: 1px solid var(--ok); }
.leg-co { background: #fff; border: 2px dashed var(--ok); }
.leg-open { background: #f2f6f8; border: 1px solid #b9c6ce; }
.leg-booked { background: #fdeeea; border: 1px solid #d09283; }
.leg-sel { background: var(--azure); }
.calendar-note { text-align: center; margin-top: 12px; font-size: .84rem; color: var(--ink-soft); }
.calendar-stamp { text-align: center; margin-top: 6px; font-size: .76rem; color: #90a3b0; }
.calendar-selection { text-align: center; margin-top: 16px; font-size: .95rem; color: var(--deep); min-height: 1.4em; font-weight: 600; }

/* quote box under the calendar */
.quote { max-width: 460px; margin: 18px auto 0; background: var(--pale); border: 1px solid var(--line);
  border-radius: var(--radius-sm); padding: 16px 20px; }
.quote[hidden] { display: none; }
.quote-row { display: flex; justify-content: space-between; font-size: .9rem; padding: 4px 0; color: var(--ink-soft); }
.quote-row.total { border-top: 1px solid var(--line); margin-top: 6px; padding-top: 10px;
  font-size: 1.05rem; font-weight: 700; color: var(--deep); }
.quote-row.save { color: var(--ok); font-weight: 600; }

/* ===== Discount banner ===== */
.deals { display: flex; gap: 14px; flex-wrap: wrap; justify-content: center; margin-top: 22px; }
.deal { background: var(--white); border: 1px solid var(--line); border-radius: 999px; padding: 9px 20px; font-size: .87rem; color: var(--deep); }
.deal strong { color: var(--sun); }

/* ===== Booking form ===== */
.booking-form { background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.16); border-radius: var(--radius); padding: 34px; backdrop-filter: blur(6px); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-field { margin-bottom: 17px; display: flex; flex-direction: column; }
.form-field label { font-size: .8rem; font-weight: 600; margin-bottom: 7px; color: #cfe6f4; }
.form-field input, .form-field select, .form-field textarea {
  padding: 13px 15px; border-radius: var(--radius-sm); border: 1px solid rgba(255,255,255,.22);
  background: rgba(255,255,255,.96); font-family: var(--body); font-size: .94rem; color: var(--ink); width: 100%; }
.form-field input:focus, .form-field select:focus, .form-field textarea:focus { outline: 2px solid var(--sky); border-color: var(--sky); }
.captcha-row { display: flex; gap: 12px; align-items: center; flex-wrap: wrap; }
#captchaCanvas { border-radius: var(--radius-sm); background: var(--pale); }
.captcha-row input { flex: 1; min-width: 140px; }
.captcha-row .cal-arrow { background: rgba(255,255,255,.94); }
.form-error { color: #ffc0b0; font-size: .89rem; min-height: 1.3em; margin-bottom: 12px; }
.form-note { font-size: .79rem; color: #b3d0e2; text-align: center; margin-top: 14px; }
.booking-success { background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.24); border-radius: var(--radius); padding: 34px; text-align: center; }
.booking-success h3 { color: #a9e8c6; }

/* ===== Footer ===== */
.footer { background: var(--deep); color: #bcd8e8; padding: 58px 0 28px; }
.footer h3 { color: var(--white); font-size: 1.5rem; }
.footer h3 span { color: var(--sky); }
.footer h4 { color: var(--white); }
.footer a { color: var(--sky); }
.footer .muted { color: #8aa8bc; }
.footer-cols { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 40px; margin-bottom: 38px; }
.footer-note { text-align: center; font-size: .78rem; color: #6f92aa; border-top: 1px solid rgba(255,255,255,.1); padding-top: 22px; }

/* ===== Lightbox ===== */
.lightbox { position: fixed; inset: 0; z-index: 200; background: rgba(6,26,40,.96); display: flex; align-items: center; justify-content: center; }
.lightbox[hidden] { display: none; }
.lightbox img { max-width: 88vw; max-height: 86vh; border-radius: 8px; box-shadow: var(--shadow-lg); }
.lb-close { position: absolute; top: 20px; right: 24px; background: none; border: none; color: var(--white); font-size: 1.6rem; cursor: pointer; }
.lb-arrow { position: absolute; top: 50%; transform: translateY(-50%); background: rgba(255,255,255,.12); border: none;
  color: var(--white); font-size: 2.1rem; width: 54px; height: 54px; border-radius: 50%; cursor: pointer; }
.lb-arrow:hover { background: rgba(255,255,255,.26); }
.lb-prev { left: 24px; } .lb-next { right: 24px; }
.lb-counter { position: absolute; bottom: 20px; left: 50%; transform: translateX(-50%); color: #b6d3e5; font-size: .84rem; }

/* ===== Responsive ===== */
@media (max-width: 980px) {
  .house-tabs { grid-template-columns: repeat(2, 1fr); }
  .house-panel, .location-cols { grid-template-columns: 1fr; }
  .calendar-months { grid-template-columns: 1fr; }
  .footer-cols { grid-template-columns: 1fr; gap: 26px; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 160px; }
  /* Two columns leaves no room for a double-width opener beside anything. */
  .gallery-item.g-wide { grid-column: span 2; }
  .gallery-item.g-wide:first-child { grid-row: span 1; }
}
@media (max-width: 640px) {
  .section { padding: 58px 0; }
  .nav-links { display: none; position: absolute; top: 100%; left: 0; right: 0; background: var(--white);
    flex-direction: column; padding: 20px; gap: 16px; box-shadow: var(--shadow); }
  .nav-links.open { display: flex; }
  .nav-burger { display: block; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .facts { grid-template-columns: repeat(2, 1fr); }
  .house-tabs { grid-template-columns: 1fr; }
}

/* =========================================================
   Booking wizard
   ========================================================= */
.wizard { background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.16);
  border-radius: var(--radius); padding: 30px; backdrop-filter: blur(6px); }

/* progress */
.steps { list-style: none; display: flex; align-items: center; gap: 8px; margin: 0 0 26px; padding: 0; }
.step { display: flex; align-items: center; gap: 9px; flex: 1; color: #8fb4cd; font-size: .82rem; }
.step + .step::before { content: ""; height: 1px; background: rgba(255,255,255,.2); flex: 1; margin-right: 4px; }
.step-dot { width: 26px; height: 26px; border-radius: 50%; border: 1.5px solid rgba(255,255,255,.3);
  display: grid; place-items: center; font-size: .78rem; flex-shrink: 0; transition: all .2s ease; }
.step.is-active { color: var(--white); }
.step.is-active .step-dot { background: var(--sky); border-color: var(--sky); color: var(--deep); font-weight: 700; }
.step.is-done .step-dot { background: rgba(255,255,255,.9); border-color: rgba(255,255,255,.9); color: var(--deep); }
.step.is-done { color: #cfe6f4; }

/* panes */
.pane { display: none; animation: paneIn .25s ease; }
.pane.is-active { display: block; }
@keyframes paneIn { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: none; } }
.pane-actions { display: flex; gap: 12px; align-items: center; }
.pane-actions .btn { flex: 1; }
.btn-ghost { background: transparent; color: #cfe6f4; border: 1px solid rgba(255,255,255,.3); }
.btn-ghost:hover { background: rgba(255,255,255,.1); }
.pane-hint { font-size: .85rem; color: #b6d3e6; margin: 10px 0 20px; }
.pane-hint a { color: var(--sky); }

/* date cards */
.pane-dates { display: flex; align-items: stretch; gap: 12px; }
.date-card { flex: 1; background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.2);
  border-radius: 12px; padding: 14px 16px; display: flex; flex-direction: column; gap: 3px;
  cursor: pointer; transition: border-color .2s, background .2s; }
.date-card:hover { border-color: var(--sky); }
.date-card.is-set { border-color: var(--sky); background: rgba(111,185,224,.16); }
.dc-label { font-size: .72rem; text-transform: uppercase; letter-spacing: .12em; color: #9ec8e2; }
.dc-value { font-family: var(--display); font-size: 1.22rem; color: var(--white); }
.dc-arrow { align-self: center; color: #7fa9c4; font-size: 1.1rem; }

/* guests */
.guest-row { display: flex; align-items: center; justify-content: space-between; gap: 16px;
  background: rgba(255,255,255,.07); border-radius: 12px; padding: 14px 18px; margin: 0 0 18px; }
.gr-title { display: block; font-size: .98rem; }
.gr-sub { font-size: .78rem; color: #9ec8e2; }
.stepper { display: flex; align-items: center; gap: 6px; }
.stepper-btn { width: 36px; height: 36px; border-radius: 50%; border: 1px solid rgba(255,255,255,.35);
  background: transparent; color: var(--white); font-size: 1.2rem; cursor: pointer; line-height: 1; }
.stepper-btn:hover:not(:disabled) { background: rgba(255,255,255,.15); }
.stepper-btn:disabled { opacity: .3; cursor: default; }
.stepper-value { min-width: 34px; text-align: center; font-size: 1.05rem; font-weight: 700; }

/* live quote inside the wizard */
.wq { background: rgba(255,255,255,.09); border-radius: 12px; padding: 14px 18px; margin-bottom: 18px; }
.wq[hidden] { display: none; }
.wq-row { display: flex; justify-content: space-between; font-size: .9rem; color: #cfe6f4; padding: 4px 0; }
.wq-row.save { color: #a9e8c6; font-weight: 600; }
.wq-row.total { border-top: 1px solid rgba(255,255,255,.18); margin-top: 6px; padding-top: 10px;
  font-size: 1.05rem; font-weight: 700; color: var(--white); }
.wq-note { font-size: .74rem; color: #9ec8e2; margin-top: 8px; }

/* review */
.review { background: rgba(255,255,255,.09); border-radius: 12px; padding: 4px 18px; margin-bottom: 18px; }
.rv-row { display: flex; justify-content: space-between; gap: 14px; padding: 11px 0;
  border-bottom: 1px solid rgba(255,255,255,.12); font-size: .91rem; }
.rv-row:last-child { border-bottom: none; }
.rv-row span:first-child { color: #9ec8e2; }
.rv-row span:last-child { text-align: right; font-weight: 600; }
.rv-total { font-weight: 700; font-size: 1.02rem; }

.captcha-img svg { display: block; border-radius: 10px; }
.opt { font-weight: 400; color: #9ec8e2; text-transform: none; letter-spacing: 0; }

/* success */
.bs-tick { width: 54px; height: 54px; border-radius: 50%; background: #a9e8c6; color: #12492c;
  display: grid; place-items: center; font-size: 1.7rem; margin: 0 auto 14px; }
.bs-ref { font-size: 1.1rem; letter-spacing: 2px; font-weight: 700; color: var(--sky); margin-top: 12px; }

@media (max-width: 640px) {
  .wizard { padding: 22px 18px; }
  .step-label { display: none; }
  .step { flex: 0 0 auto; }
  .step + .step::before { min-width: 26px; }
  .steps { justify-content: center; }
  .pane-dates { flex-direction: column; }
}

/* =========================================================
   Date explanation toast
   ========================================================= */
.toast { position: fixed; top: 84px; left: 50%; transform: translate(-50%, -14px);
  z-index: 300; display: flex; align-items: flex-start; gap: 11px;
  max-width: min(540px, calc(100vw - 32px)); padding: 14px 16px;
  border-radius: 12px; background: var(--white); color: var(--ink);
  box-shadow: 0 14px 40px rgba(10,61,92,.28); font-size: .9rem; line-height: 1.55;
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity .22s ease, transform .22s ease, visibility .22s; }
.toast.is-visible { opacity: 1; visibility: visible; transform: translate(-50%, 0); pointer-events: auto; }
.toast-icon { width: 22px; height: 22px; border-radius: 50%; flex-shrink: 0; margin-top: 1px;
  display: grid; place-items: center; font-size: .78rem; font-weight: 700; font-style: normal; }
.toast-text { flex: 1; }
.toast-close { background: none; border: none; font-size: 1.25rem; line-height: 1; cursor: pointer;
  color: #9aa8b0; padding: 0 2px; flex-shrink: 0; }
.toast-close:hover { color: var(--ink); }
.toast.tone-info  { border-left: 4px solid var(--azure); }
.toast.tone-info  .toast-icon { background: #e2f0f9; color: var(--azure); }
.toast.tone-busy  { border-left: 4px solid #d09283; }
.toast.tone-busy  .toast-icon { background: #fdeeea; color: #b4503f; }
.toast.tone-muted { border-left: 4px solid #b6c2c9; }
.toast.tone-muted .toast-icon { background: #eef1f3; color: #6b7a84; }
@media (max-width: 640px) { .toast { top: 76px; } }

/* A small nudge makes it obvious the click registered. */
@keyframes calShake {
  0%,100% { transform: translateX(0); }
  25% { transform: translateX(-3px); }
  75% { transform: translateX(3px); }
}
.cal-day.shake { animation: calShake .28s ease; }
.cal-day.booked, .cal-day.open, .cal-day.past { cursor: help; }

/* Buttons inside the toast: a call to action, or a choice to resolve. */
.toast-actions { display: flex; gap: 8px; flex-shrink: 0; align-self: center; flex-wrap: wrap; }
.toast-actions:empty { display: none; }
.toast-action { background: none; border: 1px solid var(--line); color: var(--ink-soft);
  cursor: pointer; font-family: var(--body); font-size: .8rem; font-weight: 600; white-space: nowrap;
  padding: 7px 14px; border-radius: 999px; transition: background .16s ease, color .16s ease, border-color .16s ease, transform .16s ease; }
.toast-action:hover { border-color: var(--azure); color: var(--azure); }
.toast-action.is-primary { background: var(--azure); border-color: var(--azure); color: var(--white); }
.toast-action.is-primary:hover { background: var(--azure-dk); border-color: var(--azure-dk); color: var(--white); transform: translateY(-1px); }
.toast.tone-go { border-left: 4px solid var(--ok); }
.toast.tone-go .toast-icon { background: #e6f4ec; color: var(--ok); }
@media (max-width: 640px) {
  .toast { flex-wrap: wrap; }
  .toast-actions { width: 100%; margin-top: 4px; }
  .toast-action { flex: 1; text-align: center; }
}

/* Clear-dates control, shown only once something is selected. */
.selection-bar { display: flex; align-items: center; justify-content: center; gap: 14px;
  flex-wrap: wrap; margin-top: 16px; }
.selection-bar .calendar-selection { margin-top: 0; }
.btn-clear { background: none; border: 1px solid var(--line); border-radius: 999px;
  padding: 6px 15px; font-family: var(--body); font-size: .82rem; color: var(--ink-soft);
  cursor: pointer; transition: border-color .16s, color .16s, background .16s; }
.btn-clear:hover { border-color: #d09283; color: #b4503f; background: #fdeeea; }
.btn-clear[hidden] { display: none; }
