:root {
  --vbt-bg: #fdfaf4;
  --vbt-surface: #ffffff;
  --vbt-ink: #221811;
  --vbt-muted: #5d534a;
  --vbt-pine: #2a583c;
  --vbt-pine-deep: #12301e;
  --vbt-gold: #db9e2e;
  --vbt-crimson: #972527;
  --vbt-parchment: #faf6ee;
  --vbt-secondary: #f1ebde;
  --vbt-border: #ddd6cd;
  --vbt-shadow: 0 24px 60px rgba(34, 24, 17, 0.12);
  --vbt-shell: min(1180px, calc(100% - 40px));
}

html { scroll-behavior: smooth; }
body {
  margin: 0;
  overflow-x: hidden;
  color: var(--vbt-ink);
  background: var(--vbt-bg);
  font-family: Inter, system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.7;
}
body.vbt-menu-open { overflow: hidden; }
*, *::before, *::after { box-sizing: border-box; }
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; }
h1, h2, h3, h4, h5, h6 {
  margin: 0 0 0.65em;
  color: var(--vbt-ink);
  font-family: Fraunces, Georgia, serif;
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.025em;
}
h1 { font-size: clamp(2.75rem, 6vw, 5.8rem); }
h2 { font-size: clamp(2rem, 4vw, 3.7rem); }
h3 { font-size: clamp(1.3rem, 2vw, 1.75rem); }
p { margin: 0 0 1.15em; }
.vbt-main { min-height: 50vh; }
.vbt-shell { width: var(--vbt-shell); margin-inline: auto; }
.vbt-section { padding: clamp(72px, 9vw, 128px) 0; }
.vbt-section--parchment { background: var(--vbt-parchment); }
.vbt-section--pine { background: var(--vbt-pine-deep); color: #fdfaf4; }
.vbt-section--pine h2, .vbt-section--pine h3 { color: #fdfaf4; }
.vbt-section--utility { padding-top: 64px; }
.vbt-skip-link {
  position: fixed;
  z-index: 10000;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  transform: translateY(-150%);
  color: #fff;
  background: var(--vbt-pine-deep);
}
.vbt-skip-link:focus { transform: translateY(0); }
.screen-reader-text {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  clip: rect(1px, 1px, 1px, 1px) !important;
  white-space: nowrap !important;
}

.vbt-header {
  position: relative;
  z-index: 1000;
  width: 100%;
  border-bottom: 1px solid rgba(34, 24, 17, 0.1);
  background: rgba(253, 250, 244, 0.97);
  backdrop-filter: blur(16px);
}
.vbt-header__inner {
  display: flex;
  align-items: center;
  gap: 22px;
  width: min(1320px, calc(100% - 40px));
  min-height: 86px;
  margin-inline: auto;
}
.vbt-logo { display: block; width: 242px; flex: 0 0 242px; }
.vbt-logo img { width: 100%; }
.vbt-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(14px, 1.6vw, 26px);
  min-width: 0;
  margin-left: auto;
}
.vbt-nav__link {
  color: var(--vbt-ink);
  font-size: 0.85rem;
  font-weight: 700;
  line-height: 1.3;
  text-decoration: none;
}
.vbt-nav__link:hover, .vbt-nav__link:focus-visible { color: var(--vbt-crimson); }
.vbt-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 13px 22px;
  border: 1px solid var(--vbt-gold);
  border-radius: 3px;
  color: var(--vbt-pine-deep);
  background: var(--vbt-gold);
  font-size: 0.86rem;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: 0.03em;
  text-decoration: none;
  transition: transform 160ms ease, background-color 160ms ease, color 160ms ease;
}
.vbt-button:hover, .vbt-button:focus-visible { transform: translateY(-2px); background: var(--vbt-gold); color: #fff; }
.vbt-button--small { min-height: 42px; padding: 10px 17px; white-space: nowrap; }
.vbt-menu-toggle {
  display: none;
  align-items: center;
  gap: 9px;
  border: 0;
  color: var(--vbt-ink);
  background: transparent;
  font: inherit;
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}
.vbt-menu-toggle__bars, .vbt-menu-toggle__bars::before, .vbt-menu-toggle__bars::after {
  display: block;
  width: 24px;
  height: 2px;
  content: "";
  background: currentColor;
}
.vbt-menu-toggle__bars { position: relative; }
.vbt-menu-toggle__bars::before { position: absolute; top: -7px; }
.vbt-menu-toggle__bars::after { position: absolute; top: 7px; }
.vbt-mobile-menu {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  max-height: calc(100vh - 86px);
  overflow-y: auto;
  padding: 20px;
  border-top: 1px solid var(--vbt-border);
  background: var(--vbt-bg);
  box-shadow: var(--vbt-shadow);
}
.vbt-mobile-menu__link { display: block; padding: 12px 4px; border-bottom: 1px solid var(--vbt-border); font-weight: 700; text-decoration: none; }
.vbt-mobile-menu .vbt-button { width: 100%; margin-top: 20px; }

.vbt-hero {
  position: relative;
  display: flex;
  align-items: flex-end;
  min-height: clamp(620px, 82vh, 880px);
  overflow: hidden;
  color: #fff;
  background: var(--vbt-pine-deep);
}
.vbt-hero__image, .vbt-hero__shade { position: absolute; inset: 0; width: 100%; height: 100%; }
.vbt-hero__image { object-fit: cover; object-position: center 48%; }
.vbt-hero__shade { background: linear-gradient(90deg, rgba(13, 28, 18, 0.86) 0%, rgba(13, 28, 18, 0.53) 48%, rgba(13, 28, 18, 0.08) 80%); }
.vbt-hero__content { position: relative; z-index: 2; padding-top: 130px; padding-bottom: clamp(76px, 10vw, 130px); }
.vbt-hero h1 { max-width: 850px; margin-bottom: 24px; color: #fff; text-wrap: balance; }
.vbt-hero__lede { max-width: 680px; margin-bottom: 32px; color: rgba(255,255,255,.92); font-size: clamp(1.08rem, 2vw, 1.32rem); line-height: 1.6; }
.vbt-hero__actions { display: flex; align-items: center; gap: 26px; flex-wrap: wrap; }
.vbt-photo-credit { position: absolute; z-index: 2; right: 18px; bottom: 12px; margin: 0; color: rgba(255,255,255,.78); font-size: .72rem; }
.vbt-eyebrow { margin: 0 0 16px; color: var(--vbt-crimson); font-size: .72rem; font-weight: 900; letter-spacing: .18em; line-height: 1.3; text-transform: uppercase; }
.vbt-eyebrow--light { color: var(--vbt-parchment); }
.vbt-eyebrow--gold { color: var(--vbt-gold); }
.vbt-text-link { display: inline-flex; align-items: center; gap: 8px; color: var(--vbt-pine); font-weight: 800; text-decoration: none; }
.vbt-text-link:hover, .vbt-text-link:focus-visible { color: var(--vbt-crimson); }
.vbt-text-link--light { color: #fff; }

.vbt-intro__grid { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(280px, .75fr); gap: clamp(44px, 8vw, 120px); align-items: start; }
.vbt-intro h2 { max-width: 700px; }
.vbt-intro__copy { max-width: 620px; color: var(--vbt-muted); font-size: 1.08rem; }
.vbt-section-heading { display: flex; align-items: end; justify-content: space-between; gap: 50px; margin-bottom: 48px; }
.vbt-section-heading > p { max-width: 510px; margin-bottom: 6px; color: var(--vbt-muted); }
.vbt-section-heading--line { padding-bottom: 24px; border-bottom: 1px solid var(--vbt-border); }
.vbt-section-heading--light h2 { color: #fff; }
.vbt-section-heading--light > p { color: rgba(255,255,255,.72); }

.vbt-mosaic { display: grid; grid-template-columns: 1.25fr .75fr; grid-template-rows: repeat(2, 270px); gap: 16px; }
.vbt-mosaic figure { position: relative; margin: 0; overflow: hidden; background: var(--vbt-border); }
.vbt-mosaic__large { grid-row: 1 / 3; }
.vbt-mosaic img { width: 100%; height: 100%; object-fit: cover; transition: transform 500ms ease; }
.vbt-mosaic figure:hover img { transform: scale(1.025); }
.vbt-mosaic figcaption { position: absolute; right: 0; bottom: 0; left: 0; padding: 50px 18px 14px; color: #fff; background: linear-gradient(transparent, rgba(0,0,0,.72)); font-family: Fraunces, Georgia, serif; font-size: 1.15rem; font-weight: 700; }
.vbt-mosaic figcaption span { display: block; margin-top: 2px; font-family: Inter, sans-serif; font-size: .67rem; font-weight: 500; opacity: .8; }

.vbt-card-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 28px; }
.vbt-card { min-width: 0; overflow: hidden; border: 1px solid var(--vbt-border); background: var(--vbt-surface); box-shadow: 0 12px 36px rgba(34,24,17,.06); transition: transform 180ms ease, box-shadow 180ms ease; }
.vbt-card:hover { transform: translateY(-4px); box-shadow: 0 20px 48px rgba(34,24,17,.11); }
.vbt-card__image { display: block; overflow: hidden; aspect-ratio: 16 / 10; background: var(--vbt-border); }
.vbt-card__image img { width: 100%; height: 100%; object-fit: cover; transition: transform 400ms ease; }
.vbt-card:hover .vbt-card__image img { transform: scale(1.035); }
.vbt-card__body { padding: 26px; }
.vbt-card__title { margin-bottom: 14px; font-size: clamp(1.35rem, 2.1vw, 1.85rem); }
.vbt-card__title a { text-decoration: none; }
.vbt-card__body > p:not(.vbt-eyebrow) { color: var(--vbt-muted); font-size: .94rem; }
.vbt-card__meta { display: flex; justify-content: space-between; gap: 10px; padding-top: 15px; border-top: 1px solid var(--vbt-border); color: var(--vbt-muted); font-size: .74rem; font-weight: 700; }
.vbt-empty-state { padding: clamp(38px, 6vw, 72px); border: 1px solid var(--vbt-border); background: var(--vbt-parchment); text-align: center; }
.vbt-empty-state h2, .vbt-empty-state h3 { max-width: 680px; margin-inline: auto; }
.vbt-empty-state p { color: var(--vbt-muted); }

.vbt-tour-surface { color: var(--vbt-ink); }
.vbt-integration-note { display: flex; align-items: center; gap: 14px 24px; padding: 24px; border: 1px solid rgba(219,158,46,.44); color: #fdfaf4; background: rgba(255,255,255,.06); }
.vbt-integration-note strong { color: #fff; font-family: Fraunces, Georgia, serif; font-size: 1.25rem; }
.vbt-integration-note span { flex: 1; color: rgba(255,255,255,.72); }
.vbt-integration-note a { color: var(--vbt-gold); font-weight: 800; }
.vbt-article-sidebar .vbt-integration-note, .vbt-in-article-tours .vbt-integration-note, .vbt-archive-tours .vbt-integration-note, .vbt-page-content .vbt-integration-note {
  display: block;
  color: var(--vbt-ink);
  background: var(--vbt-parchment);
  border-color: var(--vbt-border);
}
.vbt-article-sidebar .vbt-integration-note strong, .vbt-in-article-tours .vbt-integration-note strong, .vbt-archive-tours .vbt-integration-note strong { display: block; margin-bottom: 8px; color: var(--vbt-ink); }
.vbt-article-sidebar .vbt-integration-note span, .vbt-in-article-tours .vbt-integration-note span, .vbt-archive-tours .vbt-integration-note span { display: block; margin-bottom: 10px; color: var(--vbt-muted); }

.vbt-category-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); border-top: 1px solid var(--vbt-border); border-left: 1px solid var(--vbt-border); }
.vbt-category-card { position: relative; min-height: 290px; padding: 34px; border-right: 1px solid var(--vbt-border); border-bottom: 1px solid var(--vbt-border); text-decoration: none; transition: background-color 180ms ease, color 180ms ease; }
.vbt-category-card:hover { color: #fff; background: var(--vbt-pine); }
.vbt-category-card:hover h3, .vbt-category-card:hover p, .vbt-category-card:hover .vbt-category-card__number { color: #fff; }
.vbt-category-card__number { color: var(--vbt-gold); font-size: .72rem; font-weight: 900; letter-spacing: .16em; }
.vbt-category-card h3 { margin-top: 42px; }
.vbt-category-card p { color: var(--vbt-muted); font-size: .9rem; }
.vbt-category-card__arrow { position: absolute; right: 30px; bottom: 25px; font-size: 1.4rem; }
.vbt-cta-band { padding: 62px 0; color: #fff; background: var(--vbt-crimson); }
.vbt-cta-band__inner { display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.vbt-cta-band h2 { margin-bottom: 0; color: #fff; }

.vbt-page-hero { position: relative; overflow: hidden; padding: clamp(90px, 11vw, 150px) 0; background: var(--vbt-parchment); }
.vbt-page-hero--compact { padding: clamp(70px, 8vw, 110px) 0; border-bottom: 1px solid var(--vbt-border); }
.vbt-page-hero--compact h1 { max-width: 900px; font-size: clamp(2.8rem, 6vw, 5rem); }
.vbt-page-hero--compact p:last-child { max-width: 680px; color: var(--vbt-muted); font-size: 1.1rem; }
.vbt-page-hero--guides { background: var(--vbt-secondary); }
.vbt-page-hero__split { display: grid; grid-template-columns: minmax(0, 1.2fr) minmax(300px, .6fr); align-items: end; gap: 70px; }
.vbt-page-hero__split > p { color: var(--vbt-muted); font-size: 1.12rem; }
.vbt-page-hero--image { min-height: 600px; display: flex; align-items: end; color: #fff; }
.vbt-page-hero--image > img, .vbt-page-hero__shade { position: absolute; inset: 0; width: 100%; height: 100%; }
.vbt-page-hero--image > img { object-fit: cover; }
.vbt-page-hero__shade { background: linear-gradient(90deg, rgba(18,48,30,.9), rgba(18,48,30,.28)); }
.vbt-page-hero__image-content { position: relative; z-index: 2; }
.vbt-page-hero__image-content h1 { color: #fff; }
.vbt-page-hero__image-content > p:last-child { max-width: 700px; font-size: 1.25rem; }
.vbt-breadcrumbs { display: flex; align-items: center; gap: 9px; margin-bottom: 35px; color: var(--vbt-muted); font-size: .78rem; font-weight: 700; }
.vbt-breadcrumbs a { text-decoration: none; }

.vbt-article-hero { padding: clamp(70px, 9vw, 120px) 0 54px; background: var(--vbt-parchment); }
.vbt-article-hero__content { max-width: 1000px; }
.vbt-article-hero h1 { font-size: clamp(2.7rem, 6vw, 5.3rem); }
.vbt-article-hero__excerpt { max-width: 790px; color: var(--vbt-muted); font-size: clamp(1.05rem, 2vw, 1.3rem); }
.vbt-article-meta { display: flex; gap: 24px; margin-top: 28px; color: var(--vbt-muted); font-size: .78rem; font-weight: 800; }
.vbt-article-featured { margin-top: 0; margin-bottom: 0; padding-top: 0; }
.vbt-article-featured img { width: 100%; max-height: 680px; object-fit: cover; }
.vbt-article-layout { display: grid; grid-template-columns: minmax(0, 1fr) 310px; gap: clamp(42px, 7vw, 86px); align-items: start; padding-top: 74px; padding-bottom: 100px; }
.vbt-prose { min-width: 0; max-width: 800px; color: var(--vbt-ink); font-size: 1.06rem; }
.vbt-prose > *:first-child { margin-top: 0; }
.vbt-prose h2 { margin-top: 2.1em; font-size: clamp(1.9rem, 3vw, 2.65rem); }
.vbt-prose h3 { margin-top: 1.8em; }
.vbt-prose a { color: var(--vbt-pine); text-decoration-thickness: 1px; text-underline-offset: 3px; }
.vbt-prose ul, .vbt-prose ol { margin: 1.2em 0 1.7em; padding-left: 1.5em; list-style-position: outside; }
.vbt-prose ul { list-style-type: disc; }
.vbt-prose ol { list-style-type: decimal; }
.vbt-prose li { display: list-item; margin-bottom: .52em; }
.vbt-prose li::marker { color: var(--vbt-gold); font-weight: 800; }
.vbt-prose blockquote { margin: 2em 0; padding: 20px 28px; border-left: 4px solid var(--vbt-gold); background: var(--vbt-parchment); font-family: Fraunces, Georgia, serif; font-size: 1.24rem; }
.vbt-prose table { width: 100%; margin: 2em 0; border-collapse: collapse; font-size: .94rem; }
.vbt-prose th, .vbt-prose td { padding: 13px 15px; border: 1px solid var(--vbt-border); text-align: left; vertical-align: top; }
.vbt-prose th { color: #fff; background: var(--vbt-pine); }
.vbt-prose figure { margin: 2em 0; }
.vbt-prose figcaption, .wp-caption-text { margin-top: 8px; color: var(--vbt-muted); font-size: .76rem; }
.vbt-in-article-tours { margin-top: 70px; padding-top: 45px; border-top: 1px solid var(--vbt-border); }
.vbt-article-sidebar { position: sticky; top: 28px; display: grid; gap: 24px; }
.vbt-sidebar-card { padding: 28px; border: 1px solid var(--vbt-border); background: #fff; box-shadow: 0 12px 36px rgba(34,24,17,.06); }
.vbt-sidebar-card h2 { font-size: 1.65rem; }
.vbt-sidebar-links { margin: 0; padding: 0; list-style: none; }
.vbt-sidebar-links li { border-top: 1px solid var(--vbt-border); }
.vbt-sidebar-links a { display: flex; justify-content: space-between; padding: 11px 0; font-size: .84rem; font-weight: 700; text-decoration: none; }
.vbt-sidebar-links a::after { content: "→"; color: var(--vbt-gold); }
.vbt-related { padding: 86px 0 110px; background: var(--vbt-parchment); }

.vbt-pagination { display: flex; justify-content: center; gap: 8px; margin-top: 56px; }
.vbt-pagination .page-numbers { display: inline-flex; align-items: center; justify-content: center; min-width: 42px; height: 42px; padding: 0 12px; border: 1px solid var(--vbt-border); background: #fff; font-size: .8rem; font-weight: 800; text-decoration: none; }
.vbt-pagination .current { color: #fff; border-color: var(--vbt-pine); background: var(--vbt-pine); }
.vbt-archive-tours { margin-top: 80px; padding: 48px; background: #f1ebde; }
.vbt-archive-description { max-width: 900px; margin: 72px auto 0; padding-top: 52px; border-top: 1px solid var(--vbt-border); }

.vbt-page-content { margin-inline: auto; }
.vbt-page-content > h2:first-child { margin-top: 0; }
.vbt-tours-hero { position: relative; display: flex; align-items: flex-end; min-height: clamp(620px, 80vh, 860px); overflow: hidden; color: #fff; background: var(--vbt-pine-deep); }
.vbt-tours-hero > img, .vbt-tours-hero__shade { position: absolute; inset: 0; width: 100%; height: 100%; }
.vbt-tours-hero > img { object-fit: cover; object-position: center 54%; }
.vbt-tours-hero__shade { background: linear-gradient(90deg, rgba(18,48,30,.92), rgba(18,48,30,.28) 72%); }
.vbt-tours-hero__content { position: relative; z-index: 2; padding-bottom: clamp(74px, 9vw, 118px); }
.vbt-tours-hero h1 { max-width: 900px; color: #fff; }
.vbt-tours-hero__content > p:not(.vbt-eyebrow) { max-width: 730px; font-size: 1.18rem; }
.vbt-tours-intro { display: grid; grid-template-columns: minmax(0,1fr) minmax(300px,.72fr); gap: clamp(48px,8vw,120px); }
.vbt-tours-intro > div:last-child { color: var(--vbt-muted); font-size: 1.07rem; }
.vbt-tour-type-grid { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); border-top: 1px solid var(--vbt-border); border-left: 1px solid var(--vbt-border); }
.vbt-tour-type { min-height: 265px; padding: 34px; border-right: 1px solid var(--vbt-border); border-bottom: 1px solid var(--vbt-border); background: #fff; }
.vbt-tour-type > span { color: var(--vbt-gold); font-size: .72rem; font-weight: 900; letter-spacing: .16em; }
.vbt-tour-type h3 { margin-top: 36px; }
.vbt-tour-type p { color: var(--vbt-muted); font-size: .9rem; }
.vbt-live-search { margin-bottom: 26px; color: var(--vbt-ink); }
.vbt-live-search:empty { display: none; }
.vbt-tour-compare { display: grid; grid-template-columns: minmax(0,.62fr) minmax(400px,1fr); gap: clamp(48px,8vw,110px); align-items: start; }
.vbt-tour-compare .vbt-prose { max-width: none; }
.vbt-tour-disclosure { padding: 46px 0; color: rgba(255,255,255,.76); background: var(--vbt-pine); }
.vbt-tour-disclosure h2 { color: #fff; font-size: 1.6rem; }
.vbt-tour-disclosure p { max-width: 900px; margin-bottom: 0; font-size: .86rem; }
.vbt-contact-layout { display: grid; grid-template-columns: minmax(0, .72fr) minmax(420px, 1fr); gap: clamp(50px, 9vw, 120px); align-items: start; }
.vbt-contact-layout .vbt-page-content { margin: 0; }
.vbt-contact-panel { padding: clamp(30px, 5vw, 54px); color: var(--vbt-ink); background: #fff; box-shadow: var(--vbt-shadow); }
.vbt-contact-form { display: grid; gap: 10px; }
.vbt-contact-form label { margin-top: 7px; font-size: .78rem; font-weight: 800; }
.vbt-contact-form input, .vbt-contact-form select, .vbt-contact-form textarea, .vbt-newsletter-form input {
  width: 100%;
  min-height: 48px;
  padding: 11px 13px;
  border: 1px solid var(--vbt-border);
  border-radius: 2px;
  color: var(--vbt-ink);
  background: #fff;
  font: inherit;
}
.vbt-contact-form textarea { resize: vertical; }
.vbt-contact-form .vbt-button { margin-top: 12px; }
.vbt-form-note { margin-top: 8px; color: var(--vbt-muted); font-size: .75rem; }
.vbt-form-message { margin-bottom: 22px; padding: 14px 16px; border-left: 4px solid var(--vbt-gold); background: var(--vbt-parchment); }
.vbt-form-message--success { border-color: var(--vbt-pine); }
.vbt-form-message--error { border-color: var(--vbt-crimson); }
.vbt-honeypot { position: absolute; left: -10000px; }

.vbt-footer { color: rgba(255,255,255,.74); background: var(--vbt-pine-deep); }
.vbt-footer__top { display: grid; grid-template-columns: 1.15fr .8fr .55fr 1fr; gap: clamp(34px, 5vw, 70px); width: var(--vbt-shell); margin-inline: auto; padding: 84px 0 68px; }
.vbt-footer__brand img { width: 250px; margin-bottom: 25px; }
.vbt-footer__brand p { max-width: 340px; }
.vbt-footer__slogan { color: #fff; font-family: Fraunces, Georgia, serif; font-size: 1.25rem; font-weight: 700; }
.vbt-footer h2 { margin-bottom: 22px; color: #fff; font-size: 1rem; font-family: Inter, sans-serif; letter-spacing: .08em; text-transform: uppercase; }
.vbt-footer__links ul { margin: 0; padding: 0; columns: 1; list-style: none; }
.vbt-footer__links li { margin-bottom: 8px; }
.vbt-footer__links a { font-size: .84rem; text-decoration: none; }
.vbt-footer__links a:hover { color: var(--vbt-gold); }
.vbt-footer__newsletter p { font-size: .86rem; }
.vbt-newsletter-form { display: grid; grid-template-columns: 1fr auto; gap: 8px; }
.vbt-newsletter-form button { min-height: 48px; padding: 0 16px; border: 0; color: var(--vbt-pine-deep); background: var(--vbt-gold); font-weight: 800; }
.vbt-newsletter-form :disabled { cursor: not-allowed; opacity: .66; }
.vbt-footer__status { margin-top: 10px; color: rgba(255,255,255,.55); font-size: .72rem !important; }
.vbt-footer__bottom { display: flex; justify-content: space-between; gap: 24px; width: var(--vbt-shell); margin-inline: auto; padding: 24px 0; border-top: 1px solid rgba(255,255,255,.13); font-size: .72rem; }
.vbt-footer__bottom p { margin: 0; }
.vbt-recaptcha-note a { color: inherit; text-decoration: none; }

/* TravelSpark surfaces */
.vbt-tour-surface [class*="travelspark"], .vbt-tour-surface [class*="tsva"] { font-family: Inter, system-ui, sans-serif; }
.vbt-tour-surface [class*="card"], .vbt-tour-surface article { border-color: var(--vbt-border) !important; border-radius: 2px !important; box-shadow: 0 14px 38px rgba(34,24,17,.09) !important; }
.vbt-tour-surface img { border-radius: 0 !important; }
.vbt-tour-surface button, .vbt-tour-surface [class*="button"], .vbt-tour-surface [class*="cta"] { border-radius: 2px !important; color: var(--vbt-pine-deep) !important; background: var(--vbt-gold) !important; }

@media (max-width: 1180px) {
  .vbt-logo { width: 210px; flex-basis: 210px; }
  .vbt-nav__link { font-size: .78rem; }
  .vbt-nav { gap: 12px; }
}

@media (max-width: 1020px) {
  .vbt-nav, .vbt-header__inner > .vbt-button { display: none; }
  .vbt-menu-toggle { display: inline-flex; margin-left: auto; }
  .vbt-card-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .vbt-category-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .vbt-article-layout { grid-template-columns: minmax(0, 1fr) 280px; gap: 40px; }
  .vbt-footer__top { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 760px) {
  :root { --vbt-shell: min(100% - 28px, 1180px); }
  .vbt-header__inner { width: calc(100% - 28px); min-height: 74px; }
  .vbt-logo { width: 198px; flex-basis: 198px; }
  .vbt-hero { min-height: 690px; }
  .vbt-hero__shade { background: linear-gradient(0deg, rgba(13,28,18,.92) 0%, rgba(13,28,18,.5) 67%, rgba(13,28,18,.18) 100%); }
  .vbt-hero__content { padding-bottom: 70px; }
  .vbt-hero h1 { font-size: clamp(3rem, 14vw, 4.5rem); }
  .vbt-intro__grid, .vbt-page-hero__split, .vbt-contact-layout, .vbt-article-layout { grid-template-columns: 1fr; }
  .vbt-section-heading { display: block; }
  .vbt-section-heading > p, .vbt-section-heading > a { margin-top: 18px; }
  .vbt-mosaic { grid-template-columns: 1fr; grid-template-rows: 400px 250px 250px; }
  .vbt-mosaic__large { grid-row: auto; }
  .vbt-card-grid, .vbt-category-grid { grid-template-columns: 1fr; }
  .vbt-tours-intro, .vbt-tour-compare { grid-template-columns: 1fr; }
  .vbt-tour-type-grid { grid-template-columns: 1fr; }
  .vbt-category-card { min-height: 240px; }
  .vbt-article-featured { width: 100%; }
  .vbt-article-featured img { min-height: 330px; object-fit: cover; }
  .vbt-article-sidebar { position: static; }
  .vbt-archive-tours { padding: 30px 20px; }
  .vbt-contact-panel { padding: 26px 20px; }
  .vbt-cta-band__inner, .vbt-footer__bottom { display: block; }
  .vbt-cta-band .vbt-button { margin-top: 25px; }
  .vbt-footer__top { grid-template-columns: 1fr; padding-top: 64px; }
  .vbt-footer__bottom p + p { margin-top: 12px; }
  .vbt-integration-note { display: block; }
  .vbt-integration-note strong, .vbt-integration-note span, .vbt-integration-note a { display: block; margin-bottom: 10px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition: none !important; }
}
