:root {
    --vg-navy: #08152f;
    --vg-navy-2: #0b1736;
    --vg-gold: #c8942b;
    --vg-gold-hover: #d6a230;
    --vg-warm: #f8f6f1;
    --vg-white: #ffffff;
    --vg-text: #0f172a;
    --vg-muted: #475569;
    --vg-border: #e5e7eb;
    --vg-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
    --vg-shadow-hover: 0 16px 42px rgba(15, 23, 42, 0.14);
    --vg-radius-card: 18px;
    --vg-radius-button: 12px;
    --vg-header-height: 76px;
    --vg-container: 1220px;
}

html {
    scroll-behavior: smooth;
}

body.vg-ui-new {
    margin: 0;
    background: var(--vg-white);
    color: var(--vg-text);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
    font-size: 16px;
    line-height: 1.7;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}

.vg-ui-new *,
.vg-ui-new *::before,
.vg-ui-new *::after {
    box-sizing: border-box;
}

.vg-ui-new #main-menu,
.vg-ui-new .mobile-sidebar,
.vg-ui-new .main-menu-overlay {
    display: none !important;
}

.vg-ui-new a {
    color: inherit;
    text-decoration: none;
}

.vg-ui-new img,
.vg-ui-new svg {
    display: block;
    max-width: 100%;
}

.vg-ui-new img {
    height: auto;
}

.vg-container {
    width: min(100% - 40px, var(--vg-container));
    margin-inline: auto;
}

.vg-header {
    position: sticky;
    top: 0;
    z-index: 9000;
    min-height: var(--vg-header-height);
    background: rgba(255, 255, 255, 0.96);
    border-bottom: 1px solid rgba(8, 21, 47, 0.08);
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.04);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.vg-header__inner {
    display: flex;
    align-items: center;
    gap: 26px;
    min-height: var(--vg-header-height);
}

.vg-logo {
    display: inline-flex;
    flex: 0 0 auto;
    align-items: center;
}

.vg-logo img {
    width: 176px;
    height: 44px;
}

.vg-nav {
    display: flex;
    flex: 1 1 auto;
    align-items: center;
    justify-content: flex-end;
    color: #172033;
    font-size: 15px;
    font-weight: 700;
}

.vg-nav__list {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 24px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.vg-nav__item {
    position: relative;
    margin: 0;
    padding: 0;
    list-style: none;
}

.vg-nav__link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    min-height: 44px;
    white-space: nowrap;
}

.vg-nav__item--has-children > .vg-nav__link::after {
    width: 7px;
    height: 7px;
    margin-top: -3px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    content: "";
    transform: rotate(45deg);
}

.vg-nav__dropdown {
    position: absolute;
    top: calc(100% + 12px);
    left: 50%;
    z-index: 20;
    display: grid;
    width: 260px;
    max-height: min(70vh, 560px);
    padding: 10px;
    overflow-y: auto;
    border: 1px solid rgba(8, 21, 47, 0.08);
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 18px 46px rgba(15, 23, 42, 0.16);
    opacity: 0;
    transform: translate(-50%, 8px);
    transition: opacity 150ms ease, transform 150ms ease, visibility 150ms ease;
    visibility: hidden;
}

.vg-nav__dropdown ul,
.vg-nav__dropdown li {
    margin: 0;
    padding: 0;
    list-style: none;
}

.vg-nav__dropdown::before {
    position: absolute;
    top: -14px;
    right: 0;
    left: 0;
    height: 14px;
    content: "";
}

.vg-nav__dropdown a {
    display: block;
    padding: 10px 12px;
    border-radius: 10px;
    color: #172033;
    font-size: 14px;
    font-weight: 750;
    line-height: 1.35;
}

.vg-nav__dropdown a:hover,
.vg-nav__dropdown a:focus-visible {
    background: rgba(200, 148, 43, 0.1);
    color: var(--vg-gold);
}

.vg-nav__item:hover .vg-nav__dropdown,
.vg-nav__item:focus-within .vg-nav__dropdown {
    opacity: 1;
    transform: translate(-50%, 0);
    visibility: visible;
}

.vg-nav a,
.vg-footer a,
.vg-section__link,
.vg-read-more {
    transition: color 160ms ease;
}

