:root {
  --vtg-ink: #071b16;
  --vtg-muted: #5f6f69;
  --vtg-green: #005030;
  --vtg-green-2: #073f2b;
  --vtg-orange: #f47321;
  --vtg-gold: #c9a74d;
  --vtg-cream: #f8faf7;
  --vtg-line: #dce5df;
  --vtg-white: #ffffff;
  --vtg-shadow: 0 24px 70px rgba(7, 27, 22, 0.16);
}

html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  color: var(--vtg-ink);
  background: #f5f8f6;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
}

a {
  color: inherit;
}

img {
  max-width: 100%;
  display: block;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 12px;
  z-index: 100;
  background: var(--vtg-white);
  padding: 10px 14px;
}

.skip-link:focus {
  left: 12px;
}

.vtg-shell {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
}

.vtg-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(220, 229, 223, 0.92);
  backdrop-filter: blur(14px);
}

.vtg-header-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 22px;
  align-items: center;
  min-height: 78px;
}

.vtg-brand,
.vtg-footer-brand {
  display: inline-grid;
  grid-template-columns: 52px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  text-decoration: none;
}

.vtg-brand-mark {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: 8px;
  background: var(--vtg-white);
  box-shadow: 0 12px 26px rgba(0, 80, 48, 0.18);
}

.vtg-brand strong,
.vtg-footer-brand strong {
  display: block;
  font-size: 17px;
  line-height: 1.1;
}

.vtg-brand small,
.vtg-footer-brand small {
  display: block;
  color: var(--vtg-muted);
  font-size: 12px;
  margin-top: 3px;
}

.vtg-menu {
  display: flex;
  justify-content: center;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.vtg-menu a {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 8px 12px;
  color: #20352e;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 800;
  font-size: 14px;
}

.vtg-menu a:hover,
.vtg-menu .current-menu-item > a {
  background: #edf6f1;
  color: var(--vtg-green);
}

.vtg-header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
}

.vtg-link {
  font-weight: 900;
  color: var(--vtg-green);
  text-decoration: none;
}

.vtg-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 10px 16px;
  border-radius: 8px;
  border: 1px solid var(--vtg-line);
  text-decoration: none;
  font-weight: 900;
  line-height: 1.1;
  text-align: center;
  white-space: nowrap;
}

.vtg-button-primary {
  color: var(--vtg-white);
  background: linear-gradient(135deg, var(--vtg-green), #047343);
  border-color: rgba(0, 80, 48, 0.25);
  box-shadow: 0 16px 34px rgba(0, 80, 48, 0.22);
}

.vtg-button-light {
  background: var(--vtg-white);
  color: var(--vtg-green);
}

.vtg-menu-toggle {
  display: none;
  min-height: 40px;
  padding: 8px 12px;
  border-radius: 8px;
  border: 1px solid var(--vtg-line);
  background: var(--vtg-white);
  font-weight: 900;
}

.vtg-hero {
  min-height: 720px;
  display: grid;
  align-items: center;
  color: var(--vtg-white);
  background:
    linear-gradient(90deg, rgba(7, 27, 22, 0.93), rgba(7, 63, 43, 0.74), rgba(244, 115, 33, 0.16)),
    var(--hero-image) center / cover no-repeat;
}

.vtg-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) 390px;
  gap: 38px;
  align-items: end;
  padding: 92px 0 74px;
}

.vtg-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--vtg-orange);
  font-size: 12px;
  font-weight: 1000;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.vtg-hero h1,
.vtg-page-hero h1,
.vtg-section-head h2,
.vtg-split h2,
.vtg-process h2,
.vtg-about-grid h2,
.vtg-about-content h2,
.vtg-detail-copy h2,
.vtg-cta-panel h2 {
  margin: 12px 0 14px;
  letter-spacing: 0;
  line-height: 1.02;
}

.vtg-hero h1 {
  max-width: 760px;
  font-size: clamp(46px, 6vw, 82px);
}

.vtg-hero p {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 19px;
}

.vtg-hero-actions,
.vtg-proof-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-top: 26px;
}

.vtg-proof-row span {
  padding: 8px 10px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  font-size: 13px;
  font-weight: 900;
}

.vtg-hero-panel,
.vtg-portal-card,
.vtg-card,
.vtg-cta-panel {
  border: 1px solid rgba(220, 229, 223, 0.92);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: var(--vtg-shadow);
}

