/* ============================================================
   ORIGEN FERTILITY CENTER — Design System
   ============================================================ */

:root {
  --navy:       #1a3a5c;
  --navy-dark:  #0f2540;
  --sky:        #8ec8e8;
  --sky-light:  #d4ebf7;
  --amber:      #e8993e;
  --amber-dark: #d4872e;
  --peach:      #e8b89a;
  --offwhite:   #f9f7f4;
  --white:      #ffffff;
  --gray-100:   #f3f1ee;
  --gray-200:   #e6e3de;
  --gray-500:   #8a8680;
  --text:       #2c3e50;
  --text-muted: #5a6a7a;

  --font-serif: 'DM Serif Display', Georgia, serif;
  --font-sans:  'Plus Jakarta Sans', 'Segoe UI', sans-serif;

  --container:     1200px;
  --container-pad: 1.5rem;

  --radius:    12px;
  --radius-lg: 20px;

  --shadow-sm:  0 2px 8px rgba(26, 58, 92, 0.06);
  --shadow-md:  0 8px 30px rgba(26, 58, 92, 0.10);
  --shadow-lg:  0 16px 50px rgba(26, 58, 92, 0.14);

  --transition: 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ============================================================
   RESET & BASE
   ============================================================ */

*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text);
  background: var(--offwhite);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--transition);
}

ul {
  list-style: none;
}

/* ============================================================
   UTILITIES
   ============================================================ */

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

.container--narrow {
  max-width: 800px;
}

.text-amber {
  color: var(--amber);
}

.section-label {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 1rem;
}

.section-label--light {
  color: var(--peach);
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3.2rem);
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.section-title--light {
  color: var(--white);
}

.section-title em {
  font-style: italic;
}

.section-intro {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 650px;
  margin: 0 auto 3.5rem;
}

/* ============================================================
   BUTTONS
   ============================================================ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.8rem 1.8rem;
  border-radius: 50px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}

.btn--lg {
  padding: 1rem 2.4rem;
  font-size: 1.05rem;
}

.btn--full {
  width: 100%;
}

.btn--primary {
  background: var(--amber);
  color: var(--white);
  border-color: var(--amber);
}

.btn--primary::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.25), transparent);
  transition: left 0.5s ease;
}

@media (hover: hover) {
  .btn--primary:hover {
    background: var(--amber-dark);
    border-color: var(--amber-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(232, 153, 62, 0.35);
  }

  .btn--primary:hover::after {
    left: 100%;
  }
}

.btn--outline {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}

@media (hover: hover) {
  .btn--outline:hover {
    background: var(--navy);
    color: var(--white);
    transform: translateY(-2px);
  }
}

.btn--amber {
  background: var(--amber);
  color: var(--white);
  border-color: var(--amber);
}

@media (hover: hover) {
  .btn--amber:hover {
    background: var(--amber-dark);
    border-color: var(--amber-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(232, 153, 62, 0.35);
  }
}

.btn--white {
  background: var(--white);
  color: var(--navy);
  border-color: var(--white);
}

@media (hover: hover) {
  .btn--white:hover {
    background: var(--offwhite);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.3);
  }
}

.btn--outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.5);
}

@media (hover: hover) {
  .btn--outline-white:hover {
    background: rgba(255,255,255,0.15);
    border-color: var(--white);
    transform: translateY(-2px);
  }
}

/* ============================================================
   NAV
   ============================================================ */

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1rem 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  transition: all var(--transition);
}

.nav.scrolled {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 20px rgba(26, 58, 92, 0.08);
  padding: 0.8rem 0;
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav__logo-img {
  height: 60px;
  width: auto;
}

.nav.scrolled .nav__logo-img {
  height: 50px;
}

.nav__links {
  display: none;
  gap: 2.2rem;
}

.nav__link {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--navy);
  position: relative;
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--amber);
  transition: width var(--transition);
}

.nav__link.active {
  color: var(--amber);
}

