/** Shopify CDN: Minification failed

Line 55:1 Unexpected "{"
Line 55:2 Expected identifier but found "%"
Line 55:30 Expected identifier but found "%"

**/
.custom-banner {
          margin-top: 12px;
          background:
            linear-gradient(90deg, rgba(250,246,239,.98), rgba(250,246,239,.85), rgba(250,246,239,.12)),
            url("https://images.unsplash.com/photo-1600210492486-724fe5c67fb0?auto=format&fit=crop&w=1400&q=85") center right / cover no-repeat;
          min-height: 210px;
          border-radius: 16px;
          border: 1px solid var(--line);
          padding: 34px;
          display: grid;
          grid-template-columns: 1fr auto;
          align-items: center;
          gap: 28px;
        }
        .custom-banner h2 {
          font-family: "Playfair Display", Georgia, serif;
          font-size: 38px;
          line-height: 1.08;
          letter-spacing: -.04em;
          font-weight: 500;
          margin: 8px 0 10px;
        }
        .btn-dark {
          height: 54px;
          padding: 0 28px;
          background: #111;
          color: #fff;
          border: 0;
          border-radius: 6px;
          font-size: 12px;
          letter-spacing: .13em;
          text-transform: uppercase;
          font-weight: 800;
          cursor: pointer;
          display: inline-flex;
          align-items: center;
          justify-content: center;
          text-decoration: none;
        }
        .eyebrow {
        font-size: 12px;
        letter-spacing: .22em;
        text-transform: uppercase;
        color: #a8793f;
        font-weight: 800;
    }

	{% comment %} trust section {% endcomment %}

	.trust {
      padding: 40px 0;
      background: #faf6ef;
      border-top: 1px solid #0000001a;
    }
    .trust-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 16px;
    }
    .trust-card {
      background: #fff;
      border: 1px solid #0000001a;
      border-radius: 14px;
      padding: 22px;
      text-align: center;
    }
    .trust-card .icon {
      color: #a8793f;
      font-size: 40px;
      margin-bottom: 10px;
    }
    .trust-card .trust-card-title {
      font-size: 12px;
      letter-spacing: .14em;
      text-transform: uppercase;
      margin-bottom: 8px;
	  color: #17130f;
	  font-weight: 700;
    }
    .trust-card p {
      color: #6c625a;
      font-size: 14px;
      line-height: 1.5;
	      margin-bottom: 0;
    }
	@media screen and (max-width: 768px){
		.trust-grid{
			grid-template-columns: 1fr 1fr;
		}
	}
	@media screen and (max-width: 600px){
		.custom-banner{
			grid-template-columns: 1fr;
			    padding: 25px 20px;
				gap: 15px;
		}
		.custom-banner p{
			line-height: 20px !important;
        font-size: 14px;
		} 
		.custom-banner h2{
			font-size: 30px;
		}

	}

	@media screen and (max-width: 550px){
		.trust-grid{
			grid-template-columns: 1fr;
		}
	}