/* ---------------------------------------------
   Lemonade Marketing — tokens
--------------------------------------------- */
:root{
  --yellow: #FFD400;
  --yellow-soft: #FFF3C4;
  --ink: #201F1B;
  --ink-70: rgba(32,31,27,0.7);
  --ink-50: rgba(32,31,27,0.5);
  --cream: #FFFDF6;
  --cape: #D5423F;
  --cape-dark: #B93330;
  --leaf: #1F7A4E;
  --line: rgba(32,31,27,0.14);

  --font-display: "Baloo 2", ui-rounded, "Segoe UI", sans-serif;
  --font-body: "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --max: 1160px;
}

*{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }

body{
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

img{ max-width: 100%; display: block; }

h1, h2, h3{
  font-family: var(--font-display);
  color: var(--ink);
  margin: 0 0 0.5em;
  line-height: 1.08;
  font-weight: 700;
  letter-spacing: -0.01em;
}

p{ margin: 0 0 1em; max-width: 62ch; }

a{ color: inherit; }

.wrap{
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 28px;
}

/* ---------------------------------------------
   Buttons
--------------------------------------------- */
.btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  padding: 0.85em 1.6em;
  border-radius: 999px;
  text-decoration: none;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  border: 2px solid transparent;
}
.btn:hover{ transform: translateY(-2px); }
.btn:focus-visible{ outline: 3px solid var(--cape); outline-offset: 3px; }

.btn-ink{ background: var(--ink); color: var(--cream); }
.btn-ink:hover{ box-shadow: 0 8px 20px rgba(32,31,27,0.25); }

.btn-cream{ background: var(--cream); color: var(--cape-dark); }
.btn-cream:hover{ box-shadow: 0 8px 20px rgba(0,0,0,0.18); }

.btn-text{
  background: transparent;
  color: var(--ink);
  border-bottom: 2px solid var(--ink);
  border-radius: 0;
  padding: 0.85em 0.1em;
}
.btn-text:hover{ transform: none; opacity: 0.7; }

.btn-small{ padding: 0.6em 1.3em; font-size: 0.92rem; }

/* ---------------------------------------------
   Header
--------------------------------------------- */
.site-header{
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--cream);
  border-bottom: 2px solid var(--ink);
}

.header-row{
  display: flex;
  align-items: center;
  gap: 24px;
  padding-top: 14px;
  padding-bottom: 14px;
}

.brand{
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--ink);
  margin-right: auto;
}
.brand-mark{
  height: 44px;
  width: auto;
}
.brand-name{
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  line-height: 1.1;
}
.brand-name small{
  font-weight: 600;
  font-size: 0.62em;
  letter-spacing: 0.04em;
  color: var(--ink-70);
}

.site-nav{
  display: flex;
  gap: 28px;
}
.site-nav a{
  text-decoration: none;
  font-weight: 600;
  font-size: 0.96rem;
  color: var(--ink);
  padding-bottom: 3px;
  border-bottom: 2px solid transparent;
}
.site-nav a:hover{ border-color: var(--cape); }

.nav-toggle{
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: 2px solid var(--ink);
  border-radius: 10px;
  cursor: pointer;
}
.nav-toggle span{
  display: block;
  height: 2px;
  width: 20px;
  margin: 0 auto;
  background: var(--ink);
}

/* ---------------------------------------------
   Hero
--------------------------------------------- */
.hero{
  background: var(--yellow);
  border-bottom: 2px solid var(--ink);
  overflow: hidden;
}

.hero-grid{
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 40px;
  padding-top: 64px;
  padding-bottom: 0;
}

.hero-copy h1{
  font-size: clamp(2.4rem, 5vw, 3.6rem);
}

.hero-sub{
  font-size: 1.1rem;
  color: var(--ink-70);
  max-width: 46ch;
}

.hero-actions{
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
  margin-top: 8px;
}

.hero-art{
  display: flex;
  justify-content: center;
  align-items: flex-end;
  height: 100%;
  position: relative;
}
.mascot{
  width: min(100%, 420px);
  transform: rotate(-3deg);
  animation: settle 0.9s cubic-bezier(.2,.8,.2,1) both, float 5s ease-in-out 0.9s infinite;
}
@keyframes settle{
  from{ opacity: 0; transform: translateY(28px) rotate(-3deg); }
  to{ opacity: 1; transform: translateY(0) rotate(-3deg); }
}
@keyframes float{
  0%, 100%{ transform: translateY(0) rotate(-3deg); }
  50%{ transform: translateY(-10px) rotate(-1.5deg); }
}
@media (prefers-reduced-motion: reduce){
  .mascot{ animation: none; }
}

/* ---------------------------------------------
   Hassle section
--------------------------------------------- */
.hassle{
  padding: 88px 0;
  border-bottom: 2px solid var(--ink);
}
.hassle-grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}
.hassle-grid h2{
  font-size: clamp(1.7rem, 3vw, 2.3rem);
}
.hassle-list{
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line);
}
.hassle-list li{
  border-bottom: 1px solid var(--line);
  padding: 20px 0;
  font-size: 1.15rem;
  font-weight: 600;
}

