/** Shopify CDN: Minification failed

Line 1761:1 Expected "}" to go with "{"

**/
:root {
  --vp-green: #102617;
  --vp-green-dark: #081e12;
  --vp-green-light: #183524;
  --vp-gold: #c9a35a;
  --vp-gold-dark: #b98a3a;
  --vp-cream: #f5e8d0;
  --vp-body: #ddd2c0;
  --vp-radius: 8px;
}

body {
  background: var(--vp-green);
}

.vp-eyebrow {
  color: var(--vp-gold);
  font-size: 13px;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.vp-btn {
  display: inline-block;
  padding: 13px 28px;
  border: 1px solid var(--vp-gold);
  color: var(--vp-cream);
  text-decoration: none;
  letter-spacing: 1px;
  font-size: 13px;
  background: rgba(8, 30, 18, 0.75);
}

.vp-btn:hover {
  background: var(--vp-gold);
  color: var(--vp-green);
}

.vp-section {
  background: var(--vp-green);
  padding: 64px 5%;
  border-bottom: 1px solid var(--vp-gold-dark);
}/* ===========================
   VP HERO
=========================== */

.vp-hero{
  min-height:560px;
  background-image:
    linear-gradient(90deg,rgba(5,18,11,.88),rgba(5,18,11,.48),rgba(5,18,11,.18)),
    var(--vp-hero-bg);
  background-size:cover;
  background-position:center;
  display:flex;
  align-items:center;
  padding:70px 7%;
  border-bottom:1px solid var(--vp-gold-dark);
}

.vp-hero__content{
  max-width:560px;
}

.vp-hero h1{
  color:var(--vp-cream);
  font-size:72px;
  line-height:.92;
  margin:0 0 22px;
  letter-spacing:.03em;
}

.vp-hero__text{
  color:var(--vp-body);
  font-size:18px;
  line-height:1.7;
  margin-bottom:34px;
}

@media screen and (max-width:990px){

.vp-hero{
padding:60px 40px;
min-height:520px;
}

.vp-hero h1{
font-size:58px;
}

}

@media screen and (max-width:749px){

.vp-hero{
padding:50px 24px;
min-height:500px;
}

.vp-hero h1{
font-size:42px;
}

.vp-hero__text{
font-size:16px;
}

}/* ===========================
   VP COLLECTIONS
=========================== */

.vp-collections {
  text-align: center;
}

.vp-collections h2 {
  color: var(--vp-cream);
  font-size: 40px;
  margin: 0 0 30px;
  letter-spacing: .05em;
}

.vp-collection-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.vp-card {
  border: 1px solid var(--vp-gold);
  border-radius: var(--vp-radius);
  overflow: hidden;
  background: var(--vp-green-dark);
  text-decoration: none;
  transition: .35s ease;
}

.vp-card img {
  width: 100%;
  height: 190px;
  object-fit: cover;
  display: block;
}

.vp-card h3 {
  color: var(--vp-cream);
  font-size: 15px;
  letter-spacing: .08em;
  margin: 18px 14px 6px;
}

.vp-card p {
  color: var(--vp-body);
  font-size: 13px;
  line-height: 1.4;
  margin: 0 16px 20px;
}

.vp-card:hover {
  transform: translateY(-5px);
}

@media screen and (max-width: 900px) {
  .vp-collection-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media screen and (max-width: 600px) {
  .vp-collection-grid {
    grid-template-columns: 1fr;
  }
}/* ===========================
   VP DESIGN YOUR OWN
=========================== */

.vp-design {
  background: var(--vp-green-light);
  display: grid;
  grid-template-columns: 55% 45%;
  align-items: center;
  border-bottom: 1px solid var(--vp-gold-dark);
}

.vp-design__image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  display: block;
}

.vp-design__text {
  padding: 70px 9%;
}

.vp-design h2 {
  color: var(--vp-cream);
  font-size: 42px;
  line-height: 1.05;
  margin: 0 0 22px;
}

.vp-design__text p {
  color: var(--vp-body);
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 28px;
}

@media screen and (max-width: 749px) {
  .vp-design {
    grid-template-columns: 1fr;
  }

  .vp-design__image img {
    height: 380px;
  }

  .vp-design__text {
    padding: 48px 24px;
  }
}/* ===========================
   VP BENEFITS
=========================== */

.vp-benefits{
display:grid;
grid-template-columns:repeat(4,1fr);
background:#102617;
border-top:1px solid var(--vp-gold-dark);
border-bottom:1px solid var(--vp-gold-dark);
}

.vp-benefit{
padding:42px 26px;
text-align:center;
border-right:1px solid rgba(201,163,90,.35);
}

.vp-benefit:last-child{
border-right:none;
}

.vp-benefit h3{
color:var(--vp-cream);
font-size:14px;
letter-spacing:.08em;
margin-bottom:10px;
}

.vp-benefit p{
color:var(--vp-body);
font-size:14px;
line-height:1.6;
margin:0;
}

@media(max-width:900px){

.vp-benefits{
grid-template-columns:repeat(2,1fr);
}

}

@media(max-width:600px){

.vp-benefits{
grid-template-columns:1fr;
}

.vp-benefit{
border-right:none;
border-bottom:1px solid rgba(201,163,90,.35);
}

.vp-benefit:last-child{
border-bottom:none;
}

}/* ===========================
   VP OUR STORY
=========================== */

.vp-story {
  display: grid;
  grid-template-columns: 45% 55%;
  align-items: center;
  background: var(--vp-green);
}

.vp-story__text {
  padding: 80px 9%;
}

.vp-story h2 {
  color: var(--vp-cream);
  font-size: 46px;
  line-height: 1.05;
  margin-bottom: 24px;
}

.vp-story__description {
  color: var(--vp-body);
  line-height: 1.8;
  margin-bottom: 34px;
}

.vp-story__image img {
  width: 100%;
  height: 620px;
  object-fit: cover;
  display: block;
}

@media (max-width: 900px) {
  .vp-story {
    grid-template-columns: 1fr;
  }

  .vp-story__text {
    padding: 50px 30px;
  }

  .vp-story__image img {
    height: 420px;
  }
/* ===========================
   VP SIGNATURE BLANKETS
=========================== */

.vp-signature {
  text-align: center;
}

.vp-signature h2 {
  color: var(--vp-cream);
  font-size: 42px;
  margin: 0 0 36px;
  letter-spacing: .05em;
}

.vp-signature-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}

.vp-signature-card {
  background: var(--vp-green-dark);
  border: 1px solid var(--vp-gold);
  border-radius: 10px;
  overflow: hidden;
  text-decoration: none;
  transition: .35s ease;
}

.vp-signature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 35px rgba(0,0,0,.25);
}

