/* ===== Variables ===== */
:root {
  --bg-site: #fdf4ee;
  --bg-hero: #fdf4ee;
  --bg-section: #fdf4ee;
  --text-primary: #4a2c1d;
  --text-muted: #7d5b4a;
  --border-btn: #a67c5b;
  --btn-bg: #ead8c1;
  --illus-bg: #e8d9ce;
  --illus-card-bg: #fdf4ee;
  /* Second section (challenges) – card gradient palette */
  --section2-bg: #fdf4ee;
  --section2-bg-light: #fdf4ee;
  --section2-bg-dim: #fdf4ee;
  --section2-border: #dbcebc;
  --section2-shape-text: #7a531f;
  --font-serif: "Libre Baskerville", Georgia, serif;
  --font-sans: "Source Sans 3", -apple-system, BlinkMacSystemFont, sans-serif;
  --max-width: 1100px;
  --section-padding: clamp(3rem, 6vw, 5rem);
}

/* ===== Reset & Base ===== */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-primary);
  background: var(--bg-site);
}

/* ===== Navbar ===== */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--bg-site);
  border-bottom: 1px solid rgba(44, 36, 25, 0.08);
}

.navbar-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.navbar-logo {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--text-primary);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.navbar-logo-img {
  display: block;
  max-height: 40px;
  width: auto;
  height: auto;
}

.navbar-logo-text {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 1.25rem;
  letter-spacing: 0.02em;
  color: var(--text-primary);
  line-height: 1.2;
}

.navbar-links {
  display: flex;
  align-items: center;
  gap: 1.75rem;
}

.navbar-links a {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s;
}

.navbar-links a:hover {
  color: var(--text-primary);
}

@media (max-width: 600px) {
  .navbar-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* ===== Hero ===== */
.hero {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: var(--section-padding) 0;
  background: linear-gradient(rgba(253, 244, 238, 0.9), rgba(253, 244, 238, 0.9)), url("images/bg-image.png") no-repeat center / cover;
  overflow: hidden;
}

/* Same left edge as navbar logo */
.hero-container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.hero-inner {
  position: relative;
  text-align: left;
}

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 3.2vw, 2.25rem);
  font-weight: 700;
  line-height: 1.25;
  margin: 0 0 1.25rem;
  color: var(--text-primary);
  white-space: nowrap;
}

@media (max-width: 900px) {
  .hero-title {
    white-space: normal;
  }
}

.hero-desc {
  font-size: clamp(0.95rem, 1.5vw, 1.05rem);
  color: var(--text-muted);
  line-height: 1.5;
  margin: 0 0 2rem;
  max-width: 100%;
}

.btn-contact {
  display: inline-block;
  padding: 0.75rem 2rem;
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary);
  background: var(--btn-bg);
  border: 1.5px solid var(--border-btn);
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}

.btn-contact:hover {
  background: var(--text-primary);
  color: var(--btn-bg);
}

/* ===== Section titles ===== */
.section-title {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--text-primary);
  margin: 0 0 2rem;
}

.section-title--center {
  text-align: center;
}

/* ===== Challenges section (card gradient palette) ===== */
.challenges {
  padding: var(--section-padding) 0;
  max-width: 100%;
  background: var(--bg-site);
}

/* Same left edge as navbar logo */
.challenges-container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.challenges-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
  margin-bottom: 2.5rem;
}

.challenge-card {
  background: transparent;
}

.challenge-illus {
  position: relative;
  width: 100%;
  height: 400px;
  background: var(--bg-site);
  border: 1px solid var(--section2-border);
  border-radius: 8px;
  margin-bottom: 1.25rem;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.challenge-illus-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.illus-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.illus-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-align: center;
  opacity: 0.8;
}

/* Traditional Agency Pricing card overlay */
.challenge-illus--pricing {
  position: relative;
}

.illus-card {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: var(--illus-card-bg);
  padding: 1rem 1.25rem;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(44, 36, 25, 0.1);
  z-index: 1;
  font-size: 0.9rem;
  color: var(--text-primary);
}

.illus-card ul {
  margin: 0.5rem 0 0;
  padding-left: 1.25rem;
}

.illus-card li {
  margin: 0.2rem 0;
}

