body {
  margin: 0;
  font-family: "Raleway", sans-serif;
  background: #f7f6f3;
  color: #0f1720;
}

.contact-page {
  background: linear-gradient(180deg, #fbf9f3, #f1ece2);
}

a {
  color: inherit;
}

button {
  font: inherit;
}

.container {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(18px);
  background: rgba(247, 246, 243, 0.88);
  border-bottom: 1px solid rgba(15, 23, 32, 0.08);
}

.site-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 18px 0;
}

.brand-mark {
  font-family: "Cinzel", serif;
  font-size: 24px;
  font-weight: 700;
  text-decoration: none;
}

.site-logo-link {
  display: block;
  width: min(236px, 50vw);
}

.site-logo-link img {
  width: 100%;
  height: 78px;
  object-fit: contain;
  object-position: left center;
  display: block;
}

.site-menu {
  display: flex;
  gap: 14px;
  align-items: center;
  flex-wrap: wrap;
  margin-left: auto;
  justify-content: flex-end;
  text-align: right;
}

.site-menu a {
  text-decoration: none;
  color: #18222d;
}

.site-menu__button,
.button-primary,
.button-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  border: 0;
  cursor: pointer;
}

.site-menu__button,
.button-primary {
  background: linear-gradient(135deg, #f4b942, #ffe18f);
  color: #121212;
}

.button-secondary {
  border: 1px solid rgba(15, 23, 32, 0.16);
  background: rgba(255, 255, 255, 0.76);
  color: #18222d;
}

.hero {
  padding: 80px 0 48px;
}

.hero__grid,
.split-section,
.contact-grid,
.project-detail {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 32px;
  align-items: center;
}

.eyebrow {
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #f4b942;
  font-size: 12px;
}

.hero h1,
.section-title {
  font-family: "Cinzel", serif;
  font-size: clamp(36px, 6vw, 68px);
  line-height: 1.04;
  margin: 12px 0 20px;
}

.hero p,
.section-copy,
.project-card p,
.contact-panel p,
.site-footer p {
  color: rgba(15, 23, 32, 0.72);
  line-height: 1.8;
}

.hero__actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.hero__visual img,
.split-section img,
.project-card img,
.project-gallery img {
  width: 100%;
  display: block;
  border-radius: 28px;
  object-fit: cover;
}

.hero__visual {
  position: relative;
}

.hero__visual::before {
  content: "";
  position: absolute;
  inset: -16px -16px auto auto;
  width: 180px;
  height: 180px;
  background: radial-gradient(circle, rgba(244, 185, 66, 0.85), rgba(244, 185, 66, 0));
  filter: blur(30px);
  z-index: -1;
}

.section {
  padding: 48px 0;
}

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.card-ui,
.project-card,
.contact-panel {
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(15, 23, 32, 0.08);
  border-radius: 24px;
  padding: 24px;
  box-shadow: 0 16px 44px rgba(15, 23, 32, 0.06);
}

.card-ui h3,
.project-card h3,
.contact-panel h3 {
  margin-top: 0;
}

.projects-grid,
.project-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.project-card {
  overflow: hidden;
}

.project-card__body {
  padding-top: 18px;
}

.project-card__meta {
  color: #f4b942;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 12px;
  margin-bottom: 12px;
}

.contact-panel {
  min-height: 100%;
}

.field {
  display: grid;
  gap: 8px;
  margin-bottom: 16px;
}

.field label {
  color: #16202b;
  font-weight: 700;
}

.field input,
.field textarea,
.field select {
  width: 100%;
  border: 1px solid rgba(15, 23, 32, 0.14);
  border-radius: 14px;
  background: #fff;
  color: #0f1720;
  padding: 13px 14px;
  outline: none;
}

.field input:focus,
.field textarea:focus,
.field select:focus {
  border-color: #f4b942;
  box-shadow: 0 0 0 3px rgba(244, 185, 66, 0.16);
}

.field textarea {
  min-height: 116px;
  resize: vertical;
}

.field select {
  appearance: none;
}

.field small {
  color: #f4b942;
  font-weight: 800;
}

.quick-order-form {
  margin-top: 16px;
}

.quick-order-form__row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.quick-order-form__row_two {
  grid-template-columns: minmax(120px, 0.6fr) minmax(0, 1.4fr);
}

.form-error {
  border-radius: 14px;
  background: rgba(239, 68, 68, 0.14);
  color: #ffd1d1 !important;
  padding: 12px 14px;
}

.contact-hero {
  position: relative;
  overflow: hidden;
  padding: 78px 0 54px;
  background: linear-gradient(120deg, rgba(8, 12, 18, 0.94), rgba(18, 25, 33, 0.74));
}

.contact-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 110px;
  background: linear-gradient(180deg, rgba(13, 17, 23, 0), #0d1117);
}

.contact-hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(340px, 0.9fr);
  gap: 40px;
  align-items: center;
}

