/* ==========================================================================
   Base
   ========================================================================== */

:root {
  --color-background: #ffffff;
  --color-heading: #1a3a5c;
  --color-body: #333333;
  --color-gold: #b8964f;
  --color-cta-bg: #e8620c;
  --color-cta-text: #ffffff;

  --font-family-base: Georgia, "Times New Roman", serif;

  --content-max-width: 640px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background-color: var(--color-background);
  color: var(--color-body);
  font-family: var(--font-family-base);
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  display: block;
}

/* ==========================================================================
   Story container
   ========================================================================== */

.story {
  width: 100%;
}

.story__content {
  max-width: var(--content-max-width);
  margin: 0 auto;
  padding: 32px 22px 0;
}

/* ==========================================================================
   Headline
   ========================================================================== */

.story__headline {
  margin: 0;
  color: var(--color-heading);
  font-size: 28px;
  line-height: 1.3;
  font-weight: 700;
  text-transform: uppercase;
  text-align: center;
  letter-spacing: 0.01em;
}

/* ==========================================================================
   Subheadline
   ========================================================================== */

.story__subheadline {
  margin: 20px 0 0;
  color: var(--color-body);
  font-size: 18px;
  line-height: 1.6;
  font-weight: 700;
  text-align: center;
}

/* ==========================================================================
   Hero Image
   ========================================================================== */

.story__hero {
  margin: 28px 0 28px;
}

.story__hero img {
  width: 100%;
  aspect-ratio: 1000 / 600;
  object-fit: cover;
  margin: 0 auto;
}

/* ==========================================================================
   Story Paragraphs
   ========================================================================== */

.story__block {
  display: flow-root;
}

.story__block + .story__block {
  margin-top: 10px;
}

.story__block > p {
  width: 100%;
  max-width: 700px;
  margin: 0 auto 18px;
  color: var(--color-body);
  font-size: 18px;
  line-height: 1.55;
  font-weight: 400;
}

/* ==========================================================================
   Story Images
   ========================================================================== */

.story__image {
  margin: 24px auto 28px;
}

.story__image img {
  display: block;
  width: 100%;
  height: auto;
  margin: 0 auto;
}

/* ==========================================================================
   Block 2 Image Placeholder
   ========================================================================== */

.story__image--block2 {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 350px;
  aspect-ratio: 9 / 16;
  max-height: 520px;
}

.story__image--block2 img {
  width: 100%;
  max-width: 300px;
  height: auto;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

/* ==========================================================================
   Block 4 Image Placeholder
   ========================================================================== */

.story__image--block4 {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 1000px;
  aspect-ratio: 1000 / 600;
}

/* ==========================================================================
   Premium Divider
   ========================================================================== */

.story__premium-divider {
  width: 100%;
  max-width: 900px;
  height: 2px;
  margin: 24px auto;
  background-color: #c8a24a;
  border-radius: 999px;
}

/* ==========================================================================
   Block 11 Image Placeholder
   ========================================================================== */

.story__image--block11 {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 900px;
  aspect-ratio: 16 / 10;
}

/* ==========================================================================
   Testimonials
   ========================================================================== */

.story__testimonial {
  background-color: #ffffff;
  border: 1px solid #c8a24a;
  border-radius: 18px;
  padding: 28px;
  margin: 48px 0 0;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
}

.story__testimonial-header {
  display: flex;
  align-items: center;
  gap: 20px;
}

.story__testimonial-header img {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center;
  flex-shrink: 0;
  overflow: hidden;
}

.story__testimonial-header div {
  display: flex;
  align-items: center;
}

.story__testimonial-header strong {
  color: var(--color-heading);
  font-size: 17px;
}

.story__testimonial blockquote {
  margin: 24px 0 0;
  color: var(--color-body);
  font-size: 17px;
  line-height: 1.55;
  font-style: italic;
}

/* ==========================================================================
   Block 13 Image Placeholder
   ========================================================================== */

.story__image--block13 {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 1000px;
  aspect-ratio: 1000 / 600;
}

/* ==========================================================================
   CTA
   ========================================================================== */

.story__cta {
  margin: 28px 0 0;
  text-align: center;
}

.story__cta-button {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 10px;
  width: 100%;
  max-width: 520px;
  min-height: 68px;
  margin: 0 auto;
  padding: 18px 24px;
  background-color: #e67e22;
  color: #ffffff;
  border-radius: 12px;
  font-size: 19px;
  line-height: 1.2;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 4px 14px rgba(230, 126, 34, 0.25);
}

.story__cta-button:hover {
  background-color: #cc6d17;
}

.story__cta-note {
  max-width: 500px;
  margin: 12px auto 0;
  padding: 0 8px;
  color: #888888;
  font-size: 14px;
  line-height: 1.35;
}

/* ==========================================================================
   Block 14 Image Placeholder
   ========================================================================== */

.story__image--block14 {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 1000px;
  aspect-ratio: 1000 / 600;
}

/* ==========================================================================
   CTA Divider
   ========================================================================== */

.story__cta-divider {
  width: 100%;
  max-width: 520px;
  height: 2px;
  margin: 24px auto 20px;
  background-color: #c8a24a;
  border-radius: 999px;
}

/* ==========================================================================
   Block 15 Image Placeholder
   ========================================================================== */

.story__image--block15 {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 900px;
  aspect-ratio: 16 / 10;
}

.story__block--15 {
  padding-bottom: 48px;
}

/* ==========================================================================
   Breakpoints
   ========================================================================== */

@media (min-width: 390px) {
  .story__content {
    padding-left: 24px;
    padding-right: 24px;
  }
}

@media (min-width: 768px) {
  .story__content {
    padding-top: 56px;
    padding-left: 28px;
    padding-right: 28px;
  }

  .story__headline {
    font-size: 38px;
  }

  .story__subheadline {
    font-size: 20px;
  }

  .story__hero {
    margin-top: 36px;
  }

  .story__block--15 {
    padding-bottom: 60px;
  }

  .story__block > p {
    font-size: 19px;
    line-height: 1.6;
  }

  .story__cta-button {
    font-size: 20px;
  }

  .story__cta-note {
    font-size: 15px;
  }
}
