:root {
  --vc-bg: #f8f7f2;
  --vc-bg-soft: #eef4f1;
  --vc-ink: #111819;
  --vc-muted: #5f6b70;
  --vc-line: rgba(17, 24, 28, .14);
  --vc-surface: #fffdf8;
  --vc-teal: #0f766e;
  --vc-rust: #b84c32;
  --vc-shadow: 0 24px 70px rgba(30, 38, 42, .13);
  color: var(--vc-ink);
  background: var(--vc-bg);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background: linear-gradient(145deg, var(--vc-bg) 0%, var(--vc-bg-soft) 55%, #f6f1ec 100%);
  color: var(--vc-ink);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
}

a:focus-visible,
button:focus-visible {
  outline: 3px solid rgba(15, 118, 110, .36);
  outline-offset: 3px;
}

.vc-shell {
  width: min(1120px, calc(100% - 56px));
  margin: 0 auto;
}

.vc-skip-link {
  position: fixed;
  left: 18px;
  top: 18px;
  z-index: 100;
  transform: translateY(-150%);
  background: var(--vc-ink);
  color: #fff;
  border-radius: 999px;
  padding: 10px 14px;
  font-weight: 900;
  text-decoration: none;
}

.vc-skip-link:focus {
  transform: translateY(0);
}

.vc-site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, .74);
  border-bottom: 1px solid var(--vc-line);
  backdrop-filter: blur(14px);
}

.vc-site-header__inner,
.vc-site-footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 88px;
}

.vc-brand {
  display: grid;
  gap: 2px;
  color: var(--vc-ink);
  text-decoration: none;
}

.vc-brand strong {
  font-size: 1.02rem;
  line-height: 1;
}

.vc-brand span {
  color: var(--vc-muted);
  font-size: .9rem;
  font-weight: 760;
}

.vc-menu-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 46px;
  border: 1px solid var(--vc-line);
  border-radius: 999px;
  background: rgba(255, 255, 255, .72);
  color: var(--vc-ink);
  cursor: pointer;
  font: inherit;
  font-size: .92rem;
  font-weight: 900;
  padding: 0 14px;
}

.vc-menu-button__bars {
  display: grid;
  gap: 4px;
  width: 18px;
}

.vc-menu-button__bars span {
  display: block;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
}

.vc-menu-panel {
  border-top: 1px solid var(--vc-line);
  background: rgba(248, 247, 242, .96);
  box-shadow: 0 24px 64px rgba(17, 24, 28, .08);
}

.vc-menu-panel[hidden] {
  display: none;
}

.vc-menu-panel__inner {
  padding: 22px 0;
}

.vc-menu-nav {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 10px;
}

.vc-menu-nav a {
  display: flex;
  align-items: center;
  min-height: 58px;
  border: 1px solid var(--vc-line);
  background: rgba(255, 255, 255, .76);
  color: var(--vc-ink);
  font-weight: 900;
  padding: 12px;
  text-decoration: none;
}

.vc-menu-nav a:hover {
  border-color: rgba(15, 118, 110, .38);
  color: var(--vc-teal);
}

.vc-footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
}

.vc-footer-nav a {
  color: var(--vc-ink);
  font-size: .92rem;
  font-weight: 850;
  text-decoration: none;
}

.vc-site-main {
  min-height: 70vh;
}

.vc-home-hero {
  padding: 64px 0 72px;
}

.vc-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, .72fr);
  gap: 34px;
  align-items: center;
}

.vc-kicker {
  color: var(--vc-teal);
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: .09em;
  font-size: .78rem;
  margin: 0 0 16px;
}

.vc-home-hero h1,
.vc-section h2,
.vc-page-header h1 {
  color: var(--vc-ink);
  letter-spacing: 0;
  margin-top: 0;
}

.vc-home-hero h1 {
  font-size: clamp(2.75rem, 5.4vw, 4.85rem);
  line-height: .98;
  margin-bottom: 24px;
}

.vc-lead {
  max-width: 760px;
  margin: 0;
  color: #344147;
  font-size: clamp(1.12rem, 2vw, 1.42rem);
  line-height: 1.55;
}

.vc-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.vc-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border: 1px solid var(--vc-line);
  border-radius: 999px;
  padding: 0 18px;
  font-weight: 900;
  text-decoration: none;
}

.vc-button--primary {
  background: var(--vc-ink);
  color: #fff;
}

.vc-button--secondary {
  background: rgba(255, 255, 255, .56);
  color: var(--vc-ink);
}

.vc-portrait {
  margin: 0;
  background: var(--vc-surface);
  border: 1px solid var(--vc-line);
  box-shadow: var(--vc-shadow);
  padding: 14px;
}

.vc-portrait img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 4.7;
  object-fit: cover;
  filter: saturate(.92) contrast(1.02);
}

.vc-portrait figcaption {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  color: var(--vc-muted);
  font-size: .86rem;
  font-weight: 750;
  margin-top: 12px;
}

.vc-principles {
  padding-bottom: 74px;
}

.vc-principles__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--vc-line);
  border: 1px solid var(--vc-line);
}

.vc-principles article {
  background: rgba(255, 255, 255, .72);
  padding: 24px;
}

.vc-principles span,
.vc-card span {
  color: var(--vc-rust);
  font-size: .76rem;
  font-weight: 950;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.vc-principles strong {
  display: block;
  margin: 8px 0;
  font-size: 1.2rem;
}

.vc-principles p,
.vc-card p,
.vc-copy-panel p,
.vc-step p {
  color: var(--vc-muted);
  margin: 0;
}

.vc-section {
  padding-bottom: 74px;
}

.vc-section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  border-top: 1px solid var(--vc-line);
  padding-top: 22px;
  margin-bottom: 22px;
}

.vc-section-head h2,
.vc-note h2,
.vc-contact-band h2 {
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.02;
  margin-bottom: 0;
}

.vc-section-head > p {
  max-width: 420px;
  color: var(--vc-muted);
  font-weight: 750;
  margin: 0;
}

.vc-project-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.vc-card {
  display: flex;
  min-height: 252px;
  flex-direction: column;
  justify-content: space-between;
  background: rgba(255, 255, 255, .76);
  border: 1px solid var(--vc-line);
  padding: 20px;
}

