/* Visit Fageca — component styles (complement to tokens.css) */

/* ============= NAV ============= */
.vf-nav {
  position: fixed; inset: 0 0 auto 0;
  z-index: 40;
  background: rgba(241, 241, 239, 0.78);
  backdrop-filter: saturate(1.1) blur(8px);
  -webkit-backdrop-filter: saturate(1.1) blur(8px);
  border-bottom: 1px solid transparent;
  padding: 14px var(--vf-gutter);
  transition: background .25s ease, backdrop-filter .25s ease, border-color .25s ease;
}
.vf-nav.is-scrolled {
  background: rgba(241, 241, 239, 0.92);
  backdrop-filter: saturate(1.2) blur(14px);
  -webkit-backdrop-filter: saturate(1.2) blur(14px);
  border-bottom: 1px solid var(--vf-line);
}
.vf-nav__inner {
  max-width: var(--vf-container);
  margin-inline: auto;
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px;
}
.vf-logo {
  display: flex; align-items: baseline; gap: 2px;
  font-family: var(--vf-font-display);
  font-weight: 500;
  font-size: 24px;
  letter-spacing: -0.03em;
  color: var(--vf-ink);
}
.vf-logo__mark { color: var(--vf-ink-3); font-weight: 400; }
.vf-logo__wordmark { color: inherit; }
.vf-logo--inv { color: var(--vf-canvas); }
.vf-logo--inv .vf-logo__mark { color: var(--vf-stone); }

.vf-nav__links {
  display: flex; align-items: center; gap: 2px;
}
.vf-nav__link {
  padding: 10px 14px;
  border-radius: 999px;
  font-size: 14px; font-weight: 500;
  color: var(--vf-ink-2);
  position: relative;
  transition: color .15s ease, background .15s ease;
}
.vf-nav__link:hover { color: var(--vf-ink); background: rgba(20,23,26,.04); }
.vf-nav__link.is-active { color: var(--vf-ink); }
.vf-nav__link.is-active::after {
  content: ""; position: absolute; left: 14px; right: 14px; bottom: 4px;
  height: 1px; background: currentColor;
}
.vf-nav__link--campus { padding-left: 22px; }
.vf-nav__dot {
  position: absolute; left: 10px; top: 50%; width: 6px; height: 6px;
  background: var(--vf-ember); border-radius: 50%; transform: translateY(-50%);
}
.vf-nav__actions { display: flex; align-items: center; gap: 10px; }
.vf-nav__lang {
  padding: 8px 12px; border-radius: 999px;
  font-size: 13px; font-weight: 500;
  color: var(--vf-ink-2);
  box-shadow: inset 0 0 0 1px var(--vf-line);
}
.vf-nav__lang span { color: var(--vf-ink-3); margin-left: 4px; }
.vf-nav__menu { display: none; padding: 8px; border-radius: 999px; color: var(--vf-ink); }
.vf-nav__menu:hover { background: rgba(20,23,26,.05); }
.vf-nav__sheet {
  display: none;
  margin-top: 12px; padding: 16px;
  background: var(--vf-canvas-2); border-radius: var(--vf-r-lg);
  box-shadow: var(--vf-shadow-card);
  flex-direction: column; gap: 4px;
}
.vf-nav__sheetLink {
  text-align: left; padding: 12px 14px; border-radius: 12px; font-size: 17px;
  display: block; color: var(--vf-ink);
}
.vf-nav__sheetLink:hover { background: var(--vf-canvas); }

@media (max-width: 960px) {
  .vf-nav__links, .vf-nav__cita, .vf-nav__lang { display: none; }
  .vf-nav__menu { display: inline-flex; }
  .vf-nav.is-open .vf-nav__sheet { display: flex; }
}

/* ============= STARS / DOTS ============= */
.vf-stars { display: inline-flex; gap: 2px; color: var(--vf-ember); }
.vf-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: currentColor; display: inline-block;
}
.vf-dot--ok { color: var(--vf-ok); }
.vf-dot--warn { color: var(--vf-warn); }
.vf-dot--err { color: var(--vf-err); }

