/* ============================================================
   TÍO CHULO — styles.css
   Mobile-first, Mexican flag palette, zero external fonts
   ============================================================ */

/* ---------- Variables ---------- */
:root {
  --green:      #006847;
  --red:        #CE1126;
  --dark-green: #1a3d2b;
  --white:      #ffffff;
  --dark:       #1a1a1a;
  --gray:       #f5f5f5;
  --border:     #e0e0e0;
  --gold:       #f5a623;

  --font: -apple-system, 'Segoe UI', Arial, sans-serif;
  --radius: 8px;
  --shadow: 0 2px 16px rgba(0,0,0,0.10);
  --transition: 0.2s ease;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  font-size: 17px;
  line-height: 1.65;
  color: var(--dark);
  background: var(--white);
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ---------- Typography ---------- */
h1, h2, h3, h4 {
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
}
h1 { font-size: clamp(2.4rem, 7vw, 4rem); }
h2 { font-size: clamp(1.75rem, 4.5vw, 2.75rem); }
h3 { font-size: clamp(1.2rem, 3vw, 1.65rem); }
p  { font-size: 1.05rem; line-height: 1.75; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  padding: 0.9em 1.85em;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: opacity var(--transition), transform var(--transition);
  text-align: center;
  white-space: nowrap;
}
.btn:hover { opacity: 0.88; transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn-red          { background: var(--red);   color: var(--white); border-color: var(--red); }
.btn-green        { background: var(--green); color: var(--white); border-color: var(--green); }
.btn-outline-green {
  background: transparent;
  color: var(--green);
  border-color: var(--green);
}
.btn-outline-green:hover { background: var(--green); color: var(--white); opacity: 1; }

/* Large button variant */
.btn-lg { padding: 1.05em 2.4em; font-size: 1.15rem; }

/* ---------- Sticky Navigation ---------- */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  border-bottom: 2px solid var(--border);
  box-shadow: 0 1px 8px rgba(0,0,0,0.07);
}
.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.25rem;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo */
.nav-logo {
  font-size: 1.65rem;
  font-weight: 900;
  color: var(--green);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.nav-logo span { color: var(--red); }

/* Desktop links */
.nav-links {
  display: none;
  align-items: center;
  gap: 2rem;
}
.nav-links a {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--dark);
  transition: color var(--transition);
}
.nav-links a:hover { color: var(--green); }
.nav-links .btn { padding: 0.5em 1.2em; font-size: 0.9rem; }

/* Hamburger */
.hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 6px;
  z-index: 1100;
}
.hamburger span {
  display: block;
  width: 26px;
  height: 3px;
  background: var(--dark);
  border-radius: 3px;
  transition: all 0.3s ease;
}
/* Hamburger open state */
.hamburger.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* Mobile menu */
.nav-mobile {
  display: none;
  flex-direction: column;
  background: var(--white);
  border-top: 1px solid var(--border);
  padding: 1rem 1.25rem 1.5rem;
  gap: 1.1rem;
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--dark);
  padding: 0.3rem 0;
  border-bottom: 1px solid var(--border);
}
.nav-mobile a:last-child { border-bottom: none; }
.nav-mobile .btn { text-align: center; margin-top: 0.5rem; }

/* ---------- Sections ---------- */
.section {
  padding: 64px 1.25rem;
}
.section-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.section-center { text-align: center; }

.section-white { background: var(--white); }
.section-gray  { background: var(--gray); }
.section-green { background: var(--green); color: var(--white); }
.section-dark-green { background: var(--dark-green); color: var(--white); }