.vg-nav a:hover,
.vg-nav a:focus-visible,
.vg-footer a:hover,
.vg-footer a:focus-visible,
.vg-section__link:hover,
.vg-section__link:focus-visible,
.vg-read-more:hover,
.vg-read-more:focus-visible {
    color: var(--vg-gold);
}

.vg-header__phone {
    display: inline-flex;
    flex: 0 0 auto;
    align-items: center;
    gap: 8px;
    min-height: 42px;
    padding: 0 14px;
    border: 1px solid rgba(200, 148, 43, 0.28);
    border-radius: 999px;
    color: var(--vg-navy);
    font-size: 14px;
    font-weight: 800;
    white-space: nowrap;
}

.vg-header__phone svg {
    width: 17px;
    height: 17px;
    fill: var(--vg-gold);
}

.vg-menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    padding: 0;
    border: 1px solid rgba(8, 21, 47, 0.14);
    border-radius: 12px;
    background: #fff;
    color: var(--vg-navy);
}

.vg-menu-toggle span {
    display: block;
    width: 18px;
    height: 2px;
    margin: 4px auto;
    border-radius: 2px;
    background: currentColor;
}

.vg-mobile-panel {
    border-top: 1px solid rgba(8, 21, 47, 0.08);
    background: #fff;
}

.vg-mobile-panel__nav {
    display: grid;
    width: min(100% - 40px, var(--vg-container));
    margin: 0 auto;
    padding: 12px 0 18px;
}

.vg-mobile-panel__nav a,
.vg-mobile-panel__group summary {
    min-height: 48px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(8, 21, 47, 0.08);
    color: var(--vg-navy);
    font-weight: 750;
}

.vg-mobile-panel__group {
    margin: 0;
}

.vg-mobile-panel__group summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    list-style: none;
}

.vg-mobile-panel__group summary::-webkit-details-marker {
    display: none;
}

.vg-mobile-panel__group summary::after {
    width: 9px;
    height: 9px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    content: "";
    transform: rotate(45deg);
    transition: transform 150ms ease;
}

.vg-mobile-panel__group[open] summary::after {
    transform: rotate(225deg);
}

.vg-mobile-panel__children {
    display: grid;
    padding: 4px 0 10px 16px;
}

.vg-mobile-panel__children a {
    min-height: 42px;
    padding: 9px 0;
    color: var(--vg-muted);
    font-size: 14px;
}

.vg-mobile-panel__cta {
    width: min(100% - 40px, var(--vg-container));
    margin: 0 auto 18px;
}

.vg-hero {
    position: relative;
    display: grid;
    min-height: clamp(520px, 66vw, 680px);
    overflow: hidden;
    background: var(--vg-navy);
    isolation: isolate;
}

.vg-hero__image {
    position: absolute;
    inset: 0;
    z-index: -2;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.vg-hero__overlay {
    position: absolute;
    inset: 0;
    z-index: -1;
    background:
        linear-gradient(90deg, rgba(8, 21, 47, 0.88) 0%, rgba(8, 21, 47, 0.72) 40%, rgba(8, 21, 47, 0.22) 100%),
        linear-gradient(0deg, rgba(8, 21, 47, 0.22), rgba(8, 21, 47, 0.08));
}

.vg-hero__content {
    align-self: center;
    max-width: var(--vg-container);
    padding: 72px 0;
    color: #fff;
}

.vg-eyebrow,
.vg-section__kicker,
.vg-project-card__eyebrow {
    color: var(--vg-gold-hover);
    font-size: 12px;
    font-weight: 850;
    letter-spacing: 0.12em;
    line-height: 1.2;
    text-transform: uppercase;
}

.vg-hero h1 {
    max-width: 760px;
    margin: 16px 0 18px;
    color: #fff;
    font-size: clamp(42px, 5vw, 56px);
    font-weight: 850;
    letter-spacing: 0;
    line-height: 1.08;
}

.vg-hero p {
    max-width: 650px;
    margin: 0;
    color: rgba(255, 255, 255, 0.84);
    font-size: 18px;
    line-height: 1.65;
}

.vg-hero__actions,
.vg-single-hero__actions,
.vg-content-cta__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 30px;
}