.vp-signature-card img {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
}

.vp-signature-card h3 {
  padding: 16px;
  margin: 0;
  color: var(--vp-cream);
  font-size: 14px;
  letter-spacing: .08em;
}

@media screen and (max-width: 1000px) {
  .vp-signature-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media screen and (max-width: 650px) {
  .vp-signature-grid {
    grid-template-columns: 1fr;
  }
}.vp-signature .vp-signature-grid {
  display: grid !important;
  grid-template-columns: repeat(5, minmax(0, 1fr)) !important;
  gap: 18px !important;
}

.vp-signature .vp-signature-card {
  width: 100% !important;
  min-width: 0 !important;
}

.vp-signature .vp-signature-card img {
  width: 100% !important;
  height: 210px !important;
  object-fit: cover !important;
}/* ===========================
   VP INSPIRED LIVING
=========================== */

.vp-inspired {
  display: grid;
  grid-template-columns: 55% 45%;
  align-items: center;
  background: var(--vp-green-light);
  border-top: 1px solid var(--vp-gold-dark);
  border-bottom: 1px solid var(--vp-gold-dark);
}

.vp-inspired__image img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  display: block;
}

.vp-inspired__text {
  padding: 70px 9%;
}

.vp-inspired h2 {
  color: var(--vp-cream);
  font-size: 40px;
  line-height: 1.08;
  margin: 0 0 22px;
}

.vp-inspired__text p {
  color: var(--vp-body);
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 28px;
}

@media screen and (max-width: 900px) {
  .vp-inspired {
    grid-template-columns: 1fr;
  }

  .vp-inspired__image img {
    height: 380px;
  }

  .vp-inspired__text {
    padding: 48px 24px;
  }
/* ===========================
   VP COZY MOMENTS
=========================== */

.vp-gallery {
  text-align: center;
  background: var(--vp-green);
}

.vp-gallery h2 {
  color: var(--vp-cream);
  font-size: 40px;
  margin: 0 0 16px;
}

.vp-gallery__ {
  color: var(--vp-body);
  max-width: 680px;
  margin: 0 auto 36px;
  line-height: 1.7;
}

.vp-gallery__grid {
  display: grid;
  grid-template-columns: 1.45fr 1fr;
  grid-template-rows: repeat(3, 150px);
  gap: 16px;
  max-width: 980px;
  margin: 0 auto;
}

.vp-gallery__item:first-child {
  grid-row: span 3;
}

.vp-gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 10px;
}