.illus-rack {
  position: absolute;
  inset: 0;
}

.challenge-heading {
  font-family: var(--font-sans);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0 0 0.5rem;
  line-height: 1.35;
}

.challenge-text {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.55;
}

.challenges-summary {
  font-size: 1.1rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin: 0;
  width: 100%;
  text-align: left;
}

.challenges-summary strong {
  color: var(--text-primary);
}

/* ===== What we do (Services) ===== */
.services {
  padding: var(--section-padding) 0;
  background: var(--bg-site);
}

.services-container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}

.service-card {
  background: var(--bg-site);
  border: 1px solid var(--section2-border);
  border-radius: 0.5rem;
  box-shadow: 0 2px 12px rgba(44, 36, 25, 0.06);
  padding: 1.5rem;
  position: relative;
  overflow: hidden;
}

.service-card--wide {
  grid-column: span 2;
}

.service-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--section2-shape-text);
  margin-bottom: 1rem;
  position: relative;
  font-size: 1.75rem;
}

.service-icon i {
  font-size: inherit;
}

.service-heading {
  font-family: var(--font-sans);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0 0 0.75rem;
}

.service-list {
  margin: 0;
  padding-left: 1.25rem;
  font-size: 0.95rem;
  color: var(--text-primary);
  line-height: 1.6;
}

.service-list li {
  margin: 0.35rem 0;
}

/* ===== In-Depth Success Stories ===== */
.success-story {
  padding: var(--section-padding) 0;
  background: var(--bg-site);
}

.success-story-container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.success-story-item {
  padding-bottom: 2.5rem;
}

.success-story-item--separated {
  padding-top: 2.5rem;
  padding-bottom: 0;
  border-top: 1px solid rgba(0, 0, 0, 0.12);
}

.success-story-item--separated .success-story-header {
  margin-bottom: 0.75rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.success-story-title--main {
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
  margin: 0;
}

.success-story-title--main em {
  font-style: italic;
  font-weight: 700;
}

.success-story-header {
  margin-bottom: 0.75rem;
}

.success-story-title {
  font-family: var(--font-sans);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--text-primary);
  margin: 0 0 0.35rem;
}

.success-story-subtitle {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin: 0;
}

.success-story-link {
  color: var(--text-primary);
  font-weight: 600;
  text-decoration: none;
}

.success-story-link:hover {
  text-decoration: underline;
}

.success-story-sep {
  margin: 0 0.5rem;
  color: var(--text-muted);
}

.success-story-intro {
  font-size: 1rem;
  color: var(--text-primary);
  line-height: 1.6;
  margin: 0 0 2rem;
  max-width: 640px;
}

.success-story-visuals {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.success-story-visual {
  aspect-ratio: 1;
  border-radius: 8px;
  background: var(--bg-site);
  border: 1px solid var(--section2-border);
  overflow: hidden;
  position: relative;
}

.success-story-visual-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.success-story-visual--frame {
  border-color: rgba(219, 206, 188, 0.9);
}

.success-story-kpis {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.success-story-kpi {
  padding: 1.25rem;
  background: var(--bg-site);
  border: 1px solid var(--section2-border);
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.success-story-kpi-value {
  font-family: var(--font-sans);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.2;
}

.success-story-kpi-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-primary);
}

.success-story-kpi-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.4;
}

