@import url('../../colors_and_type.css');

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body { background: var(--rooted-cream); color: var(--fg1); font-family: var(--font-sans); font-size: 16px; line-height: 1.55; }
a { color: inherit; text-decoration: none; }

/* ===== BUTTONS ===== */
.rt-btn { display:inline-flex; align-items:center; justify-content:center; font-family:var(--font-sans); font-size:15px; font-weight:500; padding:10px 22px; border-radius:8px; border:0; cursor:pointer; transition: background 180ms, transform 120ms, color 180ms; line-height: 1; }
.rt-btn:active { transform: scale(.98); }
.rt-btn--lg { font-size: 16px; padding: 16px 28px; }
.rt-btn--pill { border-radius: 999px; }
.rt-btn--primary { background: var(--rooted-purple); color: #fff; }
.rt-btn--primary:hover { background: #5325A8; }
.rt-btn--cream { background: var(--rooted-cream); color: var(--rooted-brown); }
.rt-btn--cream:hover { background: #fff; }
.rt-btn--outline-cream { background: transparent; color: var(--rooted-cream); box-shadow: inset 0 0 0 1.5px var(--rooted-cream); }
.rt-btn--outline-cream:hover { background: rgba(237,237,227,.12); }
.rt-btn--ghost { background: transparent; color: var(--rooted-brown); }
.rt-btn--ghost:hover { background: rgba(38,28,26,.06); }

/* ===== EYEBROWS ===== */
.rt-eyebrow { display:inline-block; font-size:12px; font-weight:700; letter-spacing:.12em; text-transform:uppercase; color: var(--rooted-purple); line-height:1; }
.rt-eyebrow--on-dark { color: var(--rooted-cream); opacity: .9; }

/* ===== NAV ===== */
.rt-nav { max-width: 1240px; margin: 0 auto; display: flex; align-items: center; padding: 22px 40px; gap: 32px; }
.rt-nav__brand img { height: 24px; display: block; }
.rt-nav__links { display: flex; gap: 28px; margin-left: 24px; }
.rt-nav__link { font-size: 14px; font-weight: 500; color: var(--fg2); }
.rt-nav__link:hover { color: var(--fg1); }
.rt-nav__link.is-active { color: var(--fg1); }
.rt-nav__actions { margin-left: auto; display: flex; gap: 8px; align-items: center; }

/* ===== HERO ===== */
.rt-hero { background: var(--rooted-purple); color: var(--rooted-cream); position: relative; overflow: hidden; }
.rt-hero__inner { max-width: 1240px; margin: 0 auto; padding: 80px 40px 96px; display: grid; grid-template-columns: 1.05fr 1fr; gap: 64px; align-items: center; position: relative; }
.rt-hero__copy { }
.rt-hero__copy .rt-eyebrow { margin-bottom: 24px; }
.rt-hero__title { font-size: 68px; font-weight: 700; line-height: 1.04; letter-spacing: -0.025em; margin: 0 0 24px; color: var(--rooted-cream); }
.rt-hero__title em { font-style: normal; font-weight: 700; color: var(--rooted-pink); }
.rt-hero__body { font-size: 19px; line-height: 1.5; max-width: 500px; margin: 0 0 36px; color: var(--rooted-cream); opacity: .92; }
.rt-hero__actions { display: flex; gap: 12px; flex-wrap: wrap; }
.rt-hero__photo {
  aspect-ratio: 4/5;
  border-radius: 20px;
  overflow: hidden;
  background: var(--rooted-cream);
  box-shadow: 0 30px 60px rgba(0,0,0,.18);
}
.rt-hero__photo img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* ===== VALUE PROPS ===== */
.rt-values { max-width: 1240px; margin: 0 auto; padding: 96px 40px; }
.rt-values__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 48px; }
.rt-values__item .rt-eyebrow { margin-bottom: 16px; }
.rt-values__h { font-size: 28px; font-weight: 700; letter-spacing: -0.015em; margin: 0 0 12px; color: var(--fg1); line-height: 1.2; }
.rt-values__p { font-size: 16px; line-height: 1.55; color: var(--fg2); margin: 0; }

/* ===== PROGRAMS ===== */
.rt-programs { background: var(--rooted-pink-light); padding: 96px 40px; }
.rt-programs__head { max-width: 1240px; margin: 0 auto 48px; }
.rt-programs__head .rt-eyebrow { margin-bottom: 16px; }
.rt-programs__h { font-size: 52px; font-weight: 700; letter-spacing: -0.02em; color: var(--fg1); margin: 0; line-height: 1.05; }
.rt-programs__grid { max-width: 1240px; margin: 0 auto; display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.rt-program { display: block; padding: 36px 32px; border-radius: 20px; transition: transform 180ms, box-shadow 180ms; }
.rt-program:hover { transform: translateY(-3px); box-shadow: 0 16px 32px rgba(38,28,26,.08); }
.rt-program--cream { background: var(--rooted-cream); color: var(--fg1); }
.rt-program--purple { background: var(--rooted-purple); color: var(--rooted-cream); }
.rt-program .rt-eyebrow { margin-bottom: 16px; }
.rt-program--purple .rt-eyebrow { color: var(--rooted-pink); }
.rt-program__h { font-size: 26px; font-weight: 700; margin: 0 0 12px; line-height: 1.2; letter-spacing: -0.015em; }
.rt-program__p { font-size: 15px; line-height: 1.55; margin: 0 0 24px; opacity: .9; }
.rt-program--cream .rt-program__p { color: var(--fg2); }
.rt-program__cta { font-size: 14px; font-weight: 600; }
.rt-program--cream .rt-program__cta { color: var(--rooted-purple); }

/* ===== MISSION BAND ===== */
.rt-mission { display: grid; grid-template-columns: 1fr 1fr; min-height: 520px; background: var(--rooted-brown); color: var(--rooted-cream); position: relative; overflow: hidden; }
.rt-mission::before {
  content: ""; position: absolute;
  left: -120px; top: -120px;
  width: 380px; height: 380px;
  opacity: 0.06;
  filter: invert(1);
  pointer-events: none;
}
.rt-mission__media {
  padding: 48px;
  display: flex; align-items: center; justify-content: center;
}
.rt-mission__media img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  border-radius: 20px;
}
.rt-mission__copy { padding: 72px 64px; display: flex; flex-direction: column; justify-content: center; max-width: 640px; }
.rt-mission__copy .rt-eyebrow { margin-bottom: 24px; }
.rt-mission__quote { font-size: 36px; font-weight: 500; line-height: 1.25; letter-spacing: -0.01em; margin: 0 0 32px; }
.rt-mission__sign { display: flex; align-items: center; gap: 12px; font-size: 14px; opacity: .85; }
.rt-mission__sign img { height: 28px; width: auto; }

/* ===== TESTIMONIAL ===== */
.rt-testimonial { display: grid; grid-template-columns: 1fr 1fr; background: var(--rooted-cream); min-height: 520px; }
.rt-testimonial__media {
  padding: 48px;
  display: flex; align-items: center; justify-content: center;
}
.rt-testimonial__media img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  border-radius: 20px;
}
.rt-testimonial__copy { padding: 72px 64px; display: flex; flex-direction: column; justify-content: center; }
.rt-testimonial__copy .rt-eyebrow { margin-bottom: 24px; }
.rt-testimonial__quote { font-size: 30px; font-weight: 500; line-height: 1.3; letter-spacing: -0.01em; margin: 0 0 24px; color: var(--fg1); }
.rt-testimonial__attr { font-size: 15px; color: var(--fg2); }
.rt-testimonial__attr strong { color: var(--fg1); font-weight: 700; }

/* ===== CTA ===== */
.rt-cta { background: var(--rooted-purple); color: var(--rooted-cream); padding: 96px 40px; text-align: center; position: relative; overflow: hidden; }
.rt-cta__inner { max-width: 680px; margin: 0 auto; position: relative; }
.rt-cta__inner .rt-eyebrow { margin-bottom: 20px; }
.rt-cta__h { font-size: 48px; font-weight: 700; letter-spacing: -0.02em; margin: 0 0 16px; line-height: 1.1; color: var(--rooted-cream); }
.rt-cta__p { font-size: 18px; line-height: 1.55; margin: 0 0 32px; opacity: .9; }
.rt-cta__form { display: flex; gap: 8px; justify-content: center; flex-wrap: wrap; }
.rt-cta__input { flex: 1 1 240px; max-width: 320px; font-family: var(--font-sans); font-size: 16px; padding: 16px 20px; border-radius: 999px; border: 1.5px solid rgba(237,237,227,.35); background: transparent; color: var(--rooted-cream); outline: none; }
.rt-cta__input::placeholder { color: rgba(237,237,227,.6); }
.rt-cta__input:focus { border-color: var(--rooted-cream); }
.rt-cta__ok { margin-top: 20px; font-size: 15px; color: var(--rooted-pink-light); }

/* ===== BRAND MOMENT ===== */
.rt-moment { background: var(--rooted-pink-light); padding: 96px 40px; }
.rt-moment__inner { max-width: 1240px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1.1fr; gap: 64px; align-items: center; }
.rt-moment__copy .rt-eyebrow { margin-bottom: 20px; }
.rt-moment__h { font-size: 44px; font-weight: 700; letter-spacing: -0.02em; line-height: 1.1; margin: 0 0 20px; color: var(--fg1); }
.rt-moment__p { font-size: 17px; line-height: 1.55; color: var(--fg2); margin: 0; max-width: 440px; }
.rt-moment__art img { width: 100%; height: auto; display: block; }

/* ===== FOOTER ===== */
.rt-footer { background: var(--rooted-brown); color: var(--rooted-cream); padding: 72px 40px 24px; }
.rt-footer__top { max-width: 1240px; margin: 0 auto; display: grid; grid-template-columns: 1.2fr 2fr; gap: 64px; padding-bottom: 48px; border-bottom: 1px solid rgba(237,237,227,.15); }
.rt-footer__brand img { height: 28px; margin-bottom: 16px; }
.rt-footer__brand p { font-size: 14px; line-height: 1.5; opacity: .7; max-width: 280px; margin: 0; }
.rt-footer__cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.rt-footer__col .rt-eyebrow { margin-bottom: 16px; }
.rt-footer__col ul { list-style: none; padding: 0; margin: 0; }
.rt-footer__col li { margin-bottom: 10px; }
.rt-footer__col a { font-size: 14px; color: var(--rooted-cream); opacity: .75; }
.rt-footer__col a:hover { opacity: 1; }
.rt-footer__bar { max-width: 1240px; margin: 0 auto; padding-top: 20px; display: flex; justify-content: space-between; font-size: 12px; opacity: .55; }
