/*
Theme Name: Shane Cyr
Theme URI: https://cornflowerblue-partridge-390321.hostingersite.com
Author: Shane Cyr
Description: Custom personal brand theme for Shane Cyr
Version: 1.0.3
License: GNU General Public License v2 or later
Text Domain: shanecyr
*/

/* =========================================
   CSS VARIABLES
   ========================================= */
:root {
  --cream: #F6F6F6;
  --cream-warm: #F6F6F6;
  --dark: #1A1A1A;
  --green: #2B4A38;
  --taupe: #F6F6F6;
  --text-dark: #1A1A1A;
  --text-light: #FFFFFF;
  --text-muted: #666666;
  --font-main: 'DM Sans', sans-serif;
  --font-script: 'Dancing Script', cursive;
  --max-width: 1200px;
  --section-pad: 80px 40px;
}

/* =========================================
   RESET & BASE
   ========================================= */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-main);
  background: var(--cream);
  color: var(--text-dark);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

/* =========================================
   TYPOGRAPHY
   ========================================= */
h1, h2, h3, h4 {
  font-family: var(--font-main);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

h1 { font-size: clamp(2.5rem, 6vw, 5rem); }
h2 { font-size: clamp(2rem, 4vw, 3.2rem); }
h3 { font-size: clamp(1.4rem, 2.5vw, 2rem); }
h4 { font-size: 1.2rem; }

p { font-size: 1.05rem; line-height: 1.75; }

.script-heading {
  font-family: var(--font-script);
  font-size: clamp(3rem, 7vw, 6rem);
  font-weight: 400;
  line-height: 1;
}

/* =========================================
   LAYOUT UTILITIES
   ========================================= */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 40px;
}

.section {
  padding: var(--section-pad);
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.two-col.reverse {
  direction: rtl;
}
.two-col.reverse > * {
  direction: ltr;
}

/* =========================================
   NAVIGATION
   ========================================= */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 20px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(26, 26, 26, 0.92);
  backdrop-filter: blur(10px);
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

.site-header.scrolled {
  background: rgba(26, 26, 26, 0.98);
  box-shadow: 0 2px 20px rgba(0,0,0,0.35);
}

.site-header.light-bg {
  background: rgba(246, 246, 246, 0.92);
}

.site-header.light-bg.scrolled {
  background: rgba(246, 246, 246, 0.98);
  box-shadow: 0 2px 20px rgba(0,0,0,0.1);
}

.site-logo img {
  height: 40px;
  width: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 36px;
}

.site-nav a {
  color: var(--text-light);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: opacity 0.2s;
}

.site-header.light-bg .site-nav a {
  color: var(--text-dark);
}

.site-nav a:hover {
  opacity: 0.7;
}

.nav-social {
  display: flex;
  gap: 16px;
}

.nav-social a {
  color: var(--text-light);
  font-size: 1rem;
  transition: opacity 0.2s;
}

.site-header.light-bg .nav-social a {
  color: var(--text-dark);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}

.hamburger span {
  width: 24px;
  height: 2px;
  background: white;
  display: block;
  transition: all 0.3s ease;
}

.site-header.light-bg .hamburger span {
  background: var(--text-dark);
}

/* =========================================
   BUTTONS
   ========================================= */
.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 4px;
  font-family: var(--font-main);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.2s ease;
  border: 2px solid transparent;
}

.btn-light {
  background: var(--text-light);
  color: var(--text-dark);
}

.btn-light:hover {
  background: transparent;
  border-color: var(--text-light);
  color: var(--text-light);
}

.btn-dark {
  background: var(--text-dark);
  color: var(--text-light);
}

.btn-dark:hover {
  background: transparent;
  border-color: var(--text-dark);
  color: var(--text-dark);
}

.btn-green {
  background: var(--green);
  color: var(--text-light);
}

.btn-green:hover {
  background: #3a6349;
}