.nav__link.active::after {
  width: 100%;
}

@media (hover: hover) {
  .nav__link:hover::after {
    width: 100%;
  }
}

.nav__cta {
  display: none;
  padding: 0.65rem 1.5rem;
  font-size: 0.85rem;
}

/* Hamburger */
.nav__hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1010;
}

.nav__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.nav__hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav__hamburger.active span:nth-child(2) {
  opacity: 0;
}

.nav__hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile overlay — sits outside <header> to avoid clipping */
.nav__overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  min-height: 100vh;
  min-height: 100dvh;
  background: var(--white);
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-10px);
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.nav__overlay.active {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.nav__overlay-links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.8rem;
  padding: 2rem;
}

.nav__overlay-link {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  color: var(--navy);
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.nav__overlay.active .nav__overlay-link {
  opacity: 1;
  transform: translateY(0);
}

.nav__overlay.active .nav__overlay-link:nth-child(1) { transition-delay: 0.08s; }
.nav__overlay.active .nav__overlay-link:nth-child(2) { transition-delay: 0.13s; }
.nav__overlay.active .nav__overlay-link:nth-child(3) { transition-delay: 0.18s; }
.nav__overlay.active .nav__overlay-link:nth-child(4) { transition-delay: 0.23s; }
.nav__overlay.active .nav__overlay-link:nth-child(5) { transition-delay: 0.28s; }

@media (hover: hover) {
  .nav__overlay-link:hover {
    color: var(--amber);
  }
}

.nav__overlay-cta {
  margin-top: 1rem;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.nav__overlay.active .nav__overlay-cta {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.35s;
}

/* ============================================================
   HERO
   ============================================================ */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 8rem 0 4rem;
  overflow: hidden;
  background: linear-gradient(160deg, var(--offwhite) 0%, #edf5fa 50%, var(--offwhite) 100%);
}

.hero__bg-orb {
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(142, 200, 232, 0.2) 0%, transparent 70%);
  top: -100px;
  right: -150px;
  pointer-events: none;
  will-change: transform;
}

.hero__bg-orb--secondary {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(232, 153, 62, 0.1) 0%, transparent 70%);
  top: auto;
  bottom: -80px;
  right: auto;
  left: -100px;
}

.hero__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3rem;
}

.hero__content {
  text-align: center;
  max-width: 700px;
}

.hero__label {
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 1.2rem;
}

.hero__title {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  color: var(--navy);
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.hero__title em {
  font-style: italic;
  color: var(--navy);
}

.hero__subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 2.5rem;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

.hero__visual {
  display: none;
}

.hero__logo-wrap {
  position: relative;
  width: 320px;
  height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero__logo-wrap::before {
  content: '';
  position: absolute;
  inset: -20px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(142, 200, 232, 0.15) 0%, transparent 70%);
  animation: pulse-glow 4s ease-in-out infinite;
}

@keyframes pulse-glow {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.08); opacity: 0.7; }
}

.hero__logo-img {
  width: 280px;
  height: 280px;
  object-fit: contain;
  filter: drop-shadow(0 10px 30px rgba(26, 58, 92, 0.12));
}

/* ============================================================
   TRUST / ABOUT
   ============================================================ */

.trust {
  position: relative;
  padding: 6rem 0;
  text-align: center;
  background: var(--white);
}

.trust__accent {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: var(--amber);
  border-radius: 2px;
}

.trust__text {
  font-size: 1.1rem;
  color: var(--text-muted);
  line-height: 1.9;
  margin-bottom: 1.2rem;
}

.trust__text:last-child {
  margin-bottom: 0;
}

/* ============================================================
   PROGRAMS
   ============================================================ */

.programs {
  padding: 6rem 0;
  text-align: center;
}

.programs__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.program-card {
  position: relative;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  text-align: left;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}

@media (hover: hover) {
  .program-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
  }
}

.program-card__accent {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--amber), var(--peach));
}

