/* Visit Fageca — page-specific styles */

/* === RESULTS === */
.vf-summary {
  position: sticky; top: 64px; z-index: 20;
  backdrop-filter: saturate(1.2) blur(12px);
  -webkit-backdrop-filter: saturate(1.2) blur(12px);
  border-top: 1px solid var(--vf-line);
  border-bottom: 1px solid var(--vf-line);
}
.vf-summary__inner {
  display: flex; justify-content: space-between; align-items: center;
  padding: 14px var(--vf-gutter); gap: 20px;
  max-width: var(--vf-container); margin-inline: auto;
  flex-wrap: wrap;
}
.vf-summary__fields { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; }
.vf-summary__field { display: flex; flex-direction: column; }
.vf-summary__label { font-size: 11px; letter-spacing: .08em; text-transform: uppercase; color: var(--vf-ink-3); }
.vf-summary__field strong { font-size: 15px; font-weight: 500; }
.vf-summary__sep { width: 1px; height: 28px; background: var(--vf-line); }

.vf-weekswitch {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px;
  border-radius: 999px;
  background: var(--vf-canvas-2);
  box-shadow: inset 0 0 0 1px var(--vf-line);
}
.vf-weekswitch button {
  width: 36px; height: 36px; border-radius: 999px;
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--vf-ink);
}
.vf-weekswitch button:hover:not(:disabled) { background: var(--vf-canvas); }
.vf-weekswitch button:disabled { opacity: .3; cursor: not-allowed; }
.vf-weekswitch__center { display: flex; flex-direction: column; align-items: center; gap: 2px; padding: 0 12px; }
.vf-weekswitch__center strong { font-family: var(--vf-font-display); font-size: 18px; font-weight: 500; letter-spacing: -0.01em; }
.vf-weekswitch__center .vf-mono { font-size: 11px; color: var(--vf-ink-3); }

.vf-results { padding: 48px 0 80px; }
.vf-results__head { display: flex; justify-content: space-between; align-items: flex-end; gap: 32px; flex-wrap: wrap; margin-bottom: 32px; }
.vf-results__grid { display: grid; gap: 20px; }

.vf-result {
  display: grid;
  grid-template-columns: 1.1fr 1.4fr;
  gap: 24px;
  padding: 20px;
  background: var(--vf-canvas-2);
  border-radius: var(--vf-r-lg);
  box-shadow: inset 0 0 0 1px var(--vf-line);
  transition: box-shadow .2s ease, transform .15s ease;
}
.vf-result:hover { box-shadow: inset 0 0 0 1px var(--vf-ink-2), var(--vf-shadow-card); transform: translateY(-2px); }
.vf-result.is-off { opacity: .7; }
.vf-result__gallery {
  position: relative;
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 6px;
  aspect-ratio: 4/3;
}
.vf-result__main { grid-row: 1 / 3; border-radius: var(--vf-r-md); }
.vf-result__thumbs { display: contents; }
.vf-result__thumbs > * { border-radius: var(--vf-r-md); }
.vf-result__offLabel {
  position: absolute; top: 12px; left: 12px;
  background: var(--vf-ink); color: var(--vf-cta-ink);
  padding: 6px 12px; border-radius: 999px; font-size: 12px;
  z-index: 2;
}
.vf-result__body { display: flex; flex-direction: column; justify-content: space-between; gap: 24px; padding: 4px 6px; }
.vf-result__title { font-family: var(--vf-font-display); font-size: 32px; font-weight: 500; letter-spacing: -0.02em; margin: 6px 0 6px; }
.vf-result__tagline { color: var(--vf-ink-3); font-size: 15px; margin: 0 0 14px; }
.vf-result__specs { display: flex; gap: 18px; flex-wrap: wrap; color: var(--vf-ink-2); font-size: 14px; margin-bottom: 16px; }
.vf-result__specs span { display: inline-flex; align-items: center; gap: 6px; }
.vf-result__highlight {
  display: flex; align-items: flex-start; gap: 8px;
  padding: 12px 14px; background: var(--vf-canvas);
  border-radius: var(--vf-r-md); font-size: 14px; color: var(--vf-ink-2);
}
.vf-result__highlight svg { color: var(--vf-ok); flex-shrink: 0; margin-top: 2px; }
.vf-result__foot { display: flex; justify-content: space-between; align-items: flex-end; gap: 20px; flex-wrap: wrap; }
.vf-result__price { display: flex; flex-direction: column; gap: 2px; }
.vf-result__per { font-size: 13px; color: var(--vf-ink-3); }
.vf-result__ctas { display: flex; gap: 8px; }