/* ---------- Hero ---------- */
.hero {
  background: var(--dark-green);
  color: var(--white);
  padding: 72px 1.25rem 88px;
}
.hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 2rem;
}
.hero-content { flex: 1; }
.hero h1 { color: var(--white); margin-bottom: 1.25rem; }
.hero p  { font-size: 1.2rem; margin-bottom: 2rem; opacity: 0.92; max-width: 600px; }
.hero-btns {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

/* Hero badge (above headline) */
.hero-badge {
  display: inline-block;
  background: var(--red);
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.45em 1.2em;
  border-radius: 100px;
  margin-bottom: 1.25rem;
}

/* Hero book image column */
.hero-image-col {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
}
.hero-book-img {
  width: 220px;
  border-radius: 8px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
}
.hero-book-placeholder {
  width: 220px;
  height: 300px;
  background: var(--green);
  border-radius: 8px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--white);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 1.5rem;
  line-height: 1.4;
}

/* Beto photo placeholder */
.hero-photo-placeholder {
  display: none;
}
.hero-photo-wrap {
  margin-top: 1.25rem;
}
.hero-photo {
  width: 240px;
  height: 240px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center 15%;
  border: 5px solid rgba(255,255,255,0.75);
  box-shadow: 0 12px 40px rgba(0,0,0,0.35);
  display: block;
}

/* On dark bg, white outline variant */
.btn-outline-white {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}
.btn-outline-white:hover { background: var(--white); color: var(--dark-green); opacity: 1; }

/* ---------- Cards ---------- */
.card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 2.25rem;
  border: 1px solid var(--border);
}
.card h3 { margin-bottom: 0.85rem; color: var(--dark); }
.card p  { color: #444; }

/* Card grids */
.cards-3 {
  display: grid;
  gap: 1.5rem;
  margin-top: 2.75rem;
}
.cards-2 {
  display: grid;
  gap: 1.5rem;
  margin-top: 2.75rem;
}

/* ---------- Badge ---------- */
.badge {
  display: inline-block;
  padding: 0.3em 0.9em;
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.badge-green { background: var(--green); color: var(--white); }
.badge-red   { background: var(--red);   color: var(--white); }

/* ---------- Product Cards ---------- */
.product-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  overflow: hidden;
}
.product-card-header {
  background: var(--dark-green);
  color: var(--white);
  padding: 2rem 2rem 1.75rem;
}
.product-card-header .badge { margin-bottom: 0.75rem; }
.product-card-header h3 { font-size: 1.65rem; color: var(--white); }
.product-card-header .price {
  font-size: 2.25rem;
  font-weight: 900;
  color: var(--white);
  margin-top: 0.6rem;
}
.product-card-body {
  padding: 2rem 2rem 2.25rem;
}
.product-card-body ul {
  margin: 1.1rem 0 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}
.product-card-body ul li::before {
  content: "✓ ";
  color: var(--green);
  font-weight: 700;
}

/* ---------- Bundle Mockup (CSS only — No Sabo Kit) ---------- */
.bundle-mockup {
  position: relative;
  width: 160px;
  height: 200px;
  margin: 0 auto 1.5rem;
}
.bundle-mockup::before,
.bundle-mockup::after,
.bundle-card-1,
.bundle-card-2,
.bundle-card-3 {
  content: '';
  position: absolute;
  width: 130px;
  height: 170px;
  border-radius: 6px;
  border: 2px solid rgba(255,255,255,0.3);
}
.bundle-mockup::before {
  background: var(--red);
  top: 0;
  left: 20px;
  transform: rotate(-6deg);
  z-index: 1;
}
.bundle-mockup::after {
  background: #fff;
  top: 8px;
  left: 14px;
  transform: rotate(-3deg);
  z-index: 2;
  border-color: var(--border);
}
.bundle-card-main {
  position: absolute;
  width: 130px;
  height: 170px;
  background: var(--green);
  border-radius: 6px;
  top: 16px;
  left: 10px;
  z-index: 3;
  transform: rotate(1deg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 900;
  font-size: 0.85rem;
  text-align: center;
  padding: 1rem;
  gap: 0.4rem;
  border: 2px solid rgba(255,255,255,0.25);
}
.bundle-card-main .bundle-flag {
  font-size: 1.5rem;
  margin-bottom: 0.25rem;
}
.bundle-card-main .bundle-title {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  opacity: 0.85;
}
.bundle-card-main .bundle-name {
  font-size: 1rem;
  font-weight: 900;
}

/* ---------- Book image in product card ---------- */
.book-img-wrap {
  text-align: center;
  padding: 1.75rem 2rem 0;
  background: var(--green);
}
.book-img-wrap img {
  max-width: 180px;
  margin: 0 auto;
  border-radius: 6px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.3);
}
.book-img-placeholder {
  max-width: 180px;
  height: 240px;
  margin: 0 auto;
  background: rgba(255,255,255,0.15);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 700;
  font-size: 0.88rem;
  text-align: center;
  padding: 1rem;
  border: 2px dashed rgba(255,255,255,0.4);
}
.stars-badge {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--gold);
  margin-top: 0.5rem;
  display: block;
  text-align: center;
  padding-bottom: 1.25rem;
}

