/* ============================================================
   WIKTOR ZAREMBA — INTUITIVE MOVER
   styles.css
   ============================================================ */

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

:root {
  --cream:         #F5F0E8;
  --warm-brown:    #5C3D2E;
  --soft-brown:    #8B6355;
  --accent:        #C4834A;
  --forest:        #2D4A35;
  --forest-light:  #4A7056;
  --forest-pale:   #E8F0EA;
  --dark:          #1C1410;
  --text:          #3A2A20;
  --muted:         #7A6558;
  --light-warm:    #EDE5D5;
  --white:         #FDFAF5;

  --font-serif:    'Playfair Display', Georgia, serif;
  --font-sans:     'DM Sans', system-ui, sans-serif;

  --radius-sm:     0.75rem;
  --radius-md:     1rem;
  --radius-lg:     1.5rem;
  --radius-xl:     2rem;
  --radius-pill:   99rem;
}

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

body {
  font-family: var(--font-sans);
  background: var(--cream);
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
}

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

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

ul {
  list-style: none;
}

/* ---- TYPOGRAPHY HELPERS ---- */
.eyebrow {
  display: block;
  font-size: 0.95rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--accent);
  margin-bottom: 0.4rem;
}
.eyebrow--green { color: var(--forest-light); }
.eyebrow--muted { color: rgba(255,255,255,0.5); }

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: var(--dark);
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 1rem;
}
.section-title--light { color: var(--white); }

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.85rem 1.8rem;
  border-radius: var(--radius-pill);
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  border: none;
  transition: background 0.2s ease, color 0.2s ease, transform 0.15s ease;
  text-decoration: none;
}

.btn--primary {
  background: var(--forest);
  color: var(--white);
}
.btn--primary:hover {
  background: var(--accent);
  transform: translateY(-2px);
}

.btn--ghost {
  background: transparent;
  color: var(--warm-brown);
  padding-left: 0;
  transition: gap 0.2s ease;
}
.btn--ghost:hover {
  gap: 0.8rem;
}

.btn--forest {
  background: var(--forest);
  color: var(--white);
}
.btn--forest:hover { background: var(--accent); }

.btn--light {
  background: var(--white);
  color: var(--dark);
}
.btn--light:hover {
  background: var(--accent);
  color: var(--white);
}

.btn--light-lg {
  background: var(--white);
  color: var(--forest);
  font-size: 1rem;
  padding: 1rem 2.2rem;
}
.btn--light-lg:hover {
  background: var(--accent);
  color: var(--white);
}

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem 3rem;
  background: rgba(245, 240, 232, 0.93);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(92, 61, 46, 0.1);
  transition: box-shadow 0.3s;
}
.nav.scrolled {
  box-shadow: 0 2px 20px rgba(45, 74, 53, 0.08);
}

.nav__logo {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  color: var(--warm-brown);
  letter-spacing: 0.01em;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav__links a {
  font-size: 0.82rem;
  color: var(--muted);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: color 0.2s;
}
.nav__links a:hover { color: var(--forest); }

.nav__cta {
  background: var(--forest) !important;
  color: var(--white) !important;
  padding: 0.45rem 1.2rem;
  border-radius: var(--radius-pill);
  font-size: 0.8rem !important;
  transition: background 0.2s !important;
}
.nav__cta:hover { background: var(--accent) !important; }

/* Hamburger */
.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--warm-brown);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}
.nav__hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__hamburger.open span:nth-child(2) { opacity: 0; }
.nav__hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 4rem;
  padding: 6rem 3rem 4rem;
  overflow: visible;
}

.hero__text {
  max-width: 560px;
}

.hero__title {
  font-family: var(--font-serif);
  font-size: clamp(2.8rem, 5.5vw, 4.2rem);
  line-height: 1.12;
  color: var(--dark);
  font-weight: 400;
  margin-bottom: 1.5rem;
}
.hero__title em {
  font-style: italic;
  color: var(--accent);
}

.hero__sub {
  font-size: 1.05rem;
  color: var(--muted);
  font-weight: 300;
  max-width: 540px;
  margin-bottom: 2.5rem;
}

.hero__actions {
  display: flex;
  gap: 1.2rem;
  align-items: center;
  flex-wrap: wrap;
}

.hero__visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: visible;
}

.hero__photo-wrap {
  position: relative;
  width: 380px;
  overflow: visible;
}