.contact-hero__content h1 {
  max-width: 780px;
  font-family: "Cinzel", serif;
  font-size: clamp(42px, 7vw, 82px);
  line-height: 1;
  margin: 14px 0 20px;
}

.contact-hero__content .section-copy {
  max-width: 680px;
  font-size: 18px;
}

.contact-hero__stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 28px;
}

.contact-hero__stats span {
  min-height: 92px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.06);
  padding: 16px;
  color: #dce7f0;
}

.contact-hero__stats strong {
  display: block;
  color: #f4b942;
  font-size: 13px;
  letter-spacing: 0.18em;
  margin-bottom: 8px;
}

.contact-hero__visual {
  position: relative;
  min-height: 500px;
}

.contact-hero__visual img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: 34px 34px 8px 34px;
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.34);
}

.contact-hero__note {
  position: absolute;
  left: -22px;
  bottom: 24px;
  width: min(260px, calc(100% - 24px));
  border-radius: 20px;
  background: #f4b942;
  color: #111;
  padding: 18px;
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.28);
}

.contact-hero__note span {
  display: block;
  margin-bottom: 6px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.contact-order-section {
  padding-top: 24px;
}

.contact-order-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(320px, 0.82fr);
  gap: 28px;
  align-items: start;
}

.quote-card,
.contact-side__card {
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: linear-gradient(180deg, rgba(23, 31, 40, 0.98), rgba(10, 15, 21, 0.98));
  border-radius: 28px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.24);
}

.quote-card {
  padding: clamp(22px, 4vw, 36px);
}

.quote-card__head {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: flex-start;
  padding-bottom: 22px;
  margin-bottom: 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.quote-card__head h2 {
  margin: 8px 0 0;
  font-family: "Cinzel", serif;
  font-size: clamp(28px, 4vw, 48px);
}

.quote-card__head > span {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  background: rgba(37, 211, 102, 0.14);
  color: #baffcf;
  padding: 10px 14px;
  font-weight: 800;
  white-space: nowrap;
}

.form-section-title {
  margin: 22px 0 12px;
  color: #f4b942;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.field_measure {
  position: relative;
}

.field_measure small {
  position: absolute;
  right: 14px;
  bottom: 13px;
}

.field_measure input {
  padding-right: 48px;
}

.contact-side {
  display: grid;
  gap: 18px;
}

.contact-side__card {
  padding: 26px;
}

.contact-side__card h3 {
  margin: 8px 0 12px;
  font-size: 26px;
}

.contact-side__card p {
  color: #d0dae3;
  line-height: 1.8;
}

.contact-side__card_light {
  background: linear-gradient(180deg, rgba(244, 185, 66, 0.18), rgba(12, 17, 23, 0.98));
}

.contact-checklist {
  display: grid;
  gap: 10px;
  margin-top: 20px;
}

.contact-checklist span {
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.06);
  color: #eaf0f6;
  padding: 13px 14px;
}