@media (max-width: 820px) {
  .vf-result { grid-template-columns: 1fr; }
  .vf-result__gallery { grid-template-columns: 1fr; grid-template-rows: 1fr; aspect-ratio: 16/10; }
  .vf-result__main { grid-row: 1 / 2; }
  .vf-result__thumbs { display: none; }
}

.vf-results__off { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.vf-results__offCard {
  display: flex; align-items: center; gap: 14px;
  padding: 12px; background: var(--vf-canvas-2); border-radius: var(--vf-r-md);
  box-shadow: inset 0 0 0 1px var(--vf-line); opacity: .6;
}
.vf-results__offCard strong { font-family: var(--vf-font-display); font-size: 18px; font-weight: 500; }
.vf-results__offCard p { font-size: 13px; color: var(--vf-ink-3); margin: 4px 0 0; }
@media (max-width: 720px) { .vf-results__off { grid-template-columns: 1fr; } }

.vf-empty {
  text-align: center; padding: 80px 20px;
  border: 1px dashed var(--vf-line-2);
  border-radius: var(--vf-r-lg);
  background: var(--vf-canvas-2);
  display: flex; flex-direction: column; align-items: center; gap: 10px;
}
.vf-empty svg { color: var(--vf-ink-3); margin-bottom: 6px; }
.vf-empty h3 { font-family: var(--vf-font-display); font-size: 28px; font-weight: 500; margin: 0; }
.vf-empty p { color: var(--vf-ink-3); margin: 0 0 10px; }
.vf-empty__alts { display: flex; gap: 10px; flex-wrap: wrap; justify-content: center; }

/* === PROPERTY === */
.vf-prop__top { padding: 120px 0 28px; background: var(--vf-canvas); }
.vf-prop__back {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 8px 14px; border-radius: 999px;
  font-size: 14px; color: var(--vf-ink-2);
  box-shadow: inset 0 0 0 1px var(--vf-line);
  margin-bottom: 24px;
  background: transparent;
}
.vf-prop__back:hover { color: var(--vf-ink); box-shadow: inset 0 0 0 1px var(--vf-ink); }
.vf-prop__header h1 {
  font-family: var(--vf-font-display);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.02;
  font-size: clamp(40px, 5.5vw, 72px);
  margin: 0 0 16px;
}
.vf-prop__header h1 em { font-style: italic; color: var(--vf-ink-3); }
.vf-prop__sub { display: flex; gap: 20px; flex-wrap: wrap; color: var(--vf-ink-2); font-size: 14px; align-items: center; }
.vf-prop__sub > span { display: inline-flex; align-items: center; gap: 6px; color: var(--vf-ink-2); }
.vf-prop__rating { color: var(--vf-ink) !important; }
.vf-prop__rating svg { color: var(--vf-ember); flex: none; }
.vf-prop__rating strong { font-weight: 600; color: var(--vf-ink); font-family: var(--vf-font-mono); font-size: 13px; }

.vf-gallery {
  position: relative;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 220px 220px;
  gap: 6px;
  margin-top: 24px;
  border-radius: var(--vf-r-lg);
  overflow: hidden;
}
.vf-gallery > .vf-ph { border-radius: 0; }
.vf-gallery__main { grid-row: 1 / 3; }
.vf-gallery__all {
  position: absolute; bottom: 16px; right: 16px;
  display: inline-flex; align-items: center; gap: 6px;
  padding: 10px 16px; background: var(--vf-canvas); border-radius: 999px;
  box-shadow: var(--vf-shadow-card); font-size: 13px; font-weight: 500;
  color: var(--vf-ink);
}
@media (max-width: 720px) {
  .vf-gallery { grid-template-columns: 1fr 1fr; grid-template-rows: 180px 140px 140px; }
  .vf-gallery__main { grid-row: 1 / 2; grid-column: 1 / 3; }
}

.vf-prop__layout { padding: 48px 0 80px; }
.vf-prop__inner {
  max-width: var(--vf-container);
  margin-inline: auto;
  padding: 0 var(--vf-gutter);
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 64px;
  align-items: start;
}
.vf-prop__body { display: flex; flex-direction: column; gap: 56px; }
.vf-prop__section { padding-bottom: 32px; border-bottom: 1px solid var(--vf-line); }
.vf-prop__section:last-child { border-bottom: 0; }
.vf-prop__section h2 {
  font-family: var(--vf-font-display);
  font-size: clamp(26px, 3vw, 36px);
  font-weight: 500; letter-spacing: -0.02em;
  margin: 0 0 18px;
}
.vf-prop__para { font-size: 17px; line-height: 1.6; color: var(--vf-ink-2); margin: 0 0 12px; max-width: 58ch; }
.vf-prop__highlights { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 14px; }
.vf-prop__highlights li { display: flex; align-items: flex-start; gap: 12px; font-size: 16px; color: var(--vf-ink-2); }
.vf-prop__highlights svg { color: var(--vf-ok); flex-shrink: 0; margin-top: 4px; }

.vf-prop__amen { display: grid; grid-template-columns: 1fr 1fr; gap: 14px 24px; }
.vf-prop__amenItem { display: flex; align-items: center; gap: 12px; font-size: 15px; color: var(--vf-ink-2); padding: 10px 0; border-bottom: 1px solid var(--vf-line); }
.vf-prop__amenItem svg { color: var(--vf-moss); }

.vf-prop__local { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 14px; }
.vf-prop__localItem {
  padding: 20px;
  border-radius: var(--vf-r-md);
}
.vf-prop__localMeta { font-family: var(--vf-font-mono); font-size: 11px; letter-spacing: .08em; text-transform: uppercase; color: var(--vf-ink-3); }
.vf-prop__localItem h4 { font-family: var(--vf-font-display); font-size: 19px; font-weight: 500; margin: 6px 0 8px; letter-spacing: -0.01em; }
.vf-prop__localItem p { font-size: 14px; color: var(--vf-ink-3); margin: 0; line-height: 1.5; }
@media (max-width: 720px) { .vf-prop__local, .vf-prop__amen { grid-template-columns: 1fr; } }

.vf-prop__nodate {
  display: flex; align-items: center; gap: 14px;
  padding: 16px 20px;
  margin-top: 20px;
  background: var(--vf-ember-soft);
  border-radius: var(--vf-r-md);
}
.vf-prop__nodate svg { color: var(--vf-ember); flex-shrink: 0; }
.vf-prop__nodate strong { display: block; color: var(--vf-ink); }
.vf-prop__nodate p { font-size: 14px; color: var(--vf-ink-3); margin: 2px 0 0; }
.vf-prop__nodate > div:first-of-type + div { flex: 1; }

/* Booking sidebar */
.vf-prop__aside { position: sticky; top: 100px; }
.vf-book {
  padding: 28px;
  background: var(--vf-canvas-2);
  border-radius: var(--vf-r-lg);
  box-shadow: var(--vf-shadow-card);
  display: flex; flex-direction: column; gap: 18px;
}
.vf-book__price { display: flex; justify-content: space-between; align-items: baseline; padding-bottom: 14px; border-bottom: 1px solid var(--vf-line); }
.vf-book__rating { display: inline-flex; align-items: center; gap: 4px; font-size: 13px; color: var(--vf-ink-2); }
.vf-book__rating svg { color: var(--vf-ember); }
.vf-book__fields { display: flex; flex-direction: column; gap: 4px; }
.vf-book__field {
  display: flex; justify-content: space-between; align-items: center;
  padding: 14px 4px;
  border-bottom: 1px solid var(--vf-line);
}
.vf-book__field:last-child { border-bottom: 0; }
.vf-book__label { font-size: 12px; letter-spacing: .08em; text-transform: uppercase; color: var(--vf-ink-3); }
.vf-book__field strong { font-size: 15px; font-weight: 500; flex: 1; padding-left: 14px; }
.vf-book__break {
  display: flex; flex-direction: column; gap: 10px;
  padding: 18px;
  background: var(--vf-canvas);
  border-radius: var(--vf-r-md);
}
.vf-book__line { display: flex; justify-content: space-between; font-size: 14px; color: var(--vf-ink-2); }
.vf-book__total { display: flex; justify-content: space-between; align-items: baseline; padding-top: 12px; border-top: 1px solid var(--vf-line); font-weight: 500; }
.vf-book__trust { display: flex; flex-direction: column; gap: 6px; font-size: 13px; color: var(--vf-ink-3); }
.vf-book__trust span { display: inline-flex; align-items: center; gap: 8px; }
.vf-book__cta { width: 100%; justify-content: center; }

.vf-prop__mobileCta { display: none; }
@media (max-width: 920px) {
  .vf-prop__inner { grid-template-columns: 1fr; }
  .vf-prop__aside { display: none; }
  .vf-prop__mobileCta {
    display: flex; justify-content: space-between; align-items: center; gap: 14px;
    position: fixed; bottom: 16px; left: 16px; right: 16px; z-index: 30;
    padding: 14px 18px;
    background: var(--vf-canvas-2);
    border-radius: var(--vf-r-full);
    box-shadow: var(--vf-shadow-float);
  }
  .vf-prop__mobileCta > div { display: flex; flex-direction: column; }
}

/* === CALENDAR === */
.vf-cal { background: var(--vf-canvas-2); border-radius: var(--vf-r-lg); padding: 24px; box-shadow: inset 0 0 0 1px var(--vf-line); max-width: 520px; }
.vf-cal__head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 16px; }
.vf-cal__head button { width: 34px; height: 34px; border-radius: 999px; display: inline-flex; align-items: center; justify-content: center; }
.vf-cal__head button:hover { background: var(--vf-canvas); }
.vf-cal__head span { font-size: 15px; font-weight: 500; }
.vf-cal__dow, .vf-cal__grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 4px; }
.vf-cal__dow { margin-bottom: 8px; }
.vf-cal__dow span { text-align: center; font-size: 11px; letter-spacing: .1em; color: var(--vf-ink-3); padding: 6px; }
.vf-cal__day {
  aspect-ratio: 1;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: var(--vf-r-md);
  font-size: 13px;
  background: transparent;
  position: relative;
  transition: background .15s ease;
}
.vf-cal__day--free { background: var(--vf-ok-soft); color: var(--vf-ok); cursor: pointer; }
.vf-cal__day--free:hover { background: var(--vf-ok); color: var(--vf-canvas); }
.vf-cal__day--busy { background: var(--vf-canvas); color: var(--vf-ink-3); text-decoration: line-through; opacity: .5; cursor: not-allowed; }
.vf-cal__day--idle { color: var(--vf-ink-3); }
.vf-cal__day.is-selected { background: var(--vf-ink); color: var(--vf-cta-ink); }
.vf-cal__legend { display: flex; gap: 20px; margin-top: 20px; font-size: 12px; color: var(--vf-ink-3); }
.vf-cal__legend span { display: inline-flex; align-items: center; gap: 6px; }

