.our-story-banner {
  width: 100%;
  height: 80vh;
  background-image:
    linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.45) 100%),
    url("/images/our-story/our-story-header.webp");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 1.5rem;
}

.our-story-banner-inner {
  width: 100%;
  max-width: 1600px;
  padding: 0 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  box-sizing: border-box;
}

.our-story-banner-inner > span {
  color: #fff;
  font-family: Jost;
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.345rem;
  text-transform: uppercase;
}

.our-story-banner-inner h1 {
  color: #fff;
  font-family: "Cormorant Garamond", serif;
  font-size: 7.3125rem;
  font-weight: 400;
  line-height: 7.375rem;
}

.our-story-banner-inner h1 em {
  font-style: italic;
}

.our-story-banner-inner p {
  color: #fff;
  font-family: Jost;
  font-size: 1.1875rem;
  font-weight: 300;
  line-height: 1.6;
  letter-spacing: 0.15438rem;
}

@media (max-width: 1024px) {
  .our-story-banner {
    padding: 0 2rem;
  }

  .our-story-banner-inner h1 {
    font-size: 5rem;
    line-height: 5.5rem;
  }
}

@media (max-width: 768px) {
  .our-story-banner {
    height: auto;
    min-height: 70vh;
    padding: 4rem 1.5rem;
    gap: 1.25rem;
  }

  .our-story-banner-inner h1 {
    font-size: 3.5rem;
    line-height: 4rem;
  }

  .our-story-banner-inner p {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .our-story-banner {
    padding: 3rem 1rem;
    gap: 1rem;
  }

  .our-story-banner-inner h1 {
    font-size: 2.5rem;
    line-height: 2.8rem;
  }

  .our-story-banner-inner p {
    font-size: 0.9rem;
  }
}

.our-story-content {
  width: 100%;
  padding: 6rem 2rem;
  box-sizing: border-box;
}

.our-story-grid {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 6rem;
  row-gap: 5rem;
}

.story-block {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.story-img {
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.story-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.story-block:hover .story-img img {
  transform: scale(1.03);
}

.story-rule {
  width: 2.5rem;
  border: none;
  border-top: 1.5px solid var(--text-color);
  margin: 0;
}

.story-block h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: 2.25rem;
  font-weight: 400;
  color: var(--text-color);
  line-height: 1.15;
  margin: 0;
}

.story-block p {
  font-family: "Jost", sans-serif;
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.75;
  color: var(--secondary-text-color);
  margin: 0;
}

@media (max-width: 1024px) {
  .our-story-content {
    padding: 5rem 2rem;
  }

  .our-story-grid {
    column-gap: 4rem;
    row-gap: 4rem;
  }

  .story-block h2 {
    font-size: 2rem;
  }

  .story-block p {
    font-size: 0.95rem;
  }
}

@media (max-width: 768px) {
  .our-story-content {
    padding: 4rem 1.5rem;
  }

  .our-story-grid {
    grid-template-columns: 1fr;
    row-gap: 3rem;
  }

  .story-block h2 {
    font-size: 1.875rem;
  }

  .story-block p {
    font-size: 0.95rem;
  }
}

@media (max-width: 480px) {
  .our-story-content {
    padding: 3rem 1rem;
  }

  .our-story-grid {
    row-gap: 2.5rem;
  }

  .story-block h2 {
    font-size: 1.625rem;
  }

  .story-block p {
    font-size: 0.9rem;
    line-height: 1.7;
  }
}

/*GUEST VOICES*/

.guest-voices {
  width: 100%;
  background-color: var(--card-background);
  padding: 6rem 2rem;
  box-sizing: border-box;
}

.guest-voices-inner {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.guest-voices-inner > span {
  font-family: Jost;
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.345rem;
  text-transform: uppercase;
  color: #fff;
}

.guest-voices-inner > h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: 3.6875rem;
  font-weight: 400;
  color: #fff;
  text-align: center;
  margin-bottom: 2rem;
}

.guest-voices-grid {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.guest-card {
  background-color: #a89376;
  border: 1px solid #a89376;
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 2rem;
}

.guest-quote {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.125rem;
  font-style: italic;
  font-weight: 400;
  line-height: 1.75;
  color: #fff;
  margin: 0;
}

.guest-attribution {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.guest-name {
  font-family: Jost;
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.2rem;
  text-transform: uppercase;
  color: #fff;
}

.guest-source {
  font-family: Jost;
  font-size: 0.75rem;
  font-weight: 300;
  letter-spacing: 0.12rem;
  color: rgba(255, 255, 255, 0.65);
}

@media (max-width: 1024px) {
  .guest-voices {
    padding: 5rem 2rem;
  }

  .guest-voices-inner > h2 {
    font-size: 3rem;
  }

  .guest-card {
    padding: 2rem 1.75rem;
  }

  .guest-quote {
    font-size: 1.05rem;
  }
}

@media (max-width: 768px) {
  .guest-voices {
    padding: 4rem 1.5rem;
  }

  .guest-voices-inner > h2 {
    font-size: 2.5rem;
    line-height: 2.8rem;
    margin-bottom: 1.25rem;
  }

  .guest-voices-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .guest-card {
    padding: 1.75rem 1.5rem;
  }

  .guest-quote {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .guest-voices {
    padding: 3rem 1rem;
  }

  .guest-voices-inner > h2 {
    font-size: 2rem;
    line-height: 2.2rem;
    margin-bottom: 1rem;
  }

  .guest-card {
    padding: 1.5rem 1.25rem;
    gap: 1.5rem;
  }

  .guest-quote {
    font-size: 0.95rem;
    line-height: 1.7;
  }
}

.our-story-cta {
  width: 100%;
  height: 100vh;
  background-image:
    linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.4) 100%),
    url("/images/our-story-footer-banner.webp");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 3rem;
}

.our-story-cta > span {
  color: #fff;
  font-family: Jost;
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.345rem;
  text-transform: uppercase;
}

.our-story-cta > h2 {
  color: #fff;
  font-family: "Cormorant Garamond", serif;
  font-size: 7.3125rem;
  font-style: italic;
  font-weight: 400;
  line-height: 7.375rem;
}

.our-story-cta > p {
  color: #fff;
  font-family: Jost;
  font-size: 1.1875rem;
  font-weight: 300;
  line-height: 1.6;
  letter-spacing: 0.15438rem;
}

@media (max-width: 1024px) {
  .our-story-cta {
    padding: 0 2rem;
    gap: 2rem;
  }

  .our-story-cta > h2 {
    font-size: 5rem;
    line-height: 5.5rem;
  }
}

@media (max-width: 768px) {
  .our-story-cta {
    height: auto;
    min-height: 80vh;
    padding: 4rem 1.5rem;
    gap: 1.5rem;
  }

  .our-story-cta > h2 {
    font-size: 3.5rem;
    line-height: 4rem;
  }

  .our-story-cta > p {
    font-size: 1rem;
  }

  .our-story-cta .two-column-btn {
    flex-direction: column;
    gap: 1rem;
    width: 100%;
    max-width: 300px;
  }

  .our-story-cta .two-column-btn button {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .our-story-cta > h2 {
    font-size: 2.75rem;
    line-height: 3.2rem;
  }

  .our-story-cta > p {
    font-size: 0.9rem;
  }
}