.quote-landing {
  position: relative;
  overflow: hidden;
  padding: clamp(58px, 8vw, 104px) 0 40px;
}

.quote-landing::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(13, 17, 23, 0.96), rgba(13, 17, 23, 0.74) 48%, rgba(13, 17, 23, 0.92)),
    radial-gradient(circle at 18% 20%, rgba(244, 185, 66, 0.2), transparent 30%);
  pointer-events: none;
}

.quote-landing__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.82fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
}

.quote-intro h1 {
  max-width: 780px;
  margin: 14px 0 20px;
  font-family: "Cinzel", serif;
  font-size: clamp(42px, 6vw, 76px);
  line-height: 1.02;
}

.quote-intro p {
  max-width: 620px;
  color: #d5dee8;
  font-size: 18px;
  line-height: 1.8;
}

.quote-intro__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.quote-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 640px;
  margin-top: 34px;
}

.quote-proof div {
  border-left: 2px solid rgba(244, 185, 66, 0.75);
  background: rgba(255, 255, 255, 0.055);
  padding: 16px;
}

.quote-proof strong {
  display: block;
  color: #f4b942;
  font-size: 13px;
  letter-spacing: 0.18em;
}

.quote-proof span {
  display: block;
  margin-top: 8px;
  color: #f3f6f8;
  font-weight: 700;
}

.contact-page .quote-card {
  position: relative;
  border-radius: 18px;
  background: rgba(246, 248, 244, 0.96);
  color: #14181d;
  box-shadow: 0 26px 90px rgba(0, 0, 0, 0.36);
}

.contact-page .quote-card::before {
  content: "";
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(20, 24, 29, 0.08);
  border-radius: 12px;
  pointer-events: none;
}

.contact-page .quote-card .eyebrow,
.contact-page .form-section-title {
  color: #9b6e12;
}

.contact-page .quote-card__head {
  border-bottom-color: rgba(20, 24, 29, 0.12);
}

.contact-page .quote-card__head h2 {
  color: #14181d;
  font-size: clamp(26px, 3vw, 40px);
}

.contact-page .quote-card__head > span {
  background: rgba(37, 211, 102, 0.16);
  color: #176b34;
}

.contact-page .field label {
  color: #252a30;
}

.contact-page .field input,
.contact-page .field textarea,
.contact-page .field select {
  border-color: rgba(20, 24, 29, 0.16);
  background: #fff;
  color: #14181d;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.contact-page .field input::placeholder,
.contact-page .field textarea::placeholder {
  color: #8a929c;
}

.contact-page .field input:focus,
.contact-page .field textarea:focus,
.contact-page .field select:focus {
  border-color: #d49a28;
  box-shadow: 0 0 0 3px rgba(212, 154, 40, 0.18);
}

.contact-page .field small {
  color: #9b6e12;
}

.contact-page .quote-card .button-primary {
  width: 100%;
  min-height: 52px;
  border-radius: 12px;
  background: #18222d;
  color: #fff;
}

.contact-info-band {
  padding: 26px 0;
}

.contact-info-grid {
  display: grid;
  grid-template-columns: 1.45fr repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.contact-info-card {
  display: grid;
  align-content: center;
  min-height: 138px;
  border: 1px solid rgba(15, 23, 32, 0.08);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.76);
  padding: 20px;
  text-decoration: none;
}

.contact-info-card span,
.process-strip span {
  color: #f4b942;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.contact-info-card strong {
  display: block;
  margin-top: 8px;
  color: #0f1720;
  font-size: 20px;
}

.contact-info-card p {
  margin: 10px 0 0;
  color: rgba(15, 23, 32, 0.68);
  line-height: 1.7;
}

.contact-info-card_featured {
  background: linear-gradient(135deg, rgba(244, 185, 66, 0.2), rgba(255, 255, 255, 0.82));
}

.process-strip {
  padding: 24px 0 52px;
}

.process-strip__inner {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(15, 23, 32, 0.08);
  border-radius: 18px;
  background: rgba(15, 23, 32, 0.08);
}

.process-strip__inner div {
  min-height: 174px;
  background: rgba(255, 255, 255, 0.84);
  padding: 24px;
}

.process-strip strong {
  display: block;
  margin-top: 12px;
  color: #0f1720;
  font-size: 20px;
}

.process-strip p {
  margin: 10px 0 0;
  color: rgba(15, 23, 32, 0.68);
  line-height: 1.7;
}

.site-footer {
  margin-top: 60px;
  padding: 42px 0 18px;
  background: #ece7dd;
  border-top: 1px solid rgba(15, 23, 32, 0.08);
}

.site-footer__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}