.hero__photo {
  width: 100%;
  height: 500px;
  object-fit: cover;
  object-position: center center;
  border-radius: var(--radius-xl);
}

.photo-tags {
  position: absolute;
  top: 1.5rem;
  right: -1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.photo-tag {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 0.45rem 0.9rem;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--warm-brown);
  box-shadow: 0 4px 12px rgba(92, 61, 46, 0.1);
  white-space: nowrap;
}

.float-badge-stack {
  position: absolute;
  top: 25%;
  left: -60px;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  z-index: 2;
}

.float-badge {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 0.65rem 1.1rem;
  box-shadow: 0 8px 24px rgba(45, 74, 53, 0.12);
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--forest);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  white-space: nowrap;
}
.badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--forest-light);
  flex-shrink: 0;
}

/* ============================================================
   ABOUT
   ============================================================ */
.about {
  background: var(--dark);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
  padding: 5rem 3rem;
}

.about p {
  color: rgba(255, 255, 255, 0.65);
  font-weight: 300;
  margin-bottom: 1.2rem;
  font-size: 1rem;
}

.about__quote {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-style: italic;
  color: var(--accent);
  border-left: 2px solid var(--forest-light);
  padding-left: 1.5rem;
  margin: 1.8rem 0;
  line-height: 1.55;
}

.about__values {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
  margin-top: 8rem;
}

.value-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  padding: 2.2rem;
  transition: background 0.2s;
}
.value-card:hover {
  background: rgba(255, 255, 255, 0.08);
}

.value-card__icon {
  margin-bottom: 1rem;
  color: var(--accent);
}
.value-card__icon svg {
  width: 36px;
  height: 36px;
}
.value-card h4 {
  color: var(--white);
  font-size: 1.05rem;
  font-weight: 500;
  margin-bottom: 0.4rem;
}
.value-card p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.9rem;
  margin: 0;
}

/* ============================================================
   PROGRAMS
   ============================================================ */
.programs {
  background: var(--white);
  padding: 7rem 3rem;
}

.programs__intro {
  max-width: 600px;
  margin-bottom: 4rem;
}
.programs__intro p {
  color: var(--muted);
  font-size: 1rem;
}

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

.program-card {
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  transition: transform 0.2s ease;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.program-card .program-details,
.program-card .program-expand {
  width: 100%;
}
.program-card:hover {
  transform: translateY(-5px);
}

/* Foundation card */
.program-card--foundation {
  background: var(--forest-pale);
  border: 1px solid rgba(45, 74, 53, 0.12);
}
/* Journey card */
.program-card--journey {
  background: var(--dark);
}

.program-badge {
  display: inline-block;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 500;
  padding: 0.3rem 0.8rem;
  border-radius: var(--radius-pill);
  margin-bottom: 1.4rem;
  background: var(--forest);
  color: var(--white);
}
.program-badge--accent {
  background: var(--accent);
}

.program-card h3 {
  font-family: var(--font-serif);
  font-size: 1.7rem;
  font-weight: 400;
  margin-bottom: 0.4rem;
  line-height: 1.25;
}
.program-card--foundation h3 { color: var(--dark); }
.program-card--journey h3    { color: var(--white); }

.program-tagline {
  font-size: 0.88rem;
  font-style: italic;
  margin-bottom: 1.5rem;
}
.program-card--foundation .program-tagline { color: var(--forest-light); }
.program-card--journey .program-tagline    { color: rgba(255, 255, 255, 0.6); }

.program-intro {
  font-size: 0.95rem;
  font-style: italic;
  color: var(--warm-brown);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}
.program-card--journey .program-intro { color: rgba(255,255,255,0.75); }

.program-details {
  margin-bottom: 0.5rem;
}
.program-details li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.88rem;
  padding: 0.4rem 0;
  border-bottom: 1px solid rgba(45, 74, 53, 0.1);
}
.program-card--journey .program-details li {
  border-bottom-color: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.75);
}
.check {
  color: var(--forest-light);
  font-weight: 500;
  flex-shrink: 0;
}
.check--accent { color: var(--accent); }

.program-price {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  font-weight: 400;
  margin-top: 1.2rem;
  margin-bottom: 1.5rem;
}
.program-card--foundation .program-price { color: var(--dark); }
.program-card--journey .program-price    { color: var(--white); }
.program-price span {
  font-family: var(--font-sans);
  font-size: 1rem;
  opacity: 0.5;
}