.vp-gallery__item img:hover {
  transform: translateY(-5px);
  transition: .35s ease;
  box-shadow: 0 16px 35px rgba(0,0,0,.25);
}

@media screen and (max-width: 800px) {
  .vp-gallery__grid {
    grid-template-columns: 1fr;
    grid-template-rows: none;
  }

  .vp-gallery__item,
  .vp-gallery__item:first-child {
    grid-row: auto;
  }

  .vp-gallery__item img {
    height: 260px;
  }
}
/* FORCE COZY MOMENTS EDITORIAL GALLERY */

.vp-gallery .vp-gallery__grid {
  display: grid !important;
  grid-template-columns: 1.45fr 1fr !important;
  grid-template-rows: repeat(3, 150px) !important;
  gap: 16px !important;
  max-width: 980px !important;
  margin: 0 auto !important;
}

.vp-gallery .vp-gallery__item:first-child {
  grid-row: span 3 !important;
}

.vp-gallery .vp-gallery__item img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  display: block !important;
  border-radius: 10px !important;
/* ==================================================
   VP NEWSLETTER
================================================== */

.vp-newsletter {
  background: var(--vp-green);
  text-align: center;
  padding: 90px 20px;
  border-top: 1px solid var(--vp-gold-dark);
  border-bottom: 1px solid var(--vp-gold-dark);
}

.vp-newsletter__content {
  max-width: 700px;
  margin: 0 auto;
}

.vp-newsletter h2 {
  color: var(--vp-cream);
  font-size: 44px;
  margin-bottom: 18px;
}

.vp-newsletter__text {
  color: var(--vp-body);
  font-size: 18px;
  line-height: 1.7;
  margin-bottom: 40px;
}

.vp-newsletter form {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.vp-newsletter input[type="email"] {
  width: 420px;
  max-width: 100%;
  height: 58px;
  padding: 0 20px;
  border: 1px solid var(--vp-gold);
  border-radius: 8px;
  background: #faf8f2;
  color: #222;
  font-size: 16px;
}

.vp-newsletter input[type="email"]::placeholder {
  color: #777;
}

.vp-newsletter button {
  height: 58px;
  padding: 0 34px;
  border: 1px solid var(--vp-gold);
  background: var(--vp-gold);
  color: var(--vp-green);
  font-weight: 600;
  letter-spacing: .05em;
  border-radius: 8px;
  cursor: pointer;
  transition: .3s ease;
}

.vp-newsletter button:hover {
  background: var(--vp-cream);
}

@media (max-width: 750px) {
  .vp-newsletter form {
    flex-direction: column;
  }

  .vp-newsletter input[type="email"],
  .vp-newsletter button {
    width: 100%;
  }
}
}/* ===========================
   HEADER POLISH
=========================== */

.header__menu-item {
  font-size: 16px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-weight: 500;
}.header {
  padding-top: 14px;
  padding-bottom: 14px;
}

.header__heading-logo {
  transition: .3s ease;
}.header__icons svg {
  width: 22px;
  height: 22px;
}.header__menu-item:hover {
  color: var(--vp-gold);
}/* ===========================
   HEADER POLISH
=========================== */

.header {
  padding-top: 14px;
  padding-bottom: 14px;
}

.header__menu-item {
  font-size: 16px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-weight: 500;
}

.header__menu-item:hover {
  color: var(--vp-gold);
}

.header__icons svg {
  width: 22px;
  height: 22px;
}

.header__heading-logo {
  transition: .3s ease;
}/* ===========================
   FOOTER POLISH
=========================== */

.footer {
  background: var(--vp-green-dark);
  border-top: 1px solid var(--vp-gold-dark);
  color: var(--vp-body);
}

.footer h2,
.footer h3,
.footer-block__heading {
  color: var(--vp-gold);
  letter-spacing: .08em;
  text-transform: uppercase;
}

.footer a {
  color: var(--vp-body);
  text-decoration: none;
}

.footer a:hover {
  color: var(--vp-gold);
}