/* === CHECKOUT === */
.vf-checkout { padding: 120px 0 80px; background: var(--vf-canvas); min-height: 100vh; }
.vf-checkout .vf-container { max-width: var(--vf-container); margin-inline: auto; padding: 0 var(--vf-gutter); }
.vf-checkout__head { margin: 24px 0 48px; max-width: 50ch; }
.vf-checkout__grid { display: grid; grid-template-columns: 1.1fr 420px; gap: 56px; align-items: start; }
@media (max-width: 960px) {
  .vf-checkout__grid { grid-template-columns: 1fr; }
  .vf-checkout__summary { order: -1; }
}

.vf-checkout__summary { position: sticky; top: 100px; display: flex; flex-direction: column; gap: 16px; }
.vf-checkout__summaryCard {
  display: flex; gap: 16px; padding: 18px;
  background: var(--vf-canvas-2);
  border-radius: var(--vf-r-lg);
  box-shadow: inset 0 0 0 1px var(--vf-line);
}
.vf-checkout__photo { width: 120px; aspect-ratio: 1; border-radius: var(--vf-r-md); flex-shrink: 0; }
.vf-checkout__summaryBody { display: flex; flex-direction: column; gap: 2px; flex: 1; }
.vf-checkout__info { display: flex; flex-direction: column; gap: 6px; font-size: 13px; color: var(--vf-ink-3); margin-top: 4px; }
.vf-checkout__info span { display: inline-flex; align-items: center; gap: 6px; }
.vf-checkout__break {
  padding: 20px;
  background: var(--vf-canvas-2);
  border-radius: var(--vf-r-lg);
  box-shadow: inset 0 0 0 1px var(--vf-line);
  display: flex; flex-direction: column; gap: 10px;
}
.vf-checkout__line { display: flex; justify-content: space-between; font-size: 14px; color: var(--vf-ink-2); }
.vf-checkout__line--off { color: var(--vf-ok); }
.vf-checkout__total { display: flex; justify-content: space-between; align-items: baseline; padding-top: 12px; border-top: 1px solid var(--vf-line); font-weight: 500; }
.vf-checkout__tax { font-size: 12px; color: var(--vf-ink-3); margin: 4px 0 0; }
.vf-checkout__trustBox {
  padding: 18px; border-radius: var(--vf-r-md);
  display: flex; flex-direction: column; gap: 10px;
}
.vf-checkout__trustBox > div { display: flex; align-items: center; gap: 10px; font-size: 13px; color: var(--vf-ink-2); }
.vf-checkout__trustBox svg { color: var(--vf-moss); flex-shrink: 0; }