.site-footer__bottom {
  margin-top: 24px;
  padding-top: 18px;
  border-top: 1px solid rgba(15, 23, 32, 0.08);
  color: rgba(15, 23, 32, 0.58);
}

.page-hero {
  padding: 70px 0 22px;
}

.page-hero h1 {
  font-family: "Cinzel", serif;
  font-size: clamp(30px, 5vw, 56px);
  margin: 0 0 12px;
}

.page-media-grid {
  display: grid;
  gap: 26px;
}

.page-media-grid__lead {
  max-width: 760px;
}

.page-media-grid__photos {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 16px;
}

.page-media-grid__photos figure {
  grid-column: span 6;
  margin: 0;
}

.page-media-grid__photos figure:nth-child(4n + 1),
.page-media-grid__photos figure:nth-child(4n + 4) {
  grid-column: span 7;
}

.page-media-grid__photos figure:nth-child(4n + 2),
.page-media-grid__photos figure:nth-child(4n + 3) {
  grid-column: span 5;
}

.page-media-grid__photos img {
  width: 100%;
  height: clamp(230px, 28vw, 360px);
  display: block;
  border-radius: 24px;
  object-fit: cover;
  box-shadow: 0 18px 44px rgba(15, 23, 32, 0.08);
}

.page-quote {
  max-width: 920px;
}

.page-quote__card {
  position: relative;
  overflow: hidden;
  padding: clamp(24px, 4vw, 40px);
  border: 1px solid rgba(15, 23, 32, 0.08);
  border-radius: 28px;
  background:
    radial-gradient(circle at top right, rgba(244, 185, 66, 0.2), transparent 34%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(246, 240, 226, 0.92));
  box-shadow: 0 22px 60px rgba(15, 23, 32, 0.08);
}

.page-quote__card blockquote {
  margin: 0;
  color: #16202b;
  font-family: "Cinzel", serif;
  font-size: clamp(24px, 3.4vw, 40px);
  line-height: 1.4;
}

.page-quote__author {
  display: grid;
  gap: 4px;
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid rgba(15, 23, 32, 0.1);
}

.page-quote__author strong {
  color: #0f1720;
  font-size: 18px;
}

.page-quote__author span {
  color: rgba(15, 23, 32, 0.64);
}

.page-logo-strip__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 18px;
}

.page-logo-card {
  display: grid;
  gap: 16px;
  align-items: center;
  min-height: 164px;
  padding: 22px;
  border: 1px solid rgba(15, 23, 32, 0.08);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 16px 40px rgba(15, 23, 32, 0.06);
}

.page-logo-card img {
  width: 100%;
  height: 64px;
  object-fit: contain;
  object-position: center;
}

.page-logo-card strong {
  color: #0f1720;
  font-size: 16px;
}