.vg-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 12px 18px;
    border: 1px solid transparent;
    border-radius: var(--vg-radius-button);
    cursor: pointer;
    font-size: 15px;
    font-weight: 800;
    line-height: 1.2;
    text-align: center;
    transition: background 160ms ease, border-color 160ms ease, color 160ms ease, transform 160ms ease, box-shadow 160ms ease;
    touch-action: manipulation;
}

.vg-btn--primary {
    background: var(--vg-gold);
    color: var(--vg-navy);
    box-shadow: 0 12px 24px rgba(200, 148, 43, 0.22);
}

.vg-btn--primary:hover,
.vg-btn--primary:focus-visible {
    background: var(--vg-gold-hover);
    color: var(--vg-navy);
    transform: translateY(-1px);
    box-shadow: 0 16px 30px rgba(200, 148, 43, 0.28);
}

.vg-btn--secondary {
    border-color: rgba(8, 21, 47, 0.18);
    background: transparent;
    color: var(--vg-navy);
}

.vg-btn--secondary:hover,
.vg-btn--secondary:focus-visible {
    border-color: var(--vg-gold);
    color: var(--vg-gold);
    transform: translateY(-1px);
}

.vg-btn--light {
    border-color: rgba(255, 255, 255, 0.58);
    color: #fff;
}

.vg-btn--light:hover,
.vg-btn--light:focus-visible {
    border-color: #fff;
    color: #fff;
}

.vg-section {
    padding: 84px 0;
    background: #fff;
}

.vg-section--warm {
    background: var(--vg-warm);
}

.vg-section__head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 32px;
}

.vg-section__head--stack {
    display: block;
    max-width: 720px;
}

.vg-section h2,
.vg-single-content h2,
.vg-content-cta h2,
.vg-sidebar-card h2 {
    margin: 8px 0 0;
    color: var(--vg-navy);
    font-size: clamp(30px, 3vw, 38px);
    font-weight: 850;
    letter-spacing: 0;
    line-height: 1.18;
}

.vg-section__head h2::after {
    display: block;
    width: 52px;
    height: 3px;
    margin-top: 14px;
    border-radius: 3px;
    background: var(--vg-gold);
    content: "";
}

.vg-section__link,
.vg-read-more {
    color: var(--vg-gold);
    font-weight: 800;
}

.vg-section__link::after,
.vg-read-more::after {
    content: " →";
}

.vg-project-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px;
}

.vg-project-grid--archive {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.vg-project-card,
.vg-blog-card,
.vg-benefit-card,
.vg-sidebar-card,
.vg-content-cta,
.vg-empty-state {
    border: 1px solid rgba(8, 21, 47, 0.08);
    border-radius: var(--vg-radius-card);
    background: #fff;
    box-shadow: var(--vg-shadow);
}

.vg-project-card,
.vg-blog-card {
    overflow: hidden;
    transition: transform 180ms ease, box-shadow 180ms ease;
}

.vg-project-card:hover,
.vg-blog-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--vg-shadow-hover);
}

.vg-project-card__image,
.vg-blog-card__image {
    position: relative;
    display: block;
    overflow: hidden;
    background: linear-gradient(135deg, #0b1736, #243f67);
    aspect-ratio: 16 / 10;
}

.vg-project-card__image img,
.vg-blog-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 220ms ease;
}

.vg-project-card:hover .vg-project-card__image img,
.vg-blog-card:hover .vg-blog-card__image img {
    transform: scale(1.025);
}

.vg-card-placeholder {
    display: grid;
    width: 100%;
    height: 100%;
    place-items: center;
    color: rgba(255, 255, 255, 0.72);
    font-weight: 850;
    letter-spacing: 0.12em;
}

.vg-project-card__body,
.vg-blog-card__body {
    padding: 20px;
}

.vg-project-card__title,
.vg-blog-card h3 {
    margin: 8px 0 8px;
    color: var(--vg-navy);
    font-size: 18px;
    font-weight: 850;
    line-height: 1.3;
}

