/* ==========================================================================
   Little Bear Labs — tokens
   ========================================================================== */
:root {
  --cream:        #FBF6EE;
  --cream-warm:   #FDEBCE;
  --honey-pale:   #FBEAD0;
  --honey:        #F2A63B;
  --honey-dark:   #E28A24;

  --navy:         #1E3A5F;
  --navy-deep:    #16304F;

  --ink-1:        #1E3A5F;
  --ink-2:        #3E5A78;
  --ink-3:        #5A7290;

  --on-dark-3:    #6E8BA6;
  --on-dark-link: #C7D6E1;

  --wrap:         1120px;
  --radius-card:  22px;
  --shadow-card:  0 10px 30px rgba(30, 58, 95, .07);
}

/* ==========================================================================
   Base
   ========================================================================== */
* { box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 84px; }

body {
  margin: 0;
  font-family: 'Nunito', system-ui, -apple-system, 'Segoe UI', sans-serif;
  color: var(--ink-1);
  background: var(--cream);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 { font-family: 'Baloo 2', 'Nunito', system-ui, cursive; margin: 0; line-height: 1.05; }
p  { margin: 0; }
a  { color: inherit; text-decoration: none; }
img { max-width: 100%; }

:focus-visible {
  outline: 3px solid var(--honey-dark);
  outline-offset: 3px;
  border-radius: 6px;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 8px;
  z-index: 200;
  background: #fff;
  color: var(--navy);
  font-weight: 700;
  padding: 10px 18px;
  border-radius: 999px;
}
.skip-link:focus { left: 16px; }

.wrap { max-width: var(--wrap); margin: 0 auto; }
.wrap--narrow { max-width: 720px; text-align: center; }

/* ==========================================================================
   Shared type + buttons
   ========================================================================== */
.eyebrow {
  display: inline-block;
  font-weight: 800;
  font-size: 13px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--honey-dark);
}
.eyebrow--pill { background: var(--honey-pale); padding: 7px 14px; border-radius: 999px; }

.h2 {
  font-size: clamp(32px, 4.4vw, 44px);
  font-weight: 800;
  color: var(--ink-1);
  margin-top: 14px;
  letter-spacing: -.01em;
}

.accent { color: var(--honey-dark); }

/* ==========================================================================
   Nav
   ========================================================================== */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 14px 40px;
  background: rgba(251, 246, 238, .82);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(30, 58, 95, .08);
}
.nav__brand { display: flex; align-items: center; gap: 12px; }
.nav__brand img { width: 44px; height: 44px; object-fit: contain; }
.nav__brand span {
  font-family: 'Baloo 2', cursive;
  font-weight: 800;
  font-size: 20px;
  letter-spacing: -.01em;
}

/* ==========================================================================
   Hero
   ========================================================================== */
.hero {
  position: relative;
  overflow: hidden;
  background: radial-gradient(1200px 700px at 78% 30%, var(--cream-warm) 0%, var(--cream) 60%);
  padding: 76px 40px 96px;
}
.hero__inner {
  position: relative;
  z-index: 1;
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 48px;
  align-items: center;
}
.hero__title {
  font-size: clamp(48px, 7.4vw, 74px);
  font-weight: 800;
  margin: 22px 0 0;
  letter-spacing: -.02em;
}
.hero__lead {
  font-size: clamp(18px, 2.2vw, 20px);
  line-height: 1.5;
  color: var(--ink-2);
  margin-top: 22px;
  max-width: 480px;
  font-weight: 500;
}
.hero__art {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: min(420px, 100%);
  aspect-ratio: 1;
  margin: 0 auto;
}
.hero__glow {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: radial-gradient(circle at 50% 45%, #FBD79A 0%, #F6C877 45%, rgba(246, 200, 119, 0) 72%);
}
.hero__art img {
  position: relative;
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 24px 40px rgba(122, 82, 48, .28));
  animation: lbFloatSlow 9s ease-in-out infinite;
}