.program-card__flag {
  font-size: 2.5rem;
  display: block;
  margin-bottom: 1rem;
}

.program-card__title {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--navy);
  margin-bottom: 1.2rem;
}

.program-card__list {
  margin-bottom: 1.5rem;
}

.program-card__list li {
  position: relative;
  padding-left: 1.4rem;
  margin-bottom: 0.6rem;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.program-card__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 6px;
  height: 6px;
  background: var(--amber);
  border-radius: 50%;
}

.program-card__link {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--amber);
  transition: all var(--transition);
}

@media (hover: hover) {
  .program-card__link:hover {
    color: var(--amber-dark);
    letter-spacing: 0.02em;
  }
}

/* ============================================================
   HOW IT WORKS — TIMELINE
   ============================================================ */

.how-it-works {
  padding: 6rem 0;
  text-align: center;
  background: var(--white);
}

.timeline {
  position: relative;
  max-width: 700px;
  margin: 0 auto;
  text-align: left;
  padding-left: 0;
}

.timeline__line {
  display: none;
}

.timeline__step {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
  position: relative;
}

.timeline__step:last-child {
  margin-bottom: 0;
}

.timeline__number {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  color: var(--sky);
  line-height: 1;
  min-width: 60px;
  flex-shrink: 0;
}

.timeline__content {
  padding-top: 0.2rem;
}

.timeline__title {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  color: var(--navy);
  margin-bottom: 0.4rem;
}

.timeline__desc {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
}

.timeline__more {
  text-align: center;
  margin-top: 2.5rem;
}

.timeline__more-link {
  font-weight: 600;
  font-size: 1rem;
  color: var(--amber);
  border-bottom: 2px solid rgba(232, 153, 62, 0.35);
  padding-bottom: 2px;
  transition: color var(--transition), border-color var(--transition);
}

@media (hover: hover) {
  .timeline__more-link:hover {
    color: var(--amber-dark);
    border-color: var(--amber);
  }
}

/* ============================================================
   WHY ORIGEN — FEATURES
   ============================================================ */

.why-origen {
  padding: 6rem 0;
}

.features__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.feature {
  padding: 1.5rem 0;
  border-top: 1px solid var(--gray-200);
}

.feature__num {
  font-family: var(--font-serif);
  font-size: 2rem;
  color: var(--sky-light);
  display: block;
  margin-bottom: 0.8rem;
  line-height: 1;
}

.feature__title {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  color: var(--navy);
  margin-bottom: 0.5rem;
}

.feature__desc {
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* ============================================================
   PARTNERS / B2B
   ============================================================ */

.partners {
  padding: 6rem 0;
  background: var(--navy-dark);
  position: relative;
  overflow: hidden;
}

.partners::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(142, 200, 232, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.partners__inner {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.partners__text {
  color: rgba(255, 255, 255, 0.75);
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 1rem;
}

.partners__list {
  margin-top: 1.5rem;
}

.partners__list li {
  position: relative;
  padding-left: 1.4rem;
  margin-bottom: 0.8rem;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
}

.partners__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 6px;
  height: 6px;
  background: var(--amber);
  border-radius: 50%;
}

.partners__cta-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  backdrop-filter: blur(10px);
}

.partners__cta-title {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--white);
  margin-bottom: 1rem;
}

.partners__cta-desc {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 2rem;
  line-height: 1.7;
}

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