.footer__content-top {
  padding-top: 60px;
  padding-bottom: 40px;
}

.footer__content-bottom {
  border-top: 1px solid rgba(201,163,90,.35);
}/* ===========================
   FINAL HOMEPAGE POLISH
=========================== */

.vp-section {
  padding-top: 80px;
  padding-bottom: 80px;
}

.vp-btn {
  min-width: 190px;
  text-align: center;
  border-radius: 6px;
  text-transform: uppercase;
}

.vp-eyebrow {
  font-weight: 500;
  margin-bottom: 14px;
}

.vp-collections h2,
.vp-story h2,
.vp-signature h2,
.vp-inspired h2,
.vp-gallery h2,
.vp-newsletter h2 {
  font-family: Georgia, 'Times New Roman', serif;
}

@media screen and (max-width: 749px) {
  .vp-section {
    padding-top: 56px;
    padding-bottom: 56px;
  }
}/* ===========================
   VP DESIGN YOUR OWN
=========================== */

.vp-design-page{
    background:var(--vp-green);
    padding:90px 5%;
}

.vp-design-header{
    max-width:800px;
    margin:auto;
    text-align:center;
    margin-bottom:70px;
}

.vp-design-header h1{
    color:var(--vp-cream);
    font-size:52px;
    margin:18px 0;
}

.vp-design-header p{
    color:var(--vp-body);
    line-height:1.8;
}

.vp-design-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:30px;

}

.vp-design-card{

    background:var(--vp-green-dark);

    border:1px solid var(--vp-gold);

    border-radius:12px;

    padding:35px;

    text-align:center;

}

.vp-design-card span{

    font-size:46px;

    color:var(--vp-gold);

}

.vp-design-card h3{

    color:var(--vp-cream);

    margin:20px 0;

}

.vp-design-card p{

    color:var(--vp-body);

    line-height:1.7;

}

@media(max-width:990px){

.vp-design-grid{

grid-template-columns:1fr 1fr;

}

}

@media(max-width:700px){

.vp-design-grid{

grid-template-columns:1fr;

}

}/* ===========================
   VP SIZE GUIDE
=========================== */

.vp-size-guide{
    padding:90px 5%;
    background:var(--vp-green-dark);
}

.vp-size-header{
    max-width:700px;
    margin:auto;
    text-align:center;
    margin-bottom:60px;
}

.vp-size-header h2{
    color:var(--vp-cream);
    font-size:46px;
    margin:16px 0;
}

.vp-size-header p{
    color:var(--vp-body);
    line-height:1.8;
}

.vp-size-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:28px;
}

.vp-size-card{
    background:var(--vp-green);
    border:1px solid var(--vp-gold);
    border-radius:12px;
    padding:32px;
    text-align:center;
}

.vp-size-card h3{
    color:var(--vp-cream);
    margin-bottom:8px;
}

.vp-size-card h4{
    color:var(--vp-gold);
    margin-bottom:18px;
}

.vp-size-card p{
    color:var(--vp-body);
    line-height:1.7;
}

@media(max-width:900px){

.vp-size-grid{
grid-template-columns:1fr 1fr;
}

}

@media(max-width:650px){

.vp-size-grid{
grid-template-columns:1fr;
}

}/* ===========================
   VP COLOR GALLERY
=========================== */

.vp-color-section{
    padding:90px 5%;
    background:var(--vp-green);
}

.vp-color-header{
    text-align:center;
    max-width:750px;
    margin:auto;
    margin-bottom:60px;
}

.vp-color-header h2{
    color:var(--vp-cream);
    font-size:46px;
    margin:18px 0;
}

.vp-color-header p{
    color:var(--vp-body);
    line-height:1.8;
}

.vp-color-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.vp-color-card{
    background:var(--vp-green-dark);
    border:1px solid var(--vp-gold);
    border-radius:12px;
    padding:30px;
    text-align:center;
}

.vp-color-swatch{
    width:120px;
    height:120px;
    border-radius:50%;
    margin:auto;
    margin-bottom:20px;
    border:4px solid rgba(255,255,255,.15);
}

.forest{
    background:#29422f;
}

.cream{
    background:#efe7d3;
}

.blush{
    background:#d9a8b6;
}

.lavender{
    background:#b8a2d4;
}

.gold{
    background:#c99a45;
}

.ivory{
    background:#f6f4ef;
}