.btn-outline-light {
  background: transparent;
  border: 2px solid var(--text-light);
  color: var(--text-light);
}

.btn-outline-light:hover {
  background: var(--text-light);
  color: var(--text-dark);
}

/* =========================================
   HERO — DARK
   ========================================= */
.hero-dark {
  min-height: 100vh;
  background: var(--dark);
  color: var(--text-light);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero-dark .container {
  position: relative;
  z-index: 2;
  padding-top: 100px;
  padding-bottom: 80px;
}

/* =========================================
   HERO — LIGHT / IMAGE
   ========================================= */
.hero-image {
  min-height: 70vh;
  display: flex;
  align-items: flex-end;
  position: relative;
  overflow: hidden;
  background-size: cover;
  background-position: center top;
}

.hero-image .hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.5) 100%);
}

.hero-image .container {
  position: relative;
  z-index: 2;
  padding-bottom: 60px;
  padding-top: 120px;
}

/* =========================================
   SECTION — DARK
   ========================================= */
.section-dark {
  background: var(--dark);
  color: var(--text-light);
}

/* =========================================
   SECTION — GREEN
   ========================================= */
.section-green {
  background: var(--green);
  color: var(--text-light);
}

/* =========================================
   SECTION — CREAM
   ========================================= */
.section-cream {
  background: var(--cream);
  color: var(--text-dark);
}

.section-cream-warm {
  background: var(--cream-warm);
  color: var(--text-dark);
}

/* =========================================
   SECTION — TAUPE
   ========================================= */
.section-taupe {
  background: var(--taupe);
  color: var(--text-dark);
}

/* =========================================
   HOME PAGE
   ========================================= */
/* Home hero */
.home-hero {
  min-height: 100vh;
  background: var(--dark);
  color: var(--text-light);
  display: flex;
  align-items: center;
  position: relative;
}

.home-hero .container {
  padding-top: 120px;
  padding-bottom: 80px;
}

.home-hero .eyebrow {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 20px;
  opacity: 0.7;
}

.home-hero h1 {
  max-width: 700px;
  margin-bottom: 28px;
}

.home-hero p {
  max-width: 520px;
  margin-bottom: 40px;
  opacity: 0.85;
  font-size: 1.15rem;
}

.home-hero .hero-image-float {
  position: absolute;
  right: 0;
  bottom: 0;
  height: 85%;
  max-width: 45%;
  object-fit: contain;
  object-position: bottom right;
}

/* Home story section */
.home-story {
  padding: 100px 40px;
  background: var(--cream);
}

.home-story .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.home-story img {
  width: 100%;
  border-radius: 4px;
}

.home-story .eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.home-story h2 {
  margin-bottom: 20px;
}

.home-story p {
  color: var(--text-muted);
  margin-bottom: 16px;
}

.home-story a.read-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 12px;
  border-bottom: 2px solid var(--text-dark);
  padding-bottom: 2px;
}

/* Home FOUND section */
.home-found {
  padding: 100px 40px;
  background: var(--dark);
  color: var(--text-light);
}

.home-found .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.home-found img {
  width: 100%;
  border-radius: 4px;
}

.home-found .eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  opacity: 0.6;
  margin-bottom: 16px;
}

.home-found h2 { margin-bottom: 20px; }

.home-found p {
  opacity: 0.8;
  margin-bottom: 16px;
}

/* CTA email section */
.home-cta {
  padding: 100px 40px;
  background: var(--green);
  color: var(--text-light);
  text-align: center;
}

.home-cta h2 { margin-bottom: 16px; }
.home-cta p { opacity: 0.85; margin-bottom: 36px; max-width: 520px; margin-left: auto; margin-right: auto; }

.email-form {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  max-width: 480px;
  margin: 0 auto;
}