/* Form */
.vf-checkout__form {
  padding: 40px;
  background: var(--vf-canvas-2);
  border-radius: var(--vf-r-lg);
  box-shadow: var(--vf-shadow-card);
}
.vf-checkout__formTitle { font-family: var(--vf-font-display); font-size: 28px; font-weight: 500; letter-spacing: -0.01em; margin: 0 0 24px; }
.vf-field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 18px; }
.vf-field label { font-size: 13px; font-weight: 500; color: var(--vf-ink-2); }
.vf-field input, .vf-field textarea, .vf-field select {
  padding: 14px 16px;
  border-radius: var(--vf-r-md);
  box-shadow: inset 0 0 0 1px var(--vf-line);
  background: var(--vf-canvas);
  font-size: 16px;
  border: 0;
  transition: box-shadow .15s ease;
  width: 100%;
  font-family: inherit;
}
.vf-field input:focus, .vf-field textarea:focus, .vf-field select:focus { outline: 0; box-shadow: inset 0 0 0 2px var(--vf-ink); }
.vf-field__help { font-size: 12px; color: var(--vf-ink-3); }

.vf-couponToggle {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 14px; color: var(--vf-ink-2); padding: 8px 0;
  margin-bottom: 16px;
  background: transparent;
}
.vf-couponToggle:hover { color: var(--vf-ink); }
.vf-coupon { display: flex; gap: 8px; margin-bottom: 20px; align-items: center; flex-wrap: wrap; }
.vf-coupon input {
  flex: 1; padding: 12px 14px; border-radius: var(--vf-r-md);
  box-shadow: inset 0 0 0 1px var(--vf-line); background: var(--vf-canvas);
  border: 0;
  font-size: 15px;
}
.vf-coupon__ok { font-size: 13px; color: var(--vf-ok); display: inline-flex; align-items: center; gap: 4px; }
.vf-coupon__err { font-size: 13px; color: var(--vf-err); }