.vp-color-card h3{
    color:var(--vp-cream);
}

@media(max-width:900px){

.vp-color-grid{
grid-template-columns:repeat(2,1fr);
}

}

@media(max-width:650px){

.vp-color-grid{
grid-template-columns:1fr;
}

}/* ===========================
   VP PERSONALIZATION
=========================== */

.vp-personalization{
    background:var(--vp-green-dark);
    padding:90px 5%;
}

.vp-personalization-header{
    max-width:760px;
    margin:auto;
    text-align:center;
    margin-bottom:60px;
}

.vp-personalization-header h2{
    color:var(--vp-cream);
    font-size:46px;
    margin:18px 0;
}

.vp-personalization-header p{
    color:var(--vp-body);
    line-height:1.8;
}

.vp-personalization-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
}

.vp-personal-card{
    background:var(--vp-green);
    border:1px solid var(--vp-gold);
    border-radius:12px;
    padding:30px;
    text-align:center;
    transition:.3s ease;
}

.vp-personal-card:hover{
    transform:translateY(-6px);
}

.vp-personal-card h3{
    color:var(--vp-gold);
    margin-bottom:16px;
}

.vp-personal-card p{
    color:var(--vp-body);
    line-height:1.7;
}

@media(max-width:900px){
.vp-personalization-grid{
grid-template-columns:repeat(2,1fr);
}
}

@media(max-width:650px){
.vp-personalization-grid{
grid-template-columns:1fr;
}
}/* ===========================
   VP ORDER PROCESS
=========================== */

.vp-process{
    background:var(--vp-green);
    padding:90px 5%;
}

.vp-process-header{
    max-width:760px;
    margin:auto;
    text-align:center;
    margin-bottom:60px;
}

.vp-process-header h2{
    color:var(--vp-cream);
    font-size:46px;
    margin:18px 0;
}

.vp-process-header p{
    color:var(--vp-body);
    line-height:1.8;
}

.vp-process-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
}

.vp-process-card{
    background:var(--vp-green-dark);
    border:1px solid var(--vp-gold);
    border-radius:12px;
    padding:30px;
    text-align:center;
}

.vp-process-card span{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    width:50px;
    height:50px;
    border-radius:50%;
    background:var(--vp-gold);
    color:var(--vp-green-dark);
    font-weight:700;
    margin-bottom:20px;
}

.vp-process-card h3{
    color:var(--vp-cream);
    margin-bottom:14px;
}

.vp-process-card p{
    color:var(--vp-body);
    line-height:1.7;
}

@media(max-width:900px){
.vp-process-grid{
grid-template-columns:repeat(2,1fr);
}
}

@media(max-width:650px){
.vp-process-grid{
grid-template-columns:1fr;
}
}/* ===========================
   VP CUSTOM ORDER FORM
=========================== */

.vp-custom-order {
  background: var(--vp-green-dark);
  padding: 90px 5%;
  border-top: 1px solid var(--vp-gold-dark);
}

.vp-custom-order__header {
  max-width: 760px;
  margin: 0 auto 54px;
  text-align: center;
}

.vp-custom-order__header h2 {
  color: var(--vp-cream);
  font-size: 46px;
  line-height: 1.1;
  margin: 18px 0;
}

.vp-custom-order__header p {
  color: var(--vp-body);
  line-height: 1.8;
}

.vp-custom-order__form-wrap {
  max-width: 950px;
  margin: 0 auto;
  padding: 42px;
  background: var(--vp-green);
  border: 1px solid var(--vp-gold);
  border-radius: 14px;
}

.vp-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.vp-form-field {
  display: flex;
  flex-direction: column;
}

.vp-form-field--full {
  grid-column: 1 / -1;
}

.vp-form-field label {
  color: var(--vp-cream);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .04em;
  margin-bottom: 9px;
}

.vp-form-field input,
.vp-form-field select,
.vp-form-field textarea {
  width: 100%;
  padding: 15px 16px;
  border: 1px solid var(--vp-gold);
  border-radius: 8px;
  background: var(--vp-cream);
  color: var(--vp-green-dark);
  font: inherit;
}

.vp-form-field textarea {
  resize: vertical;
  min-height: 150px;
}

.vp-custom-order__note {
  color: var(--vp-body);
  font-size: 13px;
  line-height: 1.6;
  margin: 24px 0;
}