/* ============= CHIPS extensions ============= */
.vf-chip--sm { font-size: 12px; padding: 4px 10px; }
.vf-chip--ember { background: var(--vf-ember-soft); color: var(--vf-ember); box-shadow: none; }

/* ============= STEPPER ============= */
.vf-stepper {
  display: inline-flex; align-items: center; gap: 14px;
  padding: 6px;
  border-radius: 999px;
  background: var(--vf-canvas-2);
  box-shadow: inset 0 0 0 1px var(--vf-line);
}
.vf-stepper button {
  width: 30px; height: 30px; border-radius: 999px;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--vf-canvas); color: var(--vf-ink);
  transition: background .15s ease, transform .1s ease;
}
.vf-stepper button:hover:not(:disabled) { background: var(--vf-ink); color: var(--vf-cta-ink); }
.vf-stepper button:disabled { opacity: .35; cursor: not-allowed; }
.vf-stepper span { min-width: 16px; text-align: center; font-size: 15px; }

/* ============= PRICE ============= */
.vf-price { display: inline-flex; align-items: baseline; gap: 4px; }
.vf-price--lg .vf-mono { font-size: 28px; font-weight: 500; letter-spacing: -0.02em; color: var(--vf-ink); }
.vf-price--md .vf-mono { font-size: 18px; font-weight: 500; }
.vf-price--sm .vf-mono { font-size: 14px; }
.vf-price--off .vf-mono { color: var(--vf-ink-3); }
.vf-price__suffix { font-size: 13px; color: var(--vf-ink-3); }

/* ============= SECTION ============= */
.vf-section { padding: clamp(56px, 9vw, 120px) 0; }
.vf-section--deep { background: var(--vf-section-bg); }
.vf-section--dark { background: var(--vf-canvas-ink); color: var(--vf-ink-inv); }
.vf-section--dark .vf-eyebrow { color: var(--vf-stone); }

.vf-section__head { display: flex; justify-content: space-between; align-items: flex-end; gap: 40px; margin-bottom: 48px; }
.vf-section__head h2 { margin: 12px 0 0; font-size: clamp(32px, 4.5vw, 56px); max-width: 16ch; }
.vf-section__head p { max-width: 42ch; color: var(--vf-ink-3); }
@media (max-width: 720px) {
  .vf-section__head { flex-direction: column; align-items: flex-start; }
}

/* ============= FOOTER ============= */
.vf-footer {
  background: var(--vf-canvas-ink);
  color: var(--vf-ink-inv);
  padding-top: 80px;
}
.vf-footer__inner {
  max-width: var(--vf-container);
  margin-inline: auto;
  padding: 0 var(--vf-gutter);
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 64px;
  padding-bottom: 64px;
}
.vf-footer__brand .vf-logo { font-size: 28px; margin-bottom: 20px; }
.vf-footer__brand p { color: var(--vf-stone); max-width: 34ch; margin: 0 0 24px; line-height: 1.55; }
.vf-footer__col h4 {
  font-family: var(--vf-font-body);
  font-size: 12px; letter-spacing: .12em; text-transform: uppercase;
  color: var(--vf-stone); font-weight: 600;
  margin: 0 0 16px;
}
.vf-footer__col a { display: block; padding: 6px 0; color: var(--vf-ink-inv); opacity: .85; font-size: 15px; }
.vf-footer__col a:hover { opacity: 1; }
.vf-footer__legal {
  border-top: 1px solid rgba(245,241,232,.1);
  padding: 24px var(--vf-gutter);
  display: flex; justify-content: space-between; gap: 20px; flex-wrap: wrap;
  color: var(--vf-stone); font-size: 13px;
  max-width: var(--vf-container);
  margin-inline: auto;
}
.vf-footer__legal a { margin-left: 20px; color: var(--vf-stone); }
.vf-footer__legal a:hover { color: var(--vf-ink-inv); }
@media (max-width: 900px) {
  .vf-footer__inner { grid-template-columns: 1fr 1fr; gap: 40px; }
}
@media (max-width: 560px) {
  .vf-footer__inner { grid-template-columns: 1fr; }
}