.success-story-strategies {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.success-story-strategy-title {
  font-family: var(--font-sans);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0 0 0.75rem;
}

.success-story-list {
  margin: 0;
  padding-left: 1.25rem;
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.success-story-list li {
  margin: 0.35rem 0;
}

@media (max-width: 900px) {
  .success-story-visuals {
    grid-template-columns: repeat(2, 1fr);
  }

  .success-story-kpis {
    grid-template-columns: repeat(2, 1fr);
  }

  .success-story-strategies {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .success-story-kpis {
    grid-template-columns: 1fr;
  }
}

/* ===== Testimonials ===== */
.testimonials {
  padding: var(--section-padding) 0;
  background: var(--bg-site);
}

.testimonials-container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.testimonials-carousel {
  position: relative;
}

.testimonials-viewport {
  overflow: hidden;
  width: 100%;
}

.testimonials-track {
  display: flex;
  width: 200%;
  transition: transform 0.35s ease-out;
}

.testimonials-slide {
  flex: 0 0 50%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  padding: 0 0.25rem;
  min-width: 0;
}

.testimonial-card {
  background: var(--bg-site);
  border: 1px solid var(--section2-border);
  border-radius: 0.5rem;
  padding: 1.5rem;
  box-shadow: 0 2px 12px rgba(44, 36, 25, 0.06);
}

.testimonial-img {
  width: 96px;
  height: 96px;
  object-fit: cover;
  display: block;
  margin: 0 0 1rem 0;
}

.testimonial-quote {
  font-size: 1rem;
  color: var(--text-primary);
  line-height: 1.6;
  margin: 0 0 1rem;
}

.testimonial-author {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin: 0;
  font-style: italic;
}

.testimonials-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid var(--section2-border);
  background: var(--bg-site);
  color: var(--text-primary);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(44, 36, 25, 0.08);
  transition: background 0.2s, color 0.2s;
  z-index: 2;
}

.testimonials-btn:hover {
  background: var(--section2-border);
  color: var(--text-primary);
}

.testimonials-btn--prev {
  left: -0.5rem;
}

.testimonials-btn--next {
  right: -0.5rem;
}

@media (max-width: 768px) {
  .testimonials-slide {
    grid-template-columns: 1fr;
  }
}

/* ===== Team ===== */
.team {
  padding: var(--section-padding) 0;
  background: var(--bg-site);
}

.team-container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.team-desc {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin: 0 0 2rem;
  max-width: 640px;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  align-items: start;
}

.team-card {
  text-align: left;
  background: transparent;
}

.team-card-photo-wrap {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 0 1.25rem;
  border: 3px solid var(--btn-bg);
  background: var(--illus-bg);
}

.team-card-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.team-card-name {
  font-family: var(--font-sans);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0 0 0.25rem;
}

.team-card-role {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-muted);
  margin: 0 0 0.5rem;
}

.team-card-desc {
  font-size: 0.95rem;
  color: var(--text-primary);
  line-height: 1.55;
  margin: 0;
}

@media (max-width: 900px) {
  .team-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    max-width: 320px;
    margin: 0 auto;
  }

  .team-card-photo-wrap {
    margin-left: auto;
    margin-right: auto;
  }

  .team-card {
    text-align: center;
  }
}

/* ===== Products ===== */
.products {
  padding: var(--section-padding) 0;
  background: var(--bg-site);
}

.products-container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
  align-items: start;
}

.product-card {
  background: transparent;
}

.product-card-title {
  font-family: var(--font-sans);
  font-size: clamp(1.15rem, 2vw, 1.35rem);
  font-weight: 700;
  color: var(--text-primary);
  margin: 0 0 0.75rem;
  line-height: 1.3;
}

.product-card-desc {
  font-size: 1rem;
  color: var(--text-primary);
  line-height: 1.65;
  margin: 0 0 1.5rem;
}

.product-card-visual {
  border-radius: 0.5rem;
  overflow: hidden;
  border: 1px solid var(--section2-border);
  box-shadow: 0 2px 12px rgba(44, 36, 25, 0.08);
  aspect-ratio: 16 / 10;
  min-height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--illus-bg);
}

.product-card-visual--dark {
  background: #2d2a2e;
}

.product-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.product-card-placeholder {
  display: none;
  font-size: 0.9rem;
  color: var(--text-muted);
  padding: 1rem;
}

.product-card-visual--dark .product-card-placeholder {
  color: rgba(255, 255, 255, 0.6);
}