.vc-card h3 {
  color: var(--vc-ink);
  font-size: 1.2rem;
  line-height: 1.15;
  margin: 10px 0;
}

.vc-card a {
  color: var(--vc-teal);
  font-weight: 900;
  text-decoration: none;
}

.vc-work-grid,
.vc-personal-grid {
  display: grid;
  gap: 28px;
  align-items: start;
}

.vc-work-grid {
  grid-template-columns: .78fr 1fr;
}

.vc-personal-grid {
  grid-template-columns: 1fr 1fr;
}

.vc-copy-panel {
  background: rgba(255, 255, 255, .58);
  border-left: 4px solid var(--vc-teal);
  padding: 24px;
}

.vc-copy-panel p + p {
  margin-top: 18px;
}

.vc-step-list {
  display: grid;
  gap: 10px;
}

.vc-step {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 14px;
  align-items: start;
  background: rgba(255, 255, 255, .72);
  border: 1px solid var(--vc-line);
  padding: 16px;
}

.vc-step b {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--vc-ink);
  color: #fff;
}

.vc-step strong {
  display: block;
  margin-bottom: 3px;
}

.vc-step > p:empty {
  display: none !important;
}

.vc-step > div {
  grid-column: 2;
  min-width: 0;
}

.vc-note {
  min-height: 230px;
  background: var(--vc-ink);
  color: #fff;
  padding: 28px;
}

.vc-note h2 {
  color: #fff;
}

.vc-note p:not(.vc-kicker) {
  color: rgba(255, 255, 255, .76);
  font-size: 1.05rem;
}

.vc-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.vc-tags span {
  border: 1px solid rgba(255, 255, 255, .25);
  border-radius: 999px;
  color: #fff;
  font-weight: 850;
  padding: 8px 12px;
}

.vc-contact-band__inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
  background: linear-gradient(135deg, var(--vc-teal), #17343d);
  color: #fff;
  padding: 32px;
}

.vc-contact-band h2 {
  color: #fff;
  margin: 0 0 8px;
}

.vc-contact-band p {
  color: rgba(255, 255, 255, .78);
  margin: 0;
}

.vc-contact-band a {
  background: #fff;
  border-radius: 999px;
  color: var(--vc-ink);
  font-weight: 950;
  padding: 14px 18px;
  text-decoration: none;
  white-space: nowrap;
}

.vc-page {
  padding: 64px 0;
}

.vc-page__inner {
  max-width: 920px;
}

.vc-page-content {
  background: rgba(255, 255, 255, .7);
  border: 1px solid var(--vc-line);
  padding: clamp(24px, 5vw, 54px);
}

.vc-page-header {
  border-bottom: 1px solid var(--vc-line);
  margin-bottom: 28px;
  padding-bottom: 20px;
}

.vc-page-header h1 {
  font-size: clamp(2.2rem, 5vw, 4rem);
  line-height: 1.02;
  margin-bottom: 0;
}

.vc-wp-content {
  color: #273237;
  font-size: 1.02rem;
}

.vc-wp-content a {
  color: var(--vc-teal);
  font-weight: 850;
}

.vc-error-page {
  background:
    linear-gradient(135deg, rgba(15, 118, 110, .12), rgba(184, 76, 50, .08)),
    rgba(255, 253, 248, .82);
  border: 1px solid var(--vc-line);
  border-radius: 8px;
  box-shadow: var(--vc-shadow);
  display: grid;
  gap: clamp(24px, 5vw, 46px);
  grid-template-columns: minmax(0, 1.08fr) minmax(260px, .72fr);
  overflow: hidden;
  padding: clamp(28px, 6vw, 58px);
}

.vc-error-page__copy h1 {
  color: var(--vc-ink);
  font-size: clamp(2.25rem, 5vw, 4.45rem);
  letter-spacing: 0;
  line-height: 1.02;
  margin: 0;
  max-width: 760px;
}

.vc-error-page__copy p {
  color: #344147;
  font-size: clamp(1.04rem, 1.8vw, 1.25rem);
  line-height: 1.62;
  margin: 18px 0 0;
  max-width: 680px;
}

.vc-error-page__links {
  align-self: stretch;
  background: rgba(255, 255, 255, .6);
  border: 1px solid rgba(17, 24, 28, .1);
  border-radius: 8px;
  display: grid;
  gap: 18px;
  padding: clamp(18px, 3vw, 24px);
}

.vc-error-page__links section {
  display: grid;
  gap: 7px;
}

.vc-error-page__links h2 {
  color: var(--vc-muted);
  font-size: .76rem;
  font-weight: 950;
  letter-spacing: .08em;
  margin: 0 0 2px;
  text-transform: uppercase;
}

.vc-error-page__links a {
  align-items: center;
  border-radius: 6px;
  color: var(--vc-ink);
  display: flex;
  font-weight: 880;
  justify-content: space-between;
  min-height: 38px;
  padding: 8px 10px;
  text-decoration: none;
}

.vc-error-page__links a::after {
  border-bottom: 2px solid currentColor;
  border-right: 2px solid currentColor;
  color: rgba(17, 24, 28, .34);
  content: "";
  height: 7px;
  margin-left: 14px;
  transform: rotate(-45deg);
  width: 7px;
}

.vc-error-page__links a:hover,
.vc-error-page__links a:focus {
  background: rgba(15, 118, 110, .08);
  color: var(--vc-teal);
}

.vc-wp-content h2,
.vc-wp-content h3 {
  color: var(--vc-ink);
  margin-top: 1.6em;
}

.vc-detail-hero {
  border-bottom: 1px solid var(--vc-line);
  margin-bottom: 28px;
  padding-bottom: 28px;
}

.vc-detail-hero h1 {
  color: var(--vc-ink);
  font-size: clamp(2.6rem, 7vw, 5.4rem);
  line-height: .95;
  margin: 0 0 18px;
}

.vc-detail-lead {
  color: #344147;
  font-size: clamp(1.08rem, 2vw, 1.35rem);
  line-height: 1.55;
  margin: 0 0 24px;
  max-width: 760px;
}

.vc-detail-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border-radius: 999px;
  background: var(--vc-ink);
  color: #fff !important;
  font-weight: 900;
  padding: 0 18px;
  text-decoration: none;
}