.vg-project-card__location,
.vg-blog-card p {
    display: -webkit-box;
    min-height: 48px;
    margin: 0 0 16px;
    overflow: hidden;
    color: var(--vg-muted);
    font-size: 14px;
    line-height: 1.55;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.vg-project-card__cta {
    display: inline-flex;
    min-height: 40px;
    align-items: center;
    justify-content: center;
    padding: 9px 13px;
    border: 1px solid rgba(200, 148, 43, 0.5);
    border-radius: 10px;
    color: var(--vg-gold);
    font-size: 14px;
    font-weight: 800;
}

.vg-benefit-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.vg-benefit-card {
    padding: 24px;
}

.vg-benefit-card__icon {
    display: inline-flex;
    width: 42px;
    height: 42px;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    border-radius: 12px;
    background: rgba(200, 148, 43, 0.12);
    color: var(--vg-gold);
}

.vg-benefit-card__icon svg {
    width: 24px;
    height: 24px;
    fill: currentColor;
}

.vg-benefit-card h3 {
    margin: 0 0 8px;
    color: var(--vg-navy);
    font-size: 18px;
    font-weight: 850;
    line-height: 1.32;
}

.vg-benefit-card p {
    margin: 0;
    color: var(--vg-muted);
    font-size: 15px;
    line-height: 1.6;
}

.vg-blog-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px;
}

.vg-blog-card__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 12px;
    color: var(--vg-muted);
    font-size: 12px;
    font-weight: 750;
}

.vg-footer {
    padding: 64px 0 24px;
    background: var(--vg-navy);
    color: rgba(255, 255, 255, 0.72);
}

.vg-footer__grid {
    display: grid;
    grid-template-columns: minmax(260px, 1.35fr) repeat(4, minmax(130px, 1fr));
    gap: 28px;
}

.vg-footer img {
    width: 176px;
    height: 44px;
}

.vg-footer p {
    max-width: 360px;
    margin: 18px 0 0;
    font-size: 15px;
}

.vg-footer h2 {
    margin: 0 0 14px;
    color: #fff;
    font-size: 15px;
    font-weight: 850;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.vg-footer a {
    display: block;
    margin: 9px 0;
    color: rgba(255, 255, 255, 0.74);
    font-size: 15px;
}

.vg-footer__bottom {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    margin-top: 44px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    font-size: 14px;
}

.vg-single-hero,
.vg-archive-hero {
    padding: 64px 0;
    background:
        linear-gradient(135deg, rgba(8, 21, 47, 0.96), rgba(11, 23, 54, 0.92)),
        var(--vg-navy);
    color: #fff;
}

.vg-single-hero__inner,
.vg-archive-hero .vg-container {
    max-width: 940px;
}

.vg-breadcrumbs {
    margin-bottom: 18px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 13px;
}

.vg-breadcrumbs a {
    color: rgba(255, 255, 255, 0.76);
}

.vg-single-hero h1,
.vg-archive-hero h1 {
    margin: 12px 0 16px;
    color: #fff;
    font-size: clamp(32px, 5vw, 52px);
    font-weight: 850;
    letter-spacing: 0;
    line-height: 1.12;
}

.vg-single-hero__excerpt,
.vg-archive-hero p {
    max-width: 760px;
    margin: 0;
    color: rgba(255, 255, 255, 0.78);
    font-size: 17px;
}

.vg-single-layout {
    display: grid;
    grid-template-columns: minmax(0, 840px) 320px;
    gap: 42px;
    align-items: start;
    padding: 64px 0;
}

.vg-single-content {
    min-width: 0;
    color: #1f2937;
    font-size: 17px;
    line-height: 1.78;
}

.vg-single-featured {
    margin: 0 0 34px;
}

.vg-single-featured img,
.vg-single-content img {
    border-radius: 16px;
}

.vg-single-content > *:first-child {
    margin-top: 0;
}

.vg-single-content h2 {
    margin: 42px 0 14px;
    font-size: clamp(26px, 3vw, 34px);
}

.vg-single-content h3 {
    margin: 30px 0 12px;
    color: var(--vg-navy);
    font-size: 23px;
    line-height: 1.28;
}

.vg-single-content p,
.vg-single-content ul,
.vg-single-content ol {
    margin: 0 0 20px;
}

.vg-single-content a {
    color: #a56f18;
    font-weight: 700;
}

.vg-single-content table {
    display: block;
    width: 100%;
    overflow-x: auto;
    border-collapse: collapse;
}

.vg-single-content th,
.vg-single-content td {
    padding: 12px;
    border: 1px solid var(--vg-border);
    vertical-align: top;
}

.vg-single-content #ez-toc-container,
.vg-single-content .ez-toc-container {
    float: none !important;
    width: 100% !important;
    max-width: none !important;
    margin: 0 0 28px !important;
    padding: 18px 20px !important;
    border: 1px solid rgba(8, 21, 47, 0.1) !important;
    border-radius: 16px !important;
    background: var(--vg-warm) !important;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.06) !important;
}

