/* ============================================================
   Page-specific components — tour detail, contact, legal
   ============================================================ */

/* ---------- Tour intro + key details ---------- */
.tour-intro { display: grid; grid-template-columns: 1.5fr 1fr; gap: clamp(36px, 5vw, 64px); align-items: start; }
.tour-intro__text p { color: var(--grey); margin: 0 0 18px; font-size: 18.5px; }
.tour-intro__text p:first-child::first-letter {
  font-family: var(--ff-display); font-size: 64px; font-weight: 700; color: var(--gold-deep);
  float: left; line-height: 0.78; margin: 8px 12px 0 0;
}
.keybox {
  background: var(--cream); border-left: 4px solid var(--gold); border-radius: 0 12px 12px 0;
  padding: 32px 30px; box-shadow: var(--shadow-sm); position: sticky; top: 96px;
}
.keybox h3 { font-size: 24px; margin-bottom: 22px; }
.keybox dl { margin: 0; display: flex; flex-direction: column; gap: 0; }
.keybox .kv { display: flex; gap: 14px; align-items: flex-start; padding: 13px 0; border-bottom: 1px solid var(--border); }
.keybox .kv:last-child { border-bottom: none; }
.keybox .kv__ico { width: 22px; flex: none; color: var(--gold-deep); margin-top: 1px; }
.keybox .kv__ico svg { width: 20px; height: 20px; stroke-width: 1.6; }
.keybox dt { font-family: var(--ff-label); font-weight: 600; font-size: 11.5px; letter-spacing: 0.6px; text-transform: uppercase; color: var(--grey); margin-bottom: 2px; }
.keybox dd { margin: 0; font-size: 16px; color: var(--navy); font-weight: 400; }
.keybox .kv__main { display: flex; flex-direction: column; }

/* ---------- Itinerary timeline ---------- */
.timeline { position: relative; margin-top: 16px; }
.timeline::before { content: ''; position: absolute; left: 19px; top: 8px; bottom: 8px; width: 2px; background: linear-gradient(var(--gold) 0%, var(--gold-soft) 100%); }
.tl-stop { position: relative; padding: 0 0 44px 64px; }
.tl-stop:last-child { padding-bottom: 0; }
.tl-stop__dot {
  position: absolute; left: 8px; top: 4px; width: 24px; height: 24px; border-radius: 50%;
  background: #fff; border: 3px solid var(--gold); display: grid; place-items: center; z-index: 2;
}
.tl-stop__dot::after { content: ''; width: 7px; height: 7px; border-radius: 50%; background: var(--gold-deep); }
.tl-stop__n { font-family: var(--ff-label); font-weight: 600; font-size: 11px; letter-spacing: 2px; color: var(--gold-deep); text-transform: uppercase; }
.tl-stop h3 { font-size: 28px; margin: 4px 0 0; }
.tl-stop__grid { display: grid; grid-template-columns: 1fr 240px; gap: 28px; align-items: center; margin-top: 12px; }
.tl-stop__grid p { margin: 0; color: var(--grey); font-size: 17px; line-height: 1.6; }
.tl-thumb { aspect-ratio: 4/3; border-radius: 10px; overflow: hidden; box-shadow: var(--shadow-sm); }
.tl-thumb image-slot, .tl-thumb .img-fill { width: 100%; height: 100%; }

/* ---------- Included / not included ---------- */
.incl-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; }
.incl-card { background: #fff; border: 1px solid var(--border); border-radius: 12px; padding: 32px 32px 34px; box-shadow: var(--shadow-sm); }
.incl-card h3 { font-size: 24px; margin-bottom: 22px; display: flex; align-items: center; gap: 12px; }
.incl-card ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 14px; }
.incl-card li { display: flex; gap: 13px; align-items: flex-start; font-size: 16.5px; line-height: 1.5; }
.incl-card li svg { width: 21px; height: 21px; flex: none; margin-top: 2px; }
.incl-card.yes li svg { color: var(--green-check); }
.incl-card.no { background: var(--cream); }
.incl-card.no li { color: var(--grey); }
.incl-card.no li svg { color: var(--grey-light); }

