/* ============================================================================
   Verb Hub — shared styles for /book, /pack, /go (and parallels /plan)
   ----------------------------------------------------------------------------
   Hub-light gateway pages that anchor each stage of the planning OS.
   Each hub sets --vh-color via inline style on .vh-page to its island brand:
     /book = #c3232f (Big Island red)
     /pack = #1D9771 (Kauai green)
     /go   = #F27A24 (Oahu orange)
   /plan currently uses planning-hub-v1.css; the hubs here are intentionally
   lighter — 5–6 sections, navigational, route to the deep tools we already have.
   ============================================================================ */

.vh-page{
  --vh-color: #1b4332;
  --vh-color-soft: rgba(27, 67, 50, 0.08);
  --vh-text: #1a1a1a;
  --vh-muted: #4a5568;
  --vh-border: #e5e7eb;
  --vh-card-bg: #ffffff;
  --vh-bg: #fafaf7;
  background: var(--vh-bg);
  color: var(--vh-text);
}

/* Push hero under the sticky site header on desktop, with white nav text +
   shadow so the header reads cleanly on top of the dark photo overlay.
   Pairs with _includes/verb-hub-logo-swap.html which swaps the logo to
   white on first load and back to colored once the header becomes sticky.
   The hero photo extends behind the transparent header — content padding
   inside .vh-hero-content (below) pushes the title text past the header
   so it doesn't sit underneath. Mirrors /plan's pattern. */
@media only screen and (min-width: 1024px){
  #type-feature-page{ margin-top: -90px; }
  .goUS-header .nav-inline-block span{
    color: #fff;
    text-shadow: -1px -1px 2px rgba(0,0,0,0.2),
                  1px -1px 2px rgba(0,0,0,0.2),
                 -1px  1px 2px rgba(0,0,0,0.2),
                  1px  1px 2px rgba(0,0,0,0.2);
  }
}

/* ----- Hero — full-bleed photo with overlay ------------------------------- */
/* No border-bottom — the wave SVG below provides the soft transition. A
   colored 4px border read as a hard "gap" line on user review (2026-05-07). */
.vh-hero{
  position: relative;
  min-height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background: var(--vh-bg);
}
.vh-hero-img{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.vh-hero-overlay{
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.32) 0%, rgba(0,0,0,0.58) 100%);
  z-index: 1;
}
.vh-hero-content{
  position: relative;
  z-index: 2;
  /* Top padding pushes content below the transparent sticky header
     so the H1 / step pill / sub aren't hidden behind it. /plan uses
     padding: 120px 4% 80px for the same reason. Mobile shrinks via the
     bottom @media rule. */
  padding: 130px 24px 80px;
  max-width: 900px;
  width: 100%;
  box-sizing: border-box;
}
.vh-hero-step{
  display: inline-block;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #fff;
  background: var(--vh-color);
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 14px;
}
.vh-hero h1{
  font-size: 44px;
  font-weight: 800;
  line-height: 1.15;
  margin: 0 auto 14px;
  max-width: 820px;
  color: #fff;
  text-shadow: 0 2px 10px rgba(0,0,0,0.45);
}
.vh-hero-sub{
  font-size: 19px;
  line-height: 1.5;
  color: rgba(255,255,255,0.95);
  max-width: 720px;
  margin: 0 auto 22px;
  text-shadow: 0 1px 6px rgba(0,0,0,0.4);
}
.vh-hero-jumps{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 18px;
  font-size: 15px;
  margin-top: 12px;
}
.vh-hero-jumps a{
  color: #fff;
  font-weight: 700;
  text-decoration: none;
  border-bottom: 2px solid rgba(255,255,255,0.45);
  padding-bottom: 2px;
  transition: border-color 0.15s ease;
  text-shadow: 0 1px 4px rgba(0,0,0,0.4);
}
.vh-hero-jumps a:hover{ border-bottom-color: #fff; }

/* Wave divider that sits at the bottom of the hero, matching /plan's pattern */
.vh-wave{
  margin-top: -1px;
  line-height: 0;
  background: transparent;
}
.vh-wave svg{
  width: 100%;
  height: 50px;
  display: block;
}

/* ----- Section ------------------------------------------------------------- */
.vh-section{
  max-width: 1100px;
  margin: 0 auto;
  padding: 44px 24px 12px;
  box-sizing: border-box;
}
.vh-section + .vh-section{ padding-top: 28px; }
.vh-section-eyebrow{
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--vh-color);
  margin-bottom: 8px;
}
.vh-section h2{
  font-size: 28px;
  font-weight: 800;
  line-height: 1.2;
  margin: 0 0 10px;
  color: var(--vh-text);
}
.vh-section-intro{
  font-size: 17px;
  line-height: 1.55;
  color: var(--vh-muted);
  margin: 0 0 22px;
  max-width: 780px;
}