/* ============= MODAL ============= */
/* Honor the HTML `hidden` attribute even when a selector sets display: */
[hidden] { display: none !important; }
.vf-modal {
  position: fixed; inset: 0; z-index: 100;
  background: rgba(20,23,26,.5);
  backdrop-filter: blur(8px);
  display: flex; align-items: center; justify-content: center;
  padding: 20px;
  animation: vf-fade .2s ease;
}
@keyframes vf-fade { from { opacity: 0; } to { opacity: 1; } }
.vf-modal__card {
  position: relative;
  max-width: 720px; width: 100%;
  background: var(--vf-canvas);
  border-radius: var(--vf-r-xl);
  padding: 40px;
  box-shadow: var(--vf-shadow-float);
  animation: vf-pop .3s cubic-bezier(.2, .9, .3, 1.1);
  max-height: 90vh; overflow: auto;
}
@keyframes vf-pop {
  from { transform: translateY(12px) scale(.98); opacity: 0; }
  to { transform: none; opacity: 1; }
}
.vf-modal__x {
  position: absolute; top: 18px; right: 18px;
  width: 36px; height: 36px; border-radius: 999px;
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--vf-ink); transition: background .15s ease;
  background: var(--vf-canvas-2);
  z-index: 2;
}
.vf-modal__x:hover { background: var(--vf-canvas-deep); }
.vf-modal__eyebrow { margin-bottom: 12px; }
.vf-modal__title {
  font-family: var(--vf-font-display);
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.05;
  margin: 0 0 12px;
}
.vf-modal__lede { color: var(--vf-ink-3); margin: 14px 0 24px; }
.vf-modal__slots { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.vf-modal__embed {
  position: relative;
  width: 100%;
  min-height: 640px;
  border-radius: var(--vf-r-md);
  overflow: hidden;
  margin-top: 8px;
  background: var(--vf-canvas-2);
}
.vf-modal__embed iframe {
  width: 100%;
  height: 100%;
  border: 0;
  min-height: 640px;
}
.vf-modal__orline {
  text-align: center; position: relative; margin: 24px 0 20px;
  color: var(--vf-ink-3); font-size: 12px;
}
.vf-modal__orline::before {
  content: ""; position: absolute; inset: 50% 0 auto 0; height: 1px;
  background: var(--vf-line); z-index: 0;
}
.vf-modal__orline span { position: relative; background: var(--vf-canvas); padding: 0 12px; }
.vf-modal__alt { display: flex; justify-content: center; gap: 24px; flex-wrap: wrap; }
.vf-modal__link { display: inline-flex; align-items: center; gap: 8px; color: var(--vf-ink-2); font-size: 14px; }
.vf-modal__link:hover { color: var(--vf-ink); }

/* ============= HERO ============= */
.vf-hero {
  position: relative;
  min-height: 100vh;
  padding-top: 110px;
  padding-bottom: 48px;
  overflow: hidden;
  background: var(--vf-canvas);
}
.vf-hero__bg {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(20,23,26,0) 0%, rgba(20,23,26,.15) 40%, rgba(20,23,26,.55) 100%),
    repeating-linear-gradient(38deg, #3A4037 0 80px, #434A3F 80px 160px, #4F564A 160px 240px, #3A4037 240px 320px);
  filter: saturate(0.85) brightness(0.75);
}
.vf-hero__bg--photo {
  background: #14171A;
  filter: none;
}
.vf-hero__bg--photo img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: .86;
}
.vf-hero__bg--photo::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(20,23,26,.28) 0%, rgba(20,23,26,.35) 40%, rgba(20,23,26,.7) 100%);
  z-index: 1;
}
.vf-hero__bg::after {
  content: "";
  position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 18% 70%, rgba(255,255,255,.08) 0, transparent 40%),
    radial-gradient(circle at 82% 30%, rgba(255,255,255,.06) 0, transparent 35%);
  mix-blend-mode: overlay;
}
.vf-hero__grain {
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='160' height='160'><filter id='n'><feTurbulence baseFrequency='.9' numOctaves='2' seed='3'/><feColorMatrix values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 .5 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)' opacity='.5'/></svg>");
  opacity: .2; mix-blend-mode: overlay; pointer-events: none;
  z-index: 2;
}
.vf-hero__inner {
  position: relative; z-index: 3;
  max-width: var(--vf-container);
  margin-inline: auto;
  padding: 0 var(--vf-gutter);
  display: grid;
  grid-template-columns: 1.3fr .9fr;
  gap: 64px;
  align-items: end;
  min-height: calc(100vh - 160px);
}
.vf-hero__content { color: var(--vf-canvas); }
.vf-hero__eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 14px; background: rgba(245,241,232,.15);
  border-radius: 999px;
  font-size: 12px; letter-spacing: .08em; text-transform: uppercase;
  color: var(--vf-canvas);
  backdrop-filter: blur(8px);
  margin-bottom: 32px;
}
.vf-hero__eyebrow span { width: 6px; height: 6px; border-radius: 50%; background: var(--vf-ember); }
.vf-hero__title {
  font-family: var(--vf-font-display);
  font-size: clamp(48px, 7.5vw, 104px);
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: .96;
  margin: 0 0 28px;
  text-wrap: balance;
  font-variation-settings: "opsz" 144, "SOFT" 50;
}
.vf-hero__title em { font-style: italic; color: var(--vf-stone); font-weight: 300; }
.vf-hero__lede {
  font-size: clamp(17px, 1.4vw, 20px);
  color: rgba(245,241,232,.85);
  max-width: 46ch;
  margin: 0 0 40px;
  line-height: 1.5;
}
.vf-hero__badges { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 32px; }
.vf-hero__badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 14px; border-radius: 999px;
  background: rgba(245,241,232,.12);
  color: var(--vf-canvas);
  font-size: 13px;
  backdrop-filter: blur(8px);
}