.vp-custom-order__button {
  width: 100%;
  min-height: 58px;
  padding: 15px 24px;
  border: 1px solid var(--vp-gold);
  border-radius: 8px;
  background: var(--vp-gold);
  color: var(--vp-green-dark);
  font-weight: 700;
  letter-spacing: .08em;
  cursor: pointer;
  transition: .3s ease;
}

.vp-custom-order__button:hover {
  background: var(--vp-cream);
}

.vp-form-success {
  margin-bottom: 24px;
  padding: 16px;
  border: 1px solid var(--vp-gold);
  border-radius: 8px;
  color: var(--vp-cream);
  text-align: center;
}

.vp-form-errors {
  margin-bottom: 24px;
  color: var(--vp-cream);
}

@media screen and (max-width: 749px) {
  .vp-custom-order {
    padding: 60px 20px;
  }

  .vp-custom-order__header h2 {
    font-size: 34px;
  }

  .vp-custom-order__form-wrap {
    padding: 26px 20px;
  }

  .vp-form-grid {
    grid-template-columns: 1fr;
  }

  .vp-form-field--full {
    grid-column: auto;
  }
}/*==========================
VP DESIGN FAQ
==========================*/

.vp-design-faq{

padding:90px 5%;

background:var(--vp-green);

}

.vp-faq-header{

text-align:center;

max-width:760px;

margin:auto;

margin-bottom:60px;

}

.vp-faq-header h2{

color:var(--vp-cream);

font-size:46px;

margin:18px 0;

}

.vp-faq-header p{

color:var(--vp-body);

line-height:1.8;

}

.vp-faq-grid{

display:grid;

grid-template-columns:repeat(2,1fr);

gap:30px;

}

.vp-faq-card{

background:var(--vp-green-dark);

border:1px solid var(--vp-gold);

padding:30px;

border-radius:12px;

}

.vp-faq-card h3{

color:var(--vp-gold);

margin-bottom:14px;

}

.vp-faq-card p{

color:var(--vp-body);

line-height:1.8;

}

@media(max-width:800px){

.vp-faq-grid{

grid-template-columns:1fr;

}

}/* ===========================
   VP ABOUT
=========================== */

.vp-about{

background:var(--vp-green);

padding:110px 5%;

}

.vp-about-hero{

max-width:850px;

margin:auto;

text-align:center;

}

.vp-about-hero h1{

font-size:64px;

margin:20px 0;

color:var(--vp-cream);

}

.vp-about-intro{

font-size:21px;

line-height:1.9;

color:var(--vp-body);

max-width:760px;

margin:auto;

}/* ===========================
   VP OUR STORY
=========================== */

.vp-story{
    background:var(--vp-green-dark);
    padding:90px 5%;
}

.vp-story-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:60px;
    align-items:center;
}

.vp-placeholder-image{
    background:#183424;
    border:2px dashed var(--vp-gold);
    border-radius:12px;
    height:450px;
    display:flex;
    align-items:center;
    justify-content:center;
    color:var(--vp-gold);
    font-size:24px;
    font-weight:600;
}

.vp-story-content h2{
    color:var(--vp-cream);
    font-size:48px;
    margin:18px 0;
}

.vp-story-content p{
    color:var(--vp-body);
    line-height:1.9;
    margin-bottom:20px;
}

@media(max-width:900px){

.vp-story-grid{
    grid-template-columns:1fr;
}

}/* ===========================
   VP WHY CHOOSE
=========================== */

.vp-why{
    background:var(--vp-green);
    padding:90px 5%;
}

.vp-why-header{
    max-width:760px;
    margin:auto;
    text-align:center;
    margin-bottom:60px;
}

.vp-why-header h2{
    color:var(--vp-cream);
    font-size:48px;
    margin:18px 0;
}

.vp-why-header p{
    color:var(--vp-body);
    line-height:1.9;
}

.vp-why-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
}

.vp-why-card{
    background:var(--vp-green-dark);
    border:1px solid var(--vp-gold);
    border-radius:12px;
    padding:30px;
    text-align:center;
    transition:.3s ease;
}

.vp-why-card:hover{
    transform:translateY(-6px);
}

.vp-why-card h3{
    color:var(--vp-gold);
    margin-bottom:16px;
}

.vp-why-card p{
    color:var(--vp-body);
    line-height:1.8;
}

@media(max-width:900px){

.vp-why-grid{
    grid-template-columns:repeat(2,1fr);
}

}

