/* ===================================================
   Building with Rikki — one-page site
   =================================================== */

:root {
  --pink-light: #fbe4ee;
  --pink: #f2a7c3;
  --pink-deep: #e36fa0;
  --purple: #a78bc9;
  --purple-deep: #8a67b0;
  --cream: #fdf7f4;
  --white: #ffffff;
  --ink: #3a2e3d;
  --ink-soft: #6b5c6a;
  --border: #f0d9e4;

  --font-body: 'Poppins', sans-serif;
  --font-script: 'Pacifico', cursive;

  --radius: 18px;
  --shadow: 0 12px 30px rgba(160, 100, 140, 0.12);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}

h1, h2, h3 { line-height: 1.2; margin: 0 0 16px; font-weight: 700; }
p { margin: 0 0 16px; color: var(--ink-soft); }

.eyebrow {
  font-family: var(--font-script);
  font-size: 1.4rem;
  color: var(--pink-deep);
  margin: 0 0 8px;
}
.center { text-align: center; }

section { padding: 90px 0; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-block;
  padding: 14px 30px;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  font-size: 0.95rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  border: 2px solid transparent;
}
.btn-primary {
  background: linear-gradient(135deg, var(--pink-deep), var(--purple));
  color: var(--white);
  box-shadow: var(--shadow);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 16px 34px rgba(160, 100, 140, 0.2); }
.btn-ghost {
  background: transparent;
  color: var(--purple-deep);
  border-color: var(--purple);
}
.btn-ghost:hover { background: var(--purple); color: var(--white); }

/* ===== HEADER / NAV ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(253, 247, 244, 0.9);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
}
.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  padding-bottom: 14px;
}
.brand {
  font-family: var(--font-script);
  font-size: 1.5rem;
  color: var(--ink);
  text-decoration: none;
}
.brand span { color: var(--pink-deep); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
}
.nav-links a {
  text-decoration: none;
  color: var(--ink);
  font-weight: 500;
  font-size: 0.95rem;
}
.nav-links a:hover { color: var(--pink-deep); }
.nav-cta {
  background: var(--pink-deep);
  color: var(--white) !important;
  padding: 10px 22px;
  border-radius: 50px;
}
.nav-cta:hover { background: var(--purple-deep); color: var(--white) !important; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.nav-toggle span {
  width: 26px;
  height: 3px;
  background: var(--ink);
  border-radius: 2px;
}

/* ===== HERO ===== */
.hero-banner {
  width: 100%;
  overflow: hidden;
  background: var(--pink-light);
}
.hero-banner img { width: 100%; object-fit: cover; }

.hero-copy {
  text-align: center;
  max-width: 780px;
  padding-top: 60px;
  padding-bottom: 20px;
}
.hero-copy h1 {
  font-size: clamp(1.9rem, 4vw, 2.9rem);
}
.hero-sub { font-size: 1.1rem; }
.hero-actions {
  display: flex;
  gap: 18px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 20px;
}

/* ===== HERO — MOBILE WORDMARK (replaces the banner image under 720px) ===== */
.hero-mobile-brand {
  display: none;
}

@media (max-width: 720px) {
  .hero-banner { display: none; }

  .hero-mobile-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    overflow: hidden;
    text-align: center;
    padding: 56px 24px 44px;
    background:
      radial-gradient(circle at 18% 22%, rgba(242, 167, 195, 0.4), transparent 55%),
      radial-gradient(circle at 84% 18%, rgba(167, 139, 201, 0.35), transparent 50%),
      linear-gradient(180deg, var(--pink-light), var(--cream));
  }

  .hmb-decor {
    position: absolute;
    color: var(--purple);
    opacity: 0.55;
    font-size: 1.3rem;
  }
  .hmb-decor--1 { top: 22px; left: 14%; }
  .hmb-decor--2 { top: 64px; right: 16%; color: var(--pink-deep); font-size: 1.1rem; }
  .hmb-decor--3 { bottom: 20px; right: 12%; }

  .hmb-wordmark { display: flex; flex-direction: column; align-items: center; }

  .hmb-building {
    font-weight: 800;
    font-size: 2.5rem;
    letter-spacing: 1px;
    color: var(--pink-deep);
    text-shadow: 3px 3px 0 rgba(167, 139, 201, 0.22);
  }
  .hmb-with {
    font-family: var(--font-script);
    font-size: 1.4rem;
    color: var(--ink);
    margin-top: -2px;
  }
  .hmb-rikki {
    font-family: var(--font-script);
    font-size: 3.4rem;
    line-height: 1;
    color: var(--purple-deep);
    margin-top: -6px;
  }
  @supports ((-webkit-background-clip: text) or (background-clip: text)) {
    .hmb-rikki {
      background: linear-gradient(135deg, var(--pink-deep), var(--purple-deep));
      -webkit-background-clip: text;
      background-clip: text;
      -webkit-text-fill-color: transparent;
    }
  }

  .hmb-tagline {
    margin: 18px 0 0;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--purple);
    color: var(--white);
    font-weight: 700;
    font-size: 0.75rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    padding: 10px 20px;
    border-radius: 50px;
  }
}

