:root {
    --gsqb-green: #20372d;
    --gsqb-green-dark: #14271f;
    --gsqb-green-soft: #e8eee9;
    --gsqb-cream: #f6f2e9;
    --gsqb-white: #ffffff;
    --gsqb-text: #26312d;
    --gsqb-muted: #6d7772;
    --gsqb-border: #ddd9cf;
    --gsqb-warning: #9c5b19;
    --gsqb-danger: #a63a32;
}

.gsqb, .gsqb * { box-sizing: border-box; }
.gsqb { width: 100%; background: var(--gsqb-cream); color: var(--gsqb-text); font-family: Arial, Helvetica, sans-serif; }
.gsqb button, .gsqb input, .gsqb select, .gsqb textarea { font: inherit; }

.gsqb__hero {
    min-height: 340px;
    display: flex;
    align-items: center;
    background: linear-gradient(90deg, rgba(13, 31, 24, .94), rgba(13, 31, 24, .58), rgba(13, 31, 24, .28)), url('../images/greystone-hero.jpg') center/cover no-repeat;
    color: #fff;
}
.gsqb__hero-inner { width: min(1180px, calc(100% - 40px)); margin: 0 auto; padding: 64px 0; display:grid; grid-template-columns:minmax(0,1.1fr) minmax(280px,.9fr); gap:36px; align-items:end; }
.gsqb__hero-copy { max-width: 620px; }
.gsqb__eyebrow { margin: 0 0 12px; font-size: 12px; font-weight: 800; letter-spacing: .15em; color: #d8e1d9; }
.gsqb__hero h1 { margin: 0 0 14px; font-family: Georgia, 'Times New Roman', serif; font-size: clamp(42px, 6vw, 70px); line-height: 1; font-weight: 500; }
.gsqb__hero p { max-width: 620px; margin: 0; font-size: 18px; line-height: 1.6; color: rgba(255,255,255,.88); }
.gsqb__hero-points { display: grid; gap: 14px; justify-self:end; align-self:end; margin-top: 0; max-width: 340px; }
.gsqb__hero-points span { max-width: 100%; font-size: 12px; line-height: 1.5; color: rgba(255,255,255,.86); padding: 13px 15px; border: 1px solid rgba(255,255,255,.16); border-radius: 12px; background: rgba(14,28,22,.28); backdrop-filter: blur(2px); }
.gsqb__hero-points strong { display: block; margin-bottom: 4px; color: #fff; font-size: 13px; }

.gsqb__body { padding: 42px 20px 70px; }
.gsqb__layout { width: min(1180px, 100%); margin: 0 auto; display: grid; grid-template-columns: minmax(0, 1.8fr) minmax(310px, .85fr); gap: 28px; align-items: start; }
.gsqb__form-card, .gsqb__estimate { border: 1px solid var(--gsqb-border); background: #fff; box-shadow: 0 14px 38px rgba(26, 39, 32, .08); }
.gsqb__form-card { border-radius: 16px; overflow: hidden; }
.gsqb__estimate { position: sticky; top: 22px; border-radius: 16px; overflow: visible; }

.gsqb__progress { display: grid; grid-template-columns: repeat(5, 1fr); padding: 20px 28px; border-bottom: 1px solid #e8e5dc; background: #fbfaf6; }
.gsqb__progress-item { position: relative; border: 0; background: transparent; color: #8b918e; display: grid; justify-items: center; gap: 6px; padding: 0 5px; cursor: default; }
.gsqb__progress-item:not(:last-child)::after { content: ''; position: absolute; top: 15px; left: calc(50% + 18px); width: calc(100% - 36px); height: 2px; background: #d9ddd9; }
.gsqb__progress-item span { position: relative; z-index: 1; display: grid; place-items: center; width: 32px; height: 32px; border: 2px solid #d4d9d5; border-radius: 50%; background: #fff; font-weight: 800; font-size: 13px; }
.gsqb__progress-item small { font-size: 11px; font-weight: 700; }
.gsqb__progress-item.is-active, .gsqb__progress-item.is-complete { color: var(--gsqb-green-dark); }
.gsqb__progress-item.is-active span, .gsqb__progress-item.is-complete span { border-color: var(--gsqb-green); background: var(--gsqb-green); color: #fff; }
.gsqb__progress-item.is-complete:not(:last-child)::after { background: var(--gsqb-green); }

.gsqb__form { padding: clamp(25px, 4vw, 44px); }
.gsqb__message { margin-bottom: 22px; padding: 13px 15px; border-radius: 8px; background: #fff2e5; color: #7b4213; line-height: 1.5; }
.gsqb__step-heading { margin-bottom: 28px; }
.gsqb__step-heading > p { margin: 0 0 8px; color: #66766e; font-size: 11px; font-weight: 900; letter-spacing: .12em; }
.gsqb__step-heading h2 { margin: 0 0 8px; font-family: Georgia, 'Times New Roman', serif; color: var(--gsqb-green-dark); font-size: clamp(27px, 3vw, 38px); line-height: 1.14; font-weight: 500; }
.gsqb__step-heading span { color: var(--gsqb-muted); line-height: 1.55; }

.gsqb__grid { display: grid; gap: 20px; }
.gsqb__grid--2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.gsqb__grid--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.gsqb__field--full { grid-column: 1/-1; }
.gsqb__field label { display: block; margin-bottom: 8px; color: var(--gsqb-green-dark); font-size: 13px; font-weight: 800; }
.gsqb__field input, .gsqb__field select, .gsqb__field textarea { display: block; width: 100%; min-height: 48px; border: 1px solid #d7d6cf; border-radius: 8px; padding: 11px 13px; background: #fff; color: var(--gsqb-text); outline: none; transition: .18s ease; }
.gsqb__field textarea { min-height: 100px; resize: vertical; }
.gsqb__field input:focus, .gsqb__field select:focus, .gsqb__field textarea:focus { border-color: var(--gsqb-green); box-shadow: 0 0 0 3px rgba(32,55,45,.11); }
.gsqb__field [aria-invalid="true"] { border-color: var(--gsqb-danger); box-shadow: 0 0 0 3px rgba(166,58,50,.11); }
.gsqb__field small, .gsqb__field-note { display: block; margin: 7px 0 9px; color: var(--gsqb-muted); font-size: 12px; line-height: 1.5; }
.gsqb__field--check { display: flex; align-items: center; padding-top: 23px; }

.gsqb__notice { margin-top: 26px; padding: 22px; border: 1px solid #d7dfd9; border-left: 4px solid var(--gsqb-green); border-radius: 10px; background: #f7faf7; }
.gsqb__notice--warning { border-color: #ead7c3; border-left-color: #b66b20; background: #fff9f2; }
.gsqb__notice h3 { margin: 0 0 8px; color: var(--gsqb-green-dark); font-family: Georgia, 'Times New Roman', serif; font-size: 22px; font-weight: 500; }
.gsqb__notice p, .gsqb__notice li { color: #52605a; line-height: 1.58; }
.gsqb__notice ul { margin: 10px 0 18px; padding-left: 20px; }
.gsqb__tag, .gsqb__package-type { display: inline-block; margin-bottom: 7px; color: #567064; font-size: 10px; font-weight: 900; letter-spacing: .11em; }
.gsqb__check { display: flex; align-items: flex-start; gap: 10px; cursor: pointer; }
.gsqb__check input { width: 18px; height: 18px; margin-top: 2px; accent-color: var(--gsqb-green); }
.gsqb__check span { flex: 1; line-height: 1.5; }
.gsqb__check small { display: block; margin-top: 3px; color: var(--gsqb-muted); }

.gsqb__auto-package { margin-bottom: 18px; padding: 13px 15px; border-radius: 8px; background: var(--gsqb-green-soft); color: var(--gsqb-green-dark); font-size: 13px; line-height: 1.5; }
.gsqb__package-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
.gsqb__package-card { position: relative; min-height: 165px; display: flex; flex-direction: column; align-items: flex-start; justify-content: center; border: 2px solid #e2e1da; border-radius: 12px; padding: 22px; background: #fff; cursor: pointer; transition: .18s ease; }
.gsqb__package-card:hover { transform: translateY(-2px); border-color: #aebdb5; box-shadow: 0 8px 22px rgba(30,46,38,.08); }
.gsqb__package-card.is-selected { border-color: var(--gsqb-green); box-shadow: 0 0 0 3px rgba(32,55,45,.10); }
.gsqb__package-card input { position: absolute; top: 16px; right: 16px; width: 18px; height: 18px; accent-color: var(--gsqb-green); }
.gsqb__package-card strong { margin: 0 0 9px; color: var(--gsqb-green-dark); font-family: Georgia, 'Times New Roman', serif; font-size: 21px; font-weight: 500; }
.gsqb__package-card > span:not(.gsqb__package-type):not(.gsqb__popular-tag) { margin-top: 3px; color: #66716c; font-size: 13px; }
.gsqb__package-card--popular { background: #fbfdfb; }
.gsqb__popular-tag { position: absolute; top: 14px; right: 43px; padding: 5px 8px; border-radius: 999px; background: #dfeadf; color: #2e5a39; font-size: 9px; font-weight: 900; letter-spacing: .08em; }

.gsqb__review { display: grid; gap: 0; margin-bottom: 24px; border: 1px solid #e2e1da; border-radius: 10px; overflow: hidden; }
.gsqb__review-row { display: grid; grid-template-columns: 160px 1fr; gap: 15px; padding: 12px 15px; border-top: 1px solid #e8e6df; background: #fbfaf7; font-size: 13px; }
.gsqb__review-row:first-child { border-top: 0; }
.gsqb__review-row span { color: var(--gsqb-muted); }
.gsqb__review-row strong { color: var(--gsqb-green-dark); overflow-wrap: anywhere; }
.gsqb__submission-note { margin-top: 20px; padding: 14px 15px; border-radius: 8px; background: #f0f4f1; color: #52615a; font-size: 12px; line-height: 1.55; }

.gsqb__actions { display: flex; justify-content: space-between; gap: 12px; margin-top: 32px; padding-top: 22px; border-top: 1px solid #e7e5dd; }
.gsqb__button { appearance: none; border: 1px solid var(--gsqb-green); border-radius: 7px; padding: 13px 23px; background: var(--gsqb-green); color: #fff; font-weight: 800; cursor: pointer; transition: .18s ease; }
.gsqb__button:hover { transform: translateY(-1px); background: var(--gsqb-green-dark); }
.gsqb__button--secondary { background: #fff; color: var(--gsqb-green); }

.gsqb__estimate-head { padding: 20px 22px; background: var(--gsqb-green); color: #fff; text-align: center; }
.gsqb__estimate-head span { display: block; font-family: Georgia, 'Times New Roman', serif; font-size: 21px; }
.gsqb__estimate-head small { color: rgba(255,255,255,.72); }
.gsqb__estimate-main { padding: 26px 22px 22px; text-align: center; }
.gsqb__estimate-main > span { display: block; margin-bottom: 10px; color: #637069; font-size: 13px; }
.gsqb__estimate-main > strong { display: block; color: var(--gsqb-green-dark); font-family: Georgia, 'Times New Roman', serif; font-size: clamp(34px, 4vw, 48px); font-weight: 500; }
.gsqb__estimate-main > small { display: block; margin-top: 14px; color: var(--gsqb-muted); line-height: 1.45; }
.gsqb__estimate-alerts { display: grid; gap: 8px; padding: 0 20px 18px; }
.gsqb__estimate-alerts div { padding: 10px 11px; border-radius: 7px; background: #f1f5f2; color: #4f6258; font-size: 11px; line-height: 1.45; }
.gsqb__estimate-list { margin: 0; padding: 0 20px 18px; }
.gsqb__estimate-list > div { display: flex; justify-content: space-between; gap: 16px; padding: 10px 0; border-top: 1px solid #ece9e1; font-size: 12px; }
.gsqb__estimate-list dt { color: var(--gsqb-muted); }
.gsqb__estimate-list dd { margin: 0; color: var(--gsqb-green-dark); font-weight: 800; text-align: right; }
.gsqb__estimate-section { padding: 18px 20px; border-top: 1px solid #e7e4dc; background: #fbfaf7; }
.gsqb__estimate-section h3 { margin: 0 0 12px; font-family: Georgia, 'Times New Roman', serif; color: var(--gsqb-green-dark); font-size: 18px; font-weight: 500; }
.gsqb__money-row { display: flex; justify-content: space-between; gap: 12px; padding: 7px 0; font-size: 12px; }
.gsqb__money-row span { color: var(--gsqb-muted); }
.gsqb__money-row strong { color: var(--gsqb-green-dark); text-align: right; }
.gsqb__money-row--total { margin-top: 8px; padding-top: 13px; border-top: 1px solid #dcd9d1; font-size: 14px; }
.gsqb__discount { padding: 16px 20px; border-top: 1px solid #dfe7e0; background: #eff6ef; }
.gsqb__discount span, .gsqb__discount strong, .gsqb__discount small { display: block; }
.gsqb__discount span { color: #55705c; font-size: 11px; font-weight: 800; }
.gsqb__discount strong { margin: 5px 0; color: #2d5d39; font-size: 20px; }
.gsqb__discount small { color: #597060; line-height: 1.4; }
.gsqb__deposit { padding: 20px; border-top: 1px solid #e1ddd4; background: #f5f0e5; }
.gsqb__deposit span { display: block; color: #6d685c; font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: .06em; }
.gsqb__deposit strong { display: block; margin: 5px 0 8px; color: var(--gsqb-green-dark); font-family: Georgia, 'Times New Roman', serif; font-size: 25px; font-weight: 500; }
.gsqb__deposit p, .gsqb__estimate-footnote { margin: 0; color: #6c716d; font-size: 11px; line-height: 1.5; }
.gsqb__estimate-footnote { padding: 16px 20px 20px; border-top: 1px solid #e8e5dd; }

.gsqb [hidden] { display: none !important; }

@media (max-width: 980px) {
    .gsqb__layout { grid-template-columns: 1fr; }
    .gsqb__estimate { position: static; order: -1; }
    .gsqb__estimate-list { display: grid; grid-template-columns: 1fr 1fr; column-gap: 18px; }
}

@media (max-width: 700px) {
    .gsqb__hero { min-height: 300px; }
    .gsqb__hero-inner { width: min(100% - 30px, 1180px); padding: 48px 0; grid-template-columns:1fr; }
    .gsqb__hero-points { gap: 15px; justify-self:start; max-width:100%; }
    .gsqb__hero-points span { max-width: 100%; }
    .gsqb__body { padding: 24px 0 48px; }
    .gsqb__layout { gap: 18px; }
    .gsqb__form-card, .gsqb__estimate { border-left: 0; border-right: 0; border-radius: 0; }
    .gsqb__progress { padding: 16px 10px; }
    .gsqb__progress-item small { display: none; }
    .gsqb__grid--2, .gsqb__grid--3, .gsqb__package-grid { grid-template-columns: 1fr; }
    .gsqb__form { padding: 26px 18px 30px; }
    .gsqb__review-row { grid-template-columns: 110px 1fr; }
    .gsqb__estimate-list { grid-template-columns: 1fr; }
    .gsqb__actions { flex-wrap: wrap; }
    .gsqb__button { flex: 1; min-width: 130px; }
}

/* Version 0.3 additions */
.gsqb__submission-banner { width: min(1180px, calc(100% - 40px)); margin: 18px auto 0; padding: 15px 18px; border-radius: 10px; font-size: 14px; line-height: 1.5; }
.gsqb__submission-banner--success { border: 1px solid #bfd7c4; background: #edf7ef; color: #275936; }
.gsqb__submission-banner--error { border: 1px solid #e2b7b4; background: #fff0ef; color: #8b2f29; }
.gsqb__honeypot { position: absolute !important; left: -99999px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }
.gsqb__notice--compact { margin: 0 0 20px; padding: 18px 20px; }
.gsqb__notice--compact h3 { font-size: 20px; }
.gsqb__notice--compact p:last-child { margin-bottom: 0; }
.gsqb__field input[readonly] { background: #f3f4f1; color: #5f6b65; cursor: not-allowed; }
.gsqb__check--boxed { width: 100%; align-items: center; border: 1px solid #d7d6cf; border-radius: 8px; padding: 12px 13px; background: #fff; }
.gsqb__check--boxed input { flex: 0 0 18px; margin: 0; }
.gsqb__check--boxed span { display: block; }
.gsqb__estimate-main > small { margin-top: 14px; }
.gsqb__info { position: relative; display: inline-grid; place-items: center; width: 18px; height: 18px; margin-left: 4px; border: 1px solid #8b9891; border-radius: 50%; padding: 0; background: transparent; color: #5d6a64; font-size: 11px; font-weight: 800; line-height: 1; cursor: help; vertical-align: 1px; }
.gsqb__money-row > span { display: inline-flex; align-items: center; }

@media (max-width: 700px) {
    .gsqb__submission-banner { width: calc(100% - 30px); }
}

.gsqb__info-panel { margin: 2px 0 8px; padding: 9px 11px; border-left: 3px solid var(--gsqb-green); border-radius: 8px; background:#f2f6f3; color:#52605a; font-size:11px; line-height:1.45; }
.gsqb__info-panel[hidden] { display:none !important; }

/* Version 0.5 booking calendar and visual refinements */
.gsqb__hero h1 {
    color: #ffffff;
    text-shadow: 0 2px 18px rgba(0, 0, 0, .28);
}

.gsqb__info {
    display: inline-grid;
    place-items: center;
    width: 15px;
    height: 15px;
    margin-left: 4px;
    border: 1.5px solid #111111;
    border-radius: 50%;
    padding: 0;
    background: #ffffff;
    color: #111111;
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 11px;
    font-style: italic;
    font-weight: 700;
    line-height: 1;
    cursor: pointer;
    vertical-align: -1px;
}
.gsqb__info:hover,
.gsqb__info:focus {
    background: #111111;
    color: #ffffff;
    outline: none;
}

.gsqb__availability-calendar-wrap {
    grid-column: 1 / -1;
    margin-top: 24px;
}
.gsqb__calendar-toggle {
    width: 100%;
    border: 1px solid #cfd8d2;
    border-radius: 9px;
    padding: 13px 16px;
    background: #f5f8f5;
    color: var(--gsqb-green-dark);
    font-weight: 800;
    text-align: left;
    cursor: pointer;
}
.gsqb__calendar-toggle::after {
    content: '+';
    float: right;
    font-size: 18px;
    line-height: 1;
}
.gsqb__calendar-toggle[aria-expanded="true"]::after { content: '−'; }
.gsqb__availability-calendar {
    margin-top: 12px;
    border: 1px solid #d9ddd8;
    border-radius: 12px;
    padding: 18px;
    background: #fbfcfa;
}
.gsqb__calendar-toolbar {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    align-items: flex-start;
    margin-bottom: 16px;
}
.gsqb__calendar-toolbar h3 {
    margin: 0 0 4px;
    color: var(--gsqb-green-dark);
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 21px;
    font-weight: 500;
}
.gsqb__calendar-toolbar p {
    margin: 0;
    color: var(--gsqb-muted);
    font-size: 12px;
    line-height: 1.45;
}
.gsqb__calendar-legend {
    display: flex;
    flex-wrap: wrap;
    gap: 11px;
    justify-content: flex-end;
    font-size: 11px;
    color: #5f6964;
}
.gsqb__calendar-legend span {
    display: inline-flex;
    align-items: center;
    gap: 5px;
}
.gsqb__calendar-legend i {
    width: 12px;
    height: 12px;
    border-radius: 3px;
    border: 1px solid rgba(0, 0, 0, .10);
}
.gsqb__calendar-legend .is-available { background: #dceedd; }
.gsqb__calendar-legend .is-tentative { background: #dceedd; box-shadow: inset 0 0 0 2px #6e9e73; }
.gsqb__calendar-legend .is-confirmed { background: #efc1bd; }
.gsqb__calendar-year-tabs {
    display: flex;
    gap: 8px;
    margin-bottom: 16px;
}
.gsqb__calendar-year-tabs button {
    border: 1px solid #cdd4cf;
    border-radius: 999px;
    padding: 7px 14px;
    background: #fff;
    color: var(--gsqb-green-dark);
    font-weight: 800;
    cursor: pointer;
}
.gsqb__calendar-year-tabs button.is-active {
    border-color: var(--gsqb-green);
    background: var(--gsqb-green);
    color: #fff;
}
.gsqb__year-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}
.gsqb__month {
    border: 1px solid #e0e2dd;
    border-radius: 9px;
    padding: 10px;
    background: #fff;
}
.gsqb__month h4 {
    margin: 1px 0 8px;
    color: var(--gsqb-green-dark);
    text-align: center;
    font-size: 13px;
}
.gsqb__month-weekdays,
.gsqb__month-days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 2px;
}
.gsqb__month-weekdays span {
    text-align: center;
    color: #7a837f;
    font-size: 8px;
    font-weight: 800;
}
.gsqb__day {
    aspect-ratio: 1;
    display: grid;
    place-items: center;
    border: 0;
    border-radius: 4px;
    padding: 0;
    font-size: 9px;
    cursor: pointer;
}
.gsqb__day.is-empty { visibility: hidden; }
.gsqb__day.is-available { background: #dceedd; color: #285a35; }
.gsqb__day.is-tentative { background: #dceedd; color: #285a35; box-shadow: inset 0 0 0 1.5px #6e9e73; }
.gsqb__day.is-confirmed { background: #efc1bd; color: #78241f; cursor: not-allowed; opacity: .92; }
.gsqb__day:hover,
.gsqb__day:focus { outline: 2px solid var(--gsqb-green); outline-offset: 1px; }
.gsqb__calendar-explanation {
    margin-top: 14px;
    padding: 11px 12px;
    border-radius: 8px;
    background: #fff6e8;
    color: #69512d;
    font-size: 11px;
    line-height: 1.5;
}
.gsqb__selected-availability {
    margin-top: 12px;
    padding: 13px 15px;
    border-radius: 9px;
    font-size: 12px;
    line-height: 1.5;
}
.gsqb__selected-availability.is-available {
    border: 1px solid #bad4bf;
    background: #edf7ef;
    color: #2d6138;
}
.gsqb__selected-availability.is-tentative {
    border: 1px solid #e6c98e;
    background: #fff6e7;
    color: #77521b;
}
.gsqb__selected-availability.is-confirmed {
    border: 1px solid #dfa7a2;
    background: #fff0ef;
    color: #8c302a;
}

@media (max-width: 980px) {
    .gsqb__year-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 700px) {
    .gsqb__calendar-toolbar { flex-direction: column; }
    .gsqb__calendar-legend { justify-content: flex-start; }
    .gsqb__year-grid { grid-template-columns: 1fr; }
}


/* Version 0.6 date selectors and validation */
.gsqb__date-input {
    width: 100%;
    min-height: 48px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    border: 1px solid #d7d6cf;
    border-radius: 8px;
    padding: 11px 13px;
    background: #ffffff;
    color: #7a837f;
    text-align: left;
    cursor: pointer;
    transition: .18s ease;
}
.gsqb__date-input span { font-weight: 600; }
.gsqb__date-input small { margin: 0; font-size: 10px; color: #89918d; }
.gsqb__date-input.has-value { color: var(--gsqb-text); }
.gsqb__date-input:hover,
.gsqb__date-input:focus { border-color: var(--gsqb-green); box-shadow: 0 0 0 3px rgba(32,55,45,.11); outline: none; }

.gsqb__field.has-error label,
.gsqb__package-card.has-error,
.gsqb__check.has-error { color: var(--gsqb-danger); }
.gsqb__field.has-error input,
.gsqb__field.has-error select,
.gsqb__field.has-error textarea,
.gsqb__field.has-error .gsqb__date-input,
.gsqb__package-card.has-error,
.gsqb__check.has-error {
    border-color: var(--gsqb-danger) !important;
    box-shadow: 0 0 0 3px rgba(166,58,50,.13) !important;
}
.gsqb__field [aria-invalid="true"],
.gsqb__date-input[aria-invalid="true"] {
    border-color: var(--gsqb-danger) !important;
    box-shadow: 0 0 0 3px rgba(166,58,50,.13) !important;
}
[data-gsqb-grade-guidance].is-warning { color: var(--gsqb-danger); font-weight: 700; }
.gsqb__calendar-toggle { margin-bottom: 18px; }
.gsqb__availability-calendar-wrap { margin-top: 0; margin-bottom: 24px; }
.gsqb__day.is-selected-start,
.gsqb__day.is-selected-end { outline: 2px solid #14271f; outline-offset: 1px; }

/* Version 0.7 calendar range picker, validation and layout refinements */
.gsqb__required { color: #c72f2a; font-weight: 900; }
.gsqb__field small,
.gsqb__field-note {
    color: #53635b;
    font-weight: 650;
}
.gsqb__field small::before,
.gsqb__field-note::before {
    content: '* ';
    color: #8b5a24;
    font-weight: 900;
}
.gsqb__phone-row {
    display: grid;
    grid-template-columns: minmax(145px, .9fr) minmax(0, 1.1fr);
    gap: 8px;
}
.gsqb__phone-row select,
.gsqb__phone-row input { min-width: 0; }
.gsqb__calendar-open-button {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 13px;
    margin-bottom: 20px;
    border: 1px solid #cdd7d0;
    border-radius: 10px;
    padding: 14px 16px;
    background: #f2f6f3;
    color: var(--gsqb-green-dark);
    text-align: left;
    cursor: pointer;
}
.gsqb__calendar-open-button strong,
.gsqb__calendar-open-button small { display: block; }
.gsqb__calendar-open-button strong { margin-bottom: 3px; font-size: 14px; }
.gsqb__calendar-open-button small { color: #5c6962; font-size: 11px; }
.gsqb__calendar-symbol,
.gsqb__date-range-icon { font-size: 22px; line-height: 1; }
.gsqb__date-range-input {
    width: 100%;
    min-height: 52px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 14px;
    border: 1px solid #d7d6cf;
    border-radius: 8px;
    padding: 12px 14px;
    background: #fff;
    color: #747f79;
    text-align: left;
    cursor: pointer;
}
.gsqb__date-range-input.has-value { color: var(--gsqb-text); font-weight: 750; }
.gsqb__date-range-input:hover,
.gsqb__date-range-input:focus { border-color: var(--gsqb-green); box-shadow: 0 0 0 3px rgba(32,55,45,.11); outline: none; }
.gsqb__calendar-modal {
    position: fixed;
    z-index: 999999;
    inset: 0;
    display: grid;
    place-items: center;
    padding: 22px;
}
.gsqb__calendar-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(11, 25, 19, .64);
    backdrop-filter: blur(2px);
}
.gsqb__calendar-dialog {
    position: relative;
    z-index: 1;
    width: min(1080px, 100%);
    max-height: calc(100vh - 44px);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    border: 1px solid #d7dcd8;
    border-radius: 16px;
    background: #fbfcfa;
    box-shadow: 0 24px 70px rgba(0,0,0,.28);
    padding: 24px;
}
.gsqb__calendar-close {
    position: absolute;
    top: 12px;
    right: 14px;
    width: 34px;
    height: 34px;
    border: 0;
    border-radius: 50%;
    background: #eef1ee;
    color: #20372d;
    font-size: 24px;
    line-height: 1;
    cursor: pointer;
}
.gsqb__calendar-scroll { overflow: auto; padding: 3px 3px 8px; }
.gsqb__calendar-actions {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    padding-top: 14px;
    border-top: 1px solid #e2e4df;
}
.gsqb__calendar-selection-summary {
    margin: 14px 0;
    padding: 12px 14px;
    border-radius: 8px;
    background: #f0f2ef;
    color: #4f5d56;
    font-size: 12px;
    line-height: 1.5;
}
.gsqb__calendar-selection-summary.is-available { background: #edf7ef; color: #2d6138; }
.gsqb__calendar-selection-summary.is-tentative { background: #edf7ef; color: #2d6138; border: 1px dashed #6e9e73; }
.gsqb__calendar-selection-summary.is-confirmed { background: #fff0ef; color: #8c302a; }
body.gsqb-calendar-open { overflow: hidden; }
.gsqb__day:hover:not(:disabled),
.gsqb__day:focus:not(:disabled) {
    background: #eeeeec !important;
    color: #2f3934 !important;
    outline: 1px solid #c9ceca;
    outline-offset: 0;
}
.gsqb__day.is-selected-start,
.gsqb__day.is-selected-end {
    background: #20372d !important;
    color: #fff !important;
    outline: 2px solid #14271f !important;
}
.gsqb__day.is-selected-range {
    background: #c7d9cb !important;
    color: #1f4d2b !important;
    border-radius: 2px;
}
.gsqb__day.is-tentative { background: #dceedd; color: #285a35; box-shadow: inset 0 0 0 1.5px #6e9e73; }
.gsqb__day.is-confirmed { background: #efc1bd; color: #78241f; }
.gsqb__preference-section {
    margin-bottom: 22px;
    border: 1px solid #e2e0d8;
    border-radius: 11px;
    padding: 20px;
    background: #fbfaf7;
}
.gsqb__preference-section > h3 {
    margin: 0 0 17px;
    color: var(--gsqb-green-dark);
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 20px;
    font-weight: 500;
}
.gsqb__gender-message {
    margin-top: 12px;
    padding: 9px 11px;
    border-radius: 7px;
    font-size: 12px;
    font-weight: 750;
}
.gsqb__gender-message.is-valid { background: #edf7ef; color: #2d6138; }
.gsqb__gender-message.is-error { background: #fff0ef; color: #8c302a; }
.gsqb__info {
    width: 14px !important;
    height: 14px !important;
    margin-left: 3px !important;
    border-width: 1px !important;
    font-size: 8px !important;
    line-height: 12px !important;
}
.gsqb__success-page {
    width: min(760px, calc(100% - 36px));
    margin: 48px auto 70px;
    padding: 44px 38px;
    border: 1px solid #d9ddd8;
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 16px 44px rgba(26,39,32,.10);
    text-align: center;
}
.gsqb__success-icon {
    width: 64px;
    height: 64px;
    display: grid;
    place-items: center;
    margin: 0 auto 18px;
    border-radius: 50%;
    background: #e5f1e7;
    color: #2f663a;
    font-size: 32px;
    font-weight: 900;
}
.gsqb__eyebrow-dark { color: #5d7066; font-size: 11px; font-weight: 900; letter-spacing: .14em; }
.gsqb__success-page h2 { margin: 8px 0 14px; color: var(--gsqb-green-dark); font-family: Georgia, 'Times New Roman', serif; font-size: 34px; font-weight: 500; }
.gsqb__success-page p { color: #5c6761; line-height: 1.65; }
.gsqb__success-reference { padding: 10px 12px; border-radius: 8px; background: #f3f5f2; }
.gsqb__success-actions { display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; margin-top: 28px; }
.gsqb__success-actions .gsqb__button { text-decoration: none; }

@media (max-width: 700px) {
    .gsqb__phone-row { grid-template-columns: 1fr; }
    .gsqb__calendar-modal { padding: 0; }
    .gsqb__calendar-dialog { width: 100%; max-height: 100vh; min-height: 100vh; border-radius: 0; padding: 18px 14px; }
    .gsqb__calendar-toolbar { padding-right: 38px; }
    .gsqb__calendar-actions { position: sticky; bottom: 0; background: #fbfcfa; padding-bottom: 8px; }
    .gsqb__success-page { padding: 34px 20px; margin-top: 28px; }
}

/* Version 0.8 package comparison, rolling calendar and form clarity */
.gsqb__form-card { overflow: visible; }
.gsqb__progress {
    position: sticky;
    top: 0;
    z-index: 70;
    border-radius: 16px 16px 0 0;
    box-shadow: 0 7px 18px rgba(20,39,31,.07);
}
.gsqb__estimate { top: 12px; }

.gsqb__field input.is-empty,
.gsqb__field select.is-empty,
.gsqb__field textarea.is-empty,
.gsqb__date-range-input.is-empty {
    background: #f2f2f0;
    color: #737b77;
}
.gsqb__field input:hover,
.gsqb__field select:hover,
.gsqb__field textarea:hover,
.gsqb__date-range-input:hover,
.gsqb__calendar-open-button:hover,
.gsqb__package-card:hover,
.gsqb__check--boxed:hover {
    background: #f2f2f0;
    border-color: #c9ccc9;
}
.gsqb__package-card:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(30,46,38,.05);
}
.gsqb__package-card.is-selected:hover { background: #f6faf7; }

.gsqb__date-range-copy { display: grid; gap: 4px; }
.gsqb__date-range-copy strong { font-size: 14px; }
.gsqb__date-range-copy small { margin: 0 !important; font-size: 11px !important; }

.gsqb__package-columns {
    display: grid;
    grid-template-columns: repeat(2, minmax(0,1fr));
    gap: 18px;
    align-items: start;
}
.gsqb__package-column {
    border: 1px solid #deddd6;
    border-radius: 14px;
    padding: 18px;
    background: #fbfaf7;
}
.gsqb__package-column--recommended {
    border-color: #c7d4cb;
    background: #f5f8f5;
}
.gsqb__package-column-heading { margin-bottom: 14px; }
.gsqb__package-column-heading > span {
    display: block;
    margin-bottom: 5px;
    color: #61736a;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: .1em;
    text-transform: uppercase;
}
.gsqb__package-column-heading h3 {
    margin: 0;
    color: var(--gsqb-green-dark);
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 21px;
    line-height: 1.2;
    font-weight: 500;
}
.gsqb__package-stack { display: grid; gap: 12px; }
.gsqb__package-column .gsqb__package-card { min-height: 145px; margin-bottom: 12px; }
.gsqb__package-column .gsqb__package-card:last-child { margin-bottom: 0; }
.gsqb__package-card--build-own { background: #fff8ef; border-color: #e7d1b7; }
.gsqb__package-card--build-own:hover { background: #f4f2ef; }
.gsqb__change-dates { margin: 4px 0 15px; }
.gsqb__activity-day-guide {
    margin-top: 14px;
    padding: 15px 17px;
    border-radius: 9px;
    background: #eef3ef;
    color: #46574f;
}
.gsqb__activity-day-guide > strong { display: block; margin-bottom: 8px; color: var(--gsqb-green-dark); }
.gsqb__activity-day-guide ul { margin: 0; padding-left: 19px; }
.gsqb__activity-day-guide li { margin: 5px 0; }

.gsqb__rolling-month-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0,1fr));
    gap: 16px;
}
.gsqb__day.is-selected-start,
.gsqb__day.is-selected-end,
.gsqb__day.is-selected-range {
    background: #ef861f !important;
    color: #fff !important;
    outline: 2px solid #c95f06 !important;
    box-shadow: none !important;
    border-radius: 5px !important;
}
.gsqb__day.is-today:not(.is-selected-start):not(.is-selected-end):not(.is-selected-range) {
    outline: 2px solid #20372d !important;
    outline-offset: 1px;
    font-weight: 900;
}
.gsqb__day.is-past {
    background: #ededeb !important;
    color: #a0a5a2 !important;
    cursor: not-allowed;
    box-shadow: none !important;
}
.gsqb__calendar-legend strong { color: var(--gsqb-green-dark); }
.gsqb__calendar-selection-summary {
    background: #f3f3f1;
    color: #46514c;
    font-weight: 750;
}
.gsqb__calendar-selection-summary.is-tentative,
.gsqb__calendar-selection-summary.is-available { border: 0; background: #f3f3f1; color: #46514c; }

.gsqb__date-status-modal {
    position: fixed;
    z-index: 1000000;
    inset: 0;
    display: grid;
    place-items: center;
    padding: 20px;
}
.gsqb__date-status-dialog {
    position: relative;
    z-index: 1;
    width: min(470px,100%);
    padding: 30px 28px;
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 24px 70px rgba(0,0,0,.28);
    text-align: center;
}
.gsqb__date-status-icon {
    display: grid;
    place-items: center;
    width: 52px;
    height: 52px;
    margin: 0 auto 15px;
    border-radius: 50%;
    background: #e5f1e7;
    color: #2f6539;
    font-size: 25px;
    font-weight: 900;
}
.gsqb__date-status-modal.is-tentative .gsqb__date-status-icon { background: #fff0df; color: #a45f17; }
.gsqb__date-status-dialog h3 {
    margin: 0 0 10px;
    color: var(--gsqb-green-dark);
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 25px;
    font-weight: 500;
}
.gsqb__date-status-dialog p { margin: 0 0 20px; color: #5d6963; line-height: 1.6; }

.gsqb__info {
    width: 12px !important;
    height: 12px !important;
    min-width: 12px !important;
    margin-left: 3px !important;
    font-size: 7px !important;
    line-height: 10px !important;
}

@media (max-width: 980px) {
    .gsqb__progress { top: 0; }
    .gsqb__package-columns { grid-template-columns: 1fr; }
    .gsqb__rolling-month-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
}
@media (max-width: 700px) {
    .gsqb__rolling-month-grid { grid-template-columns: 1fr; }
    .gsqb__package-column { padding: 14px; }
}
.gsqb__field > label,
.gsqb__step-heading h2,
.gsqb__notice h3,
.gsqb__preference-section > h3,
.gsqb__estimate-section h3 { text-transform: capitalize; }

/* Version 0.9 refinements */
.gsqb__progress {
    top: 0;
    min-height: 88px;
    align-items: center;
    overflow: visible;
}
.admin-bar .gsqb__progress { top: 32px; }
.admin-bar .gsqb__estimate { top: 44px; }
@media screen and (max-width: 782px) {
    .admin-bar .gsqb__progress { top: 46px; }
    .admin-bar .gsqb__estimate { top: 58px; }
}
.gsqb__progress-item span { flex: 0 0 32px; }
.gsqb__estimate {
    max-height: calc(100vh - 28px);
    overflow-y: auto;
    scrollbar-width: thin;
}
.admin-bar .gsqb__estimate { max-height: calc(100vh - 52px); }
.gsqb__estimate.is-locked .gsqb__estimate-list,
.gsqb__estimate.is-locked .gsqb__estimate-section,
.gsqb__estimate.is-locked .gsqb__discount,
.gsqb__estimate.is-locked .gsqb__deposit,
.gsqb__estimate.is-locked .gsqb__estimate-footnote,
.gsqb__estimate.is-locked .gsqb__estimate-alerts { display: none !important; }

.gsqb__package-stack { gap: 12px; }
.gsqb__package-column--recommended .gsqb__package-stack { margin-bottom: 12px; }
.gsqb__package-column .gsqb__package-card,
.gsqb__package-column .gsqb__package-card:last-child { margin: 0; }
.gsqb__package-card--build-own { margin-top: 0 !important; }

.gsqb__preference-section {
    padding: 22px;
    background: #fff;
    border-color: #ddd9cf;
}
.gsqb__preference-section > h3 {
    margin: 0 0 18px;
    font-size: 22px;
    font-weight: 500;
}
.gsqb__preference-section .gsqb__grid { align-items: start; }
.gsqb__preference-section .gsqb__field { min-width: 0; }
.gsqb__preference-section .gsqb__field label { font-weight: 800; }

.gsqb__custom-top-grid { align-items: stretch; }
.gsqb__custom-pricing-note {
    min-height: 48px;
    padding: 12px 14px;
    border: 1px solid #d8d4c9;
    border-radius: 8px;
    background: #fff;
    color: #52605a;
    font-size: 12px;
    line-height: 1.55;
}
.gsqb__custom-builder-section {
    margin-top: 22px;
    padding: 19px;
    border: 1px solid #e0dbd0;
    border-radius: 11px;
    background: #fff;
}
.gsqb__custom-builder-heading h4 {
    margin: 0 0 5px;
    color: var(--gsqb-green-dark);
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 20px;
    font-weight: 500;
}
.gsqb__custom-builder-heading p { margin: 0 0 16px; color: #64706a; line-height: 1.5; }
.gsqb__custom-meal-days { display: grid; gap: 12px; }
.gsqb__meal-day {
    padding: 14px;
    border: 1px solid #e1ded5;
    border-radius: 9px;
    background: #fbfaf7;
}
.gsqb__meal-day h5 { margin: 0 0 11px; color: var(--gsqb-green-dark); font-size: 13px; }
.gsqb__meal-choices { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 9px; }
.gsqb__meal-choice,
.gsqb__activity-choice {
    display: flex;
    gap: 9px;
    align-items: flex-start;
    padding: 11px 12px;
    border: 1px solid #d9d7cf;
    border-radius: 8px;
    background: #fff;
    cursor: pointer;
    transition: .16s ease;
}
.gsqb__meal-choice:hover,
.gsqb__activity-choice:hover { background: #f1f1ef; border-color: #c7cac7; }
.gsqb__meal-choice.is-required { background: #edf3ee; border-color: #cbd7cd; }
.gsqb__meal-choice input,
.gsqb__activity-choice input { margin-top: 2px; accent-color: var(--gsqb-green); }
.gsqb__meal-choice span,
.gsqb__activity-choice span { display: grid; gap: 3px; }
.gsqb__meal-choice small,
.gsqb__activity-choice small { margin: 0 !important; color: #68736e; font-size: 10px; line-height: 1.4; }
.gsqb__meal-choice small::before,
.gsqb__activity-choice small::before { content: none !important; }
.gsqb__custom-activity-options { display: grid; gap: 10px; }
.gsqb__activity-choice:has(input:checked) { border-color: var(--gsqb-green); box-shadow: 0 0 0 2px rgba(32,55,45,.09); background: #f4f8f5; }
.gsqb__empty-builder { margin: 0; padding: 14px; border-radius: 8px; background: #f3f3f1; color: #6c746f; }
.gsqb__custom-builder-section.has-error,
.gsqb__custom-activity-options.has-error { border-color: var(--gsqb-danger); box-shadow: 0 0 0 3px rgba(166,58,50,.10); }

.gsqb__optional-meals { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 12px; }
.gsqb__late-meal-note { grid-column: 1/-1; margin-top: 14px; }

.gsqb__review-row {
    grid-template-columns: minmax(120px,160px) minmax(0,1fr) auto;
    align-items: center;
}
.gsqb__review-edit {
    border: 1px solid #b9c2bd;
    border-radius: 6px;
    padding: 6px 10px;
    background: #fff;
    color: var(--gsqb-green);
    font-size: 11px;
    font-weight: 800;
    cursor: pointer;
}
.gsqb__review-edit:hover { background: #f0f0ee; }
.gsqb__submission-note {
    background: #e9f3eb;
    border: 1px solid #bfd3c4;
    border-left: 4px solid #2d6640;
    color: #28543a;
    font-weight: 700;
}
.gsqb__phone-link { color: var(--gsqb-green); font-weight: 800; text-decoration: underline; }

.gsqb__estimate-list dd { text-transform: none; }
.gsqb__money-row--total span,
.gsqb__money-row--total strong { font-weight: 900; }
.gsqb__required { color: #c72f2a !important; }

@media (max-width: 980px) {
    .gsqb__estimate { position: static; max-height: none; overflow: visible; }
    .gsqb__progress { top: 0 !important; }
    .gsqb__optional-meals { grid-template-columns: 1fr; }
}
@media (max-width: 700px) {
    .gsqb__meal-choices { grid-template-columns: 1fr; }
    .gsqb__review-row { grid-template-columns: 95px minmax(0,1fr) auto; gap: 8px; }
    .gsqb__review-edit { padding: 5px 7px; }
}


/* Version 0.9.1 final visual corrections */
.gsqb__success-email { color: var(--gsqb-green); overflow-wrap: anywhere; }
.gsqb__preference-section .gsqb__field > label {
    font-size: 13px;
    font-weight: 800;
    line-height: 1.4;
}
.gsqb__preference-section > h3 {
    font-family: Georgia, 'Times New Roman', serif;
    font-weight: 500 !important;
    letter-spacing: 0;
}
.gsqb__package-column--recommended > .gsqb__package-card--build-own { margin-top: 12px !important; }
@media (max-width: 980px) {
    .admin-bar .gsqb__progress { top: 46px !important; }
}

/* Version 1.0 refinements */
.gsqb__calendar-legend {
    gap: 12px;
    font-size: 14px;
    font-weight: 750;
}
.gsqb__calendar-legend span {
    gap: 8px;
    padding: 9px 12px;
    border: 1px solid #d6ddd8;
    border-radius: 9px;
    background: #fff;
}
.gsqb__calendar-legend i { width: 20px; height: 20px; border-radius: 5px; }
.gsqb__day.is-selected-start,
.gsqb__day.is-selected-end {
    background: #ef7b2d !important;
    color: #fff !important;
    outline: 2px solid #b84e09 !important;
}
.gsqb__day.is-selected-range {
    background: #ffd6b9 !important;
    color: #71320b !important;
    box-shadow: inset 0 2px 0 rgba(239,123,45,.35), inset 0 -2px 0 rgba(239,123,45,.35);
}
.gsqb__calendar-selection-summary {
    display: grid;
    gap: 5px;
    padding: 18px 20px;
    text-align: center;
}
.gsqb__calendar-selection-summary strong {
    color: var(--gsqb-green-dark);
    font-family: Georgia, 'Times New Roman', serif;
    font-size: clamp(18px,2.2vw,25px);
    line-height: 1.25;
}
.gsqb__calendar-selection-summary span { font-size: 13px; font-weight: 750; }
.gsqb__date-status-range {
    display: grid;
    gap: 5px;
    margin: 0 0 18px;
    padding: 14px;
    border-radius: 10px;
    background: #f3f5f2;
    color: var(--gsqb-green-dark);
}
.gsqb__date-status-range strong { font-family: Georgia,'Times New Roman',serif; font-size: 20px; }
.gsqb__date-status-range span { font-size: 11px; font-weight: 900; text-transform: uppercase; letter-spacing: .09em; }
.gsqb__date-status-range small { font-size: 13px; font-weight: 800; }

.gsqb__instructor-details {
    margin: 0 0 22px;
    border: 1px solid #d7dfd9;
    border-left: 4px solid var(--gsqb-green);
    border-radius: 10px;
    background: #f7faf7;
    overflow: hidden;
}
.gsqb__instructor-details summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
    padding: 17px 20px;
    color: var(--gsqb-green-dark);
    cursor: pointer;
    list-style: none;
}
.gsqb__instructor-details summary::-webkit-details-marker { display:none; }
.gsqb__instructor-details summary span { font-family: Georgia,'Times New Roman',serif; font-size: 20px; }
.gsqb__instructor-details summary small { color: #52665b; font-size: 11px; font-weight: 900; text-transform: uppercase; letter-spacing: .08em; }
.gsqb__instructor-details summary::after { content:'+'; font-size:24px; font-weight:500; }
.gsqb__instructor-details[open] summary::after { content:'−'; }
.gsqb__instructor-details-body { padding: 0 20px 20px; color:#52605a; line-height:1.6; }

.gsqb__recommended-package-area,
.gsqb__compare-packages-area {
    margin-bottom: 20px;
    padding: 18px;
    border: 1px solid #d8ded9;
    border-radius: 13px;
    background: #f7faf7;
}
.gsqb__compare-packages-area { background:#fbfaf7; border-color:#e2ddd3; }
.gsqb__recommended-package-row { display:grid; grid-template-columns:repeat(2,minmax(0,1fr)); gap:14px; align-items:stretch; }
.gsqb__recommended-package-row > .gsqb__package-stack { display:block; }
.gsqb__recommended-package-row .gsqb__package-card { height:100%; min-height:210px; }
.gsqb__recommended-package-row .gsqb__package-card.is-selected { background:#eaf3ec; border-color:#2f5f40; box-shadow:0 0 0 3px rgba(47,95,64,.12); }
.gsqb__package-stack--compare { display:grid; grid-template-columns:repeat(2,minmax(0,1fr)); gap:12px; }
.gsqb__package-column-heading p { margin:7px 0 0; color:#5f6a65; font-size:12px; line-height:1.55; }

.gsqb__later-modal,
.gsqb__review-edit-modal {
    position:fixed;
    z-index:1000001;
    inset:0;
    display:grid;
    place-items:center;
    padding:22px;
}
.gsqb__later-dialog,
.gsqb__review-edit-dialog {
    position:relative;
    z-index:2;
    width:min(620px,100%);
    max-height:calc(100vh - 44px);
    overflow:auto;
    padding:28px;
    border-radius:16px;
    background:#fff;
    box-shadow:0 24px 70px rgba(0,0,0,.28);
    text-align:center;
}
.gsqb__later-dialog h3,
.gsqb__review-edit-head h3 { margin:0 0 12px; color:var(--gsqb-green-dark); font-family:Georgia,'Times New Roman',serif; font-size:25px; font-weight:500; }
.gsqb__later-dialog p { color:#596760; line-height:1.65; }
.gsqb__later-actions,
.gsqb__review-edit-actions { display:flex; justify-content:center; gap:10px; margin-top:22px; }
.gsqb__review-edit-dialog { width:min(900px,100%); padding:0; text-align:left; }
.gsqb__review-edit-head { position:sticky; top:0; z-index:3; display:flex; justify-content:space-between; align-items:center; gap:15px; padding:18px 22px; border-bottom:1px solid #e5e2da; background:#fff; }
.gsqb__review-edit-head h3 { margin:0; }
.gsqb__review-edit-head button { width:34px; height:34px; border:0; border-radius:50%; background:#f0f1ef; font-size:24px; cursor:pointer; }
.gsqb__review-edit-content { padding:22px; }
.gsqb__review-edit-content .gsqb__step-heading { display:none; }
.gsqb__review-edit-content .gsqb__step { display:block !important; }
.gsqb__review-edit-actions { position:sticky; bottom:0; z-index:3; margin:0; padding:16px 22px; border-top:1px solid #e5e2da; background:#fff; }

.gsqb__estimate-head { position:sticky; top:0; z-index:6; }
.gsqb__estimate-main { position:sticky; top:86px; z-index:5; background:#fff; border-bottom:1px solid #ebe7df; }
.gsqb__estimate-list dt { display:flex; align-items:center; gap:4px; }
.gsqb__info--activity { display:inline-grid; }

.gsqb__success-message { font-size:clamp(22px,3vw,29px) !important; line-height:1.3 !important; }
.gsqb__success-actions .gsqb__button:hover {
    background:#eef3ef !important;
    color:var(--gsqb-green-dark) !important;
    border-color:#7c9588 !important;
}
.gsqb__success-actions .gsqb__button--secondary:hover { background:#f3f3f1 !important; }

@media (max-width: 760px) {
    .gsqb__recommended-package-row,
    .gsqb__package-stack--compare { grid-template-columns:1fr; }
    .gsqb__calendar-legend span { width:100%; }
    .gsqb__later-actions,
    .gsqb__review-edit-actions { flex-direction:column; }
    .gsqb__estimate-head,
    .gsqb__estimate-main { position:static; }
}
.gsqb__review-edit-backdrop { position:absolute; inset:0; background:rgba(11,25,19,.64); backdrop-filter:blur(2px); }
.gsqb__notice.has-error { border-color:var(--gsqb-danger) !important; box-shadow:0 0 0 3px rgba(166,58,50,.12); }

/* Version 1.1 refinements */
.gsqb__mobile-estimate-bar,
.gsqb__mobile-estimate-close,
.gsqb__mobile-estimate-backdrop { display:none; }

.gsqb__estimate-head {
    display:flex;
    align-items:center;
    justify-content:center;
    gap:12px;
}
.gsqb__estimate-head > div { text-align:center; }

.gsqb__success-message {
    font-size:clamp(18px,2.25vw,22px) !important;
    line-height:1.38 !important;
    font-weight:500 !important;
}
.gsqb__success-email {
    text-transform:none !important;
    font-weight:700;
}
.gsqb__success-actions .gsqb__button:hover,
.gsqb__success-actions .gsqb__button--secondary:hover {
    background:#eef2ef !important;
    color:#173127 !important;
    border-color:#80988b !important;
}

@media (max-width:760px) {
    .gsqb { padding-bottom:78px; }
    .gsqb__layout { display:block; }
    .gsqb__estimate {
        display:none !important;
        position:fixed !important;
        z-index:1000003 !important;
        left:10px !important;
        right:10px !important;
        bottom:10px !important;
        top:auto !important;
        width:auto !important;
        max-height:82vh !important;
        overflow-y:auto !important;
        order:initial !important;
        border:1px solid #d8d4ca !important;
        border-radius:18px !important;
        box-shadow:0 22px 70px rgba(8,24,17,.34) !important;
    }
    .gsqb__estimate.is-mobile-open { display:block !important; }
    .gsqb__estimate-head {
        position:sticky !important;
        top:0 !important;
        justify-content:space-between;
        padding:15px 18px;
    }
    .gsqb__estimate-main {
        position:static !important;
        padding:20px 18px 18px;
    }
    .gsqb__mobile-estimate-close {
        display:grid;
        place-items:center;
        flex:0 0 34px;
        width:34px;
        height:34px;
        border:1px solid rgba(255,255,255,.35);
        border-radius:50%;
        background:rgba(255,255,255,.08);
        color:#fff;
        font-size:24px;
        line-height:1;
        cursor:pointer;
    }
    .gsqb__mobile-estimate-bar {
        position:fixed;
        z-index:1000001;
        left:10px;
        right:10px;
        bottom:10px;
        display:flex;
        align-items:center;
        justify-content:space-between;
        gap:14px;
        min-height:62px;
        padding:10px 14px 10px 18px;
        border:1px solid #29483a;
        border-radius:14px;
        background:#173127;
        color:#fff;
        box-shadow:0 12px 32px rgba(8,24,17,.28);
        text-align:left;
        cursor:pointer;
    }
    .gsqb__mobile-estimate-bar[hidden] { display:none !important; }
    .gsqb__mobile-estimate-bar span { display:grid; gap:2px; }
    .gsqb__mobile-estimate-bar small {
        color:#dce7e0;
        font-size:10px;
        font-weight:700;
        letter-spacing:.02em;
    }
    .gsqb__mobile-estimate-bar strong {
        font-family:Georgia,'Times New Roman',serif;
        font-size:23px;
        font-weight:600;
        line-height:1.1;
    }
    .gsqb__mobile-estimate-bar b {
        display:grid;
        place-items:center;
        flex:0 0 34px;
        width:34px;
        height:34px;
        border-radius:50%;
        background:#fff;
        color:#173127;
        font-size:24px;
        font-weight:500;
    }
    .gsqb__mobile-estimate-backdrop {
        position:fixed;
        z-index:1000002;
        inset:0;
        display:block;
        background:rgba(8,22,16,.58);
        backdrop-filter:blur(2px);
    }
    .gsqb__mobile-estimate-backdrop[hidden] { display:none !important; }
    body.gsqb-mobile-estimate-open { overflow:hidden; }
    body.gsqb-mobile-estimate-open .gsqb__mobile-estimate-bar { display:none !important; }
}

/* Version 1.2 refinements */
.gsqb__auto-package {
    background: #e3e5e3;
    border: 1px solid #d2d6d3;
    color: #2f3934;
}
.gsqb__instructor-details {
    background: #f4f5f3;
    border-color: #dfe2df;
}
.gsqb__review-edit-modal { z-index: 1000012; }
body.gsqb-calendar-open .gsqb__mobile-estimate-bar,
body.gsqb-calendar-open .gsqb__mobile-estimate-backdrop { display: none !important; }
.gsqb__church-discount-docs { margin-top: 18px; padding-top: 15px; border-top: 1px solid #d9e0db; }

@media (max-width: 760px) {
    .gsqb__review-edit-modal {
        place-items: stretch;
        padding: 8px;
    }
    .gsqb__review-edit-dialog {
        width: 100%;
        height: calc(100dvh - 16px);
        max-height: calc(100dvh - 16px);
        display: flex;
        flex-direction: column;
        overflow: hidden;
        border-radius: 16px;
    }
    .gsqb__review-edit-head {
        flex: 0 0 auto;
        padding: 17px 18px;
    }
    .gsqb__review-edit-head h3 {
        font-size: 27px;
        line-height: 1.12;
    }
    .gsqb__review-edit-content {
        flex: 1 1 auto;
        min-height: 0;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        padding: 18px 14px 28px;
    }
    .gsqb__review-edit-actions {
        position: static;
        flex: 0 0 auto;
        padding: 13px 14px calc(13px + env(safe-area-inset-bottom));
        background: #fff;
        box-shadow: 0 -8px 22px rgba(20,39,31,.08);
    }
    .gsqb__review-edit-actions .gsqb__button {
        width: 100%;
        min-height: 48px;
    }
}

/* Version 1.3 calendar guidance */
.gsqb__calendar-intro { min-width: 0; }
.gsqb__calendar-night-choice {
    display: grid;
    gap: 7px;
    max-width: 430px;
    margin-top: 18px;
    padding: 14px 15px;
    border: 1px solid #d9dedb;
    border-radius: 10px;
    background: #f7f8f7;
}
.gsqb__calendar-night-choice > span {
    color: var(--gsqb-green-dark);
    font-size: 13px;
    font-weight: 800;
}
.gsqb__calendar-night-choice select {
    width: 100%;
    min-height: 44px;
    border: 1px solid #cdd4d0;
    border-radius: 7px;
    padding: 9px 11px;
    background: #fff;
    color: #26312d;
}
.gsqb__calendar-night-choice small {
    color: #55645d;
    font-size: 11px;
    font-weight: 650;
    line-height: 1.45;
}
.gsqb__calendar-legend .is-one-night { background: #cde5f6; box-shadow: inset 0 0 0 2px #3d7fa7; }
.gsqb__day.is-stay-start-option {
    box-shadow: inset 0 0 0 2px #4c7662;
    font-weight: 800;
}
.gsqb__day.is-stay-end-option {
    outline: 1px dashed #4c7662;
    outline-offset: -3px;
}
.gsqb__day.is-one-night-option {
    background: #cde5f6 !important;
    color: #174d6e !important;
    box-shadow: inset 0 0 0 2px #3d7fa7 !important;
    cursor: pointer !important;
    opacity: 1 !important;
}
.gsqb__day.is-one-night-option:hover,
.gsqb__day.is-one-night-option:focus {
    background: #edf0ef !important;
    color: #174d6e !important;
}
.gsqb__day.is-selected-start,
.gsqb__day.is-selected-end,
.gsqb__day.is-selected-range {
    background: #ef8a36 !important;
    color: #fff !important;
    box-shadow: none !important;
}

@media (max-width: 760px) {
    .gsqb__calendar-night-choice { max-width: 100%; }
}

/* Version 1.4 calendar and discount refinements */
.gsqb__calendar-legend .is-two-night {
    background: #d7efec;
    box-shadow: inset 0 0 0 2px #4e9188;
}
.gsqb__day.is-two-night-option {
    background: #d7efec !important;
    color: #245e57 !important;
    box-shadow: inset 0 0 0 2px #4e9188 !important;
    cursor: pointer !important;
    opacity: 1 !important;
}
.gsqb__day.is-two-night-option:hover,
.gsqb__day.is-two-night-option:focus {
    background: #f0f2f1 !important;
    color: #245e57 !important;
}
.gsqb__two-night-help-modal {
    position: fixed;
    z-index: 1000010;
    inset: 0;
    display: grid;
    place-items: center;
    padding: 20px;
}
.gsqb__two-night-help-modal[hidden] { display: none !important; }
.gsqb__two-night-help-dialog {
    position: relative;
    z-index: 2;
    width: min(520px, 100%);
    padding: 30px;
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 28px 80px rgba(18, 35, 28, .28);
    text-align: center;
}
.gsqb__two-night-help-dialog h3 {
    margin: 12px 0 12px;
    color: var(--gsqb-green-dark);
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 27px;
    font-weight: 500;
}
.gsqb__two-night-help-dialog p {
    margin: 0 0 14px;
    color: #53615a;
    line-height: 1.62;
}
.gsqb__two-night-help-dialog .gsqb__button { margin-top: 6px; }
@media (max-width: 600px) {
    .gsqb__two-night-help-dialog { padding: 24px 18px; }
}

/* Version 1.5 calendar availability refinements */
.gsqb__calendar-legend .is-one-night,
.gsqb__calendar-legend .is-two-night {
    background: #cfe8ff;
    box-shadow: inset 0 0 0 2px #2f77b5;
}
.gsqb__day.is-stay-available:not(.is-confirmed) {
    background: #cfe8ff !important;
    color: #174d6e !important;
    opacity: 1 !important;
    cursor: pointer !important;
}
.gsqb__day.is-stay-start-option:not(.is-selected-start):not(.is-selected-end):not(.is-selected-range) {
    box-shadow: inset 0 0 0 3px #2f77b5 !important;
    font-weight: 900;
}
.gsqb__day.is-available-departure.is-confirmed {
    background: #efc1bd !important;
    color: #78241f !important;
    box-shadow: inset 0 0 0 3px #2f77b5 !important;
    cursor: pointer !important;
    opacity: 1 !important;
}
.gsqb__day.is-stay-available:hover,
.gsqb__day.is-stay-available:focus,
.gsqb__day.is-available-departure:hover,
.gsqb__day.is-available-departure:focus {
    background: #f0f2f1 !important;
}
.gsqb__day.is-selected-start,
.gsqb__day.is-selected-end,
.gsqb__day.is-selected-range {
    background: #ef8a36 !important;
    color: #fff !important;
    box-shadow: none !important;
}
.gsqb__night-mismatch-modal {
    position: fixed;
    z-index: 1000012;
    inset: 0;
    display: grid;
    place-items: center;
    padding: 20px;
}
.gsqb__night-mismatch-modal[hidden] { display: none !important; }
.gsqb__night-mismatch-dialog {
    position: relative;
    z-index: 2;
    width: min(560px, 100%);
    padding: 30px;
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 28px 80px rgba(18, 35, 28, .28);
    text-align: center;
}
.gsqb__night-mismatch-dialog h3 {
    margin: 12px 0;
    color: var(--gsqb-green-dark);
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 27px;
    font-weight: 500;
}
.gsqb__night-mismatch-dialog p {
    margin: 0 0 20px;
    color: #53615a;
    line-height: 1.62;
}
.gsqb__night-mismatch-actions {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}
@media (max-width: 600px) {
    .gsqb__night-mismatch-dialog { padding: 24px 18px; }
    .gsqb__night-mismatch-actions .gsqb__button { width: 100%; }
}

/* Version 1.6 mobile step and calendar usability */
@media (max-width: 700px) {
    .gsqb__calendar-dialog {
        width: 100%;
        height: 100dvh;
        min-height: 100dvh;
        max-height: 100dvh;
        padding: 14px 12px calc(10px + env(safe-area-inset-bottom));
        overflow: hidden;
    }

    .gsqb__calendar-toolbar {
        flex: 0 0 auto;
        gap: 10px;
        margin-bottom: 8px;
        padding-right: 42px;
    }

    .gsqb__calendar-toolbar h3 {
        margin-bottom: 5px;
        font-size: 29px;
        line-height: 1.08;
    }

    .gsqb__calendar-toolbar p {
        font-size: 13px;
        line-height: 1.45;
    }

    .gsqb__calendar-dialog.needs-night-selection .gsqb__calendar-scroll,
    .gsqb__calendar-dialog.needs-night-selection .gsqb__calendar-selection-summary,
    .gsqb__calendar-dialog.needs-night-selection .gsqb__calendar-actions {
        display: none !important;
    }

    .gsqb__calendar-dialog.needs-night-selection .gsqb__calendar-toolbar {
        flex: 1 1 auto;
        justify-content: flex-start;
        overflow-y: auto;
        padding-top: 6px;
    }

    .gsqb__calendar-dialog.needs-night-selection .gsqb__calendar-legend {
        display: none;
    }

    .gsqb__calendar-dialog.has-night-selection .gsqb__calendar-intro > p {
        display: none;
    }

    .gsqb__calendar-dialog.has-night-selection .gsqb__calendar-toolbar h3 {
        font-size: 23px;
    }

    .gsqb__calendar-dialog.has-night-selection .gsqb__calendar-night-choice {
        grid-template-columns: minmax(0, 1fr) minmax(125px, 145px);
        align-items: center;
        gap: 8px 12px;
        max-width: none;
        margin-top: 8px;
        padding: 8px 10px;
        border-radius: 8px;
    }

    .gsqb__calendar-dialog.has-night-selection .gsqb__calendar-night-choice > span {
        font-size: 12px;
    }

    .gsqb__calendar-dialog.has-night-selection .gsqb__calendar-night-choice select {
        min-height: 38px;
        padding: 6px 8px;
        font-size: 13px;
    }

    .gsqb__calendar-dialog.has-night-selection .gsqb__calendar-night-choice small {
        display: none;
    }

    .gsqb__calendar-dialog.has-night-selection .gsqb__calendar-legend {
        display: block;
        width: 100%;
        margin: 0;
        padding: 7px 9px;
        border: 1px solid #d7dde0;
        border-radius: 8px;
        background: #f6f8f7;
        color: #46554e;
        font-size: 11px;
        font-weight: 800;
        line-height: 1.35;
    }

    .gsqb__calendar-dialog.has-night-selection .gsqb__calendar-legend::before {
        content: 'Blue = suitable dates  •  Red = booked  •  Orange = your selection';
    }

    .gsqb__calendar-dialog.has-night-selection .gsqb__calendar-legend > span {
        display: none !important;
    }

    .gsqb__calendar-scroll {
        flex: 1 1 auto;
        min-height: 0;
        overflow-y: auto;
        overscroll-behavior: contain;
        -webkit-overflow-scrolling: touch;
        padding: 4px 1px 18px;
        scroll-padding-top: 8px;
    }

    .gsqb__rolling-month-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .gsqb__month {
        padding: 14px 10px 12px;
        border-radius: 12px;
    }

    .gsqb__month h4 {
        margin: 0 0 12px;
        font-size: 20px;
        line-height: 1.2;
    }

    .gsqb__month-weekdays,
    .gsqb__month-days {
        gap: 5px;
    }

    .gsqb__month-weekdays span {
        padding-bottom: 3px;
        font-size: 10px;
    }

    .gsqb__day {
        min-height: 40px;
        aspect-ratio: 1;
        border-radius: 7px;
        font-size: 14px;
        font-weight: 700;
    }

    .gsqb__calendar-selection-summary {
        flex: 0 0 auto;
        margin: 8px 0;
        padding: 10px 12px;
        gap: 3px;
    }

    .gsqb__calendar-selection-summary strong {
        font-size: 17px;
    }

    .gsqb__calendar-selection-summary span {
        font-size: 11px;
    }

    .gsqb__calendar-actions {
        position: static;
        flex: 0 0 auto;
        display: grid;
        grid-template-columns: 1fr 1.12fr;
        gap: 8px;
        padding: 9px 0 calc(4px + env(safe-area-inset-bottom));
        background: #fbfcfa;
        box-shadow: 0 -6px 16px rgba(20, 39, 31, .06);
    }

    .gsqb__calendar-actions .gsqb__button {
        min-width: 0;
        min-height: 48px;
        padding: 11px 8px;
        font-size: 13px;
    }
}


/* Version 1.7 mobile flow fixes */
@media (max-width: 700px) {
    .gsqb.gsqb--after-first-step .gsqb__hero {
        display: none !important;
    }

    .gsqb.gsqb--after-first-step .gsqb__body {
        padding-top: 0;
    }

    .gsqb.gsqb--after-first-step .gsqb__form-card {
        border-top: 0;
    }

    /* Keep the calendar exactly where the user is working after selecting arrival. */
    .gsqb__calendar-scroll {
        overflow-anchor: none;
    }
}
