/* =========================================================
   DEAR HOSTS OF KUMAON
   ========================================================= */

.dearHostsPage {
  max-width: 1080px;
  margin: 0 auto;
  padding-bottom: 120px;
}


/* ---------------------------------------------------------
   HERO
   --------------------------------------------------------- */

.hostHero {
    padding: 30px;
}

.hostHero .sTitle {
  font-size: clamp(42px, 5vw, 68px);
  line-height: 1;
  letter-spacing: -2px;
}

.hostHero .sDesc {
  max-width: 650px;
  font-size: 18px;
  line-height: 1.55;
}


/* ---------------------------------------------------------
   COMPARISON
   --------------------------------------------------------- */

.hostCompare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;

  margin: 20px 0 70px;

  border-top: 1px solid rgba(255,255,255,.18);
  border-bottom: 1px solid rgba(255,255,255,.18);

  background: rgba(255,255,255,.12);
}

.hostCompareBlock {
  padding: 34px 30px 38px;
  background: #050505;
}

.hostCompareTitle {
  font-family: var(--font2);
  font-size: 25px;
  margin-bottom: 22px;
}

.hostCompareTitle::after {
  content: "";
  display: block;

  width: 28px;
  height: 2px;

  background: #ffffff;

  margin-top: 13px;
}

.hostCompareText {
  color: rgba(255,255,255,.58);
  font-size: 15px;
  line-height: 1.65;
}


/* ---------------------------------------------------------
   STRONG TEXT
   --------------------------------------------------------- */

.dearHostsPage strong {
  color: rgba(255,255,255,.92);
  font-weight: 400;
}


/* ---------------------------------------------------------
   BIG STATEMENT
   --------------------------------------------------------- */

.hostStatement {

  padding: 65px 45px;

  border-top: 1px solid rgba(255,255,255,.16);
  border-bottom: 1px solid rgba(255,255,255,.16);

  text-align: center;
}

.hostStatementSmall {
  font-family: var(--font1);
  font-size: 24px;
  margin-bottom: 25px;

  color: rgba(255,255,255,.72);
}

.hostStatementLarge {
  max-width: 800px;
  margin: auto;

  font-family: var(--font2);
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.15;

  letter-spacing: -.8px;
}

.hostStatementText {
  max-width: 600px;
  margin: 28px auto 0;

  font-size: 16px;
  line-height: 1.6;

  color: rgba(255,255,255,.55);
}


/* ---------------------------------------------------------
   CTA
   --------------------------------------------------------- */

.hostCTA {
  display: inline-flex;
  align-items: center;

  padding: 12px 20px;

  border: 1px solid rgba(255,255,255,.45);
  border-radius: 30px;

  color: white;

  font-size: 14px;

  cursor: pointer;

  transition:
    background .25s ease,
    color .25s ease,
    border-color .25s ease;
}

.hostCTA:hover {
  background: white;
  color: black;
  border-color: white;
}


/* ---------------------------------------------------------
   CLOSING
   --------------------------------------------------------- */

.hostClosing {
  padding-bottom: 40px;
}


/* ---------------------------------------------------------
   RESPONSIVE
   --------------------------------------------------------- */

@media (max-width: 700px) {

  .dearHostsPage {
    padding: 0 20px 80px;
  }

  .hostHero {
    padding-top: 20px;
    padding-bottom: 40px;
  }

  .hostHero .sTitle {
    font-size: 46px;
  }

  .hostCompare {
    grid-template-columns: 1fr;
  }

  .hostCompareBlock {
    padding: 28px 24px 32px;
  }

  .hostStatement {
    margin: 70px 0;
    padding: 45px 20px;
  }

  .hostStatementLarge {
    font-size: 32px;
  }

}
/* =========================================================
   DEAR HOSTS — HERO
   ========================================================= */

.hostHero {
  position: relative;

  width: 100%;
  height: min(560px, calc(100vh - 80px));

  min-height: 520px;

  overflow: hidden;

  background: #050505;
}


/* ---------------------------------------------------------
   IMAGE
   --------------------------------------------------------- */

.hostHeroImage {
  position: absolute;
  inset: 0;

  background-image: url("/images/dear-hosts-kumaon.png");
  background-size: cover;
  background-position: center center;

  transform: scale(1.01);
}


/*
   The important part.

   Black on the left gradually disappears into the image.
*/

