/* ===== Home: Hero ===== */

.hero h1{
  letter-spacing: -0.4px;
}

.hero{
  position: relative;
  padding: 140px 20px;
  max-height: 45vh;
  background:
    linear-gradient(
      to bottom,
      rgba(6,71,137,1) 0%,   /* VERY dark top */
      rgba(6,71,137,0.95) 20%,
      rgba(6,71,137,0.85) 50%,
      rgba(6,71,137,0.75) 75%,
      rgba(6,71,137,0.65) 100%  /* fades out */
    ),
    url("images/home-hero.jpg");

  background-size: cover;
  background-position: center;
padding-bottom: 90px;
}

.hero h1{
  color: #fff;
  font-size: 48px;
  letter-spacing: -0.2px;
  text-shadow: 0 10px 30px rgba(0,0,0,0.45);
}

.hero p,
.hero .lead{
  color: #C59F78 !important;
  line-height: 1.6;
  text-shadow: 0 6px 18px rgba(0,0,0,0.35);
  max-width: none;
}

@media(max-width:768px){
  .hero{
    min-height: 45vh;
    padding: 80px 16px 60px;
  }
}

/* ===== Section bar (for internal page nav) ===== */
html{
  scroll-behavior: smooth;
}

.section-bar{
  background: rgba(240,239,234,0.9); /* your sand-ish */
  border-top: 1px solid rgba(0,0,0,0.06);
  border-bottom: 1px solid rgba(0,0,0,0.06);
}

.section-bar-inner{
  display: flex;
  gap: 22px;
  align-items: center;
  padding: 14px 0;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.section-bar a{
  color: rgba(64,65,79,0.85);
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
  white-space: nowrap;
  padding: 6px 2px;
  border-bottom: 2px solid transparent;
}

.section-bar a:hover{
  color: #064789;
  border-bottom-color: #C59F78;
}

.section-bar{
  position: sticky;
  top: 72px;
  z-index: 9;
}

/* ===== Section backgrounds and dividers ===== */
:root{
  --bg-white: #ffffff;
  --bg-cool: #F0F6F9;                  /* light cool grey */
  --bg-sky: rgba(189,212,231,0.28);    /* your sky tint */
  --bg-sand: rgba(213,210,195,0.35);   /* your sand tint */
  --divider: rgba(15, 23, 42, 0.08);
}

/* generic section spacing */
.section{
  padding: 96px 0;
}

.section--cool{ background: var(--bg-cool); }
.section--sky{ background: var(--bg-sky); }
.section--white{ background: var(--bg-white); }

.section--divider-top{ border-top: 1px solid var(--divider); }
.section--divider-bottom{ border-bottom: 1px solid var(--divider); }

.hp-field {
  display: none !important;
}