.vc-detail-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.vc-detail-grid article {
  background: rgba(255, 255, 255, .72);
  border: 1px solid var(--vc-line);
  padding: 22px;
}

.vc-detail-grid span {
  color: var(--vc-rust);
  font-size: .76rem;
  font-weight: 950;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.vc-detail-grid h2 {
  color: var(--vc-ink);
  font-size: 1.3rem;
  line-height: 1.15;
  margin: 10px 0;
}

.vc-detail-grid p {
  margin: 0;
}

.vc-wp-content p,
.vc-wp-content li {
  color: #354247;
}

.vc-site-footer {
  border-top: 1px solid var(--vc-line);
  background: rgba(255, 255, 255, .56);
}

.vc-site-footer p {
  color: var(--vc-muted);
  font-weight: 760;
  margin: 0;
}

@media (max-width: 900px) {
  .vc-hero-grid,
  .vc-work-grid,
  .vc-personal-grid,
  .vc-contact-band__inner {
    grid-template-columns: 1fr;
  }

  .vc-principles__grid {
    grid-template-columns: 1fr;
  }

  .vc-project-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .vc-menu-nav,
  .vc-detail-grid {
    grid-template-columns: 1fr;
  }

  .vc-section-head {
    display: block;
  }

  .vc-contact-band a {
    justify-self: start;
  }
}

@media (max-width: 620px) {
  .vc-shell {
    width: min(100% - 32px, 1120px);
  }

  .vc-site-header__inner,
  .vc-site-footer__inner {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    min-height: 0;
    padding: 18px 0;
  }

  .vc-footer-nav {
    gap: 12px;
  }

  .vc-footer-nav a {
    font-size: .86rem;
  }

  .vc-home-hero {
    padding: 42px 0 56px;
  }

  .vc-home-hero h1 {
    font-size: 2.55rem;
    line-height: 1;
  }

  .vc-actions {
    display: grid;
  }

  .vc-button {
    width: 100%;
  }

  .vc-project-grid {
    grid-template-columns: 1fr;
  }

  .vc-portrait figcaption {
    display: block;
  }

  .vc-contact-band__inner {
    padding: 24px;
  }

  .vc-contact-band a {
    width: 100%;
    text-align: center;
  }
}

/* Cesinger content system: one shared styleset for WordPress page content. */
body.page-id-57 #primary,
body.page-id-70 #primary,
body.page-id-72 #primary,
body.page-id-74 #primary,
body.page-id-57:not(.twentyseventeen-front-page) #primary,
body.page-id-70:not(.twentyseventeen-front-page) #primary,
body.page-id-72:not(.twentyseventeen-front-page) #primary,
body.page-id-74:not(.twentyseventeen-front-page) #primary,
body.page-id-57 .entry-content,
body.page-id-70 .entry-content,
body.page-id-72 .entry-content,
body.page-id-74 .entry-content {
  float: none !important;
  max-width: none !important;
  width: 100% !important;
}

body.page-id-57 #main .entry-header,
body.page-id-70 #main .entry-header,
body.page-id-72 #main .entry-header,
body.page-id-74 #main .entry-header,
body.home .site-header,
body.page-id-57 .site-header,
body.page-id-70 .site-header,
body.page-id-72 .site-header,
body.page-id-74 .site-header,
body.home .site-footer,
body.page-id-57 .site-footer,
body.page-id-70 .site-footer,
body.page-id-72 .site-footer,
body.page-id-74 .site-footer,
body.page-id-57 .custom-header,
body.page-id-70 .custom-header,
body.page-id-72 .custom-header,
body.page-id-74 .custom-header,
body.home .navigation-top,
body.home .site-info,
body.page-id-57 .site-info,
body.page-id-70 .site-info,
body.page-id-72 .site-info,
body.page-id-74 .site-info {
  display: none !important;
}

body.page-id-57 .site-content,
body.page-id-70 .site-content,
body.page-id-72 .site-content,
body.page-id-74 .site-content,
body.home .site-content {
  padding-top: 0 !important;
}

body.home .site-content-contain,
body.page-id-57 .site-content-contain,
body.page-id-70 .site-content-contain,
body.page-id-72 .site-content-contain,
body.page-id-74 .site-content-contain {
  background: #f6f3ee !important;
}

body.page-id-57 .navigation-top,
body.page-id-70 .navigation-top,
body.page-id-72 .navigation-top,
body.page-id-74 .navigation-top {
  position: static !important;
}

body.page-id-57 .site-content .wrap,
body.page-id-70 .site-content .wrap,
body.page-id-72 .site-content .wrap,
body.page-id-74 .site-content .wrap,
body.page-id-57 .panel-content .wrap,
body.page-id-70 .panel-content .wrap,
body.page-id-72 .panel-content .wrap,
body.page-id-74 .panel-content .wrap {
  max-width: none !important;
  padding-bottom: 0 !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
  padding-top: 0 !important;
}

body.home .site-content .wrap,
body.home .panel-content .wrap {
  max-width: none !important;
  padding: 0 !important;
}

.vc-homepage-concept {
  position: relative;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  color: var(--vc-ink);
  background: linear-gradient(145deg, var(--vc-bg) 0%, var(--vc-bg-soft) 55%, #f6f1ec 100%);
  line-height: 1.5;
  margin: 0 calc(50% - 50vw);
  padding: 24px 28px 0;
}

.vc-homepage-concept *,
.vc-wp-content .vc-nav *,
.vc-wp-content .vc-footer * {
  box-sizing: border-box;
}

.vc-homepage-concept .vc-wrap {
  max-width: 1120px;
  margin: 0 auto;
}

.vc-homepage-concept h1 {
  color: var(--vc-ink);
  font-size: clamp(2.75rem, 5.4vw, 4.85rem);
  letter-spacing: 0;
  line-height: .98;
  margin: 0 0 24px;
}

.vc-homepage-concept h2 {
  color: var(--vc-ink);
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.02;
  margin: 4px 0 0;
}

.vc-nav {
  align-items: center;
  border-bottom: 1px solid var(--vc-line);
  display: flex;
  gap: 18px;
  justify-content: space-between;
  margin-bottom: 48px;
  padding-bottom: 18px;
  position: relative;
}

.vc-detail-nav {
  margin-bottom: 52px;
}

.vc-logo {
  color: var(--vc-ink);
  font-weight: 900;
  letter-spacing: .02em;
}

.vc-nav small {
  color: var(--vc-muted);
  font-weight: 700;
}

.vc-nav-main {
  align-items: center;
  display: flex;
  gap: 16px;
}

.vc-menu {
  position: relative;
}

.vc-menu summary {
  align-items: center;
  background: var(--vc-ink);
  border: 1px solid var(--vc-ink);
  border-radius: 999px;
  color: #fff;
  cursor: pointer;
  display: inline-flex;
  font-size: .92rem;
  font-weight: 900;
  gap: 10px;
  line-height: 1;
  list-style: none;
  min-height: 44px;
  padding: 0 15px;
  user-select: none;
}

.vc-menu summary::-webkit-details-marker {
  display: none;
}

.vc-burger {
  display: grid;
  gap: 4px;
  width: 18px;
}

.vc-burger span {
  background: currentColor;
  border-radius: 999px;
  display: block;
  height: 2px;
  width: 18px;
}

.vc-nav .vc-menu-panel {
  background: var(--vc-ink);
  border: 0;
  border-radius: 8px;
  box-shadow: 0 18px 48px rgba(17, 24, 28, .2);
  display: grid;
  gap: 6px;
  min-width: 230px;
  padding: 10px;
  position: absolute;
  right: 0;
  top: calc(100% + 10px);
  z-index: 12;
}

.vc-nav .vc-menu-panel a {
  align-items: center;
  border-radius: 6px;
  color: #fff !important;
  display: flex;
  font-size: 14px;
  font-weight: 750;
  line-height: 1.2;
  min-height: 0;
  padding: 11px 12px;
  text-decoration: none !important;
}

.vc-nav .vc-menu-panel a:hover {
  background: rgba(255, 255, 255, .12);
  color: #fff !important;
}

.vc-hero {
  align-items: center;
  display: grid;
  gap: 34px;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, .72fr);
  margin-bottom: 72px;
}

.vc-section-kicker {
  color: var(--vc-teal);
  display: inline-block;
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .09em;
  margin-bottom: 16px;
  text-transform: uppercase;
}

.vc-social-row,
.vc-link-row,
.vc-footer-social {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.vc-social-row {
  gap: 10px;
  margin-top: 16px;
}

.vc-button.primary,
.vc-detail-action {
  background: var(--vc-ink);
  color: #fff !important;
}

.vc-button.secondary,
.vc-button.social,
.vc-store-action {
  background: rgba(255, 255, 255, .56);
  color: var(--vc-ink) !important;
}

.vc-button.social {
  min-height: 40px;
  padding: 0 14px;
}

.vc-caption {
  color: var(--vc-muted);
  display: flex;
  font-size: .86rem;
  font-weight: 750;
  gap: 12px;
  justify-content: space-between;
  margin-top: 12px;
}

.vc-strip {
  background: var(--vc-line);
  border: 1px solid var(--vc-line);
  display: grid;
  gap: 1px;
  grid-template-columns: repeat(3, 1fr);
  margin-bottom: 74px;
}

.vc-principle {
  background: rgba(255, 255, 255, .72);
  padding: 24px;
}

.vc-principle span {
  color: var(--vc-rust);
  font-size: .76rem;
  font-weight: 950;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.vc-principle strong {
  display: block;
  font-size: 1.2rem;
  margin: 8px 0;
}

.vc-principle p,
.vc-copy p,
.vc-detail-grid p,
.vc-detail-body p {
  color: var(--vc-muted);
}

.vc-section {
  margin-bottom: 74px;
}

.vc-projects {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(4, 1fr);
}

.vc-work,
.vc-personal {
  align-items: start;
  display: grid;
  gap: 28px;
}

.vc-work {
  grid-template-columns: .78fr 1fr;
}

.vc-personal {
  grid-template-columns: 1fr 1fr;
}

.vc-copy {
  background: rgba(255, 255, 255, .58);
  border-left: 4px solid var(--vc-teal);
  padding: 24px;
}

.vc-copy p {
  margin: 0;
}

.vc-copy p + p {
  margin-top: 18px;
}

.vc-steps {
  display: grid;
  gap: 10px;
}

.vc-note p {
  margin: 0;
}

.vc-contact {
  align-items: center;
  background: linear-gradient(135deg, var(--vc-teal), #17343d);
  color: #fff;
  display: grid;
  gap: 24px;
  grid-template-columns: 1fr auto;
  padding: 32px;
}

.vc-contact h2 {
  color: #fff;
  margin: 0 0 8px;
}

.vc-contact p {
  color: rgba(255, 255, 255, .78);
  margin: 0;
}

.vc-contact a {
  background: #fff;
  border-radius: 999px;
  color: var(--vc-ink) !important;
  font-weight: 950;
  padding: 14px 18px;
  text-decoration: none !important;
  white-space: nowrap;
}

.vc-detail-media {
  border: 1px solid var(--vc-line);
  margin: 0 0 34px;
  overflow: hidden;
}

body.page-id-70 .vc-nav,
body.page-id-72 .vc-nav,
body.page-id-74 .vc-nav,
body.page-id-70 .vc-detail-hero,
body.page-id-72 .vc-detail-hero,
body.page-id-74 .vc-detail-hero,
body.page-id-70 .vc-detail-grid,
body.page-id-72 .vc-detail-grid,
body.page-id-74 .vc-detail-grid,
body.page-id-70 .vc-detail-media,
body.page-id-72 .vc-detail-media,
body.page-id-74 .vc-detail-media,
body.page-id-70 .vc-footer,
body.page-id-72 .vc-footer,
body.page-id-74 .vc-footer {
  max-width: 1120px;
  margin-left: auto;
  margin-right: auto;
}

body.page-id-70 .vc-nav,
body.page-id-72 .vc-nav,
body.page-id-74 .vc-nav {
  border-bottom: 0;
  margin-bottom: 52px;
  padding: 24px 24px 0;
}

body.page-id-70 .vc-detail-hero,
body.page-id-72 .vc-detail-hero,
body.page-id-74 .vc-detail-hero,
body.page-id-70 .vc-detail-grid,
body.page-id-72 .vc-detail-grid,
body.page-id-74 .vc-detail-grid {
  padding-left: 24px;
  padding-right: 24px;
}

body.page-id-70 .vc-detail-media img,
body.page-id-72 .vc-detail-media img,
body.page-id-74 .vc-detail-media img {
  aspect-ratio: 16 / 9;
  background: #fff;
  object-fit: cover;
}

.vc-detail-media img {
  display: block;
  width: 100%;
}

.vc-link-row {
  margin-top: 24px;
}

.vc-store-action {
  border: 1px solid var(--vc-line);
}

.vc-store-note {
  color: var(--vc-muted);
  font-size: .92rem;
  font-weight: 750;
  margin: 14px 0 0;
}

.vc-detail-body {
  border-top: 1px solid var(--vc-line);
  margin-top: 34px;
  padding-top: 28px;
}

body.page-id-70 .vc-detail-body,
body.page-id-72 .vc-detail-body,
body.page-id-74 .vc-detail-body {
  max-width: 880px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
}

.vc-detail-body h2 {
  color: var(--vc-ink);
  font-size: clamp(1.8rem, 3vw, 2.7rem);
  line-height: 1.05;
  margin: 0 0 18px;
}

.vc-detail-body p {
  font-size: 1.04rem;
  line-height: 1.72;
  margin: 0 0 18px;
}

.vc-footer {
  align-items: center;
  border-top: 1px solid var(--vc-line);
  color: var(--vc-muted);
  display: flex;
  gap: 18px;
  justify-content: space-between;
  margin-top: 56px;
  min-height: 88px;
  padding: 22px 24px 30px;
}

.vc-footer p {
  font-weight: 800;
  margin: 0;
}

.vc-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.vc-footer a {
  color: var(--vc-ink) !important;
  font-weight: 850;
  text-decoration: none !important;
}

.vc-global-footer {
  align-items: center;
  color: var(--vc-muted);
  display: flex;
  flex-wrap: wrap;
  gap: 14px 22px;
  justify-content: space-between;
  width: 100%;
}

.vc-global-footer p {
  color: var(--vc-muted);
  font-weight: 800;
  margin: 0;
}

.vc-global-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 16px;
}

.vc-global-footer a {
  color: var(--vc-ink) !important;
  font-weight: 850;
  text-decoration: none !important;
}

.vc-global-footer a:hover,
.vc-global-footer a:focus {
  color: var(--vc-teal) !important;
  text-decoration: underline !important;
}

@media (max-width: 900px) {
  .vc-hero,
  .vc-work,
  .vc-personal,
  .vc-contact {
    grid-template-columns: 1fr;
  }

  .vc-projects {
    grid-template-columns: repeat(2, 1fr);
  }

  .vc-strip {
    grid-template-columns: 1fr;
  }

  .vc-contact a {
    justify-self: start;
  }
}

@media (max-width: 620px) {
  .vc-homepage-concept {
    margin-top: -42px;
    padding: 22px 16px 0;
  }

  .vc-nav {
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 34px;
  }

  .vc-nav-main {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .vc-menu {
    align-self: flex-start;
  }

  .vc-nav .vc-menu-panel {
    left: 0;
    right: auto;
  }

  .vc-projects {
    grid-template-columns: 1fr;
  }

  .vc-homepage-concept h1 {
    font-size: 2.55rem;
    line-height: 1;
  }

  .vc-caption {
    display: block;
  }

  .vc-footer {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }

  .vc-link-row {
    display: grid;
  }
}

/* Legal pages: plugin-managed content, Cesinger visual shell. */
body.page-id-8,
body.page-id-9,
body.page-id-12 {
  background: linear-gradient(145deg, var(--vc-bg) 0%, var(--vc-bg-soft) 55%, #f6f1ec 100%);
}

body.page-id-8 .custom-header,
body.page-id-9 .custom-header,
body.page-id-12 .custom-header,
body.page-id-8 .site-info,
body.page-id-9 .site-info,
body.page-id-12 .site-info {
  display: none !important;
}

body.page-id-8 .custom-header,
body.page-id-9 .custom-header,
body.page-id-12 .custom-header {
  background: transparent !important;
  display: block !important;
  height: auto !important;
  min-height: 0 !important;
}

body.page-id-8 .custom-header-media,
body.page-id-9 .custom-header-media,
body.page-id-12 .custom-header-media {
  display: none !important;
}

body.page-id-8 .site-header,
body.page-id-9 .site-header,
body.page-id-12 .site-header {
  background: transparent !important;
  border-bottom: 1px solid var(--vc-line);
  margin: 0 auto;
  max-width: 1120px;
  padding: 24px 28px 18px;
}

body.page-id-8 .site-branding,
body.page-id-9 .site-branding,
body.page-id-12 .site-branding {
  bottom: auto !important;
  height: auto !important;
  left: auto !important;
  padding: 0 !important;
  position: static !important;
  width: auto !important;
}

body.page-id-8 .site-branding .wrap,
body.page-id-9 .site-branding .wrap,
body.page-id-12 .site-branding .wrap,
body.page-id-8 .navigation-top .wrap,
body.page-id-9 .navigation-top .wrap,
body.page-id-12 .navigation-top .wrap,
body.page-id-8 .site-content .wrap,
body.page-id-9 .site-content .wrap,
body.page-id-12 .site-content .wrap {
  max-width: none !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
}

body.page-id-8 .site-title,
body.page-id-9 .site-title,
body.page-id-12 .site-title {
  color: var(--vc-ink) !important;
  display: block !important;
  font-size: 1rem;
  font-weight: 900;
  letter-spacing: .02em;
  line-height: 1.1;
  margin: 0;
  position: static !important;
  text-transform: none;
}

body.page-id-8 .site-title a,
body.page-id-9 .site-title a,
body.page-id-12 .site-title a {
  color: var(--vc-ink) !important;
  text-decoration: none !important;
}

body.page-id-8 .site-description,
body.page-id-9 .site-description,
body.page-id-12 .site-description {
  color: var(--vc-muted);
  font-size: .9rem;
  font-weight: 760;
  margin: 4px 0 0;
  opacity: 1;
}

body.page-id-8 .navigation-top,
body.page-id-9 .navigation-top,
body.page-id-12 .navigation-top {
  background: transparent !important;
  border: 0 !important;
  bottom: auto !important;
  font-size: 1rem;
  margin-top: 18px;
  position: static !important;
}

body.page-id-8 .menu-toggle,
body.page-id-9 .menu-toggle,
body.page-id-12 .menu-toggle {
  align-items: center;
  background: var(--vc-ink) !important;
  border: 1px solid var(--vc-ink) !important;
  border-radius: 999px;
  color: #fff !important;
  display: inline-flex;
  font-weight: 900;
  gap: 10px;
  min-height: 44px;
  padding: 0 15px;
}

body.page-id-8 .main-navigation,
body.page-id-9 .main-navigation,
body.page-id-12 .main-navigation {
  margin-top: 12px;
}

body.page-id-8 .main-navigation a,
body.page-id-9 .main-navigation a,
body.page-id-12 .main-navigation a {
  color: var(--vc-ink) !important;
  font-weight: 850;
  text-decoration: none !important;
}

body.page-id-8 .main-navigation a:hover,
body.page-id-9 .main-navigation a:hover,
body.page-id-12 .main-navigation a:hover {
  color: var(--vc-teal) !important;
}

body.page-id-8 .site-content,
body.page-id-9 .site-content,
body.page-id-12 .site-content {
  padding: 0 28px 72px !important;
}

body.page-id-8 #primary,
body.page-id-9 #primary,
body.page-id-12 #primary,
body.page-id-8 .entry-content,
body.page-id-9 .entry-content,
body.page-id-12 .entry-content {
  float: none !important;
  max-width: none !important;
  width: 100% !important;
}

body.page-id-8 article.page,
body.page-id-9 article.page,
body.page-id-12 article.page {
  margin: 0 auto;
  max-width: 960px;
}

body.page-id-8 .entry-header,
body.page-id-9 .entry-header,
body.page-id-12 .entry-header {
  margin: 0 auto;
  max-width: 960px;
  padding: 64px 0 24px;
}

body.page-id-8 .entry-title,
body.page-id-9 .entry-title,
body.page-id-12 .entry-title {
  color: var(--vc-ink);
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.02;
  margin: 0;
  text-transform: none;
}

body.page-id-8 .entry-content,
body.page-id-9 .entry-content,
body.page-id-12 .entry-content {
  background: rgba(255, 255, 255, .72);
  border: 1px solid var(--vc-line);
  color: #273237;
  font-size: 1.02rem;
  line-height: 1.7;
  margin: 0 auto;
  padding: clamp(24px, 5vw, 54px);
}

body.page-id-8 .entry-content h1,
body.page-id-8 .entry-content h2,
body.page-id-8 .entry-content h3,
body.page-id-9 .entry-content h1,
body.page-id-9 .entry-content h2,
body.page-id-9 .entry-content h3,
body.page-id-12 .entry-content h1,
body.page-id-12 .entry-content h2,
body.page-id-12 .entry-content h3 {
  color: var(--vc-ink);
  letter-spacing: 0;
  line-height: 1.14;
  margin: 1.6em 0 .6em;
  text-transform: none;
}

body.page-id-8 .entry-content p,
body.page-id-8 .entry-content li,
body.page-id-9 .entry-content p,
body.page-id-9 .entry-content li,
body.page-id-12 .entry-content p,
body.page-id-12 .entry-content li {
  color: #354247;
}

body.page-id-8 .entry-content a,
body.page-id-9 .entry-content a,
body.page-id-12 .entry-content a {
  color: var(--vc-teal);
  font-weight: 850;
}

body.page-id-8 .site-footer,
body.page-id-9 .site-footer,
body.page-id-12 .site-footer {
  background: transparent;
  border-top: 1px solid var(--vc-line);
  margin: 0 auto;
  max-width: 960px;
  padding: 22px 28px 30px;
}

body.page-id-8 .site-footer::before,
body.page-id-9 .site-footer::before,
body.page-id-12 .site-footer::before {
  color: var(--vc-muted);
  content: "© 2026 Volker Cesinger";
  display: block;
  font-weight: 800;
}

@media (min-width: 48em) {
  body.page-id-8 .site-header,
  body.page-id-9 .site-header,
  body.page-id-12 .site-header {
    align-items: flex-start;
    display: flex;
    gap: 24px;
    justify-content: space-between;
  }

  body.page-id-8 .navigation-top,
  body.page-id-9 .navigation-top,
  body.page-id-12 .navigation-top {
    width: auto;
  }

  body.page-id-8 .main-navigation ul,
  body.page-id-9 .main-navigation ul,
  body.page-id-12 .main-navigation ul {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 18px;
  }
}

@media (max-width: 620px) {
  body.page-id-8 .site-header,
  body.page-id-9 .site-header,
  body.page-id-12 .site-header,
  body.page-id-8 .site-content,
  body.page-id-9 .site-content,
  body.page-id-12 .site-content {
    padding-left: 16px !important;
    padding-right: 16px !important;
  }

  body.page-id-8 .entry-header,
  body.page-id-9 .entry-header,
  body.page-id-12 .entry-header {
    padding-top: 42px;
  }
}

/* Detail pages use the central theme shell, not embedded page chrome. */
body.page-id-70 .vc-nav,
body.page-id-72 .vc-nav,
body.page-id-74 .vc-nav,
body.page-id-70 .vc-footer,
body.page-id-72 .vc-footer,
body.page-id-74 .vc-footer {
  display: none !important;
}

body.page-id-70 .site-header,
body.page-id-72 .site-header,
body.page-id-74 .site-header {
  background: transparent !important;
  border-bottom: 1px solid var(--vc-line);
  display: block !important;
  margin: 0 auto;
  max-width: 1120px;
  padding: 24px 28px 18px;
}

body.page-id-70 .custom-header,
body.page-id-72 .custom-header,
body.page-id-74 .custom-header {
  background: transparent !important;
  display: block !important;
  height: auto !important;
  min-height: 0 !important;
}

body.page-id-70 .custom-header-media,
body.page-id-72 .custom-header-media,
body.page-id-74 .custom-header-media {
  display: none !important;
}

body.page-id-70 .site-branding,
body.page-id-72 .site-branding,
body.page-id-74 .site-branding {
  bottom: auto !important;
  height: auto !important;
  left: auto !important;
  padding: 0 !important;
  position: static !important;
  width: auto !important;
}

body.page-id-70 .site-branding .wrap,
body.page-id-72 .site-branding .wrap,
body.page-id-74 .site-branding .wrap,
body.page-id-70 .navigation-top .wrap,
body.page-id-72 .navigation-top .wrap,
body.page-id-74 .navigation-top .wrap {
  max-width: none !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
}

body.page-id-70 .site-title,
body.page-id-72 .site-title,
body.page-id-74 .site-title {
  color: var(--vc-ink) !important;
  display: block !important;
  font-size: 1rem;
  font-weight: 900;
  letter-spacing: .02em;
  line-height: 1.1;
  margin: 0;
  position: static !important;
  text-transform: none;
}

body.page-id-70 .site-title a,
body.page-id-72 .site-title a,
body.page-id-74 .site-title a {
  color: var(--vc-ink) !important;
  text-decoration: none !important;
}

body.page-id-70 .site-description,
body.page-id-72 .site-description,
body.page-id-74 .site-description {
  color: var(--vc-muted);
  font-size: .9rem;
  font-weight: 760;
  margin: 4px 0 0;
  opacity: 1;
}

body.page-id-70 .navigation-top,
body.page-id-72 .navigation-top,
body.page-id-74 .navigation-top {
  background: transparent !important;
  border: 0 !important;
  bottom: auto !important;
  display: block !important;
  font-size: 1rem;
  margin-top: 18px;
  position: static !important;
}

body.page-id-70 .menu-toggle,
body.page-id-72 .menu-toggle,
body.page-id-74 .menu-toggle {
  align-items: center;
  background: var(--vc-ink) !important;
  border: 1px solid var(--vc-ink) !important;
  border-radius: 999px;
  color: #fff !important;
  display: inline-flex;
  font-weight: 900;
  gap: 10px;
  min-height: 44px;
  padding: 0 15px;
}

body.page-id-70 .main-navigation,
body.page-id-72 .main-navigation,
body.page-id-74 .main-navigation {
  margin-top: 12px;
}

body.page-id-70 .main-navigation a,
body.page-id-72 .main-navigation a,
body.page-id-74 .main-navigation a {
  color: var(--vc-ink) !important;
  font-weight: 850;
  text-decoration: none !important;
}

body.page-id-70 .main-navigation a:hover,
body.page-id-72 .main-navigation a:hover,
body.page-id-74 .main-navigation a:hover {
  color: var(--vc-teal) !important;
}

body.page-id-70 .site-footer,
body.page-id-72 .site-footer,
body.page-id-74 .site-footer {
  background: transparent;
  border-top: 1px solid var(--vc-line);
  display: block !important;
  margin: 56px auto 0;
  max-width: 1120px;
  padding: 22px 28px 30px;
}

body.page-id-70 .site-info,
body.page-id-72 .site-info,
body.page-id-74 .site-info {
  display: none !important;
}

body.page-id-70 .site-footer::before,
body.page-id-72 .site-footer::before,
body.page-id-74 .site-footer::before {
  color: var(--vc-muted);
  content: "© 2026 Volker Cesinger";
  display: block;
  font-weight: 800;
}

@media (min-width: 48em) {
  body.page-id-70 .site-header,
  body.page-id-72 .site-header,
  body.page-id-74 .site-header {
    align-items: flex-start;
    display: flex !important;
    gap: 24px;
    justify-content: space-between;
  }

  body.page-id-70 .navigation-top,
  body.page-id-72 .navigation-top,
  body.page-id-74 .navigation-top {
    width: auto;
  }

  body.page-id-70 .main-navigation ul,
  body.page-id-72 .main-navigation ul,
  body.page-id-74 .main-navigation ul {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 18px;
  }
}

@media (max-width: 620px) {
  body.page-id-70 .site-header,
  body.page-id-72 .site-header,
  body.page-id-74 .site-header {
    padding-left: 16px !important;
    padding-right: 16px !important;
  }
}

body.page-id-8 .site-footer::before,
body.page-id-9 .site-footer::before,
body.page-id-12 .site-footer::before,
body.page-id-70 .site-footer::before,
body.page-id-72 .site-footer::before,
body.page-id-74 .site-footer::before {
  content: none !important;
  display: none !important;
}

/* 2027 theme baseline: the theme owns navigation and footer on every page. */
.vc-site-header {
  position: sticky;
  top: 0;
  z-index: 50;
}

.admin-bar .vc-site-header {
  top: 32px;
}

.vc-wp-content .vc-nav,
.vc-wp-content .vc-footer {
  display: none !important;
}

.vc-wp-content > .vc-detail-hero:first-child {
  margin-top: 0;
}

.vc-site-footer__inner {
  align-items: center;
  flex-wrap: wrap;
}

.vc-site-footer .vc-footer-nav {
  flex-wrap: wrap;
}

.vc-site-footer .vc-footer-nav + .vc-footer-nav {
  margin-left: auto;
}

.vc-menu-nav {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

@media (max-width: 900px) {
  .admin-bar .vc-site-header {
    top: 46px;
  }

  .vc-menu-nav {
    grid-template-columns: 1fr;
  }

  .vc-site-footer .vc-footer-nav + .vc-footer-nav {
    margin-left: 0;
  }
}

@media (max-width: 782px) {
  .admin-bar .vc-site-header {
    top: 46px;
  }
}

/* Polished 2027 navigation: compact menu instead of a full-width tile wall. */
.vc-site-header {
  box-shadow: 0 10px 34px rgba(17, 24, 28, .045);
}

.vc-menu-button {
  background: #fff;
  box-shadow: 0 10px 28px rgba(17, 24, 28, .06);
  transition: background .18s ease, border-color .18s ease, color .18s ease, transform .18s ease;
}

.vc-menu-button:hover,
.vc-menu-button[aria-expanded="true"] {
  background: var(--vc-ink);
  border-color: var(--vc-ink);
  color: #fff;
}

.vc-menu-button[aria-expanded="true"] {
  transform: translateY(1px);
}

.vc-menu-panel {
  background: rgba(255, 253, 248, .98);
  border: 1px solid rgba(17, 24, 28, .12);
  border-radius: 8px;
  box-shadow: 0 26px 70px rgba(17, 24, 28, .16);
  max-height: min(640px, calc(100vh - 150px));
  overflow: auto;
  position: absolute;
  right: max(16px, calc((100vw - 1120px) / 2));
  top: calc(100% + 10px);
  width: min(420px, calc(100vw - 32px));
  z-index: 60;
}

.vc-menu-panel::before {
  background: inherit;
  border-left: 1px solid rgba(17, 24, 28, .12);
  border-top: 1px solid rgba(17, 24, 28, .12);
  content: "";
  height: 14px;
  position: absolute;
  right: 34px;
  top: -8px;
  transform: rotate(45deg);
  width: 14px;
}

.vc-menu-panel__inner {
  margin: 0;
  padding: 10px;
  width: 100%;
}

.vc-menu-nav {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.vc-menu-nav a {
  background: transparent;
  border: 0;
  border-radius: 6px;
  color: var(--vc-ink);
  font-size: .96rem;
  font-weight: 850;
  justify-content: space-between;
  min-height: 42px;
  padding: 10px 12px;
  transition: background .16s ease, color .16s ease, transform .16s ease;
}

.vc-menu-nav a::after {
  border-bottom: 2px solid currentColor;
  border-right: 2px solid currentColor;
  color: rgba(17, 24, 28, .34);
  content: "";
  flex: 0 0 auto;
  height: 7px;
  margin-left: 16px;
  transform: rotate(-45deg);
  width: 7px;
}

.vc-menu-nav a:hover,
.vc-menu-nav a:focus {
  background: rgba(15, 118, 110, .08);
  color: var(--vc-teal);
  transform: translateX(2px);
}

.vc-menu-nav a:hover::after,
.vc-menu-nav a:focus::after {
  color: var(--vc-teal);
}

.vc-submenu {
  border-radius: 6px;
}

.vc-submenu summary {
  align-items: center;
  border-radius: 6px;
  color: var(--vc-ink);
  cursor: pointer;
  display: flex;
  font-size: .96rem;
  font-weight: 900;
  justify-content: space-between;
  list-style: none;
  min-height: 42px;
  padding: 10px 12px;
  transition: background .16s ease, color .16s ease;
}

.vc-submenu summary::-webkit-details-marker {
  display: none;
}

.vc-submenu summary::after {
  background:
    linear-gradient(currentColor, currentColor) center / 12px 2px no-repeat,
    linear-gradient(currentColor, currentColor) center / 2px 12px no-repeat;
  color: rgba(17, 24, 28, .34);
  content: "";
  flex: 0 0 auto;
  height: 18px;
  margin-left: 16px;
  width: 18px;
}

.vc-submenu[open] summary {
  background: rgba(15, 118, 110, .08);
  color: var(--vc-teal);
}

.vc-submenu[open] summary::after {
  background:
    linear-gradient(currentColor, currentColor) center / 12px 2px no-repeat;
  color: var(--vc-teal);
}

.vc-submenu-links {
  display: grid;
  gap: 1px;
  padding: 2px 0 8px 12px;
}

.vc-submenu-links a {
  color: #2d383d;
  font-size: .92rem;
  font-weight: 760;
  min-height: 36px;
  padding: 8px 10px;
}

.vc-submenu-links a::after {
  border-bottom: 2px solid currentColor;
  border-right: 2px solid currentColor;
  content: "";
  height: 6px;
  transform: rotate(-45deg);
  width: 6px;
}

.vc-menu-link {
  font-weight: 900;
}

.vc-contact-band__inner {
  align-items: stretch;
  grid-template-columns: minmax(0, .82fr) minmax(320px, 1.18fr);
}

.vc-contact-copy {
  align-self: center;
}

.vc-contact-form {
  background: rgba(255, 253, 248, .98);
  border: 1px solid rgba(255, 255, 255, .24);
  border-radius: 8px;
  box-shadow: 0 24px 62px rgba(17, 24, 28, .18);
  color: var(--vc-ink);
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  padding: clamp(20px, 4vw, 28px);
}

.vc-contact-form label {
  display: grid;
  gap: 7px;
}

.vc-contact-form span {
  color: #344147;
  font-size: .82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.vc-contact-form input,
.vc-contact-form textarea {
  background: #fff;
  border: 1px solid rgba(17, 24, 28, .16);
  border-radius: 8px;
  color: var(--vc-ink);
  font: inherit;
  min-height: 46px;
  padding: 12px 13px;
  width: 100%;
}

.vc-contact-form textarea {
  min-height: 138px;
  resize: vertical;
}

.vc-contact-form input:focus,
.vc-contact-form textarea:focus {
  border-color: rgba(15, 118, 110, .58);
  outline: 3px solid rgba(15, 118, 110, .16);
}

.vc-form-wide,
.vc-form-status,
.vc-contact-form button {
  grid-column: 1 / -1;
}

.vc-form-trap {
  left: -9999px;
  position: absolute;
}

.vc-form-status {
  background: rgba(15, 118, 110, .1);
  border-radius: 8px;
  color: var(--vc-teal) !important;
  font-weight: 850;
  padding: 12px 14px;
}

.vc-form-status--error {
  background: rgba(184, 76, 50, .1);
  color: var(--vc-rust) !important;
}

.vc-contact-form .vc-button {
  justify-self: start;
  width: auto;
}

#projekte,
#kontakt {
  scroll-margin-top: 128px;
}

@media (max-width: 900px) {
  .vc-contact-band__inner {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .vc-site-header__inner {
    align-items: center;
    flex-direction: row;
    justify-content: space-between;
    min-height: 74px;
    padding: 14px 0;
  }

  .vc-brand {
    min-width: 0;
  }

  .vc-brand strong,
  .vc-brand span {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .vc-menu-button {
    flex: 0 0 auto;
  }

  .vc-menu-panel {
    left: 16px;
    right: 16px;
    top: calc(100% + 8px);
    width: auto;
  }

  .vc-menu-panel::before {
    right: 34px;
  }

  .vc-contact-band__inner,
  .vc-error-page,
  .vc-contact-form {
    grid-template-columns: 1fr;
  }

  .vc-contact-form .vc-button {
    justify-self: stretch;
    width: 100%;
  }

  #projekte,
  #kontakt {
    scroll-margin-top: 104px;
  }
}
