/* BANNER (single static image, fixed 600px height) */
.site-banner{ position:relative; width:100%; height:650px; overflow:hidden; background: var(--ink); }
.site-banner__image{
  position:absolute; inset:0;
  width:100%; height:100%;
  object-fit:cover; object-position: bottom center;
}

.site-banner__overlay {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;

  background: linear-gradient(
    to left,
    rgba(6, 6, 5, 0.45) 0%,
    rgba(6, 6, 5, 0.30) 45%,
    rgba(6, 6, 5, 0.12) 80%,
    transparent 80%
  );
}

.site-banner__label {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  margin: -60px 0 0 0;
  z-index: 4;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  white-space: nowrap;
}

.site-banner__label-badge{
  background:#FCC222;
  color:#1a1a1a;
  font-family: 'Philosopher', serif;
  font-weight:500;
  font-size:18px;
  letter-spacing:0.15em;
  text-transform:uppercase;
  padding:6px 20px;
  border-radius:1px;
  white-space:nowrap;
}

.site-banner__label-line{
  display:inline-block;
  width:40px;
  height:1px;
  background:#FCC222;
}

.site-banner__headings {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 4;
  margin: 0;
  font-family: 'Philosopher', serif;
  font-weight: 500;
  font-size: clamp(32px, 5vw, 42px);
  text-transform: uppercase;
  color: #FFFFFF;
  text-align: center;
  white-space: nowrap;
}
.site-banner__cta {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, calc(-50% + 70px)); /* pushes it below the heading */
  z-index: 4;
  display: inline-block;
  padding: 12px 32px;
  background: transparent;
  color: #FFFFFF;
  border: 1px solid #FCC222;
  border-radius: 2px;
  font-family: 'Philosopher', serif;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

.site-banner__cta:hover {
  background: #FCC222;
  border-color: #FCC222;
  color: #1a1a1a;
}






.jv-section {
  background: #FFFFFF;
  padding: 5rem 8.5rem;
  box-sizing: border-box;
  overflow: hidden;
}
 
.jv-wrapper {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2rem;
  align-items: stretch;
}
 
/* ---------- Left column ---------- */
.jv-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: #14181D;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.9s ease, transform 0.9s ease;
}
 
.jv-content.jv-visible {
  opacity: 1;
  transform: translateY(0);
}
 
.jv-label { 
  display: flex; 
  align-items: center; 
  justify-content: flex-start; 
  gap: 14px; 
  margin-bottom: 14px; 
  color: #a97e3d; 
   font-family: 'Inter', sans-serif;
  font-size: 14px; 
  font-weight: 500; 
  letter-spacing: 0.12em; 
  text-transform: uppercase; 
  text-align: left; 
} 
.jv-label-line { 
  width: 40px; 
  height: 1px; 
  background: #a97e3d; 
  display: block; 
} 
.jv-heading { 
  font-family: Georgia, "Times New Roman", serif; 
  font-size: 26px; 
  font-weight: 500; 
  letter-spacing: 0.01em; 
  line-height: 1.15; 
  margin: 0; 
  color: #14181D; 
  text-transform: uppercase; 
  text-align: left; 
  margin-bottom: 10px;
}
 
.jv-text {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.85;
  color: #5A564D;
  margin: 0 0 1.5rem 0;
  max-width: 50ch;
  text-align: justify;
}
 
.jv-highlight {
  font-family: Georgia, "Times New Roman", serif;
  font-style: italic;
  font-size: 18px;
  line-height: 1.55;
  color: #14181D;
  border-left: 2px solid #FCC222;
  padding: 0.3rem 0 0.3rem 1.5rem;
  margin: 0 0 2.55rem 0;
  max-width: 46ch;
  text-align: justify;
}
 
.jv-cta {
  font-family: 'Inter', sans-serif;
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #14181D;
  background: #FCC222;
  border: 1px solid #FCC222;
  padding: 1rem 2.5rem;
  width: fit-content;
  cursor: pointer;
  border-radius: 2px;
  transition: background 0.35s ease, color 0.35s ease, transform 0.25s ease, box-shadow 0.35s ease;
  position: relative;
  overflow: hidden;
}
 