@media (max-width: 860px) {
  .hero__grid,
  .split-section,
  .contact-grid,
  .project-detail {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 48px;
  }

  .site-nav {
    align-items: flex-start;
    flex-direction: column;
  }

  .site-menu {
    width: 100%;
    justify-content: flex-start;
    text-align: left;
    gap: 10px 16px;
  }

  .site-logo-link {
    width: min(196px, 62vw);
  }

  .site-logo-link img {
    height: 60px;
  }

  .quick-order-form__row,
  .quick-order-form__row_two {
    grid-template-columns: 1fr;
  }

  .contact-hero {
    padding: 52px 0 36px;
  }

  .contact-hero__grid,
  .contact-order-grid {
    grid-template-columns: 1fr;
  }

  .contact-hero__stats {
    grid-template-columns: 1fr;
  }

  .contact-hero__visual {
    min-height: auto;
  }

  .contact-hero__visual img {
    height: 330px;
  }

  .contact-hero__note {
    left: 14px;
    bottom: 14px;
  }

  .quote-card__head {
    display: block;
  }

  .quote-card__head > span {
    margin-top: 14px;
  }

  .quote-landing__grid,
  .contact-info-grid,
  .process-strip__inner,
  .page-media-grid__photos {
    grid-template-columns: 1fr;
  }

  .quote-proof {
    grid-template-columns: 1fr;
  }

  .quote-landing {
    padding-top: 42px;
  }

  .quote-intro h1 {
    font-size: clamp(36px, 12vw, 54px);
  }

  .contact-info-card,
  .process-strip__inner div {
    min-height: auto;
  }

  .page-media-grid__photos figure,
  .page-media-grid__photos figure:nth-child(4n + 1),
  .page-media-grid__photos figure:nth-child(4n + 2),
  .page-media-grid__photos figure:nth-child(4n + 3),
  .page-media-grid__photos figure:nth-child(4n + 4) {
    grid-column: auto;
  }

  .page-logo-strip__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.vp-contact-page {
  background: #f7f6f3;
}

.vp-contact-page * {
  box-sizing: border-box;
}

.vp-container {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
}

.vp-contact {
  overflow: hidden;
}

.vp-contact-hero {
  padding: 72px 0 38px;
  background: linear-gradient(140deg, #f6f2e8, #efe8dc 55%, #f9f6ef);
}

.vp-contact-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 24px;
  align-items: start;
}

.vp-contact-hero__text {
  max-width: 860px;
}

.vp-eyebrow {
  display: inline-block;
  color: #e4ad38;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.vp-contact-hero h1 {
  max-width: 760px;
  margin: 14px 0 18px;
  font-family: "Cinzel", serif;
  font-size: clamp(38px, 6vw, 72px);
  line-height: 1.02;
}

.vp-contact-hero p {
  max-width: 680px;
  margin: 0;
  color: rgba(15, 23, 32, 0.72);
  font-size: 18px;
  line-height: 1.8;
}

.vp-contact-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.vp-contact-hero__meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 30px;
}

.vp-contact-hero__meta-item {
  padding: 18px;
  border: 1px solid rgba(15, 23, 32, 0.08);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.8);
  box-shadow: 0 14px 32px rgba(15, 23, 32, 0.05);
}

.vp-contact-hero__meta-item span {
  display: block;
  margin-bottom: 8px;
  color: #e4ad38;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.vp-contact-hero__meta-item strong {
  color: #0f1720;
  font-size: 16px;
  line-height: 1.5;
}

.vp-contact-hero__actions a,
.vp-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 14px 20px;
  border: 0;
  border-radius: 10px;
  background: #e4ad38;
  color: #101418;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
}

.vp-contact-hero__actions a + a {
  background: rgba(255, 255, 255, 0.84);
  color: #0f1720;
  border: 1px solid rgba(15, 23, 32, 0.12);
}

.vp-quote-section {
  padding: 36px 0 58px;
}

.vp-quote-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 24px;
  align-items: start;
}

.vp-quote-form,
.vp-aside-card {
  border: 1px solid rgba(15, 23, 32, 0.08);
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 16px 44px rgba(15, 23, 32, 0.06);
}

.vp-quote-form {
  padding: clamp(20px, 3vw, 34px);
}

