/* ============================================================
   VersGezet — Koffiebar op locatie & baristatrainingen
   Huisstijl: navy #0B1D3A · zand #D9C2A3 · brons #A8895B
   Fonts: Cormorant Garamond (koppen) · Montserrat (body/UI)
   ============================================================ */

:root {
  --navy: #0B1D3A;
  --navy-deep: #081124;
  --navy-hover: #14294A;
  --navy-line: #1E3251;
  --sand: #D9C2A3;
  --sand-hover: #C7AB80;
  --bronze: #A8895B;
  --cream: #F4EDE1;
  --ivory: #F7F0E4;
  --ink: #23304A;
  --slate: #46536D;
  --muted: #5E6A80;
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans: 'Montserrat', system-ui, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  background: var(--cream);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}
img { max-width: 100%; }
::placeholder { color: #9AA0AC; opacity: 1; }
::selection { background: var(--navy); color: #fff; }

/* ---------- Animations ---------- */
@keyframes vgFloat   { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-9px)} }
@keyframes vgFade    { from{opacity:0;transform:translateY(16px)} to{opacity:1;transform:translateY(0)} }
@keyframes vgDrift   { 0%{transform:translateY(0) rotate(0)} 50%{transform:translateY(-18px) rotate(10deg)} 100%{transform:translateY(0) rotate(0)} }
@keyframes vgDrift2  { 0%{transform:translateY(0) rotate(0)} 50%{transform:translateY(14px) rotate(-12deg)} 100%{transform:translateY(0) rotate(0)} }
@keyframes vgMarquee { from{transform:translateX(0)} to{transform:translateX(-50%)} }

@media (prefers-reduced-motion: reduce) {
  * { animation-duration: .001ms !important; animation-iteration-count: 1 !important; }
}

/* ---------- Shared primitives ---------- */
.vg-container { max-width: 1180px; margin: 0 auto; }

.vg-section { padding: clamp(64px, 9vw, 120px) clamp(20px, 5vw, 56px); position: relative; }
.vg-section--cream { background: var(--cream); }
.vg-section--navy  { background: var(--navy); color: var(--ivory); }
.vg-section--sand  { background: #EADDC9; }
[id] { scroll-margin-top: 80px; }

.vg-section__head { max-width: 680px; margin-bottom: clamp(40px, 5vw, 60px); }
.vg-section__lede {
  font-size: clamp(1.05rem, 1.6vw, 1.2rem);
  line-height: 1.55; font-weight: 300; color: var(--slate); text-wrap: pretty;
}
.vg-section__lede--light { color: #C8BCA3; }

.vg-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  color: var(--bronze); font-size: 13px; font-weight: 600;
  letter-spacing: .18em; text-transform: uppercase; margin-bottom: 16px;
}
.vg-eyebrow--sand  { color: var(--sand); }
.vg-eyebrow--light { color: var(--sand); }
.vg-eyebrow__rule  { width: 26px; height: 1.5px; background: var(--bronze); display: inline-block; }

.vg-h2 {
  font-family: var(--serif); font-weight: 600;
  font-size: clamp(2.2rem, 4.3vw, 3.4rem); line-height: 1.04;
  letter-spacing: -.01em; color: var(--navy); margin-bottom: 18px; text-wrap: balance;
}
.vg-h2--light { color: var(--ivory); }
.vg-em { font-style: italic; color: var(--bronze); }
.vg-em--sand { color: var(--sand); }
.vg-dot { color: var(--sand); }

/* ---------- Buttons ---------- */
.vg-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  text-decoration: none; border: none; cursor: pointer; font-family: inherit;
  border-radius: 999px; font-weight: 600; transition: background .2s, transform .2s;
}
.vg-btn--nav {
  background: var(--navy); color: #fff; padding: 11px 21px; font-size: 14.5px;
  box-shadow: 0 6px 18px rgba(11,29,58,.22);
}
.vg-btn--nav:hover { background: var(--navy-hover); transform: translateY(-1px); }

.vg-btn--lg { padding: 17px 30px; font-size: 17px; }
.vg-btn--sand { background: var(--sand); color: var(--navy); box-shadow: 0 12px 30px rgba(11,29,58,.42); }
.vg-btn--sand:hover { background: var(--sand-hover); transform: translateY(-2px); }
.vg-btn__arrow { font-size: 19px; }

