.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-guests/hero.jpg");

  background-size: cover;
  background-position: center;
}

.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;
}

.icon-strip{
  background: #ffffff;
  padding: 60px 0;
}

.icon-grid{
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 32px;
  text-align: center;
}

.icon-item img{
  width: 42px;
  height: 42px;
  margin-bottom: 12px;
  filter: brightness(0) saturate(100%) invert(26%) sepia(57%) 
          saturate(1833%) hue-rotate(191deg) brightness(92%) contrast(92%);
  /* tints icons to your blue */
}

.icon-item p{
  font-size: 14px;
  font-weight: 500;
  color: #2c2c2c;
}

/* Mobile */
@media(max-width: 900px){
  .icon-grid{
    grid-template-columns: repeat(2, 1fr);
  }
}



/* ===== 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--grey{ background: var(--bg-sand); }
.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); }


/* spacing between each stay block */
.host-row{
  margin-top: 24px;
}

@media (max-width: 900px){
  .host-row{
    margin-top: 24px;
  }
}


/* mobile: always stack, image first then text (optional) */
@media (max-width: 900px){
  #who-we-host-for .who-grid,
  #who-we-host-for .who-grid.reverse{
    grid-template-columns: 1fr;
  }

  #who-we-host-for .who-grid.reverse .who-media,
  #who-we-host-for .who-grid.reverse .who-content{
    order: initial;
  }
}

/* ===== Guests: What to expect (icon cards) ===== */
.expect-grid{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  margin-top: 22px;
}

.expect-card{
  background: rgba(255,255,255,0.88);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 22px;
  box-shadow: 0 10px 26px rgba(0,0,0,0.04);
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
  min-height: 170px;
}

.expect-card:hover{
  transform: translateY(-3px);
  box-shadow: 0 16px 36px rgba(0,0,0,0.08);
  border-color: rgba(6,71,137,0.28);
}

.expect-icon img{
  width: 26px;
  height: 26px;
}

.expect-card h3{
  margin: 0 0 6px;
  font-size: 20px;
}

.expect-icon{
  filter: brightness(0) saturate(100%) invert(26%) sepia(57%) 
          saturate(1833%) hue-rotate(191deg) brightness(92%) contrast(92%);
  /* tints icons to your blue */
}

.expect-card p{
  margin: 0;
  max-width: none;
  font-weight: 600;
  color: rgba(64,65,79,0.82);
  line-height: 1.55;
}

/* Responsive */
@media (max-width: 980px){
  .expect-grid{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px){
  .expect-grid{
    grid-template-columns: 1fr;
  }
  .expect-card{
    min-height: auto;
  }
}

.how-grid{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 24px;
}

.faq{
  margin-top: 22px;
  display: grid;
  gap: 14px;
}

.faq-item{
  border: 1px solid var(--border);
  border-radius: 16px;
  background: rgba(255,255,255,0.9);
  padding: 16px 18px;
  box-shadow: 0 10px 26px rgba(0,0,0,0.04);
}

.faq-item summary{
  cursor: pointer;
  list-style: none;
  font-weight: 800;
  color: #1f2230;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.faq-item summary::-webkit-details-marker{
  display: none;
}

.faq-item summary::after{
  content: "+";
  font-weight: 900;
  color: var(--blue);
  flex: 0 0 auto;
}

.faq-item[open] summary::after{
  content: "–";
}

.faq-answer{
  padding-top: 12px;
}

.faq-answer p{
  margin: 0 0 10px;
  color: rgba(64,65,79,0.85);
  font-weight: 600;
}

.faq-answer p:last-child{
  margin-bottom: 0;
}
.faq-answer p{ max-width: none; }

#faqs{
  background:
    linear-gradient(
      rgba(6,71,137,0.75),
      rgba(6,71,137,0.75)
    ),
    url("images-guests/faq-bg.jpg");
  background-size: cover;
  background-position: center;
  
}

#faqs{
  background-attachment: fixed;
}


#faqs h2{
  color: #ffffff;
}

#faqs .lead{
  color: #C59F78 !important;
}

#faqs p{
  color: #1f2230 !important;
  line-height: 1.6;
  text-shadow: 0 6px 18px rgba(0,0,0,0.35);
  max-width: none;}

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