.jv-cta:hover {
  background: transparent;
  color: #14181D;
  box-shadow: 0 0 0 1px #B08D57 inset;
  transform: translateY(-2px);
}
 
.jv-cta:focus-visible {
  outline: 2px solid #B08D57;
  outline-offset: 3px;
}
 
.jv-cta:active {
  transform: translateY(0);
}
 
/* ---------- Right column (image) ---------- */
.jv-media {
  position: relative;
  min-height: 380px;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.9s ease 0.15s, transform 0.9s ease 0.15s;
}
 
.jv-media.jv-visible {
  opacity: 1;
  transform: translateY(0);
}
 
.jv-media-frame {
  position: relative;
  width: 100%;
  height: 550px;
  overflow: hidden;
}
 
.jv-media-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(176, 141, 87, 0.55);
  pointer-events: none;
}
 
.jv-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: grayscale(8%) contrast(1.03);
}




.pr-section {
  background: #ECECEC;
  padding: 60px 130px;
  box-sizing: border-box;
  overflow: hidden;
}
 
.pr-wrapper {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 80px;
  align-items: stretch;
}
 
/* ---------- Left column (image) ---------- */
.pr-media {
  position: relative;
  min-height: 560px;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.9s ease, transform 0.9s ease;
}
 
.pr-media.pr-visible {
  opacity: 1;
  transform: translateY(0);
}
 
.pr-media-frame {
  position: relative;
  width: 100%;
  height: 560px;
  overflow: hidden;
}
 
.pr-media-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(176, 141, 87, 0.55);
  pointer-events: none;
}
 
.pr-media img {
  width: 100%;
  height: 600px;
  object-fit: cover;
  display: block;
  filter: grayscale(8%) contrast(1.03);
}
 
/* ---------- Right column (content) ---------- */
.pr-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: #14181D;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.9s ease 0.15s, transform 0.9s ease 0.15s;
}
 
.pr-content.pr-visible {
  opacity: 1;
  transform: translateY(0);
}
 
.pr-eyebrow-row {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 10px;
}
 
.pr-eyebrow-line {
  width: 44px;
  height: 2px;
  background: #B08D57;
  display: inline-block;
}
 
.pr-eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #a97e3d;
}
 
.pr-heading {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 26px;
  font-weight: 500;
  letter-spacing: 0.3px;
  line-height: 1.4;
  margin: 0 0 15px 0;
  color: #14181D;
  text-transform: uppercase;
}

.pr-heading span{
    color:#a97e3d;
}
 
.pr-text {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 30px;
  color: #5A564D;
  margin: 0 0 25px 0;
  max-width: 680px;
  text-align: justify;
}
 
.pr-highlight {
  font-family: Georgia, "Times New Roman", serif;
  font-style: italic;
  font-size: 21px;
  line-height: 33px;
  color: #14181D;
  border-left: 2px solid #FCC222;
  padding: 5px 0 5px 24px;
  margin: 0 0 20px 0;
  max-width: 680px;
}
 
.pr-cta {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: #14181D;
  background: #FCC222;
  border: 1px solid #FCC222;
  padding: 16px 40px;
  width: fit-content;
  cursor: pointer;
  border-radius: 2px;
  transition: background 0.35s ease, color 0.35s ease, transform 0.25s ease, box-shadow 0.35s ease;
  position: relative;
  overflow: hidden;
}
 
.pr-cta:hover {
  background: transparent;
  color: #14181D;
  box-shadow: 0 0 0 1px #B08D57 inset;
  transform: translateY(-2px);
}
 
.pr-cta:focus-visible {
  outline: 2px solid #B08D57;
  outline-offset: 3px;
}
 
.pr-cta:active {
  transform: translateY(0);
}