.vg-btn--ghost {
  color: var(--ivory); padding: 16px 26px; font-weight: 500; font-size: 16px;
  border: 1.5px solid rgba(255,255,255,.4); box-shadow: none;
}
.vg-btn--ghost:hover { background: rgba(255,255,255,.12); }

.vg-btn--navy { background: var(--navy); color: #fff; box-shadow: 0 12px 28px rgba(11,29,58,.28); }
.vg-btn--navy:hover { background: var(--navy-hover); transform: translateY(-1px); }

.vg-btn--outline { border: 1.5px solid #CDB794; color: var(--navy); background: none; font-size: 15px; }
.vg-btn--outline:hover { background: #EADDC9; }

.vg-btn--block { width: 100%; padding: 14px; font-size: 15px; }
.vg-btn--submit { grid-column: 1 / -1; padding: 17px; font-size: 17px; margin-top: 4px; }

/* ============================================================
   NAV
   ============================================================ */
.vg-nav {
  position: sticky; top: 0; z-index: 60;
  display: flex; align-items: center; justify-content: space-between; gap: 18px;
  padding: 10px clamp(20px, 5vw, 56px);
  background: rgba(244,237,225,.86);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(11,29,58,.12);
}
.vg-nav__brand { display: flex; align-items: center; gap: 13px; text-decoration: none; color: inherit; }
.vg-nav__logo { display: block; width: 58px; height: 58px; flex: none; }
.vg-nav__wordmark {
  font-family: var(--serif); font-weight: 700; font-size: 27px;
  letter-spacing: -.01em; color: var(--navy); white-space: nowrap;
}
.vg-nav__right { display: flex; align-items: center; gap: clamp(14px, 2.4vw, 30px); }
.vg-nav-links { display: flex; align-items: center; gap: clamp(14px, 2.4vw, 30px); }
.vg-nav__link { text-decoration: none; color: #2C3A50; font-size: 15px; font-weight: 500; transition: color .2s; }
.vg-nav__link:hover { color: var(--bronze); }

.vg-burger {
  display: none; align-items: center; justify-content: center; width: 46px; height: 46px;
  border: 1px solid rgba(11,29,58,.18); background: none; border-radius: 12px;
  cursor: pointer; color: var(--navy); flex: none;
}

.vg-mobile-panel {
  position: sticky; top: 74px; z-index: 59; width: 100%;
  max-height: 0; opacity: 0; overflow: hidden;
  transition: max-height .32s cubic-bezier(.22,.61,.36,1), opacity .25s ease;
}
.vg-mobile-panel[data-open="true"] { max-height: 440px; opacity: 1; }
.vg-mobile-panel__inner {
  background: var(--navy); padding: 4px clamp(20px,5vw,56px) 16px;
  display: flex; flex-direction: column; box-shadow: 0 18px 30px rgba(6,14,30,.3);
}
.vg-mobile-panel__link {
  text-decoration: none; color: #EDE3D0; font-size: 16px; font-weight: 500;
  padding: 13px 0; border-bottom: 1px solid var(--navy-line);
}
.vg-mobile-panel__link--last { border-bottom: none; }

/* ============================================================
   HERO (fullbleed)
   ============================================================ */
.vg-hero {
  position: relative; min-height: clamp(580px, 90vh, 880px);
  display: flex; align-items: flex-end; overflow: hidden; background: var(--navy);
}
.vg-hero__bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.vg-hero__overlay {
  position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(180deg, rgba(6,14,30,.46) 0%, rgba(6,14,30,.08) 36%, rgba(6,14,30,.82) 100%);
}
.vg-hero__badge {
  position: absolute; top: clamp(60px,9vh,118px); right: clamp(16px,5vw,72px); z-index: 1;
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  animation: vgFloat 6s ease-in-out infinite; pointer-events: none;
}
.vg-hero__badge-logo { width: clamp(150px,23vw,330px); height: auto; filter: drop-shadow(0 18px 44px rgba(0,0,0,.5)); }
.vg-hero__badge-tag {
  font-family: var(--serif); font-weight: 500; font-style: italic;
  font-size: clamp(19px,2.2vw,28px); color: var(--sand); opacity: .95;
}
.vg-hero__inner {
  position: relative; width: 100%; max-width: 1180px; margin: 0 auto;
  padding: 0 clamp(20px,5vw,56px) clamp(48px,7vw,88px);
}
.vg-hero__content { max-width: 780px; animation: vgFade .8s cubic-bezier(.22,.61,.36,1) both; }
.vg-eyebrow--light { margin-bottom: 20px; }
.vg-hero__title {
  font-family: var(--serif); font-weight: 600; font-size: clamp(2.9rem,7vw,5.4rem);
  line-height: 1.0; letter-spacing: -.015em; color: var(--ivory); text-wrap: balance; margin-bottom: 22px;
}
.vg-hero__lede {
  font-size: clamp(1.06rem,2vw,1.32rem); line-height: 1.55; font-weight: 300;
  color: #DDD3C2; max-width: 600px; margin-bottom: 34px; text-wrap: pretty;
}
.vg-hero__actions { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }
.vg-hero__stats {
  display: flex; flex-wrap: wrap; gap: 10px 26px; margin-top: 36px;
  color: #C8BCA3; font-size: 14.5px;
}
.vg-hero__stats span { display: inline-flex; align-items: center; gap: 8px; }

/* ============================================================
   LOGO STRIP
   ============================================================ */
.vg-strip { background: var(--navy); padding: 24px clamp(20px,5vw,56px); }
.vg-strip__inner {
  max-width: 1180px; margin: 0 auto;
  display: flex; flex-wrap: wrap; align-items: center; justify-content: center;
  gap: 14px clamp(28px,5vw,56px);
}
.vg-strip__label {
  font-size: 12.5px; letter-spacing: .14em; text-transform: uppercase;
  color: #8C93A2; font-weight: 500; margin-right: 6px;
}
.vg-strip__logo { color: #B7AB91; opacity: .85; }
.vg-strip__logo--serif  { font-family: var(--serif); font-weight: 600; font-size: 19px; letter-spacing: -.01em; }
.vg-strip__logo--italic { font-family: var(--serif); font-weight: 300; font-size: 18px; font-style: italic; }
.vg-strip__logo--caps   { font-weight: 700; font-size: 17px; letter-spacing: .08em; }
.vg-strip__logo--black  { font-weight: 800; font-size: 18px; letter-spacing: .02em; }
.vg-strip__logo--medium { font-weight: 500; font-size: 18px; letter-spacing: .04em; }

/* ---------- Drifting coffee beans ---------- */
.vg-bean { position: absolute; pointer-events: none; }
.vg-bean--specs   { top: 7%; right: 6%; opacity: .16; animation: vgDrift 10s ease-in-out infinite; }
.vg-bean--reserve { top: 9%; left: 5%; opacity: .22; animation: vgDrift2 11s ease-in-out infinite; }

/* ============================================================
   SPECIALITEITEN
   ============================================================ */
.vg-specs { overflow: hidden; }
.vg-specs__inner { position: relative; }
.vg-specs__grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(290px, 1fr)); gap: 18px;
}
.vg-card {
  background: var(--ivory); border: 1px solid #E6DAC6; border-radius: 22px;
  padding: 30px 28px; transition: transform .25s, box-shadow .25s;
}
.vg-card:hover { transform: translateY(-4px); box-shadow: 0 20px 40px rgba(20,30,55,.12); }
.vg-card__icon {
  width: 54px; height: 54px; border-radius: 16px; background: #EAE0CE; color: var(--navy);
  display: flex; align-items: center; justify-content: center; margin-bottom: 20px;
}
.vg-card__title {
  font-family: var(--serif); font-weight: 600; font-size: 22px;
  letter-spacing: -.01em; color: var(--navy); margin-bottom: 9px;
}
.vg-card__text { font-size: 15.5px; line-height: 1.55; font-weight: 300; color: var(--slate); }
.vg-specs__note {
  margin-top: 26px; font-size: 15px; color: #7A8499; font-style: italic; font-family: var(--serif);
}

/* ============================================================
   SFEER GALLERY
   ============================================================ */
.vg-gallery { background: var(--navy); padding: clamp(30px,4vw,46px) 0; overflow: hidden; }
.vg-gallery__track {
  display: flex; gap: 18px; width: max-content; padding: 0 9px;
  animation: vgMarquee 42s linear infinite;
}
.vg-gallery__track:hover { animation-play-state: paused; }
.vg-gallery__item {
  position: relative; width: clamp(240px,30vw,360px); height: clamp(190px,24vw,280px);
  border-radius: 20px; overflow: hidden; flex: none; margin: 0;
}
.vg-gallery__item img { width: 100%; height: 100%; object-fit: cover; display: block; }
.vg-gallery__item figcaption {
  position: absolute; left: 16px; bottom: 14px; color: var(--ivory);
  font-family: var(--serif); font-style: italic; font-size: 19px;
  text-shadow: 0 2px 8px rgba(0,0,0,.5);
}

/* ============================================================
   WERKWIJZE
   ============================================================ */
.vg-werkwijze .vg-section__head { max-width: 640px; margin-bottom: clamp(44px,5vw,64px); }
.vg-steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 22px; }
.vg-step { border-top: 2px solid var(--navy-line); padding-top: 24px; }
.vg-step__num {
  font-family: var(--serif); font-weight: 600; font-size: 52px; color: var(--sand);
  letter-spacing: -.02em; line-height: 1; font-style: italic;
}
.vg-step__title { font-family: var(--serif); font-weight: 600; font-size: 23px; margin: 14px 0 10px; color: var(--ivory); }
.vg-step__text { font-size: 15.5px; line-height: 1.6; font-weight: 300; color: #B7AB91; }

/* ============================================================
   OVER MATHIJS
   ============================================================ */
.vg-over {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: clamp(36px,5vw,72px); align-items: center;
}
.vg-over__media { position: relative; }
.vg-over__portrait {
  width: 100%; aspect-ratio: 4/5; object-fit: cover; display: block; border-radius: 28px;
}
.vg-over__badge {
  position: absolute; right: -10px; bottom: -14px; background: var(--navy); color: var(--ivory);
  padding: 16px 20px; border-radius: 18px; box-shadow: 0 18px 40px rgba(6,14,30,.3); max-width: 210px;
}
.vg-over__badge-num {
  font-family: var(--serif); font-weight: 600; font-size: 32px; color: var(--sand);
  letter-spacing: -.02em; font-style: italic;
}
.vg-over__badge-text { font-size: 13.5px; color: #B7AB91; font-weight: 400; margin-top: 2px; }
.vg-over__body .vg-h2 { font-size: clamp(2rem,3.8vw,3rem); line-height: 1.06; margin-bottom: 20px; }
.vg-over__p {
  font-size: clamp(1.02rem,1.5vw,1.18rem); line-height: 1.62; font-weight: 300;
  color: #3D4961; margin-bottom: 18px; text-wrap: pretty;
}
.vg-over__p strong { font-weight: 600; color: var(--navy); }
.vg-over__sign {
  font-family: var(--serif); font-weight: 500; font-style: italic; font-size: 30px;
  color: var(--bronze); margin-bottom: 26px;
}
.vg-chips { display: flex; flex-wrap: wrap; gap: 10px; }
.vg-chip {
  display: inline-flex; align-items: center; gap: 8px; background: var(--ivory);
  border: 1px solid #E6DAC6; border-radius: 999px; padding: 9px 16px;
  font-size: 14px; font-weight: 500; color: var(--slate);
}

/* ============================================================
   PAKKETTEN
   ============================================================ */
.vg-plans {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px; align-items: stretch;
}
.vg-plan {
  background: var(--ivory); border: 1px solid #E2D6C2; border-radius: 24px;
  padding: 32px 30px; display: flex; flex-direction: column;
}
.vg-plan--featured {
  background: var(--navy); border-color: var(--navy); position: relative;
  box-shadow: 0 26px 56px rgba(8,17,33,.28); transform: translateY(-6px);
}
.vg-plan__badge {
  position: absolute; top: -13px; left: 30px; background: var(--bronze); color: #fff;
  font-size: 12px; font-weight: 600; letter-spacing: .06em; text-transform: uppercase;
  padding: 6px 14px; border-radius: 999px;
}
.vg-plan__name { font-family: var(--serif); font-weight: 600; font-size: 25px; color: var(--navy); margin-bottom: 6px; }
.vg-plan__name--light { color: var(--ivory); }
.vg-plan__meta { font-size: 14.5px; color: #7A8499; margin-bottom: 20px; }
.vg-plan__meta--light { color: #A99D86; }
.vg-plan__price { display: flex; align-items: baseline; gap: 6px; margin-bottom: 24px; }
.vg-plan__from { font-size: 15px; color: var(--muted); }
.vg-plan__from--light { color: #B7AB91; }
.vg-plan__amount {
  font-family: var(--serif); font-weight: 600; font-size: 42px; color: var(--navy); letter-spacing: -.01em;
}
.vg-plan__amount--light { color: var(--ivory); }
.vg-plan__amount--em { font-style: italic; }
.vg-plan__unit { font-size: 15px; color: var(--muted); }
.vg-plan__unit--light { color: #B7AB91; }
.vg-plan__list { list-style: none; display: flex; flex-direction: column; gap: 12px; margin-bottom: 28px; flex: 1; }
.vg-plan__list li { display: flex; gap: 10px; font-size: 15px; color: #3D4961; line-height: 1.4; }
.vg-plan__list--light li { color: #DCD0BA; }
.vg-plan__check { color: var(--bronze); font-weight: 700; }
.vg-plan__check--sand { color: var(--sand); }

/* ============================================================
   REVIEWS
   ============================================================ */
.vg-reviews { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; }
.vg-review { background: var(--ivory); border: 1px solid #E6DAC6; border-radius: 22px; padding: 30px 28px; margin: 0; }
.vg-stars { color: var(--bronze); font-size: 15px; letter-spacing: 2px; }
.vg-review blockquote {
  font-family: var(--serif); font-size: 19px; line-height: 1.5; color: #16294A;
  font-weight: 400; margin: 16px 0 20px;
}
.vg-review figcaption { font-size: 14.5px; color: var(--muted); }
.vg-review figcaption strong { color: var(--navy); font-weight: 600; }

/* ============================================================
   FAQ
   ============================================================ */
.vg-faq { max-width: 820px; margin: 0 auto; }
.vg-faq .vg-section__head { margin-bottom: clamp(36px,5vw,52px); }
.vg-faq__list { display: flex; flex-direction: column; gap: 12px; }
.vg-faq__item { background: var(--ivory); border: 1px solid #E2D6C2; border-radius: 16px; overflow: hidden; }
.vg-faq__q {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px;
  text-align: left; background: none; border: none; cursor: pointer; padding: 20px 24px; font: inherit;
}
.vg-faq__q span:first-child {
  font-family: var(--serif); font-weight: 600; font-size: 18px; color: var(--navy); line-height: 1.35;
}
.vg-faq__icon {
  display: inline-block; flex: none; color: var(--bronze); font-size: 26px; line-height: 1;
  font-weight: 300; transition: transform .3s ease;
}
.vg-faq__item[data-open="true"] .vg-faq__icon { transform: rotate(45deg); }
.vg-faq__a {
  max-height: 0; opacity: 0; overflow: hidden;
  transition: max-height .38s cubic-bezier(.22,.61,.36,1), opacity .3s ease;
}
.vg-faq__item[data-open="true"] .vg-faq__a { max-height: 300px; opacity: 1; }
.vg-faq__a p { padding: 0 24px 22px; font-size: 15.5px; line-height: 1.6; font-weight: 300; color: var(--slate); }

/* ============================================================
   RESERVEREN
   ============================================================ */
.vg-reserve { overflow: hidden; }
.vg-reserve__inner {
  max-width: 1080px; margin: 0 auto; position: relative;
  display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: clamp(36px,5vw,64px); align-items: start;
}
.vg-reserve .vg-h2 { font-size: clamp(2.3rem,4.3vw,3.5rem); line-height: 1.02; margin-bottom: 18px; }
.vg-reserve__intro .vg-section__lede { margin-bottom: 32px; }
.vg-contact { display: flex; flex-direction: column; gap: 18px; }
.vg-contact__row { display: flex; align-items: center; gap: 14px; text-decoration: none; color: inherit; }
.vg-contact__icon {
  flex: none; width: 44px; height: 44px; border-radius: 12px; background: var(--navy-hover);
  display: flex; align-items: center; justify-content: center;
}
.vg-contact__label { display: block; font-size: 12.5px; color: #A99D86; letter-spacing: .04em; }
.vg-contact__value { font-weight: 500; font-size: 16px; }

.vg-formcard {
  background: var(--ivory); border-radius: 24px; padding: clamp(24px,3vw,36px);
  color: var(--ink); box-shadow: 0 30px 60px rgba(6,14,30,.4);
}
.vg-form { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.vg-field { display: flex; flex-direction: column; }
.vg-field--full { grid-column: 1 / -1; }
.vg-field label {
  font-size: 12.5px; font-weight: 700; letter-spacing: .05em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 8px;
}
.vg-field__opt { font-weight: 400; text-transform: none; letter-spacing: 0; color: #7A8499; }
.vg-field input, .vg-field select, .vg-field textarea {
  width: 100%; padding: 14px 16px; border: 1.5px solid #E2D6C2; border-radius: 12px;
  background: #fff; font: inherit; font-size: 16px; color: var(--ink); outline: none;
}
.vg-field select { appearance: none; }
.vg-field textarea { resize: vertical; }
.vg-field input:focus, .vg-field select:focus, .vg-field textarea:focus {
  border-color: var(--navy); box-shadow: 0 0 0 3px rgba(11,29,58,.15);
}
.vg-form__error { grid-column: 1 / -1; color: #A8341C; font-size: 14.5px; font-weight: 500; margin: -4px 0 0; }
.vg-form__fine { grid-column: 1 / -1; text-align: center; font-size: 13px; color: #7A8499; margin-top: 2px; }

.vg-form__success { text-align: center; padding: 18px 4px; animation: vgFade .5s ease both; }
.vg-form__check {
  width: 72px; height: 72px; border-radius: 50%; background: #E8F0E0;
  display: flex; align-items: center; justify-content: center; margin: 0 auto 22px;
}
.vg-form__thanks {
  font-family: var(--serif); font-weight: 600; font-size: 28px; color: var(--navy);
  letter-spacing: -.01em; margin-bottom: 12px;
}
.vg-form__msg {
  font-size: 16.5px; line-height: 1.6; font-weight: 300; color: var(--slate);
  max-width: 380px; margin: 0 auto 24px;
}
.vg-form__success .vg-btn--outline { padding: 13px 26px; }

/* ============================================================
   FOOTER
   ============================================================ */
.vg-footer { background: var(--navy-deep); color: #B7AB91; padding: clamp(48px,6vw,72px) clamp(20px,5vw,56px) 36px; }
.vg-footer__top {
  display: flex; flex-wrap: wrap; gap: 32px; justify-content: space-between; align-items: flex-start;
  padding-bottom: 36px; border-bottom: 1px solid #16294A;
}
.vg-footer__brand { max-width: 340px; }
.vg-footer__logo-row { display: flex; align-items: center; gap: 16px; margin-bottom: 18px; }
.vg-footer__logo { display: block; width: 84px; height: 84px; flex: none; }
.vg-footer__wordmark { font-family: var(--serif); font-weight: 700; font-size: 34px; letter-spacing: -.01em; color: var(--sand); }
.vg-footer__about { font-size: 14.5px; line-height: 1.6; font-weight: 300; }
.vg-footer__cols { display: flex; flex-wrap: wrap; gap: 40px; }
.vg-footer__col { display: flex; flex-direction: column; gap: 11px; }
.vg-footer__heading {
  font-size: 12.5px; letter-spacing: .12em; text-transform: uppercase; color: #79808E;
  font-weight: 500; margin-bottom: 3px;
}
.vg-footer__col a { text-decoration: none; color: #B7AB91; font-size: 14.5px; transition: color .2s; }
.vg-footer__col a:hover { color: var(--ivory); }
.vg-footer__static { font-size: 14.5px; }
.vg-footer__cta { color: var(--sand) !important; font-weight: 500; }
.vg-footer__bottom {
  display: flex; flex-wrap: wrap; gap: 12px; justify-content: space-between;
  padding-top: 24px; font-size: 13px; color: #79808E;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1040px) {
  .vg-nav-links { display: none; }
  .vg-burger { display: inline-flex; }
}
@media (min-width: 1041px) {
  .vg-mobile-panel { display: none; }
}
@media (max-width: 560px) {
  .vg-form { grid-template-columns: 1fr; }
}