/* ===== MARQUEE ===== */
.marquee {
  background: linear-gradient(90deg, var(--purple-deep), var(--pink-deep));
  overflow: hidden;
  padding: 14px 0;
}
.marquee-track {
  display: flex;
  gap: 14px;
  white-space: nowrap;
  width: max-content;
  animation: scroll-marquee 28s linear infinite;
}
.marquee-track span {
  color: var(--white);
  font-weight: 600;
  letter-spacing: 1px;
  font-size: 0.85rem;
}
@keyframes scroll-marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ===== ABOUT ===== */
.about-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
}
.about-pillars {
  list-style: none;
  padding: 0;
  margin: 24px 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.about-pillars li span {
  display: inline-block;
  padding: 8px 18px;
  background: var(--pink-light);
  color: var(--pink-deep);
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
}
.about-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 36px;
  position: relative;
  border: 1px solid var(--border);
}
.sticky-note {
  background: var(--pink);
  color: var(--white);
  font-family: var(--font-script);
  font-size: 1.3rem;
  padding: 18px;
  border-radius: 10px;
  transform: rotate(-3deg);
  margin-bottom: 30px;
  text-align: center;
}
.sticky-note span { margin-left: 6px; }
.about-quote p {
  font-family: var(--font-script);
  font-size: 1.6rem;
  color: var(--purple-deep);
  margin-bottom: 8px;
}
.signature {
  font-size: 0.85rem;
  color: var(--ink-soft);
}

/* ===== FOCUS AREAS ===== */
.focus { background: var(--white); }
.focus-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 26px;
  margin-top: 50px;
}
.focus-card {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 26px;
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.focus-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}
.focus-icon {
  font-size: 2.2rem;
  margin-bottom: 14px;
}
.focus-card h3 { font-size: 1.1rem; margin-bottom: 10px; }
.focus-card p { font-size: 0.92rem; margin-bottom: 0; }

/* ===== FREEBIES ===== */
.freebies { background: var(--cream); }
.freebies-card {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  background: linear-gradient(135deg, var(--pink-light), var(--white));
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 56px 44px;
  box-shadow: var(--shadow);
}
.freebies-icons {
  display: flex;
  justify-content: center;
  gap: 16px;
  font-size: 2.2rem;
  margin-bottom: 18px;
}
.freebies-sub {
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}
.freebies-actions { margin-top: 6px; }

@media (max-width: 600px) {
  .freebies-card { padding: 40px 24px; }
}

/* ===== YOUTUBE ===== */
.youtube-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 50px;
  align-items: center;
}
.youtube-visual {
  background: linear-gradient(135deg, var(--purple), var(--pink-deep));
  border-radius: var(--radius);
  min-height: 260px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow);
}
.play-badge {
  background: rgba(255,255,255,0.15);
  border: 2px solid rgba(255,255,255,0.5);
  color: var(--white);
  padding: 26px 34px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 14px;
  font-weight: 600;
  backdrop-filter: blur(4px);
}
.play-icon {
  background: var(--white);
  color: var(--pink-deep);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
}

/* ===== NEWSLETTER ===== */
.newsletter {
  background: linear-gradient(135deg, var(--pink-light), var(--cream));
}
.newsletter-inner { max-width: 640px; }
.newsletter-sub { max-width: 480px; margin-left: auto; margin-right: auto; }
.newsletter-form {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 30px;
}
.newsletter-form input {
  flex: 1 1 280px;
  padding: 14px 22px;
  border-radius: 50px;
  border: 2px solid var(--border);
  font-family: var(--font-body);
  font-size: 0.95rem;
  outline: none;
}
.newsletter-form input:focus { border-color: var(--pink); }
.form-note {
  text-align: center;
  margin-top: 14px;
  font-weight: 600;
  color: var(--purple-deep);
  min-height: 1.4em;
}

/* ===== CONNECT ===== */
.social-row {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 36px;
}
.social-pill {
  text-decoration: none;
  padding: 14px 30px;
  border-radius: 50px;
  border: 2px solid var(--purple);
  color: var(--purple-deep);
  font-weight: 600;
  transition: all 0.2s ease;
}
.social-pill:hover {
  background: linear-gradient(135deg, var(--pink-deep), var(--purple));
  color: var(--white);
  border-color: transparent;
}

/* ===== FOOTER ===== */
.site-footer {
  background: var(--ink);
  color: rgba(255,255,255,0.85);
  padding: 50px 0 30px;
  text-align: center;
}
.footer-brand {
  font-size: 1.8rem;
  color: var(--white);
}
.footer-brand span { color: var(--pink); }
.site-footer p { color: rgba(255,255,255,0.65); }
.copyright { font-size: 0.85rem; margin-top: 20px; margin-bottom: 0; }

/* ===== RESPONSIVE ===== */
@media (max-width: 860px) {
  .about-grid, .youtube-grid { grid-template-columns: 1fr; }
  section { padding: 60px 0; }
}

@media (max-width: 720px) {
  .nav-toggle { display: flex; }
  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    align-items: flex-start;
    padding: 20px 24px;
    gap: 18px;
    border-bottom: 1px solid var(--border);
    display: none;
  }
  .nav-links.open { display: flex; }
  .nav-cta { align-self: flex-start; }
}