@media (max-width: 768px) {
  .products-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

/* ===== Legal / Privacy page ===== */
.legal-page {
  padding: clamp(2rem, 5vw, 4rem) 0;
  background: var(--bg-site);
  min-height: 50vh;
}

/* Same left edge as navbar logo */
.legal-page-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.legal-page-title {
  font-family: var(--font-serif);
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  font-weight: 700;
  color: var(--text-primary);
  margin: 0 0 0.25rem;
}

.legal-page-updated {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin: 0 0 1.5rem;
}

.legal-page-intro {
  margin: 0 0 2rem;
  line-height: 1.65;
  color: var(--text-primary);
}

.legal-page-intro a {
  color: var(--border-btn);
  text-decoration: underline;
}

.legal-page-intro a:hover {
  color: var(--text-primary);
}

.legal-section {
  margin-bottom: 2rem;
}

.legal-section-title {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0 0 0.75rem;
}

.legal-section p,
.legal-section ul {
  margin: 0 0 0.75rem;
  line-height: 1.65;
  color: var(--text-primary);
}

.legal-section ul {
  padding-left: 1.5rem;
}

.legal-section li {
  margin-bottom: 0.35rem;
}

.legal-section a {
  color: var(--border-btn);
  text-decoration: underline;
}

.legal-section a:hover {
  color: var(--text-primary);
}

/* ===== Footer ===== */
.footer {
  padding: 3rem 1.5rem 1.5rem;
  background: var(--bg-site);
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 3rem;
  padding-bottom: 2rem;
}

.footer-brand {
  max-width: 280px;
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.footer-logo-img {
  display: block;
  max-height: 32px;
  width: auto;
}

.footer-logo-text {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 1.1rem;
}

.footer-tagline {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.5;
}

.footer-heading {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-muted);
  margin: 0 0 0.75rem;
}

.footer-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-list li {
  margin: 0 0 0.4rem;
}

.footer-list a {
  font-size: 0.95rem;
  color: var(--text-primary);
  text-decoration: none;
}

.footer-list a:hover {
  text-decoration: underline;
}

.footer-contact {
  text-align: left;
}

.footer-email {
  display: block;
  font-size: 0.95rem;
  color: var(--text-primary);
  text-decoration: none;
  margin-bottom: 0.75rem;
}

.footer-email:hover {
  text-decoration: underline;
}

.footer-cta-btn {
  text-decoration: none;
}

.footer-bar {
  padding-top: 1.5rem;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.footer-copy {
  margin: 0;
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* ===== Contact popup ===== */
.contact-popup-overlay {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  background: rgba(0, 0, 0, 0.4);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s, visibility 0.2s;
}

.contact-popup-overlay--open {
  opacity: 1;
  visibility: visible;
}

.contact-popup {
  position: relative;
  width: 100%;
  max-width: 440px;
  max-height: 90vh;
  overflow-y: auto;
  background: var(--illus-card-bg);
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
  padding: 2rem;
}

.contact-popup-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 36px;
  height: 36px;
  border: none;
  background: transparent;
  color: var(--text-muted);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  transition: background 0.2s, color 0.2s;
}

.contact-popup-close:hover {
  background: rgba(0, 0, 0, 0.06);
  color: var(--text-primary);
}

.contact-popup-title {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0 0 0.5rem;
}

.contact-popup-desc {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin: 0 0 1.5rem;
  line-height: 1.5;
}

.contact-popup-msg {
  font-size: 0.95rem;
  margin: 0 0 0.5rem;
  padding: 0.5rem 0.75rem;
  border-radius: 6px;
  background: rgba(74, 44, 29, 0.08);
  color: var(--text-primary);
}

.contact-popup-msg--error {
  background: rgba(180, 60, 60, 0.12);
  color: #8b2e2e;
}

.contact-popup-form {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.contact-popup-label {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-primary);
}

.contact-popup-input,
.contact-popup-textarea {
  width: 100%;
  padding: 0.6rem 0.75rem;
  font-family: var(--font-sans);
  font-size: 1rem;
  border: 1px solid var(--section2-border);
  border-radius: 6px;
  color: var(--text-primary);
  background: var(--bg-site);
}

.contact-popup-input::placeholder,
.contact-popup-textarea::placeholder {
  color: var(--text-muted);
  opacity: 0.8;
}

.contact-popup-textarea {
  resize: vertical;
  min-height: 100px;
}

.contact-popup-submit {
  margin-top: 0.5rem;
}

@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

/* ===== Responsive ===== */
@media (max-width: 900px) {
  .challenges-grid {
    grid-template-columns: 1fr;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .service-card--wide {
    grid-column: auto;
  }
}

@media (max-width: 600px) {
  .hero {
    min-height: auto;
    padding-top: 3rem;
    padding-bottom: 3rem;
  }

  .section-title--center {
    text-align: left;
  }

  .challenges-summary {
    text-align: left;
  }
}