/* ---------- Lead Magnet / Opt-in ---------- */
.optin-section {
  background: var(--green);
  color: var(--white);
  padding: 80px 1.25rem;
  text-align: center;
}
.optin-section h2 { color: var(--white); margin-bottom: 0.85rem; }
.optin-section p  { opacity: 0.92; margin-bottom: 2rem; font-size: 1.1rem; }
.optin-form {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  max-width: 480px;
  margin: 0 auto;
}
.optin-form input[type="email"] {
  width: 100%;
  padding: 0.95em 1.1em;
  font-size: 1.05rem;
  border: 2px solid var(--white);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--dark);
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.optin-form input[type="email"]:focus {
  border-color: var(--dark-green);
  box-shadow: 0 0 0 3px rgba(26,61,43,0.25);
}
.optin-form .btn { width: 100%; justify-content: center; }
.optin-fine {
  font-size: 0.82rem;
  opacity: 0.75;
  margin-top: 0.5rem;
}

/* Success message */
.form-success {
  display: none;
  background: rgba(255,255,255,0.15);
  border: 2px solid var(--white);
  border-radius: var(--radius);
  padding: 1rem 1.5rem;
  font-weight: 700;
  font-size: 1.05rem;
  margin-top: 1rem;
}
.form-success.visible { display: block; }

/* ---------- Pillars ---------- */
.pillars {
  display: grid;
  gap: 1.5rem;
  margin-top: 2.5rem;
}
.pillar {
  text-align: center;
  padding: 2rem;
  border-radius: var(--radius);
  border: 2px solid var(--green);
}
.pillar-icon {
  font-size: 2.5rem;
  margin-bottom: 0.75rem;
}
.pillar h3 { color: var(--green); margin-bottom: 0.5rem; }

/* ---------- Testimonials Section ---------- */
.testimonials-section {
  background: var(--white);
  padding: 80px 1.25rem;
}
.testimonials-section h2 {
  text-align: center;
  margin-bottom: 0.5rem;
}
.testimonials-subhead {
  text-align: center;
  color: #666;
  font-size: 1rem;
  margin-bottom: 2.75rem;
}
.testimonials-grid {
  display: grid;
  gap: 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
}
.testimonial-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: 0 2px 12px rgba(0,0,0,0.07);
}
.testimonial-stars {
  color: var(--gold);
  font-size: 1.2rem;
  letter-spacing: 0.05em;
  margin-bottom: 0.85rem;
}
.testimonial-text {
  font-size: 1rem;
  line-height: 1.7;
  color: #333;
  font-style: italic;
  margin-bottom: 1rem;
}
.testimonial-reviewer {
  font-size: 0.88rem;
  font-weight: 700;
  color: #888;
}