.program-note {
  font-size: 0.77rem;
  margin-top: 0.7rem;
  opacity: 0.5;
}
.program-note--light { color: var(--white); }

/* More info button */
.program-more-btn {
  display: inline-block;
  margin-top: 1.2rem;
  background: none;
  border: 1px solid rgba(45, 74, 53, 0.3);
  border-radius: var(--radius-pill);
  padding: 0.5rem 1.2rem;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--forest);
  cursor: pointer;
  transition: all 0.2s ease;
}
.program-more-btn:hover {
  background: var(--forest);
  color: var(--white);
  border-color: var(--forest);
}
.program-more-btn--light {
  border-color: rgba(255,255,255,0.25);
  color: rgba(255,255,255,0.7);
}
.program-more-btn--light:hover {
  background: rgba(255,255,255,0.1);
  color: var(--white);
}

/* Expandable section */
.program-expand {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.4s ease;
}
.program-expand.open {
  max-height: 2000px;
}
.program-expand__inner {
  padding-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
.expand-block h5 {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--forest-light);
  margin-bottom: 0.5rem;
}
.expand-block--light h5 {
  color: var(--accent);
}
.expand-block p,
.expand-block ul {
  font-size: 0.88rem;
}
.expand-block ul {
  padding-left: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}
.expand-block ul li {
  color: rgba(255,255,255,0.65);
  list-style: disc;
}
.program-card--foundation .expand-block ul li {
  color: var(--text);
}
.program-card--foundation .expand-block p {
  color: var(--muted);
}
.expand-block--light p {
  color: rgba(255,255,255,0.65);
}

/* ============================================================
   HOW IT WORKS
   ============================================================ */
.how {
  background: var(--cream);
  padding: 7rem 3rem;
}

.how__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.step {
  text-align: center;
  padding: 2rem 1rem;
  position: relative;
}

/* Connector line between steps */
.step:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 2.85rem;
  right: -15%;
  width: 30%;
  height: 1px;
  background: var(--forest-light);
  opacity: 0.3;
}

.step__num {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--forest);
  color: var(--white);
  font-family: var(--font-serif);
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.2rem;
}

.step h4 {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  color: var(--dark);
  font-weight: 400;
  margin-bottom: 0.5rem;
}
.step p {
  font-size: 0.85rem;
  color: var(--muted);
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials {
  background: var(--forest-pale);
  padding: 7rem 3rem;
}

.testi__carousel {
  position: relative;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.testi__arrow {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(45, 74, 53, 0.25);
  background: var(--white);
  color: var(--forest);
  font-size: 1.1rem;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.testi__arrow:hover {
  background: var(--forest);
  color: var(--white);
  border-color: var(--forest);
}
.testi__dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
}
.testi__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(45, 74, 53, 0.2);
  cursor: pointer;
  transition: background 0.2s;
}
.testi__dot.active {
  background: var(--forest);
}

.testi__grid {
  display: flex;
  flex-wrap: nowrap;
  align-items: flex-start;
  gap: 1.5rem;
  margin-top: 3rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 1rem;
  scrollbar-width: none;
}
.testi__grid::-webkit-scrollbar { display: none; }

.testi-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  border: 1px solid rgba(45, 74, 53, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  flex: 0 0 340px;
  height: 360px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  scroll-snap-align: start;
}
.testi-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(45, 74, 53, 0.08);
}
.testi-card:has(.testi-expand.open) {
  height: auto;
  overflow: visible;
}

.testi-stars {
  color: var(--accent);
  font-size: 0.9rem;
  margin-bottom: 1rem;
  letter-spacing: 2px;
}

.testi-quote {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-style: normal;
  color: var(--text);
  margin-bottom: 1.3rem;
  line-height: 1.7;
}

.testi-more-btn {
  display: inline;
  background: none;
  border: none;
  padding: 0;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-style: normal;
  font-weight: 500;
  color: var(--forest-light);
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.testi-more-btn:hover { color: var(--forest); }

.testi-expand {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.4s ease;
  width: 100%;
}
.testi-expand.open { max-height: 1000px; }
.testi-expand p {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-style: normal;
  color: var(--text);
  line-height: 1.7;
  margin-top: 1rem;
}

.testi-author {
  margin-top: auto;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(45,74,53,0.08);
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--forest);
}
.testi-role {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  color: var(--muted);
  margin-top: 0.2rem;
}