/* ---------------------------------------------
   How it works
--------------------------------------------- */
.how{
  background: var(--yellow-soft);
  padding: 96px 0;
  border-bottom: 2px solid var(--ink);
}
.section-title{
  font-size: clamp(1.7rem, 3vw, 2.3rem);
  margin-bottom: 48px;
  max-width: 20ch;
}
.steps{
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.step-num{
  display: block;
  font-family: var(--font-display);
  font-size: 3.4rem;
  font-weight: 700;
  color: transparent;
  -webkit-text-stroke: 1.5px var(--ink);
  margin-bottom: 8px;
}
.step h3{ font-size: 1.25rem; margin-bottom: 0.4em; }
.step p{ color: var(--ink-70); }

/* ---------------------------------------------
   Channels
--------------------------------------------- */
.channels{
  padding: 80px 0;
  border-bottom: 2px solid var(--ink);
}
.channel-row{
  display: flex;
  flex-wrap: wrap;
  margin-top: 8px;
}
.channel-row span{
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 3vw, 1.9rem);
  padding: 8px 28px;
  border-left: 2px solid var(--ink);
}
.channel-row span:first-child{ padding-left: 0; border-left: none; }

/* ---------------------------------------------
   Fit section
--------------------------------------------- */
.fit{
  padding: 88px 0;
  border-bottom: 2px solid var(--ink);
}
.fit-grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}
.fit-grid h2{ font-size: clamp(1.7rem, 3vw, 2.3rem); }
.fit-grid p{ color: var(--ink-70); font-size: 1.08rem; max-width: 48ch; }

/* ---------------------------------------------
   CTA band
--------------------------------------------- */
.cta-band{
  background: var(--cape);
  color: var(--cream);
  padding: 110px 0;
  clip-path: polygon(0 5%, 100% 0, 100% 95%, 0% 100%);
  margin: -2px 0;
}
.cta-inner{
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.cta-band h2{
  color: var(--cream);
  font-size: clamp(2rem, 4vw, 2.8rem);
  max-width: 16ch;
}
.cta-band p{
  color: rgba(255,253,246,0.85);
  font-size: 1.1rem;
}
.cta-note{
  margin-top: 16px;
  margin-bottom: 0;
  font-size: 0.9rem;
  color: rgba(255,253,246,0.7);
}

/* ---------------------------------------------
   Footer
--------------------------------------------- */
.site-footer{
  background: var(--ink);
  color: var(--cream);
  padding: 40px 0;
}
.footer-row{
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}
.brand-footer{ color: var(--cream); margin-right: 0; }
.brand-mark-footer{ height: 32px; }
.footer-nav{
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
}
.footer-nav a{
  text-decoration: none;
  font-size: 0.92rem;
  color: rgba(255,253,246,0.8);
}
.footer-nav a:hover{ color: var(--cream); }
.footer-copy{
  font-size: 0.85rem;
  color: rgba(255,253,246,0.55);
}

/* ---------------------------------------------
   Responsive
--------------------------------------------- */
@media (max-width: 880px){
  .site-nav{
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--cream);
    border-bottom: 2px solid var(--ink);
    flex-direction: column;
    padding: 18px 28px 26px;
    display: none;
    gap: 14px;
  }
  .site-nav.open{ display: flex; }
  .nav-toggle{ display: flex; }
  .header-cta{ display: none; }

  .hero-grid{
    grid-template-columns: 1fr;
    text-align: left;
    padding-top: 44px;
  }
  .hero-art{ margin-top: 30px; }
  .mascot{ width: min(70%, 300px); margin: 0 auto; }

  .hassle-grid, .fit-grid{
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .steps{
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .channel-row span{
    border-left: none;
    padding: 6px 0;
    width: 100%;
  }
  .cta-band{ padding: 80px 0; clip-path: polygon(0 3%, 100% 0, 100% 97%, 0% 100%); }
}

@media (max-width: 520px){
  .wrap{ padding: 0 20px; }
}

/* ---------------------------------------------
   Channel groups
--------------------------------------------- */
.channel-label{
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-70);
  margin: 36px 0 10px;
}
.channel-label:first-of-type{ margin-top: 0; }
.channel-row{ row-gap: 6px; }
.channel-row span{ font-size: clamp(1.05rem, 2vw, 1.4rem); }

/* ---------------------------------------------
   Pricing
--------------------------------------------- */
.pricing{
  background: var(--yellow-soft);
  padding: 96px 0;
  border-bottom: 2px solid var(--ink);
}
.pricing .section-title{ margin-bottom: 12px; }
.pricing-sub{ color: var(--ink-70); margin-bottom: 40px; }
.plans{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
}
.plan{
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--cream);
  border: 2px solid var(--ink);
  border-radius: 20px;
  padding: 32px 28px;
}
.plan-featured{ background: var(--yellow); box-shadow: 8px 8px 0 var(--ink); }
.plan-tag{
  position: absolute;
  top: -14px;
  left: 24px;
  background: var(--ink);
  color: var(--cream);
  font-family: var(--font-display);
  font-size: 0.8rem;
  padding: 3px 12px;
  border-radius: 999px;
}
.plan h3{ font-size: 1.4rem; margin-bottom: 4px; }
.price{
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 700;
  line-height: 1;
  margin: 8px 0 12px;
}
.price small{ font-size: 1rem; font-weight: 600; color: var(--ink-70); }
.plan-for{ color: var(--ink-70); }
.plan ul{ list-style: none; margin: 0 0 28px; padding: 0; flex: 1; }
.plan li{
  padding: 9px 0 9px 26px;
  border-top: 1px solid var(--line);
  position: relative;
  font-size: 0.96rem;
}
.plan li::before{
  content: "";
  position: absolute;
  left: 4px;
  top: 16px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--leaf);
}
.pricing-note{ margin-top: 32px; color: var(--ink-70); font-size: 0.95rem; }