.vtg-hero-panel {
  color: var(--vtg-ink);
  padding: 26px;
}

.vtg-hero-panel h2,
.vtg-card h2,
.vtg-card h3,
.vtg-portal-card h2 {
  margin: 0 0 10px;
  line-height: 1.15;
}

.vtg-hero-panel p {
  color: var(--vtg-muted);
}

.vtg-hero-panel ul,
.vtg-portal-card ul {
  margin: 18px 0 0;
  padding-left: 20px;
}

.vtg-hero-panel li,
.vtg-portal-card li {
  margin: 8px 0;
  font-weight: 800;
}

.vtg-section {
  padding: 84px 0;
}

.vtg-section-head {
  max-width: 760px;
  margin-bottom: 28px;
}

.vtg-section-head h2,
.vtg-about-grid h2,
.vtg-about-content h2,
.vtg-split h2,
.vtg-process h2,
.vtg-cta-panel h2,
.vtg-page-hero h1 {
  font-size: clamp(32px, 4vw, 54px);
}

.vtg-detail-section {
  background:
    linear-gradient(180deg, #ffffff, #f2f7f4);
}

.vtg-about-preview {
  color: var(--vtg-white);
  background:
    linear-gradient(135deg, rgba(7, 27, 22, 0.98), rgba(0, 80, 48, 0.94));
}

.vtg-about-grid,
.vtg-about-content {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.72fr);
  gap: 34px;
  align-items: center;
}

.vtg-about-grid p,
.vtg-about-content p,
.vtg-wide-copy {
  color: var(--vtg-muted);
  font-size: 17px;
}

.vtg-about-grid p {
  color: rgba(255, 255, 255, 0.84);
}

.vtg-about-highlight {
  padding: 30px;
  border: 1px solid rgba(220, 229, 223, 0.3);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  box-shadow: var(--vtg-shadow);
}

.vtg-about-highlight h3 {
  margin: 0 0 12px;
  font-size: 28px;
  line-height: 1.08;
}

.vtg-about-highlight ul {
  margin: 16px 0 0;
  padding-left: 20px;
}

.vtg-about-highlight li {
  margin: 8px 0;
  font-weight: 800;
}

.vtg-about-content .vtg-about-highlight {
  color: var(--vtg-ink);
  background: var(--vtg-white);
  border-color: var(--vtg-line);
}

.vtg-keyword-cloud,
.vtg-service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.vtg-keyword-cloud span,
.vtg-service-list span {
  padding: 10px 12px;
  border: 1px solid var(--vtg-line);
  border-radius: 8px;
  background: var(--vtg-white);
  color: var(--vtg-ink);
  font-weight: 900;
}

.vtg-dark-cards article {
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
}

.vtg-dark-cards h3 {
  margin: 0 0 10px;
}

.vtg-dark-cards p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
}

.vtg-detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 36px;
  align-items: start;
}

.vtg-detail-copy {
  position: sticky;
  top: 104px;
}

.vtg-detail-copy h2 {
  font-size: clamp(34px, 4.4vw, 58px);
}

.vtg-detail-copy p {
  color: var(--vtg-muted);
  font-size: 17px;
}

.vtg-detail-points {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.vtg-detail-points article {
  min-height: 238px;
  padding: 24px;
  border: 1px solid var(--vtg-line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 16px 42px rgba(7, 27, 22, 0.08);
}

.vtg-detail-points strong {
  display: inline-flex;
  margin-bottom: 24px;
  color: var(--vtg-orange);
  font-weight: 1000;
  letter-spacing: 0.08em;
}

.vtg-detail-points h3 {
  margin: 0 0 10px;
  font-size: 22px;
}

.vtg-detail-points p {
  margin: 0;
  color: var(--vtg-muted);
}

.vtg-card-grid {
  display: grid;
  gap: 16px;
}

.vtg-card-grid.four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.vtg-card-grid.three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.vtg-card-grid.two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.vtg-card {
  padding: 24px;
}

.vtg-card p,
.vtg-split p,
.vtg-cta-panel p,
.vtg-page-hero p,
.vtg-footer p {
  color: var(--vtg-muted);
}

.vtg-split-section {
  background: var(--vtg-white);
}

.vtg-split,
.vtg-service-layout,
.vtg-contact-grid,
.vtg-page-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1fr);
  gap: 42px;
  align-items: center;
}