.hostHeroImage::after {
  content: "";

  position: absolute;
  inset: 0;

  background:
    linear-gradient(
      90deg,
      rgba(0,0,0,1) 0%,
      rgba(0,0,0,.97) 18%,
      rgba(0,0,0,.82) 31%,
      rgba(0,0,0,.48) 43%,
      rgba(0,0,0,.08) 60%,
      rgba(0,0,0,0) 72%
    );
}


/* subtle darkening over entire photograph */

.hostHeroImage {
  filter: brightness(.88);
}


/* ---------------------------------------------------------
   CONTENT
   --------------------------------------------------------- */

.hostHeroContent {
  position: relative;
  z-index: 2;

  height: 100%;

  max-width: 1080px;

  margin: 0 auto;

  padding:
    clamp(50px, 7vw, 90px)
    0
    50px
    0;

  display: flex;
  flex-direction: column;
  align-items: flex-start;
}


/* ---------------------------------------------------------
   EYEBROW
   --------------------------------------------------------- */

.hostEyebrow {
  font-family: var(--font2, sans-serif);

  font-size: 11px;
  font-weight: 500;

  letter-spacing: 4px;

  color: rgba(255,255,255,.78);

  margin-bottom: 22px;
}


/* ---------------------------------------------------------
   MAIN TITLE
   --------------------------------------------------------- */

.hostHeroTitle {
  margin: 0;

  font-family: var(--font1, serif);

  font-size: clamp(54px, 6vw, 82px);

  font-weight: 400;

  line-height: .94;

  letter-spacing: -2px;

  color: #fff;

  text-shadow: 0 2px 20px rgba(0,0,0,.25);
}


/* ---------------------------------------------------------
   DESCRIPTION
   --------------------------------------------------------- */

.hostHeroDesc {
  margin-top: 25px;

  max-width: 520px;

  font-family: var(--font2, sans-serif);

  font-size: 17px;

  line-height: 1.45;

  color: rgba(255,255,255,.72);
}

.hostHeroDesc span {
  white-space: nowrap;
}


/* ---------------------------------------------------------
   BUTTON
   --------------------------------------------------------- */

.hostHeroButton {
  display: inline-flex;

  align-items: center;
  gap: 12px;

  margin-top: 27px;

  padding: 12px 21px;

  border: 1px solid rgba(255,255,255,.9);

  border-radius: 30px;

  background: #fff;

  color: #050505;

  text-decoration: none;

  font-family: var(--font2, sans-serif);

  font-size: 14px;
  font-weight: 500;

  transition:
    transform .25s ease,
    background .25s ease,
    color .25s ease;
}

.hostHeroButton span {
  font-size: 17px;

  line-height: 1;

  transition: transform .25s ease;
}

.hostHeroButton:hover {
  transform: translateY(-2px);

  background: transparent;

  color: #fff;
}

.hostHeroButton:hover span {
  transform: translateX(4px);
}


/* ---------------------------------------------------------
   BOTTOM LEFT INDEX
   --------------------------------------------------------- */

.hostHeroIndex {
    display: flex;
    align-items: stretch;
    gap: 20px;
    margin-top: 2rem;
}


.hostHeroLine {
  width: 1px;

  background: rgba(255,255,255,.75);
}


.hostHeroWords {

    font-size: 10px;
    line-height: 1.65;
    letter-spacing: 3px;
    color: rgba(255, 255, 255, .78);
    display: flex;
    gap: 1rem;
}


/* ---------------------------------------------------------
   HANDWRITTEN NOTE
   --------------------------------------------------------- */

.hostHeroNote {
  position: absolute;

  z-index: 3;

  right: clamp(35px, 1vw, 90px);
  bottom: 38px;

  color: #fff;

  font-family: var(--font1, serif);

  font-size: 25px;

  line-height: .95;

  font-style: italic;

  transform: rotate(-5deg);

  text-align: center;

  text-shadow: 0 2px 12px rgba(0,0,0,.5);
}


.hostHeroNote span {
  display: block;

  width: 65px;

  height: 1px;

  margin: 15px auto 0;

  background: #fff;

  transform: rotate(-3deg);
}


/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 900px) {

  .hostHeroContent {
    padding-left: 35px;
    padding-right: 35px;
  }

  .hostHeroImage::after {
    background:
      linear-gradient(
        90deg,
        rgba(0,0,0,1) 0%,
        rgba(0,0,0,.92) 28%,
        rgba(0,0,0,.55) 50%,
        rgba(0,0,0,.15) 75%,
        rgba(0,0,0,0) 100%
      );
  }

}