.email-form input[type="email"] {
  flex: 1;
  min-width: 220px;
  padding: 14px 20px;
  border: none;
  border-radius: 4px;
  font-family: var(--font-main);
  font-size: 0.95rem;
  background: rgba(255,255,255,0.15);
  color: white;
  outline: none;
  border: 1px solid rgba(255,255,255,0.3);
}

.email-form input[type="email"]::placeholder {
  color: rgba(255,255,255,0.6);
}

.email-form button {
  padding: 14px 28px;
  background: white;
  color: var(--green);
  border: none;
  border-radius: 4px;
  font-family: var(--font-main);
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  transition: opacity 0.2s;
}

.email-form button:hover { opacity: 0.9; }

/* Home audience section */
.home-audience {
  padding: 100px 40px;
  background: var(--dark);
  color: var(--text-light);
}

.home-audience .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.home-audience img {
  width: 100%;
  border-radius: 4px;
}

.home-audience h2 { margin-bottom: 20px; }
.home-audience p { opacity: 0.8; margin-bottom: 36px; }

/* =========================================
   MY STORY PAGE
   ========================================= */
.story-hero {
  min-height: 80vh;
  background: #E8E6E0;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.story-hero .container {
  padding-top: 130px;
  padding-bottom: 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.story-hero .script-heading {
  color: var(--text-dark);
  margin-bottom: 20px;
}

.story-hero p {
  font-size: 1.1rem;
  line-height: 1.8;
  max-width: 480px;
}

.story-hero img {
  width: 100%;
  max-height: 600px;
  object-fit: cover;
  border-radius: 4px;
}

.story-body {
  padding: 80px 40px;
  background: var(--cream);
}

.story-body .container {
  max-width: 760px;
}

.story-body h2 { margin-bottom: 24px; }
.story-body p { margin-bottom: 20px; color: #333; }

.story-image-block {
  padding: 0 40px 80px;
  background: var(--cream);
}

.story-image-block .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.story-image-block img {
  width: 100%;
  border-radius: 4px;
}

.story-dark-section {
  padding: 80px 40px;
  background: var(--dark);
  color: var(--text-light);
}

.story-dark-section .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.story-dark-section img {
  width: 100%;
  border-radius: 4px;
}

.story-dark-section h2 { margin-bottom: 20px; }
.story-dark-section p { opacity: 0.85; margin-bottom: 16px; }

.story-cta {
  padding: 80px 40px;
  background: var(--cream);
  text-align: center;
}

.story-cta h2 { margin-bottom: 16px; }
.story-cta p { max-width: 500px; margin: 0 auto 36px; color: var(--text-muted); }
.story-cta .btn-group { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* =========================================
   FOUND PAGE
   ========================================= */
.found-hero {
  min-height: 90vh;
  background: var(--dark);
  color: var(--text-light);
  display: flex;
  align-items: center;
  position: relative;
}

.found-hero .container {
  padding-top: 140px;
  padding-bottom: 80px;
}

.found-hero .eyebrow {
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 600;
  opacity: 0.6;
  margin-bottom: 20px;
}

.found-hero h1 {
  max-width: 720px;
  margin-bottom: 28px;
}

.found-hero p {
  max-width: 560px;
  opacity: 0.85;
  font-size: 1.15rem;
  margin-bottom: 40px;
}

.found-community {
  padding: 100px 40px;
  background: var(--cream);
}

.found-community .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.found-community img {
  width: 100%;
  border-radius: 4px;
}

.found-community h2 { margin-bottom: 20px; }
.found-community p { color: var(--text-muted); margin-bottom: 16px; }

.found-framework {
  padding: 100px 40px;
  background: var(--dark);
  color: var(--text-light);
}

.found-framework h2 {
  text-align: center;
  margin-bottom: 16px;
}

.found-framework .subtitle {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 60px;
  opacity: 0.8;
  font-size: 1.05rem;
}

/* Accordion */
.accordion {
  max-width: 760px;
  margin: 0 auto;
}

.accordion-item {
  border-bottom: 1px solid rgba(255,255,255,0.15);
}

.accordion-btn {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  color: var(--text-light);
  font-family: var(--font-main);
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  gap: 16px;
}

.accordion-btn .letter {
  font-size: 1.8rem;
  font-weight: 700;
  opacity: 0.4;
  min-width: 32px;
}

.accordion-btn .icon {
  font-size: 1.4rem;
  opacity: 0.5;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.accordion-btn.active .icon {
  transform: rotate(45deg);
}

.accordion-content {
  display: none;
  padding: 0 0 24px 48px;
  opacity: 0.75;
  line-height: 1.75;
}

.accordion-content.open {
  display: block;
}

.found-waitlist {
  padding: 80px 40px;
  background: var(--green);
  color: var(--text-light);
  text-align: center;
}

.found-waitlist h2 { margin-bottom: 16px; }
.found-waitlist p { opacity: 0.85; max-width: 500px; margin: 0 auto 36px; }

/* =========================================
   SPEAKING PAGE
   ========================================= */
.speaking-hero {
  min-height: 80vh;
  background: var(--cream-warm);
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  padding-top: 80px;
}

.speaking-hero .hero-text {
  padding: 80px 60px 80px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 600px;
  margin-left: auto;
}

.speaking-hero .eyebrow {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.speaking-hero h1 { margin-bottom: 24px; }
.speaking-hero p { color: var(--text-muted); margin-bottom: 36px; line-height: 1.8; }

.speaking-hero .hero-image-side {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 600px;
}

.speaking-topics {
  padding: 100px 40px;
  background: var(--dark);
  color: var(--text-light);
}

.speaking-topics h2 { margin-bottom: 12px; }
.speaking-topics .subtitle { opacity: 0.7; max-width: 560px; margin-bottom: 60px; }

.topics-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.topic-card {
  padding: 32px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 4px;
}

.topic-card .topic-num {
  font-size: 2.5rem;
  font-weight: 700;
  opacity: 0.15;
  line-height: 1;
  margin-bottom: 16px;
}

.topic-card h3 { font-size: 1.15rem; margin-bottom: 12px; }
.topic-card p { font-size: 0.925rem; opacity: 0.7; line-height: 1.65; }

.speaking-photos {
  padding: 100px 40px;
  background: var(--cream);
}

.speaking-photos .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.speaking-photos img {
  width: 100%;
  border-radius: 4px;
}

.speaking-testimonials {
  padding: 100px 40px;
  background: var(--cream-warm);
}

.speaking-testimonials h2 {
  text-align: center;
  margin-bottom: 60px;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.testimonial {
  padding: 36px;
  background: white;
  border-radius: 4px;
}

.testimonial blockquote {
  font-size: 1rem;
  line-height: 1.75;
  color: #333;
  margin-bottom: 24px;
  font-style: italic;
}

.testimonial .author {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.speaking-cta {
  padding: 100px 40px;
  background: var(--dark);
  color: var(--text-light);
  text-align: center;
}

.speaking-cta h2 { margin-bottom: 16px; }
.speaking-cta p { opacity: 0.8; max-width: 500px; margin: 0 auto 36px; }

/* =========================================
   CONTACT PAGE
   ========================================= */
.contact-hero {
  min-height: 100vh;
  background: var(--dark);
  color: var(--text-light);
  display: flex;
  align-items: center;
}

.contact-hero .container {
  padding-top: 140px;
  padding-bottom: 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.contact-hero h1 { margin-bottom: 20px; }
.contact-hero .intro { opacity: 0.8; margin-bottom: 40px; font-size: 1.1rem; }

.contact-hero img {
  width: 100%;
  border-radius: 4px;
  margin-bottom: 24px;
}

.contact-email {
  font-size: 1.1rem;
  font-weight: 600;
  border-bottom: 1px solid rgba(255,255,255,0.3);
  padding-bottom: 4px;
  display: inline-block;
  margin-bottom: 24px;
}

.contact-email:hover { border-color: white; }

/* CF7 form styling */
.wpcf7 .wpcf7-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.wpcf7 input[type="text"],
.wpcf7 input[type="email"],
.wpcf7 textarea {
  width: 100%;
  padding: 14px 18px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 4px;
  color: white;
  font-family: var(--font-main);
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.2s;
}

.wpcf7 input:focus,
.wpcf7 textarea:focus {
  border-color: rgba(255,255,255,0.5);
}

.wpcf7 input::placeholder,
.wpcf7 textarea::placeholder {
  color: rgba(255,255,255,0.4);
}

.wpcf7 textarea { min-height: 140px; resize: vertical; }

.wpcf7 input[type="submit"] {
  background: white;
  color: var(--dark);
  border: none;
  padding: 14px 32px;
  border-radius: 4px;
  font-family: var(--font-main);
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  width: fit-content;
  transition: opacity 0.2s;
}

.wpcf7 input[type="submit"]:hover { opacity: 0.9; }

/* =========================================
   FOOTER
   ========================================= */
.site-footer {
  background: var(--dark);
  color: rgba(255,255,255,0.5);
  padding: 60px 40px 40px;
}

.site-footer .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 28px;
}

.footer-logo img { height: 36px; filter: brightness(0) invert(1) opacity(0.4); }

.footer-nav {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-nav a {
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  transition: color 0.2s;
}

.footer-nav a:hover { color: white; }

.footer-social {
  display: flex;
  gap: 20px;
}

.footer-social a {
  color: rgba(255,255,255,0.4);
  font-size: 1.1rem;
  transition: color 0.2s;
}

.footer-social a:hover { color: white; }

.footer-copy {
  font-size: 0.8rem;
  margin-top: 8px;
}

/* =========================================
   RESPONSIVE — MOBILE
   ========================================= */
@media (max-width: 900px) {

  :root {
    --section-pad: 60px 24px;
  }

  .container { padding: 0 24px; }

  /* Nav */
  .site-header {
    padding: 16px 24px;
  }

  .hamburger { display: flex; }

  .site-nav {
    display: none;
    position: fixed;
    inset: 0;
    background: var(--dark);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 32px;
    z-index: 99;
  }

  .site-nav.open { display: flex; }
  .site-nav a { font-size: 1.2rem; }

  /* Two-col grids → single col */
  .two-col,
  .home-story .container,
  .home-found .container,
  .home-audience .container,
  .found-community .container,
  .story-hero .container,
  .story-image-block .container,
  .story-dark-section .container,
  .contact-hero .container,
  .speaking-photos .container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .two-col.reverse { direction: ltr; }

  /* Speaking hero */
  .speaking-hero {
    grid-template-columns: 1fr;
  }

  .speaking-hero .hero-image-side {
    height: 320px;
    min-height: auto;
    order: -1;
  }

  .speaking-hero .hero-text {
    padding: 40px 24px;
    max-width: 100%;
    margin: 0;
  }

  /* Topics grid */
  .topics-grid { grid-template-columns: 1fr; }

  /* Testimonials */
  .testimonials-grid { grid-template-columns: 1fr; }

  /* Home hero floating image */
  .home-hero .hero-image-float {
    position: relative;
    width: 100%;
    max-width: 100%;
    height: auto;
    margin-top: 40px;
  }

  .home-hero .container {
    display: flex;
    flex-direction: column;
  }

  /* Paddings */
  .home-story,
  .home-found,
  .home-cta,
  .home-audience,
  .found-hero,
  .found-community,
  .found-framework,
  .found-waitlist,
  .speaking-topics,
  .speaking-testimonials,
  .speaking-cta,
  .story-hero,
  .story-body,
  .story-dark-section,
  .story-cta,
  .contact-hero {
    padding: 60px 24px;
  }

  .story-image-block {
    padding: 0 24px 60px;
  }
}