.vf-checkbox { display: flex; gap: 10px; align-items: flex-start; font-size: 14px; color: var(--vf-ink-2); margin: 24px 0; cursor: pointer; }
.vf-checkbox input { margin-top: 3px; }
.vf-checkbox a { text-decoration: underline; }

.vf-checkout__pay { width: 100%; justify-content: center; }
.vf-checkout__pay:disabled { opacity: .4; cursor: not-allowed; transform: none; }
.vf-checkout__microcopy { font-size: 12px; text-align: center; color: var(--vf-ink-3); margin: 10px 0 0; }

.vf-checkout__help {
  margin-top: 32px; padding: 18px;
  border-radius: var(--vf-r-md);
  display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap;
}
.vf-checkout__help strong { display: block; font-size: 15px; }
.vf-checkout__help p { font-size: 13px; color: var(--vf-ink-3); margin: 2px 0 0; }

/* === CONFIRMATION === */
.vf-confirm { padding: 140px 0 120px; min-height: 100vh; background: var(--vf-canvas); display: flex; align-items: center; }
.vf-confirm__inner {
  max-width: 780px;
  text-align: left;
  margin-inline: auto;
  padding: 0 var(--vf-gutter);
  width: 100%;
}
.vf-confirm__check {
  width: 84px; height: 84px; border-radius: 999px;
  background: var(--vf-ok-soft); color: var(--vf-ok);
  display: inline-flex; align-items: center; justify-content: center;
  margin-bottom: 32px;
}
.vf-confirm h1 {
  font-family: var(--vf-font-display);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.02;
  font-size: clamp(40px, 5.5vw, 72px);
  margin: 12px 0 20px;
  max-width: 22ch;
}
.vf-confirm h1 em { font-style: italic; color: var(--vf-ink-3); }
.vf-confirm__steps { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 20px; margin: 48px 0; }
.vf-confirm__step { padding: 24px; background: var(--vf-canvas-2); border-radius: var(--vf-r-md); box-shadow: inset 0 0 0 1px var(--vf-line); }
.vf-confirm__step .vf-mono { font-size: 14px; color: var(--vf-ink-3); }
.vf-confirm__step h4 { font-family: var(--vf-font-display); font-size: 20px; font-weight: 500; margin: 10px 0 6px; letter-spacing: -0.01em; }
.vf-confirm__step p { font-size: 14px; color: var(--vf-ink-3); margin: 0; line-height: 1.5; }
@media (max-width: 820px) { .vf-confirm__steps { grid-template-columns: 1fr; } }