/* ---------- Instagram / Social Section ---------- */
.instagram-section {
  background: var(--dark-green);
  color: var(--white);
  padding: 80px 1.25rem;
  text-align: center;
}
.instagram-section h2 {
  color: var(--white);
  margin-bottom: 0.75rem;
}
.instagram-section .ig-subhead {
  opacity: 0.85;
  font-size: 1.1rem;
  max-width: 520px;
  margin: 0 auto 2.5rem;
}
.instagram-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  max-width: 600px;
  margin: 0 auto 2.5rem;
}
.instagram-placeholder {
  aspect-ratio: 1;
  background: rgba(255,255,255,0.08);
  border-radius: var(--radius);
  border: 2px dashed rgba(255,255,255,0.2);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  color: rgba(255,255,255,0.45);
  font-size: 0.78rem;
  font-weight: 600;
}
.instagram-placeholder .cam-icon {
  font-size: 1.75rem;
  opacity: 0.5;
}
.instagram-ctas {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
.instagram-ctas .tiktok-link {
  color: rgba(255,255,255,0.75);
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: underline;
  transition: color var(--transition);
}
.instagram-ctas .tiktok-link:hover { color: var(--white); }

/* ---------- About page photo section ---------- */
.about-intro {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-top: 2rem;
}
.about-photo-placeholder {
  width: 100%;
  max-width: 320px;
  height: 360px;
  background: var(--gray);
  border: 3px dashed var(--border);
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #aaa;
  font-size: 0.88rem;
  font-weight: 600;
  padding: 1.5rem;
  gap: 0.75rem;
  flex-shrink: 0;
  margin: 0 auto;
}
.about-photo-placeholder .photo-icon { font-size: 2.5rem; opacity: 0.5; }
.about-text-col { flex: 1; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--dark-green);
  color: var(--white);
  padding: 56px 1.25rem 36px;
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.footer-logo {
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--white);
  letter-spacing: 0.04em;
  margin-bottom: 0.2rem;
}
.footer-logo span { color: var(--red); }
.footer-domain {
  font-size: 0.85rem;
  opacity: 0.6;
  margin-bottom: 1.5rem;
}
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.5rem;
  margin-bottom: 1.5rem;
}
.footer-links a {
  font-size: 0.95rem;
  opacity: 0.8;
  transition: opacity var(--transition);
}
.footer-links a:hover { opacity: 1; }
.footer-copy {
  font-size: 0.8rem;
  opacity: 0.5;
  border-top: 1px solid rgba(255,255,255,0.15);
  padding-top: 1rem;
}

/* Minimal footer (free-kit page) */
.footer-minimal {
  background: var(--dark-green);
  color: var(--white);
  padding: 1.5rem 1.25rem;
  text-align: center;
}
.footer-minimal .footer-logo { margin-bottom: 0.25rem; }
.footer-minimal .footer-copy { border-top: none; padding-top: 0.5rem; }

/* ---------- Free Kit Page Specific ---------- */
.freepage-hero {
  background: var(--dark-green);
  color: var(--white);
  padding: 80px 1.25rem 88px;
  text-align: center;
}
.freepage-hero .badge-red { font-size: 1rem; padding: 0.4em 1.2em; margin-bottom: 1.25rem; }
.freepage-hero h1 { margin-bottom: 1.1rem; }
.freepage-hero p { font-size: 1.15rem; max-width: 600px; margin: 0 auto 2.25rem; opacity: 0.9; }

.checklist {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  margin: 2rem auto;
  max-width: 520px;
  text-align: left;
}
.checklist li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 1.05rem;
  font-weight: 600;
}
.checklist li::before {
  content: "✔";
  color: #6ee7a0;
  font-size: 1.1rem;
  flex-shrink: 0;
  margin-top: 0.1em;
}

.freepage-form-wrap {
  max-width: 480px;
  margin: 0 auto;
}
.freepage-form input[type="email"] {
  width: 100%;
  padding: 1em 1.2em;
  font-size: 1.1rem;
  border: 2px solid var(--border);
  border-radius: var(--radius);
  outline: none;
  margin-bottom: 0.75rem;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.freepage-form input[type="email"]:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(0,104,71,0.18);
}
.freepage-form .btn { width: 100%; }
.freepage-fine {
  font-size: 0.82rem;
  color: #777;
  margin-top: 0.6rem;
  text-align: center;
}

