.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("landlords/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;
}


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


/* ===== 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); }



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

/* WHY US spacing */
#why-us .host-row{
  margin-bottom: 24px;   /* space between sections */
}

#why-us .host-row:last-child{
  margin-bottom: 0;
}

/* Inner grid gap */
#why-us .who-grid{
  gap: 24px;
}

/* Reverse layout */
#why-us .who-grid.reverse{
  direction: rtl;
}
#why-us .who-grid.reverse > *{
  direction: ltr;
}

/* Closing statement */
.why-closing{
  text-align: center;
  margin-top: 24px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  font-weight: 600;
}


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


#how-it-works{
  background:
    linear-gradient(
      rgba(6,71,137,0.75),
      rgba(6,71,137,0.75)
    ),
    url("landlords/how-it-works-bg.jpg");
  background-size: cover;
  background-position: center;
}

#how-it-works h2{
  color: #fff;
  font-size: 36px;
  letter-spacing: -0.2px;
  text-shadow: 0 10px 30px rgba(0,0,0,0.45);}


  /* CASE STUDY: remove the global text width cap */
#case-study p,
#case-study ul,
#case-study ol,
#case-study blockquote{
  max-width: none;
}

/* If your whole case study is inside a wrapper card, make sure it can fill */
#case-study .card,
#case-study .case-card,
#case-study .who-content{
  max-width: none;
  width: 100%;
}

.case-quote{
  margin: 24px 0;
  padding-left: 18px;
  border-left: 3px solid var(--camel);
  font-style: italic;
}

.case-study-layout{
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 48px;
  align-items: start;
  margin-top: 32px;
}

.case-study-content{
  max-width: 100%;
}

.case-study-image{
  position: sticky;
  top: 120px; /* keeps image visible while scrolling */
}

.case-study-image img{
  width: 100%;
  height: auto;
  border-radius: 20px;
  object-fit: cover;
  box-shadow: 0 18px 40px rgba(0,0,0,0.12);
}

/* Mobile */
@media (max-width: 900px){
  .case-study-layout{
    grid-template-columns: 1fr;
  }

  .case-study-image{
    position: relative;
    top: auto;
  }
}

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