:root {
  --vr-navy: #0b2442;
  --vr-navy-2: #12365f;
  --vr-blue: #2454d6;
  --vr-blue-2: #163fb1;
  --vr-red: #d82027;
  --vr-red-2: #b9151d;
  --vr-gold: #d9903d;
  --vr-cream: #f7f1ea;
  --vr-soft: #f5f7fb;
  --vr-ink: #0f172a;
  --vr-muted: #475569;
  --vr-line: #dce4ee;
  --vr-white: #ffffff;
  --vr-container: 1220px;
  --vr-radius-sm: 12px;
  --vr-radius: 20px;
  --vr-radius-lg: 30px;
  --vr-shadow: 0 18px 55px rgba(15, 23, 42, .12);
  --vr-shadow-soft: 0 12px 34px rgba(15, 23, 42, .075);
  --vr-font: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --vr-serif: Georgia, Cambria, "Times New Roman", serif;
}

html { scroll-behavior: smooth; }
body.vr-site { margin: 0; background: #fff; color: var(--vr-ink); font-family: var(--vr-font); line-height: 1.6; }
body.vr-site * { box-sizing: border-box; }
body.vr-site img { max-width: 100%; height: auto; display: block; }
body.vr-site a { color: inherit; text-decoration: none; }
body.vr-site p { margin: 0 0 1rem; color: var(--vr-muted); }
body.vr-site h1, body.vr-site h2, body.vr-site h3, body.vr-site h4 { margin: 0 0 .75rem; color: var(--vr-navy); line-height: 1.05; letter-spacing: -.035em; }
body.vr-site h1 { font-size: clamp(2.55rem, 5.4vw, 5.45rem); }
body.vr-site h2 { font-size: clamp(2rem, 3.6vw, 3.6rem); }
body.vr-site h3 { font-size: clamp(1.2rem, 2vw, 1.55rem); }
body.vr-site ul { margin-top: 0; }
.vr-container { width: min(100% - 40px, var(--vr-container)); margin-inline: auto; }
.vr-main { overflow: hidden; }
.vr-skip-link { position: absolute; left: -999px; top: 10px; z-index: 9999; background: #fff; color: var(--vr-navy); padding: 10px 14px; border-radius: 10px; }
.vr-skip-link:focus { left: 12px; }

.vr-header { position: sticky; top: 0; z-index: 999; background: rgba(255,255,255,.96); backdrop-filter: blur(12px); border-bottom: 1px solid rgba(220,228,238,.9); box-shadow: 0 6px 28px rgba(15,23,42,.06); }
.vr-header__top { background: var(--vr-navy); color: #dbeafe; font-size: .82rem; }
.vr-header__top-inner { min-height: 34px; display: flex; align-items: center; justify-content: space-between; gap: 18px; }
.vr-header__top a { color: #fff; font-weight: 800; }
.vr-header__main-inner { display: flex; align-items: center; justify-content: space-between; min-height: 82px; gap: 18px; position: relative; }
.vr-brand { display: inline-flex; align-items: center; min-width: 230px; }
.vr-brand img { width: auto; max-width: 250px; height: auto; max-height: 64px; object-fit: contain; }
.vr-nav { display: flex; align-items: center; justify-content: center; }
.vr-nav__list { list-style: none; display: flex; align-items: center; gap: 2px; padding: 0; margin: 0; }
.vr-nav__list li { position: relative; margin: 0; }
.vr-nav__list a { display: flex; min-height: 42px; align-items: center; padding: 10px 13px; border-radius: 999px; color: var(--vr-navy); font-size: .92rem; font-weight: 850; transition: background .18s ease, color .18s ease; }
.vr-nav__list a:hover, .vr-nav__list .current-menu-item > a, .vr-nav__list .current-menu-ancestor > a { background: #eaf0ff; color: var(--vr-blue); }
.vr-nav__list .sub-menu { display: none; position: absolute; top: 100%; left: 0; min-width: 240px; padding: 10px; margin: 0; list-style: none; background: #fff; border: 1px solid var(--vr-line); border-radius: 18px; box-shadow: var(--vr-shadow); }
.vr-nav__list li:hover > .sub-menu, .vr-nav__list li:focus-within > .sub-menu { display: block; }
.vr-nav__list .sub-menu a { justify-content: flex-start; border-radius: 12px; min-height: 40px; white-space: nowrap; }
.vr-header__actions { display: flex; align-items: center; gap: 10px; }
.vr-menu-toggle { display: none; align-items: center; gap: 7px; min-height: 44px; border: 1px solid var(--vr-line); background: #fff; border-radius: 999px; padding: 0 13px; color: var(--vr-navy); font: inherit; font-weight: 900; cursor: pointer; }
.vr-menu-toggle span { display: block; width: 16px; height: 2px; background: var(--vr-navy); margin: 3px 0; }
.vr-menu-toggle b { font-size: .8rem; }

.vr-btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; min-height: 48px; padding: 13px 20px; border-radius: 999px; border: 2px solid transparent; font-weight: 950; line-height: 1; text-align: center; cursor: pointer; transition: transform .18s ease, box-shadow .18s ease, background .18s ease, border-color .18s ease; }
.vr-btn:hover { transform: translateY(-1px); box-shadow: 0 14px 28px rgba(15,23,42,.16); }
.vr-btn--small { min-height: 42px; padding: 10px 15px; font-size: .86rem; }
.vr-btn--primary { background: var(--vr-blue); color: #fff !important; }
.vr-btn--primary:hover { background: var(--vr-blue-2); }
.vr-btn--danger { background: var(--vr-red); color: #fff !important; }
.vr-btn--danger:hover { background: var(--vr-red-2); }
.vr-btn--light { background: #fff; color: var(--vr-navy) !important; }
.vr-btn--outline { background: #fff; color: var(--vr-navy) !important; border-color: var(--vr-line); }
.vr-btn--outline:hover { border-color: var(--vr-blue); color: var(--vr-blue) !important; }
.vr-btn--ghost { background: rgba(255,255,255,.12); color: #fff !important; border-color: rgba(255,255,255,.3); }

.vr-page-hero { padding: 84px 0 70px; background: linear-gradient(135deg, #f7f9fc, #fff); border-bottom: 1px solid var(--vr-line); }
.vr-hero { position: relative; min-height: 690px; background: var(--vr-navy); color: #fff; overflow: hidden; }
.vr-hero:before { content: ""; position: absolute; inset: 0; background: var(--vr-hero-img, url('../img/vr-hero-kitchen.jpg')) center/cover no-repeat; transform: scale(1.015); opacity: .88; filter: saturate(1.04) contrast(1.02); }
.vr-hero:after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(6,18,34,.68), rgba(6,18,34,.46) 48%, rgba(6,18,34,.10) 100%); }
.vr-hero__grid { position: relative; z-index: 1; min-height: 690px; display: grid; grid-template-columns: 1.06fr .78fr; gap: 62px; align-items: center; padding: 70px 0; }
.vr-hero h1, .vr-hero h2 { color: #fff; max-width: 820px; text-wrap: balance; }
.vr-hero p { color: #ecf4ff; font-size: clamp(1rem, 1.4vw, 1.2rem); max-width: 760px; }
.vr-hero__actions, .vr-actions, .vr-actions-center { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; margin-top: 26px; }
.vr-actions-center { justify-content: center; }
.vr-hero__proof, .vr-pill-row { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 22px; }
.vr-pill { display: inline-flex; align-items: center; gap: 6px; padding: 7px 10px; border-radius: 999px; background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.18); color: #fff; font-weight: 900; font-size: .8rem; }
.vr-pill--dark { background: #eef3fb; color: var(--vr-navy); border-color: #dbe4f0; }
.vr-kicker, .vr-eyebrow { display: block; margin: 0 0 13px; color: var(--vr-blue); font-size: .78rem; font-weight: 950; text-transform: uppercase; letter-spacing: .14em; }
.vr-kicker { color: #fff; opacity: .96; }
.vr-eyebrow--light { color: #dbeafe; }
.vr-hero__mini { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 18px; }
.vr-hero__form { align-self: center; }

.vr-section { padding: 92px 0; }
.vr-section--soft { background: var(--vr-soft); }
.vr-section--cream { background: var(--vr-cream); }
.vr-section--navy { background: var(--vr-navy); color: #fff; }
.vr-section--navy h2, .vr-section--navy h3 { color: #fff; }
.vr-section--navy p { color: #dbeafe; }
.vr-section-head { max-width: 860px; margin-bottom: 36px; }
.vr-section-head--center { margin-inline: auto; text-align: center; }
.vr-section-head p:last-child { font-size: 1.05rem; }

.vr-grid-2 { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 28px; }
.vr-grid-3 { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 22px; }
.vr-grid-4 { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 18px; }
.vr-card { background: #fff; border: 1px solid var(--vr-line); border-radius: var(--vr-radius); padding: 28px; box-shadow: var(--vr-shadow-soft); }
.vr-card--split { display: flex; justify-content: space-between; gap: 18px; align-items: center; }
.vr-card h3 { font-size: 1.28rem; }
.vr-card p:last-child { margin-bottom: 0; }
.vr-card ul { margin-bottom: 0; padding-left: 20px; color: var(--vr-muted); }
.vr-card li { margin-bottom: 7px; }
.vr-card--blue { background: linear-gradient(135deg, var(--vr-blue), var(--vr-blue-2)); color: #fff; border: 0; }
.vr-card--blue h3, .vr-card--blue p, .vr-card--blue li { color: #fff; }
.vr-stat { padding: 24px; border-radius: var(--vr-radius); background: #fff; border: 1px solid var(--vr-line); box-shadow: var(--vr-shadow-soft); }
.vr-stat strong { display: block; color: var(--vr-navy); font-size: clamp(2.2rem, 4vw, 3.5rem); line-height: .9; letter-spacing: -.05em; }
.vr-stat span { display: block; margin-top: 9px; color: var(--vr-muted); font-weight: 850; }

.vr-media { overflow: hidden; border-radius: var(--vr-radius-lg); background: #dde7f4; box-shadow: var(--vr-shadow); }
.vr-media img { width: 100%; aspect-ratio: 16/11; object-fit: cover; }
.vr-media--square img { aspect-ratio: 1/1; }
.vr-media--tall img { aspect-ratio: 4/5; }
.vr-feature { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; padding: 64px 0; border-top: 1px solid var(--vr-line); }
.vr-feature:first-child { border-top: 0; padding-top: 0; }
.vr-feature:last-child { padding-bottom: 0; }
.vr-feature:nth-child(even) .vr-feature__media { order: 2; }
.vr-feature p { font-size: 1.03rem; }

.vr-service-grid { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 20px; }
.vr-service-card { position: relative; min-height: 286px; border-radius: 22px; overflow: hidden; background: #111; color: #fff !important; box-shadow: var(--vr-shadow); isolation: isolate; }
.vr-service-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: .92; transition: transform .35s ease, opacity .35s ease; }
.vr-service-card:before { content: ""; position: absolute; inset: 0; z-index: 1; background: linear-gradient(180deg, rgba(8,20,36,.02), rgba(8,20,36,.32) 52%, rgba(8,20,36,.82)); }
.vr-service-card:hover img { transform: scale(1.055); opacity: .92; }
.vr-service-card__body { position: absolute; inset: auto 0 0; z-index: 2; padding: 24px; }
.vr-service-card__number { display: block; font-family: var(--vr-serif); font-size: 2.6rem; color: rgba(255,255,255,.72); line-height: .9; }
.vr-service-card h3 { color: #fff; font-size: 1.45rem; }
.vr-service-card__body > span:last-child { display: inline-flex; align-items: center; font-weight: 950; color: #fff; }

.vr-list-check { display: grid; gap: 10px; margin: 22px 0 0; padding: 0; list-style: none; }
.vr-list-check li { display: flex; gap: 10px; align-items: flex-start; color: var(--vr-muted); }
.vr-list-check li:before { content: "✓"; display: grid; place-items: center; flex: 0 0 24px; width: 24px; height: 24px; margin-top: 1px; border-radius: 50%; background: #e8f0ff; color: var(--vr-blue); font-weight: 950; }

.vr-process { display: grid; grid-template-columns: repeat(5, minmax(0,1fr)); gap: 16px; }
.vr-step { background: #fff; border: 1px solid var(--vr-line); border-radius: 18px; padding: 22px; box-shadow: var(--vr-shadow-soft); }
.vr-step b { display: grid; place-items: center; width: 34px; height: 34px; border-radius: 50%; background: var(--vr-blue); color: #fff; margin-bottom: 14px; }
.vr-step h3 { font-size: 1.07rem; margin-bottom: 8px; }
.vr-step p { font-size: .94rem; margin-bottom: 0; }

.vr-gallery { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 18px; }
.vr-gallery a, .vr-gallery figure { position: relative; overflow: hidden; border-radius: 20px; background: #000; box-shadow: var(--vr-shadow); margin: 0; }
.vr-gallery img { width: 100%; aspect-ratio: 4/3; object-fit: cover; transition: transform .28s ease; }
.vr-gallery a:hover img { transform: scale(1.04); }
.vr-gallery span, .vr-gallery figcaption { position: absolute; left: 14px; bottom: 14px; display: inline-flex; border-radius: 999px; background: rgba(11,36,66,.84); color: #fff; padding: 7px 11px; font-size: .82rem; font-weight: 950; }

.vr-testimonials { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 18px; }
.vr-quote { position: relative; background: #fff; border: 1px solid var(--vr-line); border-radius: 20px; padding: 26px; box-shadow: var(--vr-shadow-soft); margin: 0; }
.vr-quote:before { content: "“"; position: absolute; top: 5px; right: 20px; color: #e6edf7; font-family: var(--vr-serif); font-size: 4.8rem; line-height: 1; }
.vr-quote blockquote { position: relative; margin: 0 0 14px; color: var(--vr-navy); font-weight: 850; }
.vr-quote cite { display: block; color: var(--vr-muted); font-size: .92rem; font-style: normal; }
.vr-stars { color: #ffb020; letter-spacing: .08em; font-size: 1.1rem; margin-bottom: 10px; }
.vr-rating { display: flex; align-items: center; gap: 14px; padding: 20px; border-radius: 20px; background: #fff; border: 1px solid var(--vr-line); box-shadow: var(--vr-shadow-soft); }

.vr-area-pill, .vr-tag { display: inline-flex; align-items: center; min-height: 36px; padding: 8px 12px; margin: 4px 5px 4px 0; border-radius: 999px; background: #fff; border: 1px solid var(--vr-line); color: var(--vr-navy); font-size: .86rem; font-weight: 900; }
.vr-tag { background: #f1f5fb; }
.vr-areas { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 18px; }

.vr-faq { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.vr-faq details { background: #fff; border: 1px solid var(--vr-line); border-radius: 16px; padding: 18px 20px; box-shadow: var(--vr-shadow-soft); }
.vr-faq summary { cursor: pointer; color: var(--vr-navy); font-weight: 950; }
.vr-faq p { margin: 12px 0 0; font-size: .96rem; }

.vr-lead-form { width: 100%; background: #fff; color: var(--vr-navy); border-radius: 24px; padding: 24px; border: 1px solid rgba(255,255,255,.2); box-shadow: var(--vr-shadow); }
.vr-form__head { margin-bottom: 18px; }
.vr-form__head strong { display: block; color: var(--vr-navy); font-size: 1.15rem; line-height: 1.2; }
.vr-form__head span, .vr-form__fineprint { color: var(--vr-muted); font-size: .86rem; }
.vr-lead-form label { display: block; margin: 10px 0 5px; color: var(--vr-navy); font-size: .78rem; font-weight: 950; }
.vr-lead-form input:not([type=checkbox]), .vr-lead-form select, .vr-lead-form textarea { width: 100%; min-height: 44px; padding: 10px 12px; border: 1px solid #cbd5e1; border-radius: 12px; background: #fff; color: var(--vr-ink); font: inherit; }
.vr-lead-form textarea { resize: vertical; min-height: 94px; }
.vr-form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.vr-form__row p { margin: 0; }
.vr-checkbox { display: flex !important; align-items: flex-start; gap: 9px; color: var(--vr-muted) !important; font-size: .86rem !important; line-height: 1.35; }
.vr-checkbox input { margin-top: 3px; }
.vr-form__submit { width: 100%; margin-top: 14px; }
.vr-form__fineprint { margin: 10px 0 0; text-align: center; }
.vr-field-honey { position: absolute !important; left: -9999px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }

.vr-calculator { background: #fff; border: 1px solid var(--vr-line); border-radius: 28px; padding: 34px; box-shadow: var(--vr-shadow); }
.vr-calc__intro { display: grid; grid-template-columns: 1fr auto; gap: 18px; align-items: start; margin-bottom: 24px; }
.vr-calc__intro h2 { margin-bottom: 6px; }
.vr-calc__grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 18px; }
.vr-calc__group { border: 1px solid var(--vr-line); border-radius: 20px; padding: 18px; background: var(--vr-soft); margin: 0; }
.vr-calc__group legend { padding: 0 6px; color: var(--vr-navy); font-weight: 950; }
.vr-calc__options { display: grid; gap: 10px; margin-top: 8px; }
.vr-calc__option { display: grid; grid-template-columns: auto 1fr auto; gap: 10px; align-items: center; padding: 11px 12px; background: #fff; border: 1px solid var(--vr-line); border-radius: 14px; cursor: pointer; }
.vr-calc__option strong { color: var(--vr-navy); }
.vr-calc__option small { display: block; color: var(--vr-muted); font-size: .78rem; }
.vr-calc__option input { accent-color: var(--vr-blue); }
.vr-calc__option output { color: var(--vr-muted); font-size: .82rem; font-weight: 900; }
.vr-calc__result { margin: 26px 0; padding: 28px; border-radius: 24px; background: linear-gradient(135deg, var(--vr-navy), var(--vr-blue)); color: #fff; text-align: center; }
.vr-calc__result p { color: #dbeafe; margin: 0; }
.vr-calc__result strong { display: block; margin: 10px 0; color: #fff; font-size: clamp(2rem, 5vw, 4.8rem); line-height: 1; letter-spacing: -.05em; }
.vr-calc__result span { color: #fff; font-weight: 800; }
.vr-calc__summary { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }

.vr-callout { display: flex; align-items: center; justify-content: space-between; gap: 24px; padding: 42px; border-radius: 28px; color: #fff; background: linear-gradient(135deg, var(--vr-blue), var(--vr-navy)); box-shadow: var(--vr-shadow); }
.vr-callout h2, .vr-callout p { color: #fff; }
.vr-callout p:last-child { margin-bottom: 0; }
.vr-price-list { display: grid; gap: 12px; }
.vr-price-list div { display: flex; justify-content: space-between; gap: 12px; border-bottom: 1px solid var(--vr-line); padding-bottom: 12px; }
.vr-price-list strong { color: var(--vr-navy); }
.vr-price-list span { color: var(--vr-muted); font-weight: 850; }

.vr-footer { background: var(--vr-navy); color: #dbeafe; }
.vr-footer__cta { border-bottom: 1px solid rgba(255,255,255,.12); }
.vr-footer__cta-inner { display: flex; justify-content: space-between; align-items: center; gap: 28px; padding: 56px 0; }
.vr-footer__cta h2, .vr-footer__cta p { color: #fff; }
.vr-footer__cta p { margin-bottom: 0; color: #dbeafe; }
.vr-footer__cta-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.vr-footer__grid { display: grid; grid-template-columns: 1.45fr .8fr .8fr 1fr; gap: 34px; padding: 52px 0; }
.vr-footer h3 { color: #fff; font-size: 1rem; margin-bottom: 14px; }
.vr-footer p { color: #cbd5e1; }
.vr-footer a { color: #e2e8f0; }
.vr-footer-list { padding: 0; margin: 0; list-style: none; }
.vr-footer-list li { margin-bottom: 8px; }
.vr-footer-list a:hover { color: #fff; text-decoration: underline; }
.vr-brand--footer img { filter: none; background: #fff; border-radius: 12px; padding: 4px; }
.vr-badges { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 16px; }
.vr-badges span { display: inline-flex; padding: 7px 9px; border-radius: 999px; border: 1px solid rgba(255,255,255,.16); color: #fff; font-size: .72rem; font-weight: 950; }
.vr-footer__bottom { border-top: 1px solid rgba(255,255,255,.1); }
.vr-footer__bottom-inner { display: flex; justify-content: space-between; gap: 18px; padding: 18px 0; color: #94a3b8; font-size: .86rem; }
.vr-footer__micro { font-size: .86rem; }
.vr-mobile-sticky { display: none; }

@media (max-width: 1150px) {
  .vr-header__actions { display: none; }
  .vr-menu-toggle { display: inline-flex; }
  .vr-nav { position: absolute; left: 20px; right: 20px; top: calc(100% + 8px); display: none; background: #fff; border: 1px solid var(--vr-line); border-radius: 20px; box-shadow: var(--vr-shadow); padding: 12px; }
  .vr-nav.is-open { display: block; }
  .vr-nav__list { display: grid; align-items: stretch; gap: 4px; }
  .vr-nav__list a { justify-content: flex-start; border-radius: 12px; }
  .vr-nav__list .sub-menu { position: static; display: block; box-shadow: none; border: 0; padding: 0 0 0 12px; margin: 0; min-width: 0; background: transparent; }
  .vr-hero__grid { grid-template-columns: 1fr; gap: 34px; }
  .vr-hero__form { max-width: 650px; width: 100%; }
  .vr-process { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 860px) {
  .vr-header__top { display: none; }
  .vr-header__main-inner { min-height: 72px; }
  .vr-brand { min-width: 0; }
  .vr-brand img { width: 205px; }
  .vr-hero, .vr-hero__grid { min-height: 0; }
  .vr-hero__grid { padding: 58px 0; }
  .vr-section { padding: 68px 0; }
  .vr-page-hero { padding: 62px 0 52px; }
  .vr-grid-2, .vr-grid-3, .vr-grid-4, .vr-feature, .vr-testimonials, .vr-faq, .vr-calc__summary { grid-template-columns: 1fr; }
  .vr-service-grid, .vr-gallery { grid-template-columns: 1fr; }
  .vr-process { grid-template-columns: 1fr; }
  .vr-feature { gap: 28px; padding: 46px 0; }
  .vr-feature:nth-child(even) .vr-feature__media { order: 0; }
  .vr-form__row, .vr-calc__grid { grid-template-columns: 1fr; }
  .vr-calc__intro { grid-template-columns: 1fr; }
  .vr-card--split, .vr-callout, .vr-footer__cta-inner { flex-direction: column; align-items: flex-start; }
  .vr-footer__grid { grid-template-columns: 1fr 1fr; }
  .vr-mobile-sticky { position: fixed; left: 0; right: 0; bottom: 0; z-index: 998; display: grid; grid-template-columns: 1fr 1fr; box-shadow: 0 -14px 34px rgba(15,23,42,.18); }
  .vr-mobile-sticky a { min-height: 58px; display: flex; align-items: center; justify-content: center; color: #fff; font-weight: 950; }
  .vr-mobile-sticky a:first-child { background: var(--vr-blue); }
  .vr-mobile-sticky a:last-child { background: var(--vr-red); }
  .vr-footer { padding-bottom: 58px; }
}

@media (max-width: 560px) {
  .vr-container { width: min(100% - 24px, var(--vr-container)); }
  body.vr-site h1 { font-size: clamp(2.25rem, 12vw, 3.1rem); }
  body.vr-site h2 { font-size: clamp(1.9rem, 9vw, 2.55rem); }
  .vr-hero__actions, .vr-footer__cta-actions, .vr-actions { display: grid; width: 100%; }
  .vr-btn { width: 100%; }
  .vr-card, .vr-lead-form, .vr-calculator { padding: 22px; border-radius: 20px; }
  .vr-service-card { min-height: 236px; }
  .vr-footer__grid { grid-template-columns: 1fr; }
  .vr-footer__bottom-inner { flex-direction: column; }
}


/* 1.1.1 hardening fixes */
body.vr-site .entry-content,
body.vr-site .site-content,
body.vr-site .ast-container { overflow: visible; }
body.vr-site .entry-content > section { clear: both; }
body.vr-site .entry-content .vr-service-grid,
body.vr-site .entry-content .vr-gallery,
body.vr-site .entry-content .vr-grid-2,
body.vr-site .entry-content .vr-grid-3,
body.vr-site .entry-content .vr-grid-4,
body.vr-site .entry-content .vr-process { align-items: stretch; }
body.vr-site .entry-content .vr-service-grid > *,
body.vr-site .entry-content .vr-gallery > *,
body.vr-site .entry-content .vr-grid-2 > *,
body.vr-site .entry-content .vr-grid-3 > *,
body.vr-site .entry-content .vr-grid-4 > * { min-width: 0; }
body.vr-site .entry-content .vr-service-card,
body.vr-site .entry-content .vr-gallery a { display: block; width: 100%; }
body.vr-site .entry-content .vr-service-card { position: relative; }
body.vr-site .entry-content .vr-service-card__body { display: flex; flex-direction: column; align-items: flex-start; gap: 8px; }
body.vr-site .entry-content .vr-service-card h3 { margin: 0; }
body.vr-site .entry-content .vr-media,
body.vr-site .entry-content .vr-card,
body.vr-site .entry-content .vr-quote,
body.vr-site .entry-content .vr-stat,
body.vr-site .entry-content .vr-step { position: relative; }
body.vr-site .entry-content img[class*="wp-image"],
body.vr-site .entry-content img[loading] { height: auto; }


/* 1.2.0 project photography fixes */
body.vr-site .entry-content .vr-service-card__body {
  position: absolute;
  inset: auto 0 0;
  z-index: 2;
  padding: 24px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}
body.vr-site .entry-content .vr-service-card__body h3 { margin: 0; color: #fff; }
body.vr-site .entry-content .vr-service-card__body > span:last-child {
  display: inline-flex;
  align-items: center;
  font-weight: 950;
  color: #fff;
}
body.vr-site .entry-content .vr-gallery img,
body.vr-site .entry-content .vr-media img,
body.vr-site .entry-content .vr-service-card img {
  background: #e7edf6;
}


/* 1.3.0 readability, navigation, logo, and trust-signal fixes */
body.vr-site .vr-hero h1,
body.vr-site .vr-hero h2 {
  color: #fff !important;
  text-shadow: 0 3px 18px rgba(0,0,0,.42);
}
body.vr-site .vr-hero p,
body.vr-site .vr-hero .vr-kicker,
body.vr-site .vr-hero .vr-pill {
  color: #fff !important;
  text-shadow: 0 2px 12px rgba(0,0,0,.28);
}
body.vr-site .vr-hero .vr-pill {
  background: rgba(255,255,255,.17);
  border-color: rgba(255,255,255,.32);
}
body.vr-site .vr-service-card h3,
body.vr-site .vr-service-card__number,
body.vr-site .vr-service-card__body > span:last-child {
  color: #fff !important;
  text-shadow: 0 2px 12px rgba(0,0,0,.42);
}
body.vr-site .vr-service-card img {
  opacity: .92 !important;
}
body.vr-site .vr-service-card:hover img {
  opacity: 1 !important;
}
body.vr-site .vr-nav__list .sub-menu {
  top: 100% !important;
  margin-top: 0 !important;
}
body.vr-site .vr-btn,
body.vr-site .vr-header__actions a,
body.vr-site .vr-header__top a {
  white-space: nowrap;
}
body.vr-site .vr-header__actions .vr-btn--danger {
  min-width: 154px;
}
body.vr-site .vr-brand img,
body.vr-site .custom-logo-link img {
  width: auto !important;
  max-width: 250px !important;
  max-height: 64px !important;
  object-fit: contain !important;
}
body.vr-site .vr-brand--footer img {
  max-height: 82px !important;
  max-width: 260px !important;
  background: rgba(255,255,255,.96);
  border-radius: 12px;
  padding: 6px;
}
body.vr-site .vr-stat strong {
  font-size: clamp(1.75rem, 3vw, 2.85rem);
  letter-spacing: -.045em;
}
@media (max-width: 1150px) {
  body.vr-site .vr-brand img,
  body.vr-site .custom-logo-link img { max-height: 58px !important; max-width: 210px !important; }
}


/* 1.3.0 visual, navigation, logo, and Gravity Forms fixes */
body.vr-site .vr-hero .vr-hero__copy { background: rgba(5, 16, 31, .38); border: 1px solid rgba(255,255,255,.20); border-radius: 28px; padding: clamp(24px, 3vw, 38px); box-shadow: 0 22px 70px rgba(0,0,0,.24); backdrop-filter: blur(4px); }
body.vr-site .vr-hero h1,
body.vr-site .vr-hero h2,
body.vr-site .vr-hero .vr-kicker,
body.vr-site .vr-hero p { color: #fff !important; text-shadow: 0 2px 18px rgba(0,0,0,.50); }
body.vr-site .vr-hero p { color: #eef6ff !important; }
body.vr-site .vr-hero .vr-pill { background: rgba(255,255,255,.18); border-color: rgba(255,255,255,.32); color: #fff; }
body.vr-site .vr-header__actions .vr-btn,
body.vr-site .vr-header__top-inner > *,
body.vr-site .vr-footer__cta-actions .vr-btn { white-space: nowrap; }
body.vr-site .vr-header__actions .vr-btn--danger { min-width: 156px; }
body.vr-site .vr-nav__list > li.menu-item-has-children::after { content: ""; position: absolute; left: 0; right: 0; top: 100%; height: 14px; }
body.vr-site .vr-nav__list .sub-menu { transform: translateY(0); }
body.vr-site .vr-nav__list li:hover > .sub-menu,
body.vr-site .vr-nav__list li:focus-within > .sub-menu { display: block; }
body.vr-site .vr-service-card { background: #dfe7f2; }
body.vr-site .vr-service-card h3,
body.vr-site .vr-service-card__body > span:last-child,
body.vr-site .vr-service-card__number { color: #fff !important; text-shadow: 0 2px 10px rgba(0,0,0,.45); }
body.vr-site .vr-brand--footer img { background: #fff; }
body.vr-site .vr-gf-form .gform_wrapper.gravity-theme .gfield_label,
body.vr-site .vr-gf-form .gform_wrapper .gfield_label { color: var(--vr-navy); font-weight: 950; font-size: .82rem; }
body.vr-site .vr-gf-form .gform_wrapper.gravity-theme input[type=text],
body.vr-site .vr-gf-form .gform_wrapper.gravity-theme input[type=tel],
body.vr-site .vr-gf-form .gform_wrapper.gravity-theme input[type=email],
body.vr-site .vr-gf-form .gform_wrapper.gravity-theme select,
body.vr-site .vr-gf-form .gform_wrapper.gravity-theme textarea { border: 1px solid #cbd5e1; border-radius: 12px; min-height: 44px; padding: 10px 12px; }
body.vr-site .vr-gf-form .gform_wrapper.gravity-theme .gform_button,
body.vr-site .vr-gf-form .gform_wrapper .gform_button { border: 0; border-radius: 999px; background: var(--vr-blue); color: #fff; font-weight: 950; padding: 14px 22px; width: 100%; cursor: pointer; }
@media (max-width: 860px) {
  body.vr-site .vr-hero .vr-hero__copy { padding: 22px; }
}