.hero__dot { position: absolute; border-radius: 50%; }
.hero__dot--a { top: 120px; right: 120px; width: 18px; height: 18px; background: var(--honey);  opacity: .5; animation: lbFloat 6s ease-in-out infinite; }
.hero__dot--b { top: 340px; right: 420px; width: 12px; height: 12px; background: #9DBBCB;      opacity: .6; animation: lbFloatSlow 8s ease-in-out infinite; }
.hero__dot--c { bottom: 80px; right: 260px; width: 26px; height: 26px; background: var(--honey); opacity: .25; animation: lbFloatSlow 7s ease-in-out infinite; }

@keyframes lbFloat     { 0%, 100% { transform: translateY(0); }  50% { transform: translateY(-14px); } }
@keyframes lbFloatSlow { 0%, 100% { transform: translateY(0); }  50% { transform: translateY(-22px); } }

/* ==========================================================================
   Sections
   ========================================================================== */
.section { padding: 92px 40px; }
.section--cream { background: var(--cream); }
.section--honey {
  background: radial-gradient(900px 500px at 50% 0%, var(--cream-warm) 0%, var(--cream) 60%);
  border-top: 1px solid rgba(30, 58, 95, .08);
}

.section__head { max-width: 640px; margin: 0 auto; text-align: center; }
.section__lead {
  font-size: 18px;
  line-height: 1.6;
  color: var(--ink-2);
  margin-top: 16px;
  font-weight: 500;
}

/* --- What we do cards --- */
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 52px;
}
.card {
  background: #fff;
  border: 1px solid rgba(30, 58, 95, .08);
  border-radius: var(--radius-card);
  padding: 32px 28px;
  box-shadow: var(--shadow-card);
}
.card__icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--honey-pale);
  color: var(--honey-dark);
  display: flex;
  align-items: center;
  justify-content: center;
}
.card__icon svg { width: 26px; height: 26px; }
.card__title { font-size: 21px; font-weight: 700; margin-top: 20px; }
.card__body  { font-size: 16px; line-height: 1.55; color: var(--ink-3); margin-top: 10px; font-weight: 500; }

/* --- Workshop --- */
.pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 28px;
  background: #fff;
  border: 1px solid rgba(30, 58, 95, .1);
  border-radius: 999px;
  padding: 10px 18px;
  font-weight: 700;
  font-size: 15px;
  color: #37567A;
}
.pill__dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--honey);
  box-shadow: 0 0 0 4px rgba(242, 166, 59, .22);
}

/* ==========================================================================
   Footer
   ========================================================================== */
.footer {
  background: var(--navy-deep);
  color: var(--on-dark-link);
  padding: 56px 40px 40px;
}
.footer__top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 32px;
  flex-wrap: wrap;
}
.footer__about { max-width: 340px; }
.footer__about p { font-size: 15px; line-height: 1.55; margin-top: 14px; font-weight: 500; color: #AEC4D5; }
.footer__brand { display: flex; align-items: center; gap: 12px; }
.footer__brand img { width: 44px; height: 44px; object-fit: contain; }
.footer__brand span { font-family: 'Baloo 2', cursive; font-weight: 800; font-size: 19px; color: #fff; }

.footer__cols { display: flex; gap: 64px; flex-wrap: wrap; }
.footer__heading {
  font-family: 'Nunito', sans-serif;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--on-dark-3);
}
.footer__links { display: flex; flex-direction: column; gap: 10px; margin-top: 14px; }
.footer__links a { font-size: 15px; font-weight: 600; color: var(--on-dark-link); }
.footer__links a:hover { color: var(--honey); }

.footer__legal {
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, .1);
  font-size: 13px;
  font-weight: 500;
  color: var(--on-dark-3);
}

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 960px) {
  .hero__inner { grid-template-columns: 1fr; gap: 40px; text-align: center; }
  .hero__lead, .hero__art { margin-left: auto; margin-right: auto; }
  .hero__art { width: min(320px, 80%); }
  .cards { grid-template-columns: 1fr; max-width: 520px; margin-inline: auto; }
}

@media (max-width: 720px) {
  html { scroll-padding-top: 76px; }
  .nav { padding: 12px 20px; }
  .hero { padding: 48px 20px 64px; }
  .section { padding: 64px 20px; }
  .footer { padding: 44px 20px 32px; }
  .footer__cols { gap: 36px; }
  .hero__dot { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
}