.vf-hero__aside { display: flex; flex-direction: column; align-self: stretch; justify-content: flex-end; }
.vf-hero__sideLabel {
  font-family: var(--vf-font-mono); font-size: 11px; letter-spacing: .12em; text-transform: uppercase;
  color: rgba(245,241,232,.6);
  margin-bottom: 16px;
}

/* Hero search card */
.vf-searchCard {
  background: var(--vf-canvas);
  border-radius: var(--vf-r-xl);
  padding: 28px;
  box-shadow: var(--vf-shadow-float);
  color: var(--vf-ink);
}
.vf-searchCard__eyebrow { margin-bottom: 12px; }
.vf-searchCard__title {
  font-family: var(--vf-font-display);
  font-size: 28px; font-weight: 500; letter-spacing: -0.02em;
  margin: 0 0 20px;
}
.vf-searchCard__fields { display: grid; gap: 10px; }
.vf-searchField {
  display: flex; align-items: center; gap: 12px;
  padding: 14px 16px;
  border-radius: var(--vf-r-md);
  background: var(--vf-canvas-2);
  box-shadow: inset 0 0 0 1px var(--vf-line);
  text-align: left;
  transition: box-shadow .15s ease;
  cursor: pointer;
  width: 100%;
}
.vf-searchField:hover { box-shadow: inset 0 0 0 1px var(--vf-ink); }
.vf-searchField__icon { color: var(--vf-ink-3); }
.vf-searchField__label {
  display: block; font-size: 11px; letter-spacing: .08em; text-transform: uppercase; color: var(--vf-ink-3);
  margin-bottom: 2px;
}
.vf-searchField__value { font-size: 15px; color: var(--vf-ink); }
.vf-searchCard__submit { width: 100%; justify-content: center; margin-top: 8px; }

@media (max-width: 900px) {
  .vf-hero__inner { grid-template-columns: 1fr; gap: 40px; }
  .vf-hero { min-height: auto; padding-top: 120px; }
}

/* ============= TRUST STRIP ============= */
.vf-trust {
  padding: 28px 0;
  border-bottom: 1px solid var(--vf-line);
}
.vf-trust__row {
  display: flex; justify-content: space-between; gap: 32px; flex-wrap: wrap;
}
.vf-trust__item { display: flex; align-items: center; gap: 10px; font-size: 14px; color: var(--vf-ink-2); }
.vf-trust__item strong { color: var(--vf-ink); font-weight: 500; }
.vf-trust__sep { width: 1px; background: var(--vf-line); }