.vtg-image-frame,
.vtg-rounded-image {
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--vtg-shadow);
}

.vtg-image-frame img,
.vtg-rounded-image {
  width: 100%;
  min-height: 420px;
  object-fit: cover;
}

.vtg-check-list {
  display: grid;
  gap: 10px;
  margin-top: 20px;
}

.vtg-check-list span {
  padding: 12px 14px;
  border: 1px solid var(--vtg-line);
  border-radius: 8px;
  background: #f8fbf9;
  font-weight: 900;
}

.vtg-band {
  color: var(--vtg-white);
  background:
    linear-gradient(135deg, rgba(0, 80, 48, 0.96), rgba(7, 63, 43, 0.96)),
    url('../images/client-consultation.jpg') center / cover no-repeat;
}

.vtg-process {
  display: grid;
  gap: 28px;
}

.vtg-steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.vtg-steps article {
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.09);
}

.vtg-steps strong {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  margin-bottom: 12px;
  color: var(--vtg-ink);
  background: var(--vtg-orange);
  border-radius: 50%;
}

.vtg-cta-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 24px;
  padding: 34px;
}

.vtg-page-hero {
  padding: 92px 0 70px;
  color: var(--vtg-white);
  background:
    linear-gradient(135deg, rgba(7, 27, 22, 0.95), rgba(0, 80, 48, 0.86)),
    url('../images/hero-tax-office.jpg') center / cover no-repeat;
}

.vtg-page-hero p {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 18px;
}

.vtg-portal-card {
  color: var(--vtg-ink);
  padding: 28px;
}

.vtg-intake-section {
  background:
    linear-gradient(180deg, #f8fbf9 0%, #ffffff 42%, #f4f8f5 100%);
}

.vtg-intake-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.34fr) minmax(0, 1fr);
  gap: 28px;
  align-items: start;
}

.vtg-intake-sidebar {
  display: grid;
  gap: 18px;
  position: sticky;
  top: 96px;
}

.vtg-intake-form {
  display: grid;
  gap: 18px;
}

.vtg-intake-progress,
.vtg-form-card {
  border: 1px solid rgba(220, 229, 223, 0.95);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 18px 52px rgba(7, 27, 22, 0.08);
}

.vtg-intake-progress {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 16px 18px;
  color: var(--vtg-ink);
}

.vtg-intake-progress span {
  color: var(--vtg-muted);
  font-weight: 800;
}

.vtg-form-card {
  display: grid;
  gap: 18px;
  margin: 0;
  padding: 26px;
}

.vtg-form-card legend {
  float: left;
  width: 100%;
  margin: 0 0 10px;
  color: var(--vtg-green);
  font-family: var(--vtg-heading);
  font-size: 24px;
  font-weight: 900;
}

.vtg-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.vtg-form-grid label,
.vtg-full-label,
.vtg-checkbox-grid label,
.vtg-consent-stack label {
  color: var(--vtg-ink);
  font-size: 13px;
  font-weight: 900;
}

.vtg-form-grid input,
.vtg-form-grid select,
.vtg-form-grid textarea,
.vtg-full-label textarea {
  width: 100%;
  min-height: 48px;
  margin-top: 7px;
  border: 1px solid #c8d6ce;
  border-radius: 8px;
  background: #fbfdfb;
  color: var(--vtg-ink);
  font: inherit;
  padding: 12px 13px;
  outline: none;
}

.vtg-form-grid textarea,
.vtg-full-label textarea {
  min-height: 112px;
  resize: vertical;
}

.vtg-form-grid input:focus,
.vtg-form-grid select:focus,
.vtg-form-grid textarea:focus,
.vtg-full-label textarea:focus {
  border-color: var(--vtg-green);
  box-shadow: 0 0 0 4px rgba(0, 80, 48, 0.11);
}

.vtg-span-2,
.vtg-full-label {
  grid-column: 1 / -1;
}

.vtg-form-subsection {
  display: grid;
  gap: 14px;
  border-top: 1px solid var(--vtg-line);
  padding-top: 18px;
}

.vtg-form-subsection h3 {
  margin: 0;
  font-size: 18px;
}