.vg-single-content #ez-toc-container .ez-toc-title-container,
.vg-single-content .ez-toc-container .ez-toc-title-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin: 0 0 10px;
}

.vg-single-content #ez-toc-container .ez-toc-title,
.vg-single-content .ez-toc-container .ez-toc-title {
    margin: 0 !important;
    color: var(--vg-navy);
    font-size: 16px;
    font-weight: 850;
    line-height: 1.3;
}

.vg-single-content #ez-toc-container nav,
.vg-single-content .ez-toc-container nav {
    margin: 0;
}

.vg-single-content #ez-toc-container ul,
.vg-single-content #ez-toc-container ol,
.vg-single-content .ez-toc-container ul,
.vg-single-content .ez-toc-container ol {
    margin: 0 !important;
    padding: 0 !important;
    list-style: none !important;
}

.vg-single-content #ez-toc-container li,
.vg-single-content .ez-toc-container li {
    margin: 0 !important;
    padding: 0 !important;
    list-style: none !important;
}

.vg-single-content #ez-toc-container a,
.vg-single-content .ez-toc-container a {
    display: block;
    padding: 8px 0;
    color: #334155;
    font-size: 15px;
    font-weight: 650;
    line-height: 1.45;
}

.vg-single-content #ez-toc-container a:hover,
.vg-single-content #ez-toc-container a:focus-visible,
.vg-single-content .ez-toc-container a:hover,
.vg-single-content .ez-toc-container a:focus-visible {
    color: var(--vg-gold);
}

.vg-single-content #ez-toc-container .ez-toc-btn,
.vg-single-content .ez-toc-container .ez-toc-btn {
    display: inline-flex;
    width: 34px;
    height: 34px;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(8, 21, 47, 0.1);
    border-radius: 10px;
    background: #fff;
}