/* ============================================================
   CTA / CONTACT
   ============================================================ */
.cta {
  background: var(--forest);
  text-align: center;
  padding: 7rem 3rem 4rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.cta h2 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--white);
  font-weight: 400;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.cta p {
  color: rgba(255, 255, 255, 0.65);
  max-width: 500px;
  margin: 0 auto 2.5rem;
  font-size: 1rem;
}

.cta__social {
  margin-top: 3rem;
}
.cta__social a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.75);
  font-size: 0.82rem;
  font-weight: 500;
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: var(--radius-pill);
  padding: 0.45rem 1rem;
  transition: background 0.2s, border-color 0.2s;
  text-decoration: none;
}
.cta__social a:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.6);
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--dark);
  padding: 2.5rem 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.footer__logo {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: var(--white);
}

.footer__links {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.footer__links a {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.4);
  transition: color 0.2s;
}
.footer__links a:hover { color: var(--forest-light); }

.footer__copy {
  color: rgba(255, 255, 255, 0.25);
  font-size: 0.77rem;
}

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

.fade-up {
  opacity: 0;
  animation: fadeUp 0.7s ease forwards;
}
.fade-up-1 { animation-delay: 0.1s; }
.fade-up-2 { animation-delay: 0.25s; }
.fade-up-3 { animation-delay: 0.4s; }
.fade-up-4 { animation-delay: 0.55s; }

/* Scroll-reveal: elements start invisible, JS adds .visible */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}

/* ============================================================
   RESPONSIVE — TABLET
   ============================================================ */
@media (max-width: 1024px) {
  .hero {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }
  .hero__photo-wrap {
    width: 100%;
  }
  .about {
    gap: 3rem;
  }
  .how__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .step:nth-child(2)::after { display: none; }
  .step:nth-child(4)::after { display: none; }
}

/* ============================================================
   RESPONSIVE — MOBILE
   ============================================================ */
@media (max-width: 768px) {
  .nav { padding: 1rem 1.5rem; }
  .nav__links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: var(--cream);
    border-top: 1px solid rgba(92, 61, 46, 0.1);
    padding: 1.5rem 2rem 2rem;
    gap: 1.2rem;
    box-shadow: 0 8px 24px rgba(45, 74, 53, 0.08);
  }
  .nav__links.open { display: flex; }
  .nav__hamburger  { display: flex; }
  .nav__cta        { align-self: flex-start; }

  .hero {
    grid-template-columns: 1fr;
    padding: 5rem 1.5rem 3rem;
    min-height: auto;
  }
  .hero__visual { display: none; } /* hide on mobile */

  .about {
    grid-template-columns: 1fr;
    padding: 4rem 1.5rem;
    gap: 0;
  }
  .about__values { grid-template-columns: 1fr 1fr; }

  .programs        { padding: 4rem 1.5rem; }
  .programs__grid  { grid-template-columns: 1fr; }

  .how             { padding: 4rem 1.5rem; }
  .how__grid       { grid-template-columns: 1fr; }
  .step::after     { display: none !important; }

  .testimonials    { padding: 4rem 1.5rem; }
  .testi__carousel { gap: 0; }
  .testi__arrow    { display: none; }
  .testi__grid     { gap: 1rem; padding: 0 0.25rem; }
  .testi-card      { flex: 0 0 calc(100vw - 3.5rem); }

  .cta             { padding: 4rem 1.5rem 5rem; }
  .cta__btn        { width: 100%; text-align: center; }
  .cta__social     { margin-top: 2rem; }

  .footer {
    flex-direction: column;
    text-align: center;
    padding: 2rem 1.5rem;
  }
  .footer__links { justify-content: center; }
}

@media (max-width: 480px) {
  .about__values { grid-template-columns: 1fr 1fr; gap: 0.75rem; margin-top: 1.5rem; }
  .value-card    { padding: 1rem; }
  .value-card__icon { margin-bottom: 0.5rem; }
  .value-card__icon svg { width: 24px; height: 24px; }
  .value-card h4 { font-size: 0.88rem; margin-bottom: 0.2rem; }
  .value-card p  { font-size: 0.76rem; }
  .hero__title   { font-size: 2.4rem; }
}
