.story-hero{
  position:relative;
  min-height:75vh;
  display:flex;
  align-items:center;
  justify-content:center;
  overflow:hidden;
  color:#fff;
  background:#111;
}

.story-hero-media{
  position:absolute;
  inset:0;
  z-index:0;
}

.story-hero-media img{
  width:100%;
  height:100%;
  object-fit:cover;
}

.story-hero::after{
  content:"";
  position:absolute;
  inset:0;
  z-index:1;
  background:
    linear-gradient(
      180deg,
      rgba(0,0,0,.55),
      rgba(0,0,0,.24),
      rgba(0,0,0,.62)
    ),
    rgba(80,30,20,.18);
}

.story-hero-content{
  position:relative;
  z-index:2;
  width:min(760px,calc(100% - 48px));
  padding-top:90px;
  text-align:center;
}

.story-hero h1{
  font-size:30px;
  line-height:1;
  font-weight:400;
  color:#f4eadf;
  text-shadow:0 6px 34px rgba(0,0,0,.34);
}

/* =========================
   INTRO
========================= */

.story-intro{
  padding:110px 0;
  background:var(--cream);
  text-align:center;
}

.story-intro-grid{
  display:grid;
  grid-template-columns:1fr;
  gap:42px;
  align-items:center;
  justify-items:center;
  max-width:980px;
  margin:0 auto;
}

/* TITLE */

.story-intro-title{
  width:100%;
  display:flex;
  align-items:center;
  justify-content:center;
}

.story-intro h2{
  margin:0;
  font-size:30px;
  line-height:1.06;
  text-transform:none;
  text-align:center;
  position:relative;
}

.story-intro h2::after{
  content:"";
  width:54px;
  height:1px;
  background:rgba(139,3,4,.35);
  display:block;
  margin:18px auto 0;
}

/* COPY */

.story-copy{
  width:min(760px,100%);
  margin:0 auto;
  text-align:center;
}

.story-copy p{
  margin:0 auto 20px;
  font-size:15px;
  line-height:2;
  letter-spacing:.01em;
  text-align:center;
  color:#1f1a16;
}

/* =========================
   HISTORY
========================= */

.history-section{
  display:grid;
  grid-template-columns:50% 50%;
  width:100%;
  min-height:680px;
  background:#e9e3d6;
  overflow:hidden;
}

.history-media{
  width:100%;
  min-height:680px;
  overflow:hidden;
}

.history-media img{
  width:100%;
  height:100%;
  object-fit:cover;
  transform:scale(1.04);
  transition:
    transform 2.4s var(--ease),
    filter 1.4s ease;
}

.history-section.is-visible .history-media img{
  transform:scale(1);
}

.history-content{
  background:#eee9de;
  min-height:680px;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:90px 9vw;
}

.history-content-inner{
  width:100%;
  max-width:610px;
}

.history-content h2{
  margin:0;
  font-size:30px;
  line-height:1.02;
  font-weight:400;
  letter-spacing:-.015em;
  text-transform:none;
}

.history-divider{
  width:72px;
  height:1px;
  margin:34px 0 36px;
  background:rgba(139,3,4,.42);
}

.history-content p{
  margin:0 0 18px;
  font-size:15px;
  line-height:2;
  letter-spacing:.01em;
  color:#1f1a16;
}

/* =========================
   VALUES
========================= */

.story-values{
  padding:110px 0 100px;
  background:var(--cream);
}

.story-values .section-head{
  width:min(760px,86%);
  margin:0 auto 76px;
  text-align:center;
}

.story-values .section-head h2{
  font-size:30px;
  line-height:1.02;
  margin-bottom:18px;
  text-transform:none;
}

.story-values .section-head p{
  font-size:14px;
  line-height:1.9;
}

.story-values-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:34px;
}

.story-values-grid article{
  border-top:1px solid var(--line);
  padding-top:24px;
}

.story-values-grid h3{
  font-size:20px;
  line-height:1.08;
  margin-bottom:14px;
}

.story-values-grid p{
  font-size:14px;
  line-height:1.85;
}

/* =========================
   FADE IN
========================= */

.fadein-up{
  opacity:0;
  transform:translate3d(0,38px,0);
  transition:
    opacity 1.35s var(--ease),
    transform 1.35s var(--ease);
  will-change:opacity,transform;
}

.fadein-up.is-visible{
  opacity:1;
  transform:translate3d(0,0,0);
}

/* =========================
   TABLET
========================= */

@media(max-width:900px){

  .history-section,
  .story-values-grid{
    grid-template-columns:1fr;
  }

  .story-intro,
  .story-values{
    padding:80px 36px;
  }

  .story-intro-grid{
    gap:34px;
  }

  .story-copy{
    width:100%;
    max-width:100%;
  }

  .history-media{
    min-height:56vh;
  }

  .history-content{
    min-height:auto;
    padding:74px 36px;
  }

  .history-content h2{
    font-size:38px;
  }
}

/* =========================
   MOBILE
========================= */

@media(max-width:560px){

  .story-hero{
    min-height:62vh;
  }

  .story-hero-content{
    width:calc(100% - 48px);
    padding-top:70px;
  }

  .story-hero h1{
    font-size:30px;
    line-height:1.08;
  }

  .story-intro{
    padding:76px 24px;
  }

  .story-intro-grid{
    width:100%;
    gap:28px;
  }

  .story-intro h2{
    font-size:30px;
    line-height:1.08;
  }

  .story-copy{
    width:100%;
    max-width:100%;
  }

  .story-copy p{
    font-size:14px;
    line-height:1.92;
  }

  .history-media{
    min-height:52vh;
  }

  .history-content{
    padding:76px 24px;
    text-align:center;
  }

  .history-content-inner{
    max-width:100%;
    margin:0 auto;
    text-align:center;
  }

  .history-content h2{
    margin:0 auto;
    font-size:32px;
    line-height:1.08;
    text-align:center;
  }

  .history-divider{
    margin:30px auto 34px;
  }

  .history-content p{
    margin:0 auto 18px;
    text-align:center;
    font-size:14px;
    line-height:1.92;
  }

  .story-values{
    padding:78px 24px 82px;
  }

  .story-values .section-head{
    width:100%;
    max-width:100%;
    margin:0 auto 54px;
    text-align:center;
  }

  .story-values .section-head h2{
    font-size:30px;
    line-height:1.08;
    text-align:center;
  }

  .story-values .section-head p{
    margin:0 auto;
    text-align:center;
    font-size:14px;
    line-height:1.9;
  }

  .story-values-grid{
    grid-template-columns:1fr;
    gap:32px;
  }

  .story-values-grid article{
    text-align:center;
  }

  .story-values-grid h3{
    font-size:20px;
    text-align:center;
  }

  .story-values-grid p{
    text-align:center;
    font-size:14px;
    line-height:1.85;
  }
}