/* ---------------------------------------------------------
   MOBILE
   --------------------------------------------------------- */

@media (max-width: 600px) {

  .hostHero {
    height: 680px;
    min-height: 680px;
  }

  .hostHeroImage {
    background-position: 63% center;
  }

  .hostHeroImage::after {
    background:
      linear-gradient(
        180deg,
        rgba(0,0,0,.98) 0%,
        rgba(0,0,0,.88) 32%,
        rgba(0,0,0,.35) 65%,
        rgba(0,0,0,.05) 100%
      );
  }

  .hostHeroContent {
    padding: 45px 24px 30px;
  }

  .hostEyebrow {
    font-size: 9px;
    letter-spacing: 3px;
    margin-bottom: 18px;
  }

  .hostHeroTitle {
    font-size: 52px;
    line-height: .93;
    letter-spacing: -1px;
  }

  .hostHeroDesc {
    max-width: 330px;

    font-size: 15px;

    margin-top: 20px;
  }

  .hostHeroDesc span {
    white-space: normal;
  }

  .hostHeroButton {
    margin-top: 23px;
  }

  .hostHeroIndex {
    left: 24px;
    bottom: 27px;
  }

  .hostHeroNote {
    right: 20px;
    bottom: 28px;

    font-size: 20px;
  }

}
/* =========================================================
   TEAM / NEIGHBOURS
   ========================================================= */

.teamIntro {
  max-width: 780px;
  margin-bottom: 55px;
}


/* ---------------------------------------------------------
   GRID
   --------------------------------------------------------- */

.teamGrid {
  display: grid;

  grid-template-columns: repeat(2, minmax(0, 1fr));

  column-gap: 42px;
  row-gap: 80px;

  margin-top: 25px;
}


/* ---------------------------------------------------------
   MEMBER
   --------------------------------------------------------- */

.teamMember {
  position: relative;
}


/* ---------------------------------------------------------
   PHOTO
   --------------------------------------------------------- */

.teamPhoto {
    width: 25%;
    aspect-ratio: 4 / 4;
    overflow: hidden;
    background: #111;
    margin-bottom: 22px;
    border-radius: 50%;
}

.teamPhoto img {
  width: 100%;
  height: 100%;

  object-fit: cover;

  display: block;

  filter: grayscale(100%);

  transition:
    filter .5s ease,
    transform .7s cubic-bezier(.2,.7,.2,1);
}

.teamMember:hover .teamPhoto img {
  filter: grayscale(0%);

  transform: scale(1.025);
}


/* ---------------------------------------------------------
   META
   --------------------------------------------------------- */

.teamMeta {
  display: flex;

  align-items: baseline;

  justify-content: space-between;

  gap: 20px;

  border-top: 1px solid rgba(255,255,255,.18);

  padding-top: 15px;
}

.teamName {
  font-family: var(--font2, sans-serif);

  font-size: 20px;

  color: rgba(255,255,255,.95);
}

.teamRole {
  font-family: var(--font2, sans-serif);

  font-size: 10px;

  letter-spacing: 2px;

  text-transform: uppercase;

  color: rgba(255,255,255,.45);

  white-space: nowrap;
}


/* ---------------------------------------------------------
   BIO
   --------------------------------------------------------- */

.teamBio {
  margin-top: 18px;

  max-width: 620px;

  font-family: var(--font2, sans-serif);

  font-size: 14px;

  line-height: 1.65;

  color: rgba(255,255,255,.55);
}


/* ---------------------------------------------------------
   CLOSING STATEMENT
   --------------------------------------------------------- */

.teamClosing {
  margin: 100px 0 60px;

  display: flex;

  align-items: center;

  gap: 30px;
}

.teamClosingLine {
  width: 60px;
  height: 1px;

  background: rgba(255,255,255,.6);

  flex-shrink: 0;
}

.teamClosingText {
  font-family: var(--font1, serif);

  font-size: clamp(24px, 3vw, 38px);

  line-height: 1.15;

  color: rgba(255,255,255,.85);
}


/* ---------------------------------------------------------
   MOBILE
   --------------------------------------------------------- */

@media (max-width: 700px) {

  .teamGrid {
    grid-template-columns: 1fr;

    gap: 60px;
  }

  .teamPhoto {
    aspect-ratio: 1 / 1.15;
  }

  .teamMeta {
    display: block;
  }

  .teamRole {
    margin-top: 7px;
  }

  .teamClosing {
    margin-top: 70px;
  }

}