/* ---------- Meeting point ---------- */
.meet-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: stretch; }
.map-ph {
  border-radius: 12px; overflow: hidden; min-height: 320px; position: relative;
  background:
    linear-gradient(120deg, rgba(201,168,76,0.05), rgba(27,45,79,0.05)),
    repeating-linear-gradient(0deg, #eef2ee 0 1px, transparent 1px 38px),
    repeating-linear-gradient(90deg, #eef2ee 0 1px, transparent 1px 38px),
    #f5f6f2;
  border: 1px solid var(--border); display: grid; place-items: center; box-shadow: var(--shadow-sm);
}
.map-ph__pin { display: flex; flex-direction: column; align-items: center; gap: 10px; color: var(--navy); }
.map-ph__pin svg { width: 44px; height: 44px; color: var(--gold-deep); filter: drop-shadow(0 6px 10px rgba(27,45,79,0.2)); }
.map-ph__pin span { font-family: var(--ff-label); font-weight: 600; font-size: 12px; letter-spacing: 1px; text-transform: uppercase; }
.meet-info { display: flex; flex-direction: column; gap: 22px; justify-content: center; }
.meet-info p { margin: 0; color: var(--grey); font-size: 17px; }
.sign {
  background: var(--navy); color: #fff; border-radius: 10px; padding: 22px 26px; text-align: center;
}
.sign__label { font-family: var(--ff-label); font-weight: 500; font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: var(--gold-soft); margin-bottom: 8px; }
.sign__name { font-family: var(--ff-display); font-weight: 700; font-size: 28px; color: #fff; }

/* ---------- Important notes ---------- */
.notes-list { list-style: none; counter-reset: n; margin: 0; padding: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 18px 40px; }
.notes-list li { counter-increment: n; position: relative; padding-left: 52px; font-size: 17px; line-height: 1.55; color: var(--charcoal); min-height: 40px; display: flex; align-items: center; }
.notes-list li::before {
  content: counter(n, decimal-leading-zero); position: absolute; left: 0; top: 0;
  font-family: var(--ff-display); font-weight: 700; font-size: 22px; color: var(--gold-deep);
  width: 38px; height: 38px; border-radius: 50%; border: 1.5px solid var(--gold); display: grid; place-items: center;
}

/* ---------- Dates list ---------- */
.dates-list { display: flex; flex-direction: column; gap: 20px; }

.dates-tabs {
  display: flex; align-items: center; gap: 8px;
  background: #fff; border: 1px solid var(--border); border-radius: 999px;
  padding: 6px; box-shadow: var(--shadow-sm);
}
.dates-tabs__strip {
  flex: 1; display: flex; gap: 4px;
  overflow-x: auto; scroll-behavior: smooth; scrollbar-width: none;
}
.dates-tabs__strip::-webkit-scrollbar { display: none; }
.dates-tabs__btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 9px 16px; border-radius: 999px; border: none; background: transparent;
  font-family: var(--ff-label); font-weight: 600; font-size: 14px; color: var(--navy);
  white-space: nowrap; cursor: pointer; transition: background .2s, color .2s;
}
.dates-tabs__btn:hover { background: var(--cream); }
.dates-tabs__btn.is-active { background: var(--navy); color: #fff; }
.dates-tabs__count {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 22px; height: 22px; padding: 0 7px; border-radius: 999px;
  background: var(--cream-deep); color: var(--grey); font-size: 11.5px;
}
.dates-tabs__btn.is-active .dates-tabs__count { background: rgba(255,255,255,.18); color: #fff; }
.dates-tabs__arrow {
  flex: none; width: 36px; height: 36px; border-radius: 50%; border: 1px solid var(--border);
  background: #fff; color: var(--navy); font-size: 20px; line-height: 1; cursor: pointer;
  display: grid; place-items: center; transition: background .2s, color .2s;
}
.dates-tabs__arrow:hover { background: var(--navy); color: #fff; border-color: var(--navy); }

@media (max-width: 640px) {
  .dates-tabs { border-radius: 14px; padding: 6px; }
  .dates-tabs__btn { padding: 8px 12px; font-size: 13px; }
  .dates-tabs__arrow { width: 32px; height: 32px; font-size: 18px; }
}

.dates-month { background: #fff; border: 1px solid var(--border); border-radius: 14px; box-shadow: var(--shadow-sm); overflow: hidden; }
.dates-month__head {
  display: flex; align-items: baseline; justify-content: space-between; gap: 16px;
  padding: 16px 24px; background: var(--cream-deep); border-bottom: 1px solid var(--border);
}
.dates-month__name { font-family: var(--ff-display); font-weight: 600; font-size: 18px; color: var(--navy); margin: 0; }
.dates-month__count { font-family: var(--ff-label); font-weight: 600; font-size: 11.5px; letter-spacing: 1px; text-transform: uppercase; color: var(--grey); }
.dates-month__items { list-style: none; padding: 0; margin: 0; }

.date-row {
  display: grid;
  grid-template-columns: 72px 1.4fr 1.4fr auto 150px;
  align-items: center;
  gap: 20px;
  padding: 16px 24px;
  border-bottom: 1px solid var(--border);
  transition: background 0.2s;
}
.date-row:last-child { border-bottom: none; }
.date-row:hover { background: var(--cream); }
.date-row--full { opacity: .72; }

.date-row__when {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  background: var(--cream); border: 1px solid var(--border); border-radius: 10px;
  padding: 8px 6px; line-height: 1; min-width: 64px;
}
.date-row__day { font-family: var(--ff-display); font-weight: 700; font-size: 26px; color: var(--navy); }
.date-row__mon { font-family: var(--ff-label); font-weight: 600; font-size: 11px; letter-spacing: 1.4px; text-transform: uppercase; color: var(--gold-deep); margin-top: 4px; }

.date-row__title { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.date-row__seats { display: flex; flex-direction: column; gap: 6px; min-width: 0; }
.date-row__left { font-size: 13px; color: var(--grey); }
.date-row__status { display: flex; justify-content: flex-start; }
.date-row__cta { display: flex; justify-content: flex-end; }
.date-row__cta .btn { white-space: nowrap; }

.date-row .date-main { font-family: var(--ff-display); font-weight: 600; font-size: 19px; color: var(--navy); }
.date-row .date-sub { font-size: 13px; color: var(--grey); }

.seatbar { display: flex; align-items: center; gap: 10px; }
.seatbar__track { width: 88px; height: 7px; border-radius: 4px; background: var(--border); overflow: hidden; }
.seatbar__fill { height: 100%; border-radius: 4px; background: var(--gold); }
.seatbar__txt { font-size: 13px; color: var(--grey); font-family: var(--ff-label); font-weight: 600; }
.status-pill { display: inline-flex; align-items: center; gap: 6px; font-family: var(--ff-label); font-weight: 600; font-size: 11.5px; letter-spacing: 0.5px; text-transform: uppercase; padding: 6px 13px; border-radius: 30px; }
.status-pill::before { content: ''; width: 7px; height: 7px; border-radius: 50%; }
.status-pill.available { background: rgba(74,139,92,0.12); color: var(--green-check); }
.status-pill.available::before { background: var(--green-check); }
.status-pill.almost { background: rgba(201,168,76,0.16); color: var(--gold-deep); }
.status-pill.almost::before { background: var(--gold-deep); }
.status-pill.full { background: rgba(122,113,98,0.12); color: var(--grey); }
.status-pill.full::before { background: var(--grey); }
.btn-row { display: inline-flex; }
.btn--sm { padding: 10px 20px; font-size: 13px; }

/* waiting list */
.waitlist { margin-top: 28px; background: var(--cream); border: 1px solid var(--border); border-radius: 12px; padding: 24px 28px; }
.waitlist h4 { font-family: var(--ff-label); font-weight: 600; font-size: 12px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--grey); margin: 0 0 16px; }
.waitlist__rows { display: flex; flex-wrap: wrap; gap: 12px; }
.wl-chip { display: inline-flex; align-items: center; gap: 9px; background: #fff; border: 1px solid var(--border); border-radius: 30px; padding: 8px 16px 8px 9px; font-size: 14px; }
.wl-chip .av { width: 28px; height: 28px; border-radius: 50%; background: var(--navy); color: #fff; display: grid; place-items: center; font-family: var(--ff-label); font-weight: 600; font-size: 12px; }
.wl-chip .seats { font-family: var(--ff-label); font-weight: 600; font-size: 12px; color: var(--gold-deep); }

/* ---------- Booking form ---------- */
.booking-wrap { max-width: 760px; margin: 0 auto; }
.bform { background: #fff; border: 1px solid var(--border); border-radius: 16px; padding: clamp(28px, 4vw, 48px); box-shadow: var(--shadow-md); }
.field { margin-bottom: 24px; }
.field > label, .fieldset-label { display: block; font-family: var(--ff-label); font-weight: 600; font-size: 13.5px; letter-spacing: 0.3px; color: var(--charcoal); margin-bottom: 9px; }
.field .req { color: var(--gold-deep); }
.input, .select {
  width: 100%; font-family: var(--ff-body); font-size: 18px; color: var(--charcoal); background: var(--cream);
  border: 1.5px solid var(--border); border-radius: 8px; padding: 15px 16px; transition: border-color 0.25s, box-shadow 0.25s, background 0.25s;
}
.input::placeholder { color: var(--grey-light); }
.input:focus, .select:focus { outline: none; border-color: var(--gold); background: #fff; box-shadow: 0 0 0 3px rgba(201,168,76,0.18); }
.input[readonly] { background: var(--cream-deep); color: var(--grey); cursor: not-allowed; }
.input.err, .select.err { border-color: #C0492F; background: #fdf6f4; }
.field__err { display: none; color: #C0492F; font-size: 13.5px; font-family: var(--ff-label); font-weight: 500; margin-top: 7px; }
.field.show-err .field__err { display: block; }
.field-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }

/* stepper */
.stepper { display: inline-flex; align-items: center; gap: 0; border: 1.5px solid var(--border); border-radius: 8px; overflow: hidden; background: #fff; }
.stepper button { width: 56px; height: 56px; border: none; background: var(--cream); color: var(--navy); font-size: 26px; font-family: var(--ff-display); line-height: 1; display: grid; place-items: center; transition: background 0.2s; }
.stepper button:hover:not(:disabled) { background: var(--cream-deep); color: var(--gold-deep); }
.stepper button:disabled { opacity: 0.35; cursor: not-allowed; }
.stepper input { width: 72px; height: 56px; text-align: center; border: none; border-left: 1.5px solid var(--border); border-right: 1.5px solid var(--border); font-family: var(--ff-display); font-weight: 600; font-size: 26px; color: var(--navy); background: #fff; -moz-appearance: textfield; }
.stepper input::-webkit-outer-spin-button, .stepper input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
.stepper-note { font-size: 14px; color: var(--grey); margin-left: 16px; }

/* radio */
.radio-group { display: flex; flex-direction: column; gap: 12px; }
.radio {
  display: flex; align-items: flex-start; gap: 14px; padding: 16px 18px; border: 1.5px solid var(--border);
  border-radius: 10px; cursor: pointer; transition: all 0.25s; background: var(--cream);
}
.radio:hover { border-color: var(--gold-soft); }
.radio input { position: absolute; opacity: 0; }
.radio__dot { width: 22px; height: 22px; border-radius: 50%; border: 2px solid var(--grey-light); flex: none; margin-top: 1px; display: grid; place-items: center; transition: border-color 0.25s; }
.radio__dot::after { content: ''; width: 11px; height: 11px; border-radius: 50%; background: var(--gold); transform: scale(0); transition: transform 0.2s var(--ease); }
.radio input:checked ~ .radio__dot { border-color: var(--gold-deep); }
.radio input:checked ~ .radio__dot::after { transform: scale(1); }
.radio:has(input:checked) { border-color: var(--gold); background: #fff; box-shadow: 0 0 0 3px rgba(201,168,76,0.12); }
.radio__main strong { display: block; font-family: var(--ff-label); font-weight: 600; font-size: 15px; color: var(--navy); margin-bottom: 2px; }
.radio__main span { font-size: 14.5px; color: var(--grey); }

/* checkbox */
.check { display: flex; align-items: flex-start; gap: 13px; cursor: pointer; margin-bottom: 14px; font-size: 15.5px; line-height: 1.45; color: var(--charcoal); }
.check input { position: absolute; opacity: 0; }
.check__box { width: 24px; height: 24px; border-radius: 6px; border: 1.5px solid var(--grey-light); flex: none; margin-top: 1px; display: grid; place-items: center; transition: all 0.2s; background: var(--cream); }
.check__box svg { width: 15px; height: 15px; color: #fff; opacity: 0; transform: scale(0.6); transition: all 0.2s var(--ease); }
.check input:checked ~ .check__box { background: var(--gold-deep); border-color: var(--gold-deep); }
.check input:checked ~ .check__box svg { opacity: 1; transform: scale(1); }
.check.show-err .check__box { border-color: #C0492F; }
.check a { color: var(--gold-deep); text-decoration: underline; }

/* deposit / stripe placeholder */
.deposit-box { background: var(--cream); border: 1.5px dashed var(--gold-soft); border-radius: 12px; padding: 26px; margin: 8px 0 28px; }
.deposit-box .row { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.deposit-box .amt { font-family: var(--ff-display); font-weight: 700; font-size: 34px; color: var(--navy); }
.deposit-box .amt small { font-family: var(--ff-body); font-weight: 400; font-size: 15px; color: var(--grey); display: block; letter-spacing: 0; }

/* Payment breakdown — three rows: Tour total / Deposit charged today / Balance due later. */
.frst-pay-summary { padding: 22px 26px; }
.frst-pay-row { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 12px 0; border-top: 1px solid rgba(27, 45, 79, 0.08); }
.frst-pay-row:first-of-type { border-top: none; padding-top: 4px; }
.frst-pay-row__lbl { color: var(--navy); font-size: 15px; }
.frst-pay-row__lbl strong { display: block; font-weight: 600; color: var(--navy); }
.frst-pay-row__lbl small { display: block; color: var(--grey); font-size: 13px; margin-top: 2px; font-family: var(--ff-body); }
.frst-pay-row__amt { font-family: var(--ff-display); font-weight: 600; font-size: 22px; color: var(--navy); white-space: nowrap; }
.frst-pay-row__amt--strong { font-size: 28px; font-weight: 700; color: var(--gold-deep); }
.frst-pay-row--now { background: rgba(201, 168, 76, 0.07); margin: 4px -14px; padding: 14px 14px; border-radius: 8px; border-top: 1px solid rgba(201, 168, 76, 0.2); }
.frst-pay-row--later .frst-pay-row__amt { color: var(--grey); }
@media (max-width: 540px) {
	.frst-pay-summary { padding: 18px 18px; }
	.frst-pay-row__amt        { font-size: 19px; }
	.frst-pay-row__amt--strong { font-size: 24px; }
}
.stripe-ph { margin-top: 18px; background: #fff; border: 1px solid var(--border); border-radius: 8px; padding: 16px 18px; display: flex; align-items: center; gap: 12px; color: var(--grey); font-size: 14px; }
.stripe-ph svg { width: 22px; height: 22px; color: var(--gold-deep); flex: none; }

/* booking success */
.book-success {
  display: none; text-align: center; padding: 20px 0;
}
.book-success.show { display: block; animation: pop 0.5s var(--ease); }
@keyframes pop { from { opacity: 0; transform: scale(0.96); } to { opacity: 1; transform: none; } }
.book-success .tick { width: 76px; height: 76px; border-radius: 50%; background: rgba(74,139,92,0.12); display: grid; place-items: center; margin: 0 auto 22px; }
.book-success .tick svg { width: 38px; height: 38px; color: var(--green-check); }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: clamp(36px, 5vw, 60px); align-items: start; }
.contact-card { background: var(--navy); color: #fff; border-radius: 16px; padding: clamp(30px, 4vw, 44px); box-shadow: var(--shadow-md); }
.contact-card h3 { color: #fff; font-size: 28px; margin-bottom: 8px; }
.contact-card .sub { color: rgba(255,255,255,0.7); font-size: 16px; margin: 0 0 28px; }
.contact-card .cline { display: flex; align-items: flex-start; gap: 14px; padding: 16px 0; border-bottom: 1px solid rgba(255,255,255,0.12); }
.contact-card .cline:last-of-type { border-bottom: none; }
.contact-card .cline svg { width: 22px; height: 22px; color: var(--gold-soft); flex: none; margin-top: 2px; }
.contact-card .cline .lbl { font-family: var(--ff-label); font-weight: 600; font-size: 11px; letter-spacing: 1px; text-transform: uppercase; color: var(--gold-soft); margin-bottom: 3px; }
.contact-card .cline .val { font-size: 16px; color: #fff; }
.contact-card .note { background: rgba(255,255,255,0.07); border-radius: 10px; padding: 18px 20px; margin-top: 24px; font-size: 15px; color: rgba(255,255,255,0.85); line-height: 1.55; font-style: italic; }

/* ---------- Legal / privacy ---------- */
.doc-hero { text-align: center; padding-top: 150px; padding-bottom: 64px; }
.doc-body { max-width: 820px; margin: 0 auto; }
.doc-body h2 { font-size: 30px; margin: 44px 0 16px; }
.doc-body h2:first-child { margin-top: 0; }
.doc-body p { color: var(--grey); margin: 0 0 18px; font-size: 17.5px; }
.doc-placeholder {
  background: var(--cream); border: 1.5px dashed var(--gold-soft); border-radius: 12px; padding: 40px;
  text-align: center; color: var(--grey); font-family: var(--ff-label); font-weight: 500; font-size: 15px; letter-spacing: 0.5px;
}
.doc-meta { font-family: var(--ff-label); font-size: 13px; letter-spacing: 0.5px; color: var(--grey-light); margin-bottom: 36px; }

/* ---------- Responsive page-specific ---------- */
@media (max-width: 1024px) {
  .tour-intro { grid-template-columns: 1fr; }
  .keybox { position: static; }
}
@media (max-width: 860px) {
  .incl-grid, .meet-grid, .contact-grid, .notes-list { grid-template-columns: 1fr; }
  .tl-stop__grid { grid-template-columns: 1fr; }
  .tl-thumb { max-width: 320px; }
  .field-2 { grid-template-columns: 1fr; gap: 0; }
}

/* Dates list — tablet: drop the seatbar column, keep status pill */
@media (max-width: 960px) {
  .date-row {
    grid-template-columns: 64px 1.2fr auto 130px;
  }
  .date-row__seats { display: none; }
}

/* Dates list — mobile: card layout, CTA spans full width */
@media (max-width: 640px) {
  .dates-month__head { padding: 14px 18px; }
  .dates-month__name { font-size: 16px; }

  .date-row {
    grid-template-columns: 60px 1fr;
    grid-template-areas:
      "when title"
      "when status"
      "cta  cta";
    column-gap: 16px;
    row-gap: 10px;
    padding: 16px 18px;
  }
  .date-row__when    { grid-area: when; align-self: start; min-width: 0; padding: 10px 4px; }
  .date-row__day     { font-size: 22px; }
  .date-row__title   { grid-area: title; }
  .date-row__seats   { display: none; }
  .date-row__status  { grid-area: status; }
  .date-row__cta     { grid-area: cta; justify-content: stretch; }
  .date-row__cta .btn { width: 100%; text-align: center; padding: 12px 20px; }

  .date-row .date-main { font-size: 17px; }
}

/* ─────────────  Authorable content blocks (rich / media / cta)  ───────────── */

.blk-rich .wrap            { max-width: 880px; }
.blk-rich__body            { font-size: 17px; line-height: 1.75; color: #2c3242; }
.blk-rich__body p          { margin: 0 0 18px; }
.blk-rich__body p:last-child { margin-bottom: 0; }
.blk-rich__body a          { color: #c9a84c; text-decoration: underline; }
.blk-rich--center .blk-rich__body { text-align: center; max-width: 720px; margin-left: auto; margin-right: auto; }
.bg-navy.blk-rich .blk-rich__body { color: rgba(255,255,255,0.88); }
.bg-navy.blk-rich .blk-rich__body a { color: #e3c577; }

.blk-media__grid           { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.blk-media__art            { position: relative; border-radius: 14px; overflow: hidden; aspect-ratio: 4 / 3; box-shadow: 0 12px 30px rgba(27,45,79,0.08); }
.blk-media__art .img-fill,
.blk-media__art img        { width: 100%; height: 100%; object-fit: cover; display: block; }
.blk-media__art .img-ph    { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; background: #f3eee2; color: #99876a; font-size: 14px; letter-spacing: .12em; text-transform: uppercase; }
.blk-media__copy           { min-width: 0; }
.blk-media__copy .label    { margin: 0 0 10px; }
.blk-media__copy .h2       { margin: 0 0 18px; }
.blk-media__body           { font-size: 16px; line-height: 1.7; color: #2c3242; }
.blk-media__body p         { margin: 0 0 14px; }
.blk-media__body p:last-child { margin-bottom: 0; }
.blk-media--right .blk-media__art  { order: 2; }
.blk-media--right .blk-media__copy { order: 1; }
.bg-navy.blk-media .blk-media__body { color: rgba(255,255,255,0.88); }

.blk-cta .wrap             { max-width: 760px; }
.blk-cta .lead             { font-size: 18px; line-height: 1.6; opacity: .88; }
.bg-navy.blk-cta .lead     { color: rgba(255,255,255,0.85); }

@media (max-width: 860px) {
  .blk-media__grid                   { grid-template-columns: 1fr; gap: 28px; }
  .blk-media--right .blk-media__art  { order: 1; }
  .blk-media--right .blk-media__copy { order: 2; }
  .blk-media__art                    { aspect-ratio: 16 / 10; }
}

/* ── Stats row ───────────────────────────────────────────── */
.blk-stats__grid           { display: grid; gap: 22px; margin-top: 36px; grid-template-columns: repeat(4, minmax(0,1fr)); }
.blk-stats__grid[data-cols="1"] { grid-template-columns: minmax(0,1fr); max-width: 480px; margin-left: auto; margin-right: auto; }
.blk-stats__grid[data-cols="2"] { grid-template-columns: repeat(2, minmax(0,1fr)); max-width: 720px; margin-left: auto; margin-right: auto; }
.blk-stats__grid[data-cols="3"] { grid-template-columns: repeat(3, minmax(0,1fr)); }
.blk-stat                  { text-align: center; padding: 28px 18px; border-radius: 14px; background: rgba(255,255,255,0.7); border: 1px solid rgba(27,45,79,0.08); }
.bg-cream .blk-stat        { background: #fff; }
.bg-white .blk-stat        { background: #faf6ec; border-color: rgba(201,168,76,0.18); }
.bg-navy .blk-stat         { background: rgba(255,255,255,0.06); border-color: rgba(255,255,255,0.12); }
.blk-stat__value           { font-family: 'Cormorant Garamond', Georgia, serif; font-size: 44px; line-height: 1; color: #1b2d4f; font-weight: 600; letter-spacing: -.01em; }
.bg-navy .blk-stat__value  { color: #e3c577; }
.blk-stat__label           { margin-top: 10px; font-size: 13px; letter-spacing: .14em; text-transform: uppercase; color: #5a6377; font-weight: 600; }
.bg-navy .blk-stat__label  { color: rgba(255,255,255,0.78); }

@media (max-width: 720px) {
  .blk-stats__grid                  { grid-template-columns: repeat(2, minmax(0,1fr)); gap: 14px; }
  .blk-stats__grid[data-cols="1"]   { grid-template-columns: minmax(0,1fr); }
  .blk-stat                         { padding: 22px 14px; }
  .blk-stat__value                  { font-size: 34px; }
}

/* ── Pull quote ──────────────────────────────────────────── */
.blk-quote .wrap           { max-width: 820px; }
.blk-quote__card           { position: relative; margin: 0; padding: 48px 40px 40px; border-radius: 16px; background: #faf6ec; border: 1px solid rgba(201,168,76,0.22); }
.bg-cream .blk-quote__card { background: #fff; }
.bg-navy .blk-quote__card  { background: rgba(255,255,255,0.06); border-color: rgba(255,255,255,0.12); }
.blk-quote__mark           { position: absolute; top: 18px; left: 28px; width: 44px; height: 44px; color: rgba(201,168,76,0.55); }
.blk-quote__body           { font-family: 'Cormorant Garamond', Georgia, serif; font-size: 26px; line-height: 1.45; color: #1b2d4f; font-style: italic; margin: 0; }
.bg-navy .blk-quote__body  { color: rgba(255,255,255,0.95); }
.blk-quote__body p         { margin: 0 0 12px; }
.blk-quote__body p:last-child { margin-bottom: 0; }
.blk-quote__cap            { margin-top: 22px; display: flex; flex-wrap: wrap; align-items: center; gap: 10px 14px; font-size: 13px; }
.blk-quote__author         { font-weight: 700; color: #1b2d4f; letter-spacing: .04em; text-transform: uppercase; }
.bg-navy .blk-quote__author{ color: #e3c577; }
.blk-quote__role           { color: #5a6377; }
.bg-navy .blk-quote__role  { color: rgba(255,255,255,0.75); }
.blk-quote__cap .blk-quote__role::before { content: '·'; margin-right: 10px; opacity: .6; }

@media (max-width: 640px) {
  .blk-quote__card         { padding: 40px 22px 28px; }
  .blk-quote__body         { font-size: 22px; }
  .blk-quote__mark         { width: 34px; height: 34px; top: 14px; left: 16px; }
}

/* ── Feature cards (3-up) ────────────────────────────────── */
.blk-features__grid        { display: grid; gap: 24px; margin-top: 40px; grid-template-columns: repeat(3, minmax(0,1fr)); }
.blk-feature               { background: #fff; border: 1px solid rgba(27,45,79,0.1); border-radius: 14px; padding: 30px 26px; transition: transform .2s ease, box-shadow .2s ease; }
.blk-feature:hover         { transform: translateY(-3px); box-shadow: 0 14px 30px rgba(27,45,79,0.08); }
.bg-cream .blk-feature     { background: #fff; }
.bg-white .blk-feature     { background: #faf6ec; border-color: rgba(201,168,76,0.18); }
.bg-navy .blk-feature      { background: rgba(255,255,255,0.06); border-color: rgba(255,255,255,0.12); }
.blk-feature__icon         { width: 52px; height: 52px; border-radius: 12px; background: rgba(201,168,76,0.18); color: #1b2d4f; display: flex; align-items: center; justify-content: center; font-size: 26px; line-height: 1; margin-bottom: 16px; }
.bg-navy .blk-feature__icon{ background: rgba(227,197,119,0.18); color: #e3c577; }
.blk-feature__title        { font-family: 'Cormorant Garamond', Georgia, serif; font-size: 22px; font-weight: 600; color: #1b2d4f; margin: 0 0 8px; }
.bg-navy .blk-feature__title { color: #fff; }
.blk-feature__body         { font-size: 15px; line-height: 1.65; color: #5a6377; margin: 0; }
.bg-navy .blk-feature__body{ color: rgba(255,255,255,0.78); }

@media (max-width: 900px) {
  .blk-features__grid      { grid-template-columns: repeat(2, minmax(0,1fr)); }
}
@media (max-width: 600px) {
  .blk-features__grid      { grid-template-columns: minmax(0,1fr); gap: 16px; }
  .blk-feature             { padding: 24px 20px; }
}

/* ── FAQ accordion ───────────────────────────────────────── */
.blk-faq .wrap             { max-width: 820px; }
.blk-faq__list             { margin-top: 36px; display: grid; gap: 12px; }
.blk-faq__item             { background: #fff; border: 1px solid rgba(27,45,79,0.12); border-radius: 12px; overflow: hidden; transition: border-color .2s ease, box-shadow .2s ease; }
.blk-faq__item[open]       { border-color: rgba(201,168,76,0.45); box-shadow: 0 10px 22px rgba(27,45,79,0.06); }
.bg-cream .blk-faq__item   { background: #fff; }
.bg-navy .blk-faq__item    { background: rgba(255,255,255,0.06); border-color: rgba(255,255,255,0.12); }
.blk-faq__q                { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 18px 22px; cursor: pointer; font-weight: 600; font-size: 16px; color: #1b2d4f; list-style: none; }
.blk-faq__q::-webkit-details-marker { display: none; }
.bg-navy .blk-faq__q       { color: #fff; }
.blk-faq__chev svg         { width: 18px; height: 18px; color: #c9a84c; transition: transform .2s ease; }
.blk-faq__item[open] .blk-faq__chev svg { transform: rotate(180deg); }
.blk-faq__a                { padding: 0 22px 20px; font-size: 15px; line-height: 1.7; color: #5a6377; }
.bg-navy .blk-faq__a       { color: rgba(255,255,255,0.8); }
.blk-faq__a p              { margin: 0 0 10px; }
.blk-faq__a p:last-child   { margin-bottom: 0; }

@media (max-width: 560px) {
  .blk-faq__q              { padding: 16px 18px; font-size: 15px; }
  .blk-faq__a              { padding: 0 18px 18px; }
}