.vtg-repeat-row {
  border: 1px solid #dbe6df;
  border-radius: 8px;
  background: #f8fbf9;
  padding: 16px;
}

.vtg-checkbox-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.vtg-checkbox-grid label,
.vtg-consent-stack label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  border: 1px solid #dbe6df;
  border-radius: 8px;
  background: #f8fbf9;
  padding: 12px;
}

.vtg-checkbox-grid input,
.vtg-consent-stack input {
  margin-top: 3px;
}

.vtg-consent-stack {
  display: grid;
  gap: 10px;
}

.vtg-upload-callout {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  border: 1px solid rgba(245, 124, 0, 0.3);
  border-radius: 8px;
  background: #fff8ed;
  color: var(--vtg-ink);
  padding: 14px;
}

.vtg-upload-callout span {
  color: var(--vtg-muted);
  font-weight: 800;
}

.vtg-upload-callout a {
  color: var(--vtg-green);
  font-weight: 900;
}

.vtg-intake-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-end;
  border: 1px solid var(--vtg-line);
  border-radius: 8px;
  background: var(--vtg-white);
  padding: 18px;
  box-shadow: 0 16px 44px rgba(7, 27, 22, 0.08);
}

.vtg-form-placeholder {
  display: grid;
  gap: 10px;
  margin-top: 16px;
}

.vtg-form-placeholder span {
  display: block;
  min-height: 46px;
  padding: 12px;
  border: 1px dashed #b9c8bf;
  border-radius: 8px;
  color: var(--vtg-muted);
}

.vtg-content {
  max-width: 860px;
}

.vtg-footer {
  color: rgba(255, 255, 255, 0.88);
  background: #071b16;
  padding: 54px 0 22px;
}

.vtg-footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.8fr 0.8fr;
  gap: 34px;
}

.vtg-footer h2 {
  color: var(--vtg-white);
  font-size: 16px;
}

.vtg-footer a {
  color: var(--vtg-white);
  text-decoration: none;
}

.vtg-footer-brand .vtg-brand-mark {
  box-shadow: none;
}

.vtg-footer-brand small {
  color: rgba(255, 255, 255, 0.7);
}

.vtg-footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-top: 34px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.64);
  font-size: 13px;
}

@media (max-width: 980px) {
  .vtg-header-inner {
    grid-template-columns: auto auto;
    gap: 14px;
    min-height: 70px;
    padding: 10px 0;
  }

  .vtg-brand,
  .vtg-footer-brand {
    grid-template-columns: 46px minmax(0, 1fr);
  }

  .vtg-brand-mark {
    width: 46px;
    height: 46px;
  }

  .vtg-brand strong {
    font-size: 16px;
  }

  .vtg-brand small {
    font-size: 11px;
  }

  .vtg-menu-toggle {
    display: inline-flex;
    justify-self: end;
    align-items: center;
    justify-content: center;
    min-width: 76px;
    min-height: 44px;
  }

  .vtg-nav,
  .vtg-header-actions {
    grid-column: 1 / -1;
    display: none;
  }

  .vtg-nav.is-open,
  .vtg-nav.is-open + .vtg-header-actions {
    display: grid;
  }

  .vtg-menu {
    display: grid;
    justify-content: stretch;
    gap: 6px;
    padding-bottom: 14px;
  }

  .vtg-menu a {
    min-height: 46px;
    justify-content: center;
    background: #f5faf7;
  }

  .vtg-header-actions {
    gap: 8px;
    justify-content: flex-start;
    padding-bottom: 14px;
  }

  .vtg-hero-grid,
  .vtg-about-grid,
  .vtg-about-content,
  .vtg-detail-grid,
  .vtg-split,
  .vtg-service-layout,
  .vtg-contact-grid,
  .vtg-page-hero-grid,
  .vtg-cta-panel,
  .vtg-footer-grid,
  .vtg-intake-layout {
    grid-template-columns: 1fr;
  }

  .vtg-intake-sidebar {
    position: static;
    grid-template-columns: 1fr 1fr;
  }

  .vtg-card-grid.four,
  .vtg-card-grid.three,
  .vtg-card-grid.two,
  .vtg-detail-points,
  .vtg-steps {
    grid-template-columns: 1fr 1fr;
  }

  .vtg-hero {
    min-height: auto;
    background-position: center;
  }

  .vtg-hero-grid {
    align-items: start;
    padding: 72px 0 54px;
  }

  .vtg-hero h1 {
    font-size: clamp(42px, 8vw, 64px);
  }

  .vtg-hero-panel,
  .vtg-card,
  .vtg-portal-card,
  .vtg-cta-panel {
    box-shadow: 0 16px 44px rgba(7, 27, 22, 0.12);
  }

  .vtg-image-frame img,
  .vtg-rounded-image {
    min-height: 320px;
  }

  .vtg-page-hero {
    padding: 74px 0 58px;
  }

  .vtg-detail-copy {
    position: static;
  }
}