/* ----- Card grid ----------------------------------------------------------- */
.vh-grid{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
}
.vh-card{
  display: flex;
  flex-direction: column;
  background: var(--vh-card-bg);
  border: 1px solid var(--vh-border);
  border-radius: 14px;
  padding: 20px 20px 18px;
  text-decoration: none;
  color: inherit;
  box-sizing: border-box;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
  min-height: 150px;
}
.vh-card:hover{
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
  border-color: var(--vh-color);
}
.vh-card-icon{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: var(--vh-color-soft);
  color: var(--vh-color);
  font-size: 18px;
  margin-bottom: 12px;
}
.vh-card h3{
  font-size: 18px;
  font-weight: 700;
  line-height: 1.3;
  margin: 0 0 6px;
  color: var(--vh-text);
}
.vh-card-desc{
  font-size: 14.5px;
  line-height: 1.45;
  color: var(--vh-muted);
  margin: 0 0 14px;
  flex: 1 0 auto;
}
.vh-card-cta{
  font-size: 14px;
  font-weight: 700;
  color: var(--vh-color);
  margin-top: auto;
}

/* ----- Featured (single-column hero card) --------------------------------- */
.vh-featured{
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
  background: linear-gradient(135deg, var(--vh-color-soft) 0%, var(--vh-card-bg) 60%);
  border: 1px solid var(--vh-border);
  border-left: 4px solid var(--vh-color);
  border-radius: 16px;
  padding: 26px;
  text-decoration: none;
  color: inherit;
  box-sizing: border-box;
  transition: box-shadow 0.18s ease;
}
.vh-featured:hover{ box-shadow: 0 14px 30px rgba(0, 0, 0, 0.10); }
.vh-featured-icon{
  flex: 0 0 auto;
  width: 64px;
  height: 64px;
  border-radius: 14px;
  background: var(--vh-color);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
}
.vh-featured-body{ flex: 1 1 320px; min-width: 240px; }
.vh-featured h3{
  font-size: 22px;
  font-weight: 800;
  margin: 0 0 6px;
  color: var(--vh-text);
}
.vh-featured p{
  font-size: 16px;
  line-height: 1.5;
  color: var(--vh-muted);
  margin: 0 0 10px;
}
.vh-featured-cta{ font-size: 14px; font-weight: 700; color: var(--vh-color); }

/* ----- Bottom CTA band ----------------------------------------------------- */
.vh-cta-band{
  max-width: 1100px;
  margin: 36px auto 16px;
  padding: 28px 24px;
  text-align: center;
  border-top: 1px solid var(--vh-border);
}
.vh-cta-band p{
  font-size: 16px;
  color: var(--vh-muted);
  margin: 0 0 14px;
}
.vh-cta-next{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--vh-color);
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  padding: 14px 26px;
  border-radius: 12px;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.vh-cta-next:hover{
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
  color: #fff;
}
.vh-cta-also{
  display: inline-block;
  margin-top: 14px;
  font-size: 14px;
  color: var(--vh-muted);
}
.vh-cta-also a{ color: var(--vh-color); font-weight: 700; }

/* ----- Mini concierge link card (used in /book) --------------------------- */
.vh-concierge-card{
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  background: #fff8f3;
  border: 1px dashed #f1c79c;
  border-radius: 14px;
  padding: 20px 22px;
  text-decoration: none;
  color: inherit;
  margin-top: 20px;
}
.vh-concierge-card .vh-concierge-icon{
  flex: 0 0 auto;
  width: 44px; height: 44px;
  border-radius: 12px;
  background: #F27A24;
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
}
.vh-concierge-card-body{ flex: 1 1 240px; }
.vh-concierge-card h4{
  font-size: 16px;
  font-weight: 700;
  margin: 0 0 4px;
  color: var(--vh-text);
}
.vh-concierge-card p{
  font-size: 14px;
  color: var(--vh-muted);
  margin: 0;
  line-height: 1.4;
}
.vh-concierge-card-cta{
  font-size: 14px;
  font-weight: 700;
  color: #F27A24;
  white-space: nowrap;
}

/* ----- Mobile -------------------------------------------------------------- */
@media (max-width: 640px){
  .vh-hero{ min-height: 320px; }
  .vh-hero-content{ padding: 40px 18px 44px; }
  .vh-hero h1{ font-size: 32px; }
  .vh-hero-sub{ font-size: 17px; }
  .vh-wave svg{ height: 30px; }
  .vh-section{ padding: 32px 18px 8px; }
  .vh-section h2{ font-size: 24px; }
  .vh-card{ min-height: auto; padding: 18px; }
  .vh-featured{ padding: 22px 20px; gap: 18px; }
  .vh-featured-icon{ width: 56px; height: 56px; font-size: 24px; }
  .vh-cta-next{ font-size: 15px; padding: 12px 22px; }
}