@media(max-width:650px){

.vp-why-grid{
    grid-template-columns:1fr;
}

}/* ===========================
   VP PROMISE
=========================== */

.vp-promise{
    background:var(--vp-green-dark);
    padding:100px 5%;
}

.vp-promise-header{
    max-width:760px;
    margin:auto;
    text-align:center;
    margin-bottom:50px;
}

.vp-promise-header h2{
    color:var(--vp-cream);
    font-size:48px;
    margin:18px 0;
}

.vp-promise-header p{
    color:var(--vp-body);
    line-height:1.9;
}

.vp-promise-box{
    max-width:900px;
    margin:auto;
    padding:50px;
    border:1px solid var(--vp-gold);
    border-radius:14px;
    text-align:center;
    background:var(--vp-green);
}

.vp-promise-box p{
    color:var(--vp-body);
    line-height:1.9;
    font-size:19px;
    margin-bottom:35px;
}

.vp-promise-button{
    display:inline-block;
    padding:16px 40px;
    border:1px solid var(--vp-gold);
    color:var(--vp-cream);
    text-decoration:none;
    letter-spacing:.08em;
    transition:.3s ease;
}

.vp-promise-button:hover{
    background:var(--vp-gold);
    color:var(--vp-green-dark);
}/* ===========================
   VP CONTACT HERO
=========================== */

.vp-contact{

background:var(--vp-green);

padding:110px 5%;

}

.vp-contact-hero{

max-width:850px;

margin:auto;

text-align:center;

}

.vp-contact-hero h1{

font-size:64px;

margin:20px 0;

color:var(--vp-cream);

}

.vp-contact-hero p{

font-size:20px;

line-height:1.9;

color:var(--vp-body);

}/* ===========================
   VP CONTACT INFO
=========================== */

.vp-contact-info{
    background:var(--vp-green-dark);
    padding:90px 5%;
}

.vp-contact-info-header{
    max-width:760px;
    margin:auto;
    text-align:center;
    margin-bottom:60px;
}

.vp-contact-info-header h2{
    color:var(--vp-cream);
    font-size:48px;
    margin:18px 0;
}

.vp-contact-info-header p{
    color:var(--vp-body);
    line-height:1.8;
}

.vp-contact-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.vp-contact-card{
    background:var(--vp-green);
    border:1px solid var(--vp-gold);
    border-radius:12px;
    padding:35px;
    text-align:center;
}

.vp-contact-card h3{
    color:var(--vp-gold);
    margin-bottom:18px;
}

.vp-contact-card p{
    color:var(--vp-body);
    line-height:1.8;
}

@media(max-width:900px){

.vp-contact-grid{
grid-template-columns:1fr;
}

}/* ===========================
   VP CONTACT FORM
=========================== */

.vp-contact-form-section{
    background:var(--vp-green);
    padding:90px 5%;
}

.vp-contact-form-header{
    text-align:center;
    max-width:760px;
    margin:0 auto 50px;
}

.vp-contact-form-header h2{
    color:var(--vp-cream);
    font-size:48px;
    margin:18px 0;
}

.vp-contact-form-header p{
    color:var(--vp-body);
    line-height:1.8;
}

.vp-contact-form-wrapper{
    max-width:850px;
    margin:auto;
    background:var(--vp-green-dark);
    border:1px solid var(--vp-gold);
    border-radius:14px;
    padding:40px;
}

.vp-form-row{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:20px;
    margin-bottom:20px;
}

.vp-contact-form-wrapper input,
.vp-contact-form-wrapper textarea{
    width:100%;
    padding:16px;
    margin-bottom:20px;
    border:1px solid var(--vp-gold);
    border-radius:8px;
    background:var(--vp-cream);
    color:var(--vp-green-dark);
    font-size:16px;
}

.vp-contact-button{
    width:100%;
    padding:18px;
    background:var(--vp-gold);
    color:var(--vp-green-dark);
    border:none;
    border-radius:8px;
    font-weight:700;
    letter-spacing:.08em;
    cursor:pointer;
    transition:.3s ease;
}

.vp-contact-button:hover{
    background:var(--vp-cream);
}

.vp-success-message{
    margin-bottom:20px;
    padding:16px;
    border:1px solid var(--vp-gold);
    border-radius:8px;
    color:var(--vp-cream);
    text-align:center;
}

@media(max-width:768px){

.vp-form-row{
    grid-template-columns:1fr;
}

}