.icon-section{
    position:relative;
    box-sizing:border-box;
    max-width:1600px;      /* content stays this width */
    margin:0 auto;
    padding:66px 2px 80px;
    overflow:visible;
    margin-top: 40px;
  }

  /* full-bleed background image — breaks out of the 1180px container to span the viewport */
  .icon-section-bg{
    position:absolute;
    top:0;
    left:50%;
    width:100vw;
    height:100%;
    transform:translateX(-50%);   /* re-centers the 100vw layer under the constrained section */
    object-fit:cover;
    z-index:0;
    pointer-events:none;
  }

  /* dark overlay for readability, sits above the bg image, below the content */
  .icon-section::after{
    content:"";
    position:absolute;
    top:0;
    left:50%;
    width:100vw;
    height:100%;
    transform:translateX(-50%);
    background:rgba(0,0,0,0.38);
    z-index:0;
    pointer-events:none;
  }

  .section-head,
  .icon-row{
    position:relative;
    z-index:1;                    /* lifts content above the bg image */
    max-width:1180px;
    margin-left:auto;
    margin-right:auto;
  }

  /* ---------- Header ---------- */
  .section-head{
    text-align:center;
    margin-bottom:40px;
  }

  .section-title{
    font-family:Georgia, "Times New Roman", serif;
    font-weight:500;
    font-size:34px;
    line-height:1.15;
    letter-spacing:-0.01em;
    color:#ffffff;
    margin:0;
  }

  /* ---------- Icon Row ---------- */
  .icon-row{
    display:grid;
    grid-template-columns:repeat(5, 1fr);
    gap:20px;
    padding: 0 40px;
  }

  .icon-card{
    box-sizing:border-box;
    display:flex;
    flex-direction:column;
    align-items:center;
    text-align:center;
    padding:8px 10px;
    opacity:0;
    transform:translateY(22px);
    animation:riseIn 0.7s cubic-bezier(.22,1,.36,1) forwards;
  }
  .icon-card:nth-child(1){ animation-delay:.05s; }
  .icon-card:nth-child(2){ animation-delay:.15s; }
  .icon-card:nth-child(3){ animation-delay:.25s; }
  .icon-card:nth-child(4){ animation-delay:.35s; }
  .icon-card:nth-child(5){ animation-delay:.45s; }

  @keyframes riseIn{
    to{ opacity:1; transform:translateY(0); }
  }

  /* ---------- glass badge ---------- */
  .badge{
    width:90px;
    height:90px;
    margin-bottom:28px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    background: rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.35);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  }
  .badge i{
    font-size:36px;
    color:#FF6A45;
  }

  .icon-title{
    font-family:'Fraunces', serif;
    font-weight:500;
    font-size:16px;
    line-height:1.4;
    color:#ffffff;
    margin:0;
    text-transform:uppercase;
    letter-spacing:0.02em;
  }

  /* connecting thread between icons on wide screens */
 





 :root{
    --jvr-sky-warm:#d9a273;
    --jvr-glass-bg:#f7f4f0;
    --jvr-glass-border:rgba(12,34,55,0.12);
    --jvr-ink:#0c2237;
    --jvr-accent:#c99b78;
    --jvr-accent-dark:#a97d5c;
    --jvr-error:#e2664a;
    --jvr-success:#3f9c76;
  }

  /* ---------- Layout ---------- */
  .jvr-section{
    position:relative;
    width:100vw;
    margin-left:calc(50% - 50vw);
    margin-right:calc(50% - 50vw);
    height:660px;
    overflow:hidden;
    font-family:'Manrope', sans-serif;
    color:var(--jvr-ink);
    background:#ffffff;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:40px;
    padding:0 6vw;
    flex-wrap:wrap;
  }

  .jvr-intro{
    position:relative;
    z-index:1;
    flex:1 1 380px;
    max-width:620px;
    color:var(--jvr-ink);
    padding-top:20px;
  }
  .jvr-eyebrow{
    display:flex;
    align-items:center;
    gap:14px;
    font-size:12px;
    letter-spacing:.22em;
    text-transform:uppercase;
    color:rgba(12,34,55,0.65);
    font-weight:500;
    margin-bottom:15px;
    font-family: 'Inter', sans-serif;
  }
  .jvr-eyebrow::before{
    content:'';
    width:34px;
    height:1px;
    background:rgba(12,34,55,0.4);
  }
  .jvr-intro h2{
    font-family:'Cormorant Garamond', serif;
    font-weight:500;
    font-size:clamp(40px, 4.2vw, 52px);
    line-height:1.12;
    margin:0 0 6px 0;
    letter-spacing:.005em;
  }
  .jvr-intro h2 span{
    display:block;
    color:var(--jvr-sky-warm);
    font-style:italic;
  }
  /* ---------- Card ---------- */
  .jvr-card{
    position:relative;
    z-index:1;
    flex:1 1 480px;
    max-width:600px;
    background:var(--jvr-glass-bg);
    border:1px solid var(--jvr-glass-border);
    border-radius:22px;
    padding:38px 36px 32px;
  }

  .jvr-field{
    margin-bottom:20px;
  }
  .jvr-field-row{
    display:flex;
    gap:16px;
  }
  .jvr-field-row .jvr-field{
    flex:1 1 0;
    min-width:0;
  }
  @media (max-width:520px){
    .jvr-field-row{
      flex-direction:column;
      gap:0;
    }
  }
  .jvr-field label{
    display:block;
    font-size:12px;
    font-weight:600;
    letter-spacing:.14em;
    text-transform:uppercase;
    color:rgba(20,40,60,0.72);
    margin-bottom:9px;
    font-family: 'Inter', sans-serif;
  }
  .jvr-field input,
  .jvr-field select,
  .jvr-field textarea{
    width:100%;
    border:1px solid rgba(12,34,55,0.15);
    background:#ffffff;
    border-radius:12px;
    padding:14px 16px;
    font-size:14.5px;
    font-family:inherit;
    color:var(--jvr-ink);
    outline:none;
    transition:border-color .18s ease, background .18s ease, box-shadow .18s ease;
  }
  .jvr-field select{
    appearance:none;
    -webkit-appearance:none;
    background-image:url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230c2237' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'><polyline points='6 9 12 15 18 9'/></svg>");
    background-repeat:no-repeat;
    background-position:right 14px center;
    background-size:16px;
    padding-right:40px;
    cursor:pointer;
  }
  .jvr-field select:invalid{
    color:rgba(20,40,60,0.4);
  }
  .jvr-field input::placeholder,
  .jvr-field textarea::placeholder{
    color:rgba(20,40,60,0.4);
  }
  .jvr-field input:focus,
  .jvr-field select:focus,
  .jvr-field textarea:focus{
    background:#ffffff;
    border-color:var(--jvr-accent);
  }
  .jvr-field textarea{
    resize:vertical;
    min-height:96px;
    font-family:inherit;
  }

  .jvr-field.jvr-invalid input,
  .jvr-field.jvr-invalid select,
  .jvr-field.jvr-invalid textarea{
    border-color:var(--jvr-error);
    background:rgba(255,240,238,0.75);
  }
  .jvr-field.jvr-valid input,
  .jvr-field.jvr-valid select,
  .jvr-field.jvr-valid textarea{
    border-color:var(--jvr-success);
  }

  .jvr-error-msg{
    display:none;
    align-items:center;
    gap:6px;
    font-size:12.5px;
    color:var(--jvr-error);
    margin-top:7px;
    font-weight:600;
  }
  .jvr-field.jvr-invalid .jvr-error-msg{
    display:flex;
  }

  .jvr-submit-btn{
    width:100%;
    margin-top:6px;
    border:none;
    cursor:pointer;
    background:linear-gradient(135deg, var(--jvr-accent), var(--jvr-accent-dark));
    color:#fff;
    font-family:inherit;
    font-weight:500;
    font-size:16px;
    letter-spacing:.01em;
    padding:16px 22px;
    border-radius:12px;
    display:flex;
    align-items:center;
    justify-content:center;
    gap:10px;
    transition:transform .15s ease, box-shadow .15s ease, opacity .15s ease;
    font-family: 'Inter', sans-serif;
  }
  .jvr-submit-btn:hover{
    transform:translateY(-1px);
  }
  .jvr-submit-btn:active{
    transform:translateY(0);
  }
  .jvr-submit-btn svg{
    width:16px;
    height:16px;
    transition:transform .15s ease;
  }
  .jvr-submit-btn:hover svg{
    transform:translateX(3px);
  }

  .jvr-success-banner{
    display:none;
    align-items:center;
    gap:10px;
    background:rgba(63,156,118,0.18);
    border:1px solid rgba(63,156,118,0.45);
    color:#1f5b41;
    font-size:13.5px;
    font-weight:700;
    padding:12px 14px;
    border-radius:10px;
    margin-bottom:18px;
  }
  .jvr-success-banner.jvr-show{
    display:flex;
  }