.vp-form-head {
  padding-bottom: 20px;
  margin-bottom: 22px;
  border-bottom: 1px solid rgba(15, 23, 32, 0.08);
}

.vp-form-head h2 {
  margin: 8px 0 8px;
  color: #0f1720;
  font-family: "Cinzel", serif;
  font-size: clamp(28px, 4vw, 46px);
}

.vp-form-head p {
  margin: 0;
  color: rgba(15, 23, 32, 0.68);
  line-height: 1.7;
}

.vp-form-block {
  padding: 20px;
  margin-top: 16px;
  border: 1px solid rgba(15, 23, 32, 0.08);
  border-radius: 12px;
  background: #faf7f0;
}

.vp-form-block h3 {
  margin: 0 0 16px;
  color: #0f1720;
  font-size: 19px;
}

.vp-form-grid {
  display: grid;
  gap: 14px;
}

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

.vp-form-wide {
  grid-column: 1 / -1;
}

.vp-quote-form label {
  display: grid;
  gap: 7px;
  min-width: 0;
  color: #16202b;
  font-weight: 700;
}

.vp-quote-form label span {
  font-size: 13px;
}

.vp-quote-form input,
.vp-quote-form select,
.vp-quote-form textarea {
  width: 100%;
  min-width: 0;
  border: 1px solid rgba(15, 23, 32, 0.14);
  border-radius: 10px;
  background: #fff;
  color: #0f1720;
  padding: 13px 14px;
  outline: none;
}

.vp-quote-form input:focus,
.vp-quote-form select:focus,
.vp-quote-form textarea:focus {
  border-color: #e4ad38;
  box-shadow: 0 0 0 3px rgba(228, 173, 56, 0.16);
}

.vp-measure-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.vp-measure-grid label {
  position: relative;
}

.vp-measure-grid input {
  padding-right: 46px;
}

.vp-measure-grid em {
  position: absolute;
  right: 14px;
  bottom: 13px;
  color: #e4ad38;
  font-style: normal;
  font-weight: 800;
}

.vp-note-field {
  margin-top: 14px;
}

.vp-note-field textarea {
  min-height: 118px;
  resize: vertical;
}

.vp-submit {
  width: 100%;
  margin-top: 18px;
  background: #25d366;
  color: #07120b;
}

.vp-contact-aside {
  display: grid;
  gap: 16px;
}

.vp-aside-card {
  padding: 22px;
}

.vp-aside-card--gold {
  background: linear-gradient(145deg, rgba(228, 173, 56, 0.22), #fff7e1);
}

.vp-aside-card h2,
.vp-aside-card h3 {
  margin: 8px 0 12px;
  color: #0f1720;
}

.vp-aside-card p {
  margin: 0;
  color: rgba(15, 23, 32, 0.72);
  line-height: 1.75;
}

.vp-aside-card a {
  display: block;
  padding: 14px 0;
  border-top: 1px solid rgba(15, 23, 32, 0.08);
  text-decoration: none;
}

.vp-aside-card a:first-of-type {
  border-top: 0;
}

.vp-aside-card a span {
  display: block;
  color: #e4ad38;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.vp-aside-card a strong {
  display: block;
  margin-top: 5px;
  color: #0f1720;
  font-size: 18px;
}

@media (max-width: 1199px) {
  .vp-contact-hero__grid,
  .vp-quote-layout,
  .vp-contact-hero__meta {
    grid-template-columns: 1fr;
  }

  .vp-contact-hero {
    padding-top: 112px;
  }
}

@media (max-width: 920px) {
  .vp-contact-hero__grid,
  .vp-quote-layout,
  .vp-contact-hero__meta,
  .vp-form-grid--two,
  .vp-measure-grid {
    grid-template-columns: 1fr;
  }

  .vp-contact-hero {
    padding-top: 112px;
  }

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

  .vp-contact-hero__actions a {
    width: 100%;
  }

  .vp-form-block {
    padding: 16px;
  }
}