/* ============= PACKAGES ============= */
.vf-packages__head {
  display: flex; justify-content: space-between; align-items: flex-end; gap: 24px;
  margin-bottom: 32px; flex-wrap: wrap;
}
.vf-packages__filters { display: flex; gap: 6px; padding: 4px; background: var(--vf-section-bg); border-radius: 999px; box-shadow: inset 0 0 0 1px var(--vf-line); }
.vf-packages__filter {
  padding: 8px 16px; border-radius: 999px; font-size: 14px; font-weight: 500; color: var(--vf-ink-2);
}
.vf-packages__filter.is-active { background: var(--vf-ink); color: var(--vf-cta-ink); }

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

.vf-pkg {
  background: var(--vf-canvas-2);
  border-radius: var(--vf-r-lg);
  padding: 20px;
  box-shadow: inset 0 0 0 1px var(--vf-line);
  transition: box-shadow .2s ease, transform .15s ease;
  text-align: left;
  cursor: pointer;
  position: relative;
  display: flex; flex-direction: column; gap: 12px;
}
.vf-pkg:hover { box-shadow: inset 0 0 0 1px var(--vf-ink), var(--vf-shadow-card); transform: translateY(-2px); }
.vf-pkg.is-full { opacity: .55; cursor: not-allowed; }
.vf-pkg.is-full:hover { transform: none; box-shadow: inset 0 0 0 1px var(--vf-line); }
.vf-pkg.is-selected { box-shadow: inset 0 0 0 2px var(--vf-ink), var(--vf-shadow-card); }
.vf-pkg__month { font-family: var(--vf-font-mono); font-size: 11px; letter-spacing: .08em; text-transform: uppercase; color: var(--vf-ink-3); }
.vf-pkg__dates { font-family: var(--vf-font-display); font-size: 22px; font-weight: 500; letter-spacing: -0.01em; }
.vf-pkg__meta { display: flex; justify-content: space-between; align-items: center; gap: 10px; }
.vf-pkg__from { font-size: 13px; color: var(--vf-ink-3); }
.vf-pkg__chips { display: flex; gap: 6px; flex-wrap: wrap; }

/* ============= BENTO GRID ============= */
.vf-bento {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  grid-template-rows: 320px 240px;
  gap: 14px;
}
.vf-bento__item {
  border-radius: var(--vf-r-lg);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  transition: transform .2s ease;
  background: var(--vf-canvas-2);
  display: flex; flex-direction: column;
}
.vf-bento__item:hover { transform: translateY(-3px); }
.vf-bento__item--lg { grid-row: 1 / 3; }
.vf-bento__photo { flex: 1; position: relative; min-height: 0; }
.vf-bento__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(20,23,26,.7) 100%);
}
.vf-bento__info {
  position: absolute; inset: auto 0 0 0;
  padding: 18px;
  color: var(--vf-canvas);
  display: flex; align-items: flex-end; justify-content: space-between; gap: 12px;
  flex-wrap: wrap;
}
.vf-bento__info > div { min-width: 0; flex: 1 1 60%; }
.vf-bento__info h3 {
  font-family: var(--vf-font-display);
  font-size: 22px; font-weight: 500; letter-spacing: -0.02em;
  margin: 0 0 4px;
  color: var(--vf-canvas);
}
.vf-bento__item--lg .vf-bento__info h3 { font-size: 34px; }
.vf-bento__item--lg .vf-bento__price { font-size: 13px; }
.vf-bento__info p { margin: 0; font-size: 12.5px; opacity: .85; max-width: 40ch; line-height: 1.35; }
.vf-bento__price {
  font-family: var(--vf-font-mono); font-size: 11.5px;
  background: rgba(245,241,232,.18); backdrop-filter: blur(6px);
  flex-shrink: 0;
  align-self: flex-end;
  padding: 6px 12px; border-radius: 999px;
  white-space: nowrap;
  color: var(--vf-canvas);
}
.vf-bento__chip {
  position: absolute; top: 16px; left: 16px;
  z-index: 2;
}
@media (max-width: 900px) {
  .vf-bento {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 280px 220px 220px;
  }
  .vf-bento__item--lg { grid-row: 1 / 2; grid-column: 1 / 3; }
}
@media (max-width: 560px) {
  .vf-bento { grid-template-columns: 1fr; grid-template-rows: repeat(5, 220px); }
  .vf-bento__item--lg { grid-column: 1 / 2; grid-row: auto; }
}