.vg-single-content #ez-toc-container .ez-toc-icon-toggle-span,
.vg-single-content .ez-toc-container .ez-toc-icon-toggle-span {
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.vg-content-cta {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 24px;
    align-items: center;
    margin: 42px 0 0;
    padding: 26px;
    background: linear-gradient(135deg, #08152f 0%, #13264c 100%);
    color: rgba(255, 255, 255, 0.78);
}

.vg-content-cta h2 {
    margin: 0 0 8px;
    color: #fff;
    font-size: 24px;
}

.vg-content-cta p {
    margin: 0;
}

.vg-content-cta .vg-btn--secondary {
    border-color: rgba(255, 255, 255, 0.44);
    color: #fff;
}

.vg-single-sidebar {
    position: sticky;
    top: calc(var(--vg-header-height) + 24px);
}

.vg-sidebar-card {
    display: grid;
    gap: 12px;
    padding: 22px;
}

.vg-sidebar-card h2 {
    font-size: 22px;
}

.vg-sidebar-card p {
    margin: 0 0 4px;
    color: var(--vg-muted);
    font-size: 15px;
}

.vg-related {
    padding-top: 64px;
}

.vg-pagination {
    margin-top: 36px;
}

.vg-pagination .nav-links {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
}

.vg-pagination a,
.vg-pagination span {
    display: inline-flex;
    min-width: 42px;
    min-height: 42px;
    align-items: center;
    justify-content: center;
    padding: 8px 12px;
    border: 1px solid rgba(8, 21, 47, 0.12);
    border-radius: 11px;
    color: var(--vg-navy);
    font-weight: 800;
}

.vg-pagination .current {
    background: var(--vg-navy);
    color: #fff;
}

.vg-empty-state {
    max-width: 680px;
    margin: 0 auto;
    padding: 34px;
    text-align: center;
}

.vg-empty-state h2 {
    margin: 0 0 8px;
    color: var(--vg-navy);
    font-size: 28px;
}

.vg-empty-state p {
    margin: 0 0 22px;
    color: var(--vg-muted);
}

.vg-ui-new .vgland-project-lead-popup {
    z-index: 10050;
}

.vg-ui-new .vgland-project-lead-popup__dialog {
    border-radius: 24px;
    box-shadow: 0 24px 80px rgba(15, 23, 42, 0.28);
}

@media (max-width: 1180px) {
    .vg-project-grid,
    .vg-blog-grid,
    .vg-benefit-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .vg-single-layout {
        grid-template-columns: minmax(0, 1fr);
    }

    .vg-single-sidebar {
        position: static;
    }
}

@media (max-width: 900px) {
    :root {
        --vg-header-height: 64px;
    }

    .vg-container {
        width: min(100% - 40px, var(--vg-container));
    }

    .vg-header__inner {
        min-height: var(--vg-header-height);
    }

    .vg-logo img {
        width: 148px;
        height: 37px;
    }

    .vg-nav,
    .vg-header__phone {
        display: none;
    }

    .vg-menu-toggle {
        display: block;
        margin-left: auto;
    }

    .vg-hero {
        min-height: 580px;
    }

    .vg-hero__overlay {
        background: linear-gradient(90deg, rgba(8, 21, 47, 0.9), rgba(8, 21, 47, 0.52));
    }

    .vg-hero__content {
        padding: 54px 0;
    }

    .vg-hero h1 {
        max-width: 620px;
        font-size: clamp(30px, 9vw, 42px);
    }

    .vg-hero p {
        font-size: 16px;
    }

    .vg-section {
        padding: 58px 0;
    }

    .vg-section__head {
        display: block;
    }

    .vg-section__link {
        display: inline-flex;
        margin-top: 16px;
    }

    .vg-footer__grid {
        grid-template-columns: 1fr 1fr;
    }

    .vg-content-cta {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    body.vg-ui-new {
        font-size: 15.5px;
    }

    .vg-container {
        width: min(100% - 32px, var(--vg-container));
    }

    .vg-hero {
        min-height: 560px;
    }

    .vg-hero__image {
        object-position: 58% center;
    }

    .vg-hero__actions,
    .vg-single-hero__actions,
    .vg-content-cta__actions {
        display: grid;
    }

    .vg-btn {
        width: 100%;
        min-height: 48px;
    }

    .vg-project-grid,
    .vg-blog-grid,
    .vg-benefit-grid,
    .vg-project-grid--archive {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .vg-project-grid:not(.vg-project-grid--archive) {
        display: flex;
        gap: 16px;
        margin-inline: -16px;
        padding: 0 16px 8px;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
    }

    .vg-project-grid:not(.vg-project-grid--archive) .vg-project-card {
        flex: 0 0 86vw;
        scroll-snap-align: start;
    }

    .vg-section h2,
    .vg-single-content h2 {
        font-size: 26px;
    }

    .vg-single-hero,
    .vg-archive-hero {
        padding: 42px 0;
    }

    .vg-single-layout {
        padding: 42px 0;
    }

    .vg-single-content {
        font-size: 16px;
    }

    .vg-footer {
        padding-top: 48px;
    }

    .vg-footer__grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .vg-footer__bottom {
        display: grid;
    }
}

@media (max-width: 380px) {
    .vg-container {
        width: min(100% - 28px, var(--vg-container));
    }

    .vg-logo img {
        width: 138px;
        height: 34px;
    }

    .vg-hero h1 {
        font-size: 29px;
    }

    .vg-project-card__body,
    .vg-blog-card__body,
    .vg-benefit-card {
        padding: 18px;
    }
}

@media (max-width: 1024px) {
    body.vg-ui-new {
        padding-bottom: calc(88px + env(safe-area-inset-bottom, 0px));
    }

    .vg-ui-new .vgland-sticky-cta {
        z-index: 9990;
    }
}

@media (prefers-reduced-motion: reduce) {
    .vg-ui-new *,
    .vg-ui-new *::before,
    .vg-ui-new *::after {
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
    }
}