/* === BLOG (listing + post) === */
.vf-blogPage { padding: 140px 0 100px; }
.vf-blogPage .vf-container { max-width: var(--vf-container); margin-inline: auto; padding: 0 var(--vf-gutter); }
.vf-blogPage__head { margin-bottom: 56px; max-width: 58ch; }
.vf-blogPage__head h1 {
  font-family: var(--vf-font-display);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.02;
  font-size: clamp(44px, 6vw, 80px);
  margin: 12px 0 16px;
}
.vf-blogPage__head p { font-size: 18px; color: var(--vf-ink-3); }
.vf-blogPage__toolbar { display: flex; gap: 12px; margin-bottom: 48px; flex-wrap: wrap; align-items: flex-end; }
.vf-blogPage__toolbar .vf-field input, .vf-blogPage__toolbar .vf-field select { padding: 12px 14px; font-size: 15px; }
.vf-blogPage__toolbar .vf-btn { align-self: center; height: 46px; }

.vf-blogList { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
@media (max-width: 900px) { .vf-blogList { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .vf-blogList { grid-template-columns: 1fr; } }

.vf-postPage { padding: 140px 0 80px; }
.vf-postPage__inner {
  max-width: 780px; margin-inline: auto;
  padding: 0 var(--vf-gutter);
}
.vf-postPage h1 {
  font-family: var(--vf-font-display);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.04;
  font-size: clamp(36px, 5vw, 60px);
  margin: 16px 0 18px;
}
.vf-postPage__meta { display: flex; gap: 16px; font-size: 13px; color: var(--vf-ink-3); margin-bottom: 32px; }
.vf-postPage__hero { aspect-ratio: 16/9; border-radius: var(--vf-r-lg); overflow: hidden; margin-bottom: 40px; }
.vf-postPage__body { font-size: 17px; line-height: 1.7; color: var(--vf-ink-2); }
.vf-postPage__body h2 {
  font-family: var(--vf-font-display);
  font-size: clamp(26px, 3vw, 34px);
  font-weight: 500; letter-spacing: -0.01em;
  color: var(--vf-ink);
  margin: 40px 0 12px;
}
.vf-postPage__body h3 {
  font-family: var(--vf-font-display);
  font-size: 22px; font-weight: 500; letter-spacing: -0.01em;
  color: var(--vf-ink);
  margin: 28px 0 8px;
}
.vf-postPage__body p { margin: 0 0 18px; }
.vf-postPage__body a { text-decoration: underline; color: var(--vf-ink); }
.vf-postPage__body ul, .vf-postPage__body ol { padding-left: 22px; margin: 0 0 18px; }
.vf-postPage__body li { margin: 6px 0; }
.vf-postPage__body img { border-radius: var(--vf-r-md); margin: 24px 0; }
.vf-postPage__body blockquote {
  font-family: var(--vf-font-display); font-size: 22px; font-weight: 400; font-style: italic;
  line-height: 1.35; color: var(--vf-ink);
  border-left: 3px solid var(--vf-moss);
  padding: 8px 0 8px 20px; margin: 28px 0;
}

.vf-postPage__back {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 8px 14px; border-radius: 999px;
  font-size: 14px; color: var(--vf-ink-2);
  box-shadow: inset 0 0 0 1px var(--vf-line);
  margin-bottom: 24px;
}
.vf-postPage__back:hover { color: var(--vf-ink); box-shadow: inset 0 0 0 1px var(--vf-ink); }

/* === CHECKOUT (Aldea editorial additions) === */
.vf-ck__block { margin-bottom: 32px; padding-bottom: 28px; border-bottom: 1px solid var(--vf-line); }
.vf-ck__block:last-of-type { border-bottom: 0; margin-bottom: 16px; padding-bottom: 0; }
.vf-ck__block h2 { font-family: var(--vf-font-display); font-size: 22px; font-weight: 500; letter-spacing: -0.01em; margin: 0 0 14px; color: var(--vf-ink); display: flex; align-items: baseline; gap: 10px; }
.vf-ck__block h2 .vf-eyebrow { font-size: 11px; color: var(--vf-ink-3); }
.vf-ck__row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
@media (max-width: 560px) { .vf-ck__row { grid-template-columns: 1fr; } }
.vf-field textarea { min-height: 90px; resize: vertical; }
.vf-ck__campus {
  background: var(--vf-canvas);
  padding: 18px;
  border-radius: var(--vf-r-md);
  box-shadow: inset 0 0 0 1px var(--vf-line);
}
.vf-ck__campusRow { display: flex; justify-content: space-between; align-items: center; gap: 14px; }
.vf-ck__campusLabel { font-size: 14px; color: var(--vf-ink-2); font-weight: 500; }
.vf-ck__kids { display: flex; flex-direction: column; gap: 14px; margin-top: 16px; }
.vf-ck__kids:empty { margin: 0; }
.vf-ck__kidRow { padding: 14px; background: var(--vf-canvas-2); border-radius: var(--vf-r-sm); box-shadow: inset 0 0 0 1px var(--vf-line); }
.vf-ck__kidHead { font-size: 13px; color: var(--vf-ink-2); margin-bottom: 10px; }
.vf-ck__coupon { display: flex; gap: 8px; }
.vf-ck__coupon input {
  flex: 1; padding: 12px 14px; border-radius: var(--vf-r-md);
  box-shadow: inset 0 0 0 1px var(--vf-line);
  background: var(--vf-canvas); border: 0; font-size: 15px; font-family: inherit;
  text-transform: uppercase; letter-spacing: 0.05em;
}
.vf-ck__coupon input:focus { outline: 0; box-shadow: inset 0 0 0 2px var(--vf-ink); }
.vf-ck__couponMsg { margin: 10px 0 0; font-size: 13px; color: var(--vf-ink-3); }
.vf-ck__couponMsg.is-ok { color: var(--vf-ok, #2f7d3a); }
.vf-ck__couponMsg.is-bad { color: var(--vf-err, #b84a3a); }
.vf-ck__terms { display: flex; gap: 10px; align-items: flex-start; font-size: 14px; color: var(--vf-ink-2); margin: 24px 0; cursor: pointer; line-height: 1.5; }
.vf-ck__terms input { margin-top: 3px; }
.vf-ck__terms a { text-decoration: underline; color: var(--vf-ink); }
.vf-ck__error { margin-top: 14px; font-size: 14px; color: var(--vf-err, #b84a3a); padding: 12px 14px; border-radius: var(--vf-r-md); background: rgba(184, 74, 58, 0.08); }

.vf-ck__sum {
  padding: 24px;
  background: var(--vf-canvas-2);
  border-radius: var(--vf-r-lg);
  box-shadow: inset 0 0 0 1px var(--vf-line);
  display: flex; flex-direction: column; gap: 20px;
}
.vf-ck__sumHead { display: flex; gap: 14px; align-items: flex-start; }
.vf-ck__sumPhoto { width: 88px; aspect-ratio: 1; border-radius: var(--vf-r-md); flex-shrink: 0; }
.vf-ck__sumHead h3 { font-family: var(--vf-font-display); font-size: 18px; font-weight: 500; letter-spacing: -0.01em; margin: 6px 0 4px; }
.vf-ck__sumMeta { font-size: 13px; color: var(--vf-ink-3); display: inline-flex; align-items: center; gap: 6px; }
.vf-ck__sumFields { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; padding: 14px 0; border-top: 1px solid var(--vf-line); border-bottom: 1px solid var(--vf-line); }
.vf-ck__sumField { display: flex; flex-direction: column; gap: 2px; }
.vf-ck__sumField strong { font-size: 15px; }
.vf-ck__sumBreak { display: flex; flex-direction: column; gap: 8px; }

/* === CONFIRMATION (Aldea editorial additions) === */
.vf-confirm__card {
  max-width: 780px; margin-inline: auto;
  padding: 0 var(--vf-gutter);
  text-align: center;
}
.vf-confirm__check--neutral { background: var(--vf-canvas-2); color: var(--vf-ink-2); box-shadow: inset 0 0 0 1px var(--vf-line); }
.vf-confirm__summary {
  margin: 40px auto 0;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
  padding: 20px; border-radius: var(--vf-r-lg);
  background: var(--vf-canvas-2);
  box-shadow: inset 0 0 0 1px var(--vf-line);
  text-align: left;
  max-width: 680px;
}
@media (max-width: 640px) { .vf-confirm__summary { grid-template-columns: 1fr 1fr; } }
.vf-confirm__field { display: flex; flex-direction: column; gap: 4px; }
.vf-confirm__field strong { font-size: 15px; color: var(--vf-ink); }
.vf-confirm__steps { margin-top: 56px; text-align: left; max-width: 680px; margin-inline: auto; display: block; grid-template-columns: none; gap: 0; }
.vf-confirm__steps h2 { font-family: var(--vf-font-display); font-size: 22px; font-weight: 500; letter-spacing: -0.01em; margin: 0 0 18px; }
.vf-confirm__list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 18px; counter-reset: step; }
.vf-confirm__list li {
  counter-increment: step;
  padding: 16px 18px 16px 56px;
  position: relative;
  background: var(--vf-canvas-2);
  border-radius: var(--vf-r-md);
  box-shadow: inset 0 0 0 1px var(--vf-line);
}
.vf-confirm__list li::before {
  content: counter(step);
  position: absolute; left: 18px; top: 18px;
  width: 26px; height: 26px; border-radius: 999px;
  background: var(--vf-ink); color: var(--vf-canvas);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--vf-font-mono); font-size: 12px;
}
.vf-confirm__list li strong { display: block; font-size: 15px; margin-bottom: 4px; color: var(--vf-ink); }
.vf-confirm__list li p { font-size: 14px; color: var(--vf-ink-3); margin: 0; line-height: 1.5; }
.vf-confirm__cta { margin-top: 40px; display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