/* ============= ALDEA (pueblo) SECTION ============= */
.vf-aldea {
  position: relative;
}
.vf-aldea__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.vf-aldea__text h2 { font-size: clamp(40px, 5.5vw, 72px); margin: 12px 0 24px; }
.vf-aldea__text p { color: var(--vf-ink-3); font-size: 18px; line-height: 1.55; max-width: 46ch; }
.vf-aldea__pillars { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 32px; }
.vf-aldea__mosaic {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.vf-aldea__mosaic .vf-ph { border-radius: var(--vf-r-lg); aspect-ratio: 4/5; }
.vf-aldea__mosaic .vf-ph:nth-child(1) { grid-row: 1 / 3; aspect-ratio: 4/9; }
.vf-aldea__mosaic .vf-ph:nth-child(2) { aspect-ratio: 1; }
.vf-aldea__mosaic .vf-ph:nth-child(3) { aspect-ratio: 1; }
@media (max-width: 900px) {
  .vf-aldea__grid { grid-template-columns: 1fr; gap: 40px; }
  .vf-aldea__pillars { grid-template-columns: 1fr; }
}

/* ============= CAMPUS SECTION ============= */
.vf-campus {
  position: relative;
}
.vf-campus__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.vf-campus__text h2 { font-size: clamp(40px, 5.5vw, 72px); margin: 12px 0 24px; }
.vf-campus__text p { color: var(--vf-ink-3); font-size: 18px; line-height: 1.55; max-width: 46ch; }
.vf-campus__pillars { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 32px; }
.vf-pillar {
  padding: 20px;
  border-radius: var(--vf-r-md);
  background: var(--vf-canvas-2);
  box-shadow: inset 0 0 0 1px var(--vf-line);
}
.vf-pillar__icon {
  width: 36px; height: 36px; border-radius: 10px;
  background: var(--vf-section-bg); color: var(--vf-moss);
  display: inline-flex; align-items: center; justify-content: center;
  margin-bottom: 14px;
}
.vf-pillar h4 { font-family: var(--vf-font-display); font-size: 20px; font-weight: 500; letter-spacing: -0.01em; margin: 0 0 6px; }
.vf-pillar p { font-size: 14px; color: var(--vf-ink-3); margin: 0; line-height: 1.5; }

.vf-campus__mosaic {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.vf-campus__mosaic .vf-ph { border-radius: var(--vf-r-lg); aspect-ratio: 4/5; }
.vf-campus__mosaic .vf-ph:nth-child(1) { grid-row: 1 / 3; aspect-ratio: 4/9; }
.vf-campus__mosaic .vf-ph:nth-child(2) { aspect-ratio: 1; }
.vf-campus__mosaic .vf-ph:nth-child(3) { aspect-ratio: 1; }

@media (max-width: 900px) {
  .vf-campus__grid { grid-template-columns: 1fr; gap: 40px; }
  .vf-campus__pillars { grid-template-columns: 1fr; }
}

/* ============= WEEK TIMELINE (if used) ============= */
.vf-week {
  position: relative;
}
.vf-week__track {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 0;
  margin-top: 24px;
  border-top: 1px solid var(--vf-line);
}
.vf-week__day {
  padding: 28px 20px;
  border-right: 1px solid var(--vf-line);
  min-height: 220px;
  display: flex; flex-direction: column; gap: 8px;
}
.vf-week__day:last-child { border-right: 0; }
.vf-week__day--accent { background: var(--vf-section-bg); }
.vf-week__dayLabel { font-family: var(--vf-font-mono); font-size: 11px; letter-spacing: .12em; text-transform: uppercase; color: var(--vf-ink-3); }
.vf-week__dayTitle { font-family: var(--vf-font-display); font-size: 22px; font-weight: 500; letter-spacing: -0.01em; margin: 0; }
.vf-week__dayDesc { font-size: 13px; color: var(--vf-ink-3); line-height: 1.5; margin-top: auto; }
@media (max-width: 960px) {
  .vf-week__track { grid-template-columns: 1fr; border-top: 0; }
  .vf-week__day { border-right: 0; border-bottom: 1px solid var(--vf-line); min-height: auto; padding: 24px 0; }
}

/* ============= REVIEWS ============= */
.vf-reviews__grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
}
.vf-review {
  padding: 28px;
  border-radius: var(--vf-r-lg);
  background: var(--vf-canvas-2);
  box-shadow: inset 0 0 0 1px var(--vf-line);
  display: flex; flex-direction: column; gap: 18px;
}
.vf-review__quote {
  font-family: var(--vf-font-display);
  font-size: 22px; font-weight: 400; line-height: 1.25; letter-spacing: -0.015em;
  margin: 0;
  color: var(--vf-ink);
}
.vf-review__author { font-size: 13px; color: var(--vf-ink-3); margin-top: auto; }
.vf-review__author strong { color: var(--vf-ink); font-weight: 500; }

@media (max-width: 960px) { .vf-reviews__grid { grid-template-columns: 1fr; } }

/* ============= BLOG PREVIEW ============= */
.vf-blog__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.vf-post {
  display: flex; flex-direction: column; gap: 14px; cursor: pointer;
  padding: 24px; border-radius: var(--vf-r-lg);
  background: var(--vf-canvas-2);
  transition: transform .15s ease;
  color: var(--vf-ink);
}
.vf-post:hover { transform: translateY(-3px); }
.vf-post__cat { font-family: var(--vf-font-mono); font-size: 11px; letter-spacing: .08em; text-transform: uppercase; color: var(--vf-ink-3); }
.vf-post h3 { font-family: var(--vf-font-display); font-size: 24px; font-weight: 500; letter-spacing: -0.015em; margin: 0; line-height: 1.2; }
.vf-post p { font-size: 14px; color: var(--vf-ink-3); margin: 0; }
.vf-post__foot { display: flex; justify-content: space-between; align-items: center; font-size: 13px; color: var(--vf-ink-3); margin-top: auto; }
@media (max-width: 900px) { .vf-blog__grid { grid-template-columns: 1fr; } }

/* ============= CITA BANNER ============= */
.vf-cita {
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.vf-cita__inner {
  max-width: var(--vf-container);
  margin-inline: auto;
  padding: 0 var(--vf-gutter);
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1.4fr 1fr; gap: 60px; align-items: center;
}
.vf-cita__eyebrow { margin-bottom: 16px; }
.vf-cita h2 { font-size: clamp(36px, 5vw, 60px); margin: 0 0 20px; }
.vf-cita p { max-width: 46ch; font-size: 17px; margin: 0 0 32px; }
.vf-cita__ctas { display: flex; gap: 12px; flex-wrap: wrap; }
.vf-cita__visual {
  padding: 32px;
  border-radius: var(--vf-r-lg);
  backdrop-filter: blur(8px);
}
.vf-cita__visual h4 { font-family: var(--vf-font-mono); font-size: 11px; letter-spacing: .12em; text-transform: uppercase; margin: 0 0 16px; }
.vf-cita__slot {
  display: flex; justify-content: space-between; align-items: center;
  padding: 14px 16px;
  border-bottom: 1px solid;
  font-size: 15px;
}
.vf-cita__slot:last-child { border-bottom: 0; }
.vf-cita__slot button {
  padding: 6px 14px; border-radius: 999px;
  background: var(--vf-ink); color: var(--vf-cta-ink);
  font-size: 13px; font-weight: 500;
}
@media (max-width: 900px) { .vf-cita__inner { grid-template-columns: 1fr; } }
