/* ---- Hero ---- */
:root { --hero-img: url("https://halconcaravans.com/assets/img/hero/spv-bg.png"); --hero-ratio: 2795 / 1213;} /* your SPV hero */



.spv-hero{
  position:relative; isolation:isolate;
  min-height: 64vh;
  display:grid; place-items:center;
  color:#fff;
}
.spv-hero__media{
  position:absolute; inset:0;
  background-image: url("https://halconcaravans.com/assets/img/hero/spv-bg.png"); /* <<< replace */
  background-size:cover; background-position:center;
  filter: brightness(0.75);
  z-index:-2;
}
.spv-hero__overlay{
  position:absolute; inset:0;
  background: linear-gradient(180deg, rgba(0,0,0,.25), rgba(0,0,0,.55));
  z-index:-1;
}
.spv-hero__content{
  text-align:center; padding: 3rem 1rem; max-width: 920px;
}
.spv-hero__title{ font-size: clamp(2rem, 3.5vw, 3rem); margin:0 0 .5rem; }
.spv-hero__subtitle{ font-size: clamp(1rem, 2vw, 1.25rem); opacity:.95; margin:0 0 .25rem; }
.spv-hero__desc{ font-size: clamp(.95rem, 1.6vw, 1.05rem); opacity:.95; }

/* ---- Section head ---- */
.spv-section{ padding: 48px 16px; max-width:1200px; margin-inline:auto; }
.spv-section__head{ text-align:center; margin-bottom: 20px; }
.spv-section__lead{ opacity:.8; }

/* ---- Grid ---- */
.spv-grid{
  display:grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
@media (min-width: 1024px){
  .spv-grid{ grid-template-columns: repeat(4, minmax(0,1fr)); }
}
.spv-card{
  background:#fff;
  border:1px solid rgba(0,0,0,.08);
  border-radius:16px;
  box-shadow: 0 4px 14px rgba(0,0,0,.06);
  overflow:hidden;
  display:flex;
  flex-direction:column;
  transition: transform .18s ease, box-shadow .18s ease;
}
.spv-card:hover{ transform: none;
  box-shadow: var(--shadow-sm);
  border-color: var(--line); }


.spv-card__img{ aspect-ratio: 16/9; background:#f2f5f8; overflow:hidden; }
.spv-card__img img{ width:100%; height:100%; object-fit:cover; display:block; }

.spv-card__body{ padding:16px; display:grid; gap:10px; }
.spv-card__title{ font-size:1.05rem; margin:0; }
.spv-card__desc{ margin:0; opacity:.85; }
.spv-card__cta{ justify-self:start; }



/* ---- Harmony with your site buttons (tiny helpers; optional) ---- */
.hc-btn{
  display:inline-flex; align-items:center; gap:.5rem;
  padding:.6rem 1rem; border-radius:12px; border:1px solid rgba(0,0,0,.1);
  background:#0a66ff; color:#fff; cursor:pointer; text-decoration:none;
  transition: filter .15s ease;
}
.hc-btn:hover{ filter: brightness(0.95); }
.hc-hero__coming {
  color: #ff6600;       /* standout accent */
  font-weight: 700;
}


/* === Responsive columns for SPV grid === */
@media (max-width: 1200px){
  #spvGrid{ grid-template-columns: repeat(3, minmax(0,1fr)); }
}
@media (max-width: 900px){
  #spvGrid{ grid-template-columns: repeat(2, minmax(0,1fr)); }
}
@media (max-width: 600px){
  #spvGrid{ grid-template-columns: 1fr; }
}

/* Base desktop (already fine) */
.card h3 {
  font-size: clamp(1.25rem, 1.1vw + 1rem, 1.75rem); /* 20–28px */
  font-weight: 600; /* semi-bold */
  line-height: 1.3;
}

.card p {
  font-size: clamp(0.9rem, 0.8vw + 0.5rem, 1.125rem); /* 14–18px */
  font-weight: 400; /* normal */
  line-height: 1.5;
}

/* Medium screens (≤900px) */
@media (max-width: 900px){
  .card h3 { font-size: 1.2rem; font-weight: 600; }
  .card p  { font-size: 0.95rem; }
}

/* Small screens (≤600px) */
@media (max-width: 600px){
  .card h3 { font-size: 1.05rem; font-weight: 500; }
  .card p  { font-size: 0.85rem; }
}