/* ---------------------------------------------
   Intake form
--------------------------------------------- */
.intake{
  width: 100%;
  max-width: 760px;
  margin-top: 24px;
  background: var(--cream);
  color: var(--ink);
  border: 2px solid var(--ink);
  border-radius: 20px;
  padding: 32px;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.intake .row{ display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.intake label{ display: flex; flex-direction: column; gap: 6px; font-weight: 600; font-size: 0.92rem; }
.intake input[type="text"], .intake input[type="email"], .intake input[type="tel"],
.intake select, .intake textarea{
  font: inherit;
  font-weight: 500;
  padding: 11px 13px;
  border: 2px solid var(--ink);
  border-radius: 10px;
  background: #fff;
  color: var(--ink);
  width: 100%;
}
.intake input:focus-visible, .intake select:focus-visible, .intake textarea:focus-visible{
  outline: 3px solid var(--cape);
  outline-offset: 2px;
}
.intake fieldset{ border: 2px solid var(--line); border-radius: 12px; padding: 14px 16px 16px; margin: 0; min-width: 0; }
.intake legend{ font-weight: 700; font-size: 0.92rem; padding: 0 6px; }
.checks{ display: flex; flex-wrap: wrap; gap: 8px 18px; }
.intake .checks label{ flex-direction: row; align-items: center; gap: 7px; font-weight: 500; }
.intake input[type="checkbox"]{ width: 17px; height: 17px; accent-color: var(--cape); }
.intake .btn{ align-self: flex-start; cursor: pointer; background: var(--ink); color: var(--cream); }
.intake .btn[disabled]{ opacity: 0.6; cursor: wait; transform: none; }
.hp{ position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.cta-band .form-status{ margin: 0; min-height: 1.5em; font-weight: 600; color: var(--ink); font-size: 0.95rem; }
.cta-band .form-status.ok{ color: var(--leaf); }
.cta-band .form-status.err{ color: var(--cape-dark); }
.cta-band .intake label{ color: var(--ink); }

@media (max-width: 880px){
  .plans{ grid-template-columns: 1fr; }
  .plan-featured{ box-shadow: 5px 5px 0 var(--ink); }
  .intake .row{ grid-template-columns: 1fr; }
  .intake{ padding: 22px 18px; }
  .pricing{ padding: 72px 0; }
}

/* ---------------------------------------------
   Web development page
--------------------------------------------- */
.site-nav a.active{ border-color: var(--cape); }
.pricing-first{ background: var(--cream); }
.care{
  background: var(--yellow-soft);
  padding: 96px 0;
  border-bottom: 2px solid var(--ink);
}
.care .section-title{ margin-bottom: 12px; }
.care .plan{ background: var(--cream); }
.care .plan-featured{ background: var(--yellow); }
.price .from{ font-size: 0.95rem; font-weight: 600; color: var(--ink-70); }
.addon-label{ margin-top: 56px; }
.addons{
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 48px;
}
.addons li{
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 0;
  border-top: 1px solid var(--line);
  font-weight: 600;
}
.addons b{ font-family: var(--font-display); white-space: nowrap; }
@media (max-width: 880px){
  .addons{ grid-template-columns: 1fr; }
  .care{ padding: 72px 0; }
}
.how-plain{ background: var(--cream); }
section[id]{ scroll-margin-top: 70px; }

/* ---------------------------------------------
   Account access + weekly list
--------------------------------------------- */
.access{
  background: var(--cream);
  padding: 96px 0;
  border-bottom: 2px solid var(--ink);
}
.access .section-title{ margin-bottom: 12px; max-width: 24ch; }
.plans-two{ grid-template-columns: repeat(2, 1fr); }
.plans-two .plan-for{ font-weight: 600; color: var(--ink); }
.week{
  padding: 88px 0;
  border-bottom: 2px solid var(--ink);
}
.week h2{ font-size: clamp(1.7rem, 3vw, 2.3rem); }
@media (max-width: 880px){
  .plans-two{ grid-template-columns: 1fr; }
  .access{ padding: 72px 0; }
}