@media (max-width: 640px) {
  .vtg-shell {
    width: min(100% - 24px, 1180px);
  }

  .vtg-header-inner {
    min-height: 64px;
  }

  .vtg-brand {
    gap: 9px;
  }

  .vtg-brand-mark {
    width: 42px;
    height: 42px;
  }

  .vtg-brand strong {
    font-size: 15px;
  }

  .vtg-brand small {
    max-width: 180px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .vtg-header-actions {
    grid-template-columns: 1fr;
  }

  .vtg-header-actions .vtg-link,
  .vtg-header-actions .vtg-button,
  .vtg-hero-actions .vtg-button,
  .vtg-cta-panel .vtg-button,
  .vtg-page-hero .vtg-button {
    width: 100%;
  }

  .vtg-button {
    min-height: 48px;
    white-space: normal;
  }

  .vtg-hero {
    min-height: auto;
    background-position: 58% center;
  }

  .vtg-hero-grid {
    padding: 46px 0 44px;
    gap: 22px;
  }

  .vtg-hero h1 {
    font-size: 36px;
    line-height: 1.04;
  }

  .vtg-hero p,
  .vtg-page-hero p {
    font-size: 16px;
  }

  .vtg-hero-actions,
  .vtg-proof-row {
    display: grid;
    grid-template-columns: 1fr;
  }

  .vtg-proof-row span {
    text-align: center;
  }

  .vtg-section {
    padding: 46px 0;
  }

  .vtg-section-head h2,
  .vtg-about-grid h2,
  .vtg-about-content h2,
  .vtg-detail-copy h2,
  .vtg-split h2,
  .vtg-process h2,
  .vtg-cta-panel h2,
  .vtg-page-hero h1 {
    font-size: 31px;
    line-height: 1.07;
  }

  .vtg-hero-panel,
  .vtg-portal-card,
  .vtg-card,
  .vtg-cta-panel {
    padding: 20px;
  }

  .vtg-card-grid.four,
  .vtg-card-grid.three,
  .vtg-card-grid.two,
  .vtg-detail-points,
  .vtg-steps,
  .vtg-form-grid,
  .vtg-checkbox-grid,
  .vtg-intake-sidebar {
    grid-template-columns: 1fr;
  }

  .vtg-intake-progress,
  .vtg-upload-callout,
  .vtg-intake-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .vtg-form-card {
    padding: 18px;
  }

  .vtg-intake-actions .vtg-button {
    width: 100%;
  }

  .vtg-image-frame img,
  .vtg-rounded-image {
    min-height: 240px;
  }

  .vtg-page-hero {
    padding: 54px 0 46px;
  }

  .vtg-footer {
    padding-top: 42px;
  }

  .vtg-footer-bottom {
    display: grid;
  }
}

@media (min-width: 641px) and (max-width: 1180px) {
  .vtg-shell {
    width: min(100% - 44px, 1180px);
  }

  .vtg-card-grid.four {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .vtg-hero-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .vtg-hero-panel {
    max-width: 620px;
  }
}

@media print {
  .vtg-header,
  .vtg-footer,
  .vtg-page-hero,
  .vtg-intake-sidebar,
  .vtg-intake-actions {
    display: none !important;
  }

  .vtg-section {
    padding: 0;
  }

  .vtg-shell {
    width: 100%;
  }

  .vtg-intake-layout,
  .vtg-form-grid,
  .vtg-checkbox-grid {
    display: block;
  }

  .vtg-form-card,
  .vtg-intake-progress {
    box-shadow: none;
    break-inside: avoid;
    margin-bottom: 14px;
  }
}