.upsell-block {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
  text-align: center;
}
.upsell-block p { color: #555; margin-bottom: 0.75rem; font-size: 1rem; }

/* ---------- Minimal nav for free-kit ---------- */
.nav-minimal {
  background: var(--white);
  border-bottom: 2px solid var(--border);
  padding: 1rem 1.25rem;
  text-align: center;
}

/* ---------- Section headings ---------- */
.section-eyebrow {
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--red);
  margin-bottom: 0.6rem;
}

/* ---------- About page ---------- */
.mission-statement {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--green);
  border-left: 4px solid var(--green);
  padding-left: 1.25rem;
  margin: 2.25rem 0;
  line-height: 1.5;
}

.bold-statement {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--red);
  text-align: center;
  margin: 2.25rem 0;
}

/* ---------- Coming Soon ---------- */
.coming-soon-grid {
  display: grid;
  gap: 1.5rem;
  margin-top: 2rem;
}
.coming-soon-card {
  background: var(--white);
  border: 2px dashed var(--border);
  border-radius: var(--radius);
  padding: 1.75rem;
  text-align: center;
  color: #666;
}
.coming-soon-card h3 { color: var(--dark); margin-bottom: 0.4rem; }
.coming-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--red);
  border: 1px solid var(--red);
  padding: 0.2em 0.7em;
  border-radius: 100px;
  margin-bottom: 0.75rem;
}

/* ---------- Notify form ---------- */
.notify-form {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  max-width: 400px;
  margin: 2rem auto 0;
  text-align: center;
}
.notify-form input[type="email"] {
  width: 100%;
  padding: 0.9em 1em;
  font-size: 1rem;
  border: 2px solid var(--border);
  border-radius: var(--radius);
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.notify-form input[type="email"]:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(0,104,71,0.18);
}
.notify-form .btn { width: 100%; }

/* ============================================================
   RESPONSIVE — 768px+
   ============================================================ */
@media (min-width: 768px) {
  .section { padding: 96px 2rem; }
  .hero    { padding: 110px 2rem 120px; }
  .optin-section { padding: 96px 2rem; }
  .freepage-hero { padding: 110px 2rem 120px; }
  .testimonials-section { padding: 96px 2rem; }
  .instagram-section { padding: 96px 2rem; }

  /* Show desktop nav */
  .nav-links  { display: flex; }
  .hamburger  { display: none; }
  .nav-mobile { display: none !important; }

  /* Grids */
  .cards-3 { grid-template-columns: repeat(3, 1fr); }
  .cards-2 { grid-template-columns: repeat(2, 1fr); }
  .pillars { grid-template-columns: repeat(3, 1fr); }
  .coming-soon-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: repeat(3, 1fr); }

  /* Opt-in form inline on wider screens */
  .optin-form {
    flex-direction: row;
    align-items: flex-start;
  }
  .optin-form input[type="email"] { flex: 1; }
  .optin-form .btn { width: auto; flex-shrink: 0; }

  /* About photo layout */
  .about-intro {
    flex-direction: row;
    align-items: flex-start;
  }
  .about-photo-placeholder {
    margin: 0;
  }
}

/* ============================================================
   RESPONSIVE — 1024px+
   ============================================================ */
@media (min-width: 1024px) {
  .nav-inner { padding: 0 2rem; }

  /* Hero two-column on desktop */
  .hero-inner {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    text-align: left;
    gap: 3rem;
  }
  .hero-content { text-align: left; }
  .hero h1 { margin-bottom: 1.25rem; }
  .hero p  { margin-left: 0; }
  .hero-btns { justify-content: flex-start; }

  .hero { padding: 120px 2rem 140px; }
}