.cta {
  padding: 6rem 0;
  background: linear-gradient(135deg, var(--amber) 0%, var(--amber-dark) 50%, #c47528 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -30%;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  pointer-events: none;
}

.cta__title {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  color: var(--white);
  margin-bottom: 1.2rem;
}

.cta__title em {
  font-style: italic;
}

.cta__text {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 2.5rem;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

/* ============================================================
   FOOTER
   ============================================================ */

.footer {
  background: var(--navy-dark);
  color: rgba(255, 255, 255, 0.7);
  padding: 4rem 0 0;
}

.footer__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer__logo {
  height: 50px;
  width: auto;
  margin-bottom: 1rem;
  filter: brightness(0) invert(1);
}

.footer__tagline {
  font-size: 0.9rem;
  line-height: 1.6;
  max-width: 280px;
}

.footer__heading {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 1.2rem;
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.footer__links a {
  font-size: 0.9rem;
  transition: color var(--transition);
}

@media (hover: hover) {
  .footer__links a:hover {
    color: var(--amber);
  }
}

.footer__contact a {
  display: block;
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
  transition: color var(--transition);
}

@media (hover: hover) {
  .footer__contact a:hover {
    color: var(--amber);
  }
}

.footer__contact p {
  font-size: 0.9rem;
}

.footer__bottom {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 1.5rem var(--container-pad);
  text-align: center;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.4);
}

.footer__disclaimer {
  font-style: italic;
}

/* ============================================================
   RESPONSIVE — TABLET (768px+)
   ============================================================ */

@media (min-width: 768px) {
  :root {
    --container-pad: 2rem;
  }

  .nav__links {
    display: flex;
  }

  .nav__cta {
    display: inline-flex;
  }

  .nav__hamburger {
    display: none;
  }

  .nav__overlay {
    display: none !important;
  }

  .nav {
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    padding: 1.2rem 0;
  }

  .hero__inner {
    flex-direction: row;
    align-items: center;
    text-align: left;
    gap: 3rem;
  }

  .hero__content {
    text-align: left;
    flex: 1;
  }

  .hero__subtitle {
    margin-left: 0;
  }

  .hero__actions {
    justify-content: flex-start;
  }

  .hero__visual {
    display: flex;
    flex: 0 0 auto;
  }

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

  .features__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem 3rem;
  }

  .partners__inner {
    flex-direction: row;
    align-items: center;
    gap: 4rem;
  }

  .partners__content {
    flex: 1;
  }

  .partners__cta-wrap {
    flex: 0 0 380px;
  }

  .footer__inner {
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  }

  .footer__bottom {
    flex-direction: row;
    justify-content: space-between;
  }

  .timeline__line {
    display: block;
    position: absolute;
    left: 29px;
    top: 10px;
    bottom: 10px;
    width: 2px;
    background: var(--sky-light);
  }

  .timeline__step {
    padding-left: 0;
  }
}

/* ============================================================
   RESPONSIVE — DESKTOP (1024px+)
   ============================================================ */

@media (min-width: 1024px) {
  :root {
    --container-pad: 2.5rem;
  }

  .hero {
    padding: 0;
    min-height: 100vh;
  }

  .hero__logo-wrap {
    width: 380px;
    height: 380px;
  }

  .hero__logo-img {
    width: 320px;
    height: 320px;
  }

  .programs__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }

  .features__grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .trust,
  .programs,
  .how-it-works,
  .why-origen,
  .partners,
  .cta {
    padding: 8rem 0;
  }
}

/* ============================================================
   RESPONSIVE — WIDE (1280px+)
   ============================================================ */

@media (min-width: 1280px) {
  .hero__title {
    font-size: 4.5rem;
  }

  .hero__logo-wrap {
    width: 420px;
    height: 420px;
  }

  .hero__logo-img {
    width: 360px;
    height: 360px;
  }

  .timeline {
    max-width: 800px;
  }
}

/* ============================================================
   AOS OVERRIDES — Prevent flash on load
   ============================================================ */

[data-aos] {
  pointer-events: auto !important;
}

body:not(.aos-init) [data-aos] {
  opacity: 1 !important;
  transform: none !important;
}

/* ============================================================
   SHORT HERO (inner pages)
   ============================================================ */

.hero--short {
  min-height: auto;
  padding: 10rem 0 5rem;
}

.hero--short .hero__inner {
  grid-template-columns: 1fr;
  text-align: center;
}

.hero--short .hero__subtitle {
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 768px) {
  .hero--short {
    padding: 8rem 0 3rem;
  }
}
