/* ═══════════════════════════════════════════════════
   JANI TORR — style.css  (clean build)
═══════════════════════════════════════════════════ */

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
ul { list-style: none; }
a  { text-decoration: none; }

/* ── TOKENS ── */
:root {
  --red:    #e63232;
  --blue:   #5bc8f5;
  --ink:    #1a1a1a;
  --bg:     #f0f0ec;
  --banner: #5bc8f5;
  --f-bubble: 'Fuzzy Bubbles', cursive;
  --f-hand:   'Patrick Hand', cursive;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  font-family: var(--f-hand);
  color: var(--ink);
  overflow-x: hidden;
  animation: pageIn .4s ease both;
}

@keyframes pageIn { from { opacity: 0; } to { opacity: 1; } }

/* ─────────────────────────────────────────
   INTRO OVERLAY  (mobile tap-to-enter)
───────────────────────────────────────── */

.intro-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--bg);
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.intro-overlay.active { display: flex; }

.intro-overlay.fade-out {
  animation: fadeOut .7s ease forwards;
}

@keyframes fadeOut { to { opacity: 0; pointer-events: none; } }

/* Stars behind the intro card */
.intro-stars {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.intro-star {
  position: absolute;
  animation: starBounce 2.8s ease-in-out infinite;
  opacity: 0.8;
}

.intro-star:nth-child(1)  { top:  7%; left:  5%; animation-duration: 2.6s; }
.intro-star:nth-child(2)  { top:  4%; left: 28%; animation-duration: 3.1s; animation-delay: .3s; }
.intro-star:nth-child(3)  { top:  6%; left: 55%; animation-duration: 2.4s; animation-delay: .6s; }
.intro-star:nth-child(4)  { top:  3%; left: 80%; animation-duration: 3.4s; animation-delay: .1s; }
.intro-star:nth-child(5)  { top: 20%; left:  2%; animation-duration: 2.9s; animation-delay: .8s; }
.intro-star:nth-child(6)  { top: 18%; left: 92%; animation-duration: 2.7s; animation-delay: .4s; }
.intro-star:nth-child(7)  { top: 35%; left: 10%; animation-duration: 3.2s; animation-delay: .2s; }
.intro-star:nth-child(8)  { top: 38%; left: 82%; animation-duration: 2.5s; animation-delay: .7s; }
.intro-star:nth-child(9)  { top: 52%; left:  4%; animation-duration: 3.0s; animation-delay: .5s; }
.intro-star:nth-child(10) { top: 50%; left: 90%; animation-duration: 2.8s; animation-delay: .9s; }
.intro-star:nth-child(11) { top: 65%; left: 20%; animation-duration: 3.3s; animation-delay: .15s; }
.intro-star:nth-child(12) { top: 68%; left: 68%; animation-duration: 2.6s; animation-delay: .55s; }
.intro-star:nth-child(13) { top: 80%; left:  8%; animation-duration: 2.9s; animation-delay: .35s; }
.intro-star:nth-child(14) { top: 78%; left: 45%; animation-duration: 3.1s; animation-delay: .75s; }
.intro-star:nth-child(15) { top: 82%; left: 85%; animation-duration: 2.7s; animation-delay: .2s; }
.intro-star:nth-child(16) { top: 92%; left: 33%; animation-duration: 3.0s; animation-delay: .6s; }
.intro-star:nth-child(17) { top: 90%; left: 72%; animation-duration: 2.4s; animation-delay: .4s; }
.intro-star:nth-child(18) { top: 44%; left: 44%; animation-duration: 3.5s; animation-delay: 1s; }

/* The actual card */
.intro-card {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  border: 2.5px solid var(--ink);
  border-radius: 28px;
  box-shadow: 5px 5px 0 var(--ink);
  padding: 40px 52px;
  background: var(--bg);
}

.intro-title {
  font-family: var(--f-bubble);
  font-weight: 700;
  font-size: 2.8rem;
  color: var(--ink);
  letter-spacing: 0.06em;
  text-align: center;
  animation: greetingBob 3s ease-in-out infinite;
}

.intro-sub {
  font-family: var(--f-hand);
  font-size: 1.3rem;
  color: var(--red);
  letter-spacing: 0.12em;
  text-align: center;
  animation: greetingBob 3.5s ease-in-out infinite .4s;
}

.intro-tap-hint {
  font-family: var(--f-hand);
  font-size: 1rem;
  color: var(--ink);
  opacity: 0.5;
  margin-top: 8px;
  text-align: center;
  animation: floatDeco 2.5s ease-in-out infinite;
}

/* ─────────────────────────────────────────
   PAGE WRAPPER
───────────────────────────────────────── */

.page-wrapper {
  width: min(96vw, 1600px);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  position: relative;
}

/* ─────────────────────────────────────────
   NAVBAR
───────────────────────────────────────── */

.navbar {
  margin: 36px 60px 0;
  border: 2px solid var(--ink);
  border-radius: 28px;
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  column-gap: clamp(12px, 2.2vw, 28px);
  padding: 18px clamp(14px, 2vw, 28px) 18px 10px;
  background: var(--bg);
  box-shadow: 2.5px 2.5px 0 var(--ink);
  min-height: 92px;
  flex-shrink: 0;
  overflow: visible;
}

/* ─────────────────────────────────────────
   LOGO
───────────────────────────────────────── */

/* logo doubles as a home link — keep identical layout */
a.nav-logo-wrap { text-decoration: none; display: block; }

.nav-logo-wrap {
  position: relative;
  z-index: 100;
  flex-shrink: 0;
  grid-column: 1;
  justify-self: start;
  width: 320px;
  height: 150px;
}

.nav-logo-img {
  width: 530px;
  display: block;
  mix-blend-mode: multiply;
  margin-top: -80px;
  margin-left: 15px;
}

/* ─────────────────────────────────────────
   NAV LINKS
───────────────────────────────────────── */

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(24px, 3vw, 70px);
  grid-column: 2;
  justify-self: center;
  min-width: 0;
  width: max-content;
  max-width: 100%;
  flex-wrap: nowrap;
  margin-left: 0;
}

.nav-link {
  font-family: var(--f-bubble);
  font-weight: 1000;
  font-size: clamp(1.02rem, 0.88rem + 0.75vw, 1.92rem);
  letter-spacing: 0.085em;
  color: var(--ink);
  transition: color .12s;
  white-space: nowrap;
  min-width: 0;
  flex-shrink: 1;
  position: relative;
}

.nav-link.active {
  color: var(--red);
  text-decoration: underline;
  text-underline-offset: 4px;
  text-decoration-thickness: 2px;
}

.nav-link:not(.active)::after {
  content: '';
  position: absolute;
  left: 0; bottom: -2px;
  width: 0; height: 2px;
  background: var(--ink);
  border-radius: 1px;
  transition: width .16s;
}

.nav-link:not(.active):hover { color: #333; }
.nav-link:not(.active):hover::after { width: 100%; }

/* hamburger — hidden on desktop */
.menu-toggle {
  display: none;
  background: transparent;
  border: 2px solid var(--ink);
  border-radius: 14px;
  padding: 6px 12px;
  font-size: 1.6rem;
  font-family: var(--f-bubble);
  cursor: pointer;
  color: var(--ink);
  box-shadow: 2px 2px 0 var(--ink);
  transition: transform .15s ease;
}
.menu-toggle:hover { transform: translateY(-2px); }

/* ─────────────────────────────────────────
   HERO BODY
───────────────────────────────────────── */

.hero-body {
  display: grid;
  grid-template-columns: 240px 1fr 520px;
  align-items: start;
  flex: 1;
  padding: 0 40px 0;
  margin-top: -10px;
  overflow: visible;
  position: relative;
}

/* ─────────────────────────────────────────
   LEFT CHARACTER
───────────────────────────────────────── */

.col-left {
  align-self: end;
  padding-left: 4px;
  position: relative;
}

.left-stars {
  position: absolute;
  inset: 0 0 8% 0;
  pointer-events: none;
  z-index: 2;
}

.left-stars .star-mini { position: absolute; display: block; opacity: 0.95; }
.left-stars .star-mini:nth-child(1) { top:  4%; left: 18%; }
.left-stars .star-mini:nth-child(2) { top: 22%; left:  4%; }
.left-stars .star-mini:nth-child(3) { top: 48%; left: 20%; }
.left-stars .star-mini:nth-child(4) { top:  8%; left: 52%; }

.char-wave {
  display: block;
  width: 400px;
  mix-blend-mode: multiply;
  animation: floatWave 4s ease-in-out infinite;
  transform-origin: bottom center;
  position: relative;
  z-index: 3;
}

@keyframes floatWave {
  0%,100% { transform: translateY(0) rotate(-0.7deg); }
  50%      { transform: translateY(-9px) rotate(0.4deg); }
}

/* ─────────────────────────────────────────
   MIDDLE COLUMN
───────────────────────────────────────── */

.col-mid {
  padding: 80px clamp(10px, 3.5vw, 100px) 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 0;
}

.greeting {
  font-family: var(--f-hand);
  font-weight: 700;
  font-size: clamp(2.6rem, 3vw, 4rem);
  line-height: 1.15;
  margin-bottom: 30px;
  text-align: center;
  max-width: 16ch;
  margin-left: auto;
  margin-right: auto;
  animation: greetingBob 3.85s ease-in-out infinite;
  transform-origin: center center;
}

@keyframes greetingBob {
  0%,100% { transform: translateY(0) rotate(0deg); }
  50%      { transform: translateY(-6px) rotate(0.45deg); }
}

.name-red {
  color: var(--red);
  font-style: italic;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.mid-copy {
  align-self: flex-start;
  width: 100%;
  max-width: min(100%, 46rem);
  margin-left: clamp(-36px, -2.5vw, 0px);
  margin-right: auto;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 24px;
}

.mid-lower {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  margin-bottom: 0;
  width: 100%;
  justify-content: flex-start;
  text-align: left;
}

@keyframes welcomeBob {
  0%,100% { transform: translateY(0) rotate(0deg); }
  50%      { transform: translateY(-5px) rotate(-0.35deg); }
}

.welcome-label {
  font-family: var(--f-bubble);
  font-weight: 700;
  font-size: 2rem;
  letter-spacing: 0.03em;
  white-space: nowrap;
  flex-shrink: 0;
  margin-top: 2px;
  animation: welcomeBob 3.4s ease-in-out infinite;
  transform-origin: left center;
}

.blurb-right,
.blurb-main {
  font-size: 1.45rem;
  line-height: 1.45;
  font-style: italic;
}

.blurb-main {
  align-self: flex-end;
  width: fit-content;
  max-width: min(28rem, 100%);
  margin-bottom: 6px;
  margin-left: clamp(2rem, 14vw, 8.5rem);
  margin-right: clamp(-0.5rem, -1vw, 0px);
  text-align: left;
}

.deco-zzz {
  margin-top: 6px;
  align-self: flex-start;
  margin-left: clamp(-36px, -2.5vw, 0px);
  margin-right: auto;
  animation: floatDeco 3.4s ease-in-out infinite;
}

@keyframes floatDeco {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-6px); }
}

/* ─────────────────────────────────────────
   RIGHT COLUMN
───────────────────────────────────────── */

.col-right {
  position: relative;
  padding-top: 100px;
  align-self: stretch;
}

.char-portrait {
  display: block;
  width: 600px;
  mix-blend-mode: multiply;
  margin-left: -90px;
  position: relative;
  z-index: 9;
}

.star-scatter {
  position: absolute;
  top: -16px; left: -32px; right: -56px; bottom: -120px;
  pointer-events: none;
  z-index: 12;
}

.star-scatter .star { position: absolute; display: block; opacity: 0.92; }

.sc-r1  { top:  2%; right:  6%; }
.sc-b1  { top: 16%; right:  0%; }
.sc-bf1 { top: 28%; right: 22%; }
.sc-r2  { top:  8%; right: 40%; }
.sc-b2  { top: 46%; right: 10%; }
.sc-r3  { top: 60%; right: 34%; }
.sc-bf2 { top: 74%; right: 20%; }
.sc-b3  { top: 12%; left:   2%; }
.sc-r4  { top: 38%; left:   0%; }
.sc-bf3 { top: 52%; left:  14%; }
.sc-r5  { bottom: 26%; right:  8%; }
.sc-b4  { bottom: 10%; right: 38%; }

.float-s-1 { animation: starBounce 2.7s  ease-in-out infinite; }
.float-s-2 { animation: starBounce 3.2s  ease-in-out infinite  .25s; }
.float-s-3 { animation: starBounce 2.4s  ease-in-out infinite  .5s;  }
.float-s-4 { animation: starBounce 3.6s  ease-in-out infinite  .15s; }
.float-s-5 { animation: starBounce 2.9s  ease-in-out infinite  .7s;  }
.float-s-6 { animation: starBounce 3.45s ease-in-out infinite  .4s;  }

@keyframes starBounce {
  0%,100% { transform: translate(0,     0)    rotate(0deg)  scale(1);    }
  30%     { transform: translate(3px, -13px)  rotate(8deg)  scale(1.08); }
  55%     { transform: translate(-4px, -7px)  rotate(-6deg) scale(1.03); }
  78%     { transform: translate(2px, -11px)  rotate(4deg)  scale(1.06); }
}

.clouds {
  position: absolute;
  bottom: -70px;
  right: -120px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  pointer-events: none;
  z-index: 16;
  filter: drop-shadow(0 4px 0 rgba(26,26,26,.06));
}

.cloud-img {
  display: block;
  width: clamp(150px, 24vw, 280px);
  height: auto;
  mix-blend-mode: multiply;
  pointer-events: none;
}

.cloud-img--back {
  display: none;
  width: clamp(130px, 20vw, 240px);
  margin-right: clamp(4px, 1.2vw, 16px);
  opacity: 0.9;
}

.cloud-img--front {
  width: clamp(170px, 28vw, 320px);
  margin-top: clamp(-28px, -5vw, -16px);
  margin-right: clamp(0px, 1vw, 12px);
}

.float-cloud      { animation: floatCloud 5.5s ease-in-out infinite; }
.float-cloud-slow { animation: floatCloud 6.8s ease-in-out infinite .7s; }

@keyframes floatCloud {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-7px); }
}

/* ─────────────────────────────────────────
   SCROLL BANNER
───────────────────────────────────────── */

.scroll-banner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  background: var(--banner);
  border-top: 4px solid var(--ink);
  box-shadow: 0 -6px 0 0 var(--ink);
  padding: 18px 0;
  margin-top: -10px;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  position: relative;
  z-index: 10;
  flex-shrink: 0;
}

.scroll-text {
  font-family: var(--f-bubble);
  font-weight: 700;
  font-size: 2rem;
  letter-spacing: 0.14em;
  color: var(--ink);
}

.scroll-arrow {
  font-weight: 900;
  font-size: 1.4rem;
  color: var(--ink);
  animation: bounceArrow 1.4s ease-in-out infinite;
  display: inline-block;
}

@keyframes bounceArrow {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(4px); }
}

/* ─────────────────────────────────────────
   LARGE TABLET  ≤1220px
───────────────────────────────────────── */

@media (max-width: 1220px) {
  .navbar    { column-gap: clamp(6px, 1vw, 16px); }
  .nav-links { gap: clamp(8px, 1.4vw, 36px); }
  .nav-link  { font-size: clamp(0.82rem, 0.62rem + 0.7vw, 1.3rem); }
}

/* ─────────────────────────────────────────
   TABLET  ≤1350px
───────────────────────────────────────── */

@media (max-width: 1350px) {
  .hero-body {
    grid-template-columns: 170px minmax(320px, 1fr) 360px;
    gap: 10px;
    align-items: end;
  }
  .navbar    { margin: 28px 34px 0; padding-right: 24px; }
  .nav-links { gap: clamp(8px, 1.2vw, 28px); margin-left: 0; flex-wrap: nowrap; }
  .nav-link  { font-size: clamp(0.78rem, 0.58rem + 0.65vw, 1.1rem); }
  .nav-logo-wrap { width: 240px; height: 120px; }
  .nav-logo-img  { width: 390px; margin-top: -50px; }
  .col-left  { display: flex; align-items: flex-end; justify-content: center; }
  .char-wave { width: clamp(120px, 14vw, 240px); margin-bottom: -8px; }
  .col-mid   { padding-top: 40px; }
  .greeting  { font-size: clamp(2rem, 2.4vw, 3rem); }
  .mid-copy  { max-width: 100%; margin-left: 0; }
  .mid-lower { gap: 14px; }
  .welcome-label { font-size: clamp(1.2rem, 1.6vw, 1.8rem); }
  .blurb-right, .blurb-main { font-size: clamp(0.95rem, 1vw, 1.2rem); line-height: 1.55; }
  .blurb-main { margin-left: clamp(0rem, 3vw, 3rem); max-width: 24rem; }
  .col-right  { display: flex; align-items: flex-end; justify-content: center; padding-top: 40px; }
  .char-portrait { width: clamp(260px, 28vw, 420px); margin-left: 0; margin-bottom: -10px; }
  .clouds { right: -40px; bottom: -30px; transform: scale(0.85); }
  .scroll-banner { margin-top: 0; }
}

@media (max-width: 1100px) {
  .hero-body { grid-template-columns: 160px 1fr 300px; }
  .char-wave { width: 180px; }
  .char-portrait { width: 300px; margin-left: 0; }
  .greeting  { font-size: 2rem; }
  .blurb-right, .blurb-main { font-size: 1rem; }
  .blurb-main { min-width: 0; word-break: normal; overflow-wrap: break-word; }
  .welcome-label { font-size: 1.5rem; }
  .scroll-text { font-size: 1.4rem; }
  .nav-logo-wrap { width: 200px; height: 110px; }
  .nav-logo-img  { width: 300px; }
  .cloud-img       { width: clamp(120px, 22vw, 220px); }
  .cloud-img--back { width: clamp(105px, 18vw, 190px); }
  .cloud-img--front{ width: clamp(135px, 25vw, 250px); }
}

/* ─────────────────────────────────────────
   REDUCED MOTION
───────────────────────────────────────── */

@media (prefers-reduced-motion: reduce) {
  .float-s-1,.float-s-2,.float-s-3,
  .float-s-4,.float-s-5,.float-s-6,
  .greeting,.welcome-label,
  .float-cloud,.float-cloud-slow { animation: none; }
  .nav-links { transform: none; }
}

/* ═══════════════════════════════════════════════════
   SECTION STARS FOR PAGES 2 / 3
═══════════════════════════════════════════════════ */
/* desktop text tuning */
@media (min-width: 701px) {
  .pricing-title {
    font-size: 2.35rem;
  }

  .price-row {
    font-size: 1.38rem;
    line-height: 1.42;
  }

  .info-text h3 {
    font-size: 2.05rem;
  }

  .info-text p {
    font-size: 1.28rem;
  }

  .tos-list li {
    font-size: 1.28rem;
    line-height: 1.45;
  }

  .tos-list--small li {
    font-size: 1.12rem;
  }

  .contact-title {
    font-size: 1.9rem;
  }

  .contact-handle,
  .contact-email,
  .contact-tagline {
    font-size: 1.2rem;
  }
}

.info-pricing-section,
.tos-section {
  position: relative;
  overflow: hidden;
}

.page-stars {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.page-stars .star {
  position: absolute;
  opacity: 0.95;
}
/* extra decorative stars on desktop */
@media (min-width: 701px) {
  .info-pricing-section::before,
  .info-pricing-section::after,
  .tos-section::before,
  .tos-section::after {
    content: "";
    position: absolute;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
    opacity: 0.9;
  }

  .info-pricing-section::before {
    top: 18%;
    right: 18%;
    background: var(--blue);
    clip-path: polygon(50% 0%, 61% 36%, 98% 36%, 68% 57%, 79% 92%, 50% 70%, 21% 92%, 32% 57%, 2% 36%, 39% 36%);
  }

  .info-pricing-section::after {
    bottom: 14%;
    left: 14%;
    background: transparent;
    border: 2px solid var(--red);
    clip-path: polygon(50% 0%, 61% 36%, 98% 36%, 68% 57%, 79% 92%, 50% 70%, 21% 92%, 32% 57%, 2% 36%, 39% 36%);
  }

  .tos-section::before {
    top: 14%;
    left: 47%;
    background: transparent;
    border: 2px solid var(--red);
    clip-path: polygon(50% 0%, 61% 36%, 98% 36%, 68% 57%, 79% 92%, 50% 70%, 21% 92%, 32% 57%, 2% 36%, 39% 36%);
  }

  .tos-section::after {
    bottom: 12%;
    right: 10%;
    background: var(--blue);
    clip-path: polygon(50% 0%, 61% 36%, 98% 36%, 68% 57%, 79% 92%, 50% 70%, 21% 92%, 32% 57%, 2% 36%, 39% 36%);
  }
}

.page-stars--section2 .star-a { top: 8%; left: 4%; }
.page-stars--section2 .star-b { top: 14%; right: 8%; }
.page-stars--section2 .star-c { top: 38%; left: 10%; }
.page-stars--section2 .star-d { top: 52%; right: 14%; }
.page-stars--section2 .star-e { bottom: 26%; left: 20%; }
.page-stars--section2 .star-f { bottom: 12%; right: 10%; }

.page-stars--section3 .star-a { top: 10%; left: 6%; }
.page-stars--section3 .star-b { top: 18%; right: 7%; }
.page-stars--section3 .star-c { top: 56%; left: 20%; }
.page-stars--section3 .star-d { bottom: 26%; right: 12%; }
.page-stars--section3 .star-e { bottom: 42%; left: 42%; }
.page-stars--section3 .star-f { bottom: 14%; right: 24%; }
.page-stars--section2 .star-g { top: 22%; right: 30%; }
.page-stars--section2 .star-h { top: 44%; left: 26%; }
.page-stars--section2 .star-i { top: 58%; right: 24%; }
.page-stars--section2 .star-j { bottom: 24%; right: 4%; }
.page-stars--section2 .star-k { bottom: 18%; left: 42%; }
.page-stars--section2 .star-l { bottom: 8%; left: 8%; }

.page-stars--section3 .star-g { top: 28%; left: 34%; }
.page-stars--section3 .star-h { top: 60%; right: 26%; }
.page-stars--section3 .star-i { top: 74%; left: 16%; }
.page-stars--section3 .star-j { bottom: 20%; right: 6%; }
.page-stars--section3 .star-k { bottom: 36%; left: 60%; }
.page-stars--section3 .star-l { bottom: 10%; left: 80%; }

.info-pricing-wrap,
.work-card,
.tos-top,
.tos-bottom {
  position: relative;
  z-index: 1;
}

/* ═══════════════════════════════════════════════════
   PAGE 2 DESKTOP TWEAKS
═══════════════════════════════════════════════════ */

.info-text p {
  max-width: 100%;
}

.pricing-title {
  font-size: 2.25rem;
}

.price-row {
  font-size: 1.42rem;
  line-height: 1.45;
}

.pricing-notes span {
  font-size: 1.1rem;
}

/* ═══════════════════════════════════════════════════
   PAGE 3 — ABOUT / CONTACT
═══════════════════════════════════════════════════ */

.tos-section {
  width: min(96vw, 1600px);
  margin: -28px auto 0;
  padding: 36px 40px 70px;
}

.tos-top {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 28px;
  align-items: start;
}

.tos-card {
  position: relative;
  min-height: 340px;
  background: var(--bg);
  border: 2px solid var(--ink);
  border-radius: 30px;
  box-shadow: 3px 3px 0 var(--ink);
  padding: 70px 24px 24px;
}

.tos-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding-top: 10px;
}

.tos-list li {
  position: relative;
  padding-left: 34px;
  font-size: 1.18rem;
  line-height: 1.4;
}

.tos-list--blue li::before,
.tos-list--red li::before {
  position: absolute;
  left: 0;
  top: 0;
  font-weight: 700;
  font-size: 1.5rem;
}

.tos-list--blue li::before {
  content: "☆";
  color: var(--blue);
}

.tos-list--red li::before {
  content: "✘";
  color: var(--red);
}

.tos-list--small li {
  font-size: 1.05rem;
  line-height: 1.35;
}

.tos-bottom {
  display: grid;
  grid-template-columns: 450px auto 1fr;
  gap: 0;
  align-items: end;
  margin-top: -60px;
}

.tos-character-wrap {
  position: relative;
  min-height: 260px;
  margin-top: -40px;
  margin-left: -90px;
  z-index: 3;
}

.tos-character {
  width: 300px;
  display: block;
  mix-blend-mode: multiply;
}

.speech-bubble {
  position: absolute;
  top: -75px;
  left: 240px;
  width: 240px;
  aspect-ratio: 1 / 1;
}

.speech-bubble-img {
  display: block;
  width: 100%;
  height: auto;
}

.speech-bubble-text {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 34px 30px 42px;
}

.speech-bubble-text span {
  font-family: var(--f-bubble);
  font-size: 1rem;
  line-height: 1.15;
  color: var(--blue);
}

.speech-bubble-text span:last-child {
  color: var(--red);
}
.contact-panel {
  min-height: -80px;
  padding: 20px 0 0 0;
  position: relative;
  align-self: end;
  margin-left: 180px;
  border-left: none;
}

.contact-title {
  font-family: var(--f-bubble);
  font-size: 1.5rem;
  margin-bottom: 20px;
}

.contact-icons {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 3px;
}

.contact-icons img {
  width: 80px;
  height: 80px;
  object-fit: contain;
}

.contact-handle,
.contact-email,
.contact-tagline {
  font-size: 1.15rem;
  line-height: 1.45;
}

.contact-handle,
.contact-email {
  font-family: var(--f-bubble);
}

.contact-tagline {
  margin-top: 6px;
}

.contact-squiggle {
  position: absolute;
  right: -300px;
  bottom: 12px;
}
.pricing-title {
  font-size: 2.25rem;
}

.price-row {
  font-size: 1.42rem;
  line-height: 1.45;
}

.pricing-notes span {
  font-size: 1.1rem;
}
/* ═══════════════════════════════════════════════════
   MOBILE  ≤700px  —  ONE BLOCK, NO CONFLICTS
═══════════════════════════════════════════════════ */

@media (max-width: 700px) {

  .info-item {
    grid-template-columns: 56px 1fr;
    gap: 10px;
    align-items: start;
  }

  .info-icon {
    width: 52px;
    height: 52px;
    font-size: 1.45rem;
  }

  .info-text h3 {
    font-size: 0.95rem;
    line-height: 1.1;
    margin-bottom: 4px;
  }

  .info-text p {
    font-size: 0.8rem;
    line-height: 1.35;
    word-break: break-word;
  }

  .info-card {
    padding: 26px 12px 16px;
  }
  body { overflow-x: hidden; }

  /* hard clamp everything to viewport width */
  html, body {
    max-width: 100vw;
    overflow-x: hidden;
  }

  /* Page fills exactly one screen */
  .page-wrapper {
    width: 100%;
    max-width: 100vw;
    display: flex;
    flex-direction: column;
    min-height: 100dvh;
    overflow-x: hidden;
  }

  /* nav-mywork-mobile: hidden on desktop, shown in burger on mobile */
  .nav-mywork-mobile { display: list-item; }

  /* make the pill sit nicely in the dropdown list */
  .nav-mywork-mobile .nav-link--work {
    font-size: 1rem;
    padding: 4px 14px;
    display: inline-block;
  }

  /* hide the desktop MY WORK column on mobile — it lives in the burger instead */
  .nav-mywork-wrap { display: none; }

  /* ── NAVBAR ── */
  .navbar {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 16px 14px 0;
    padding: 14px 16px;
    min-height: 80px;
    overflow: visible;
  }

  .nav-logo-wrap {
    width: 120px;
    height: 62px;
    z-index: 5;
    position: relative;
  }

  .nav-logo-img {
    width: 190px;
    margin-top: -8px;
    margin-left: -10px;
    pointer-events: none;
    max-width: none;
    height: auto;
  }

  .menu-toggle {
    display: block;
    position: relative;
    z-index: 100;
    flex-shrink: 0;
  }

  .nav-links {
    position: absolute;
    top: calc(100% + 10px);
    right: 16px;
    background: var(--bg);
    border: 2px solid var(--ink);
    border-radius: 18px;
    box-shadow: 3px 3px 0 var(--ink);
    padding: 14px 18px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    margin-left: 0;
    width: 180px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: opacity .2s ease, transform .2s ease, visibility .2s;
    z-index: 99;
  }

  .nav-links.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .nav-link { font-size: 1rem; }

  /* ── HERO — grid keeps characters side-by-side at bottom ── */
  .hero-body {
    flex: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto 1fr;
    grid-template-areas:
      "text text"
      "wave main";
    padding: 0 14px;
    gap: 0;
    min-height: 0;
    align-items: end;
    margin-top: 0;
  }

  /* ── TEXT ── */
  .col-mid {
    grid-area: text;
    padding: 24px 0 10px;
    text-align: center;
    align-items: center;
    width: 100%;
  }

  .greeting      { font-size: 1.85rem; margin-bottom: 14px; }
  .mid-copy      { margin-left: 0; align-items: center; gap: 12px; }
  .mid-lower     { flex-direction: column; align-items: center; gap: 8px; }
  .welcome-label { font-size: 1.4rem; }

.blurb-right,
.blurb-main {
  font-size: 1rem;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  max-width: 260px;
}

.blurb-main {
  width: 100%;
}
  .deco-zzz      { margin-left: 0; align-self: center; }

  /* ── WAVING CHARACTER — left bottom ── */
  .col-left {
    grid-area: wave;
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    padding-left: 4px;
    position: static;
    line-height: 0;
  }

  .char-wave {
    width: min(46vw, 175px);
    margin: 0;
    display: block;
    max-width: none;
    height: auto;
  }

  /* ── MAIN CHARACTER — right bottom ── */
  .col-right {
    grid-area: main;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    padding-right: 4px;
    padding-top: 0;
    position: static;
    line-height: 0;
  }

  .char-portrait {
    width: min(54vw, 225px);
    margin: 0;
    display: block;
    max-width: none;
    height: auto;
    position: relative;
    z-index: 2;
  }

  /* clouds hidden on mobile */
  .clouds { display: none; }

  /* ── STARS — scatter all over the screen ── */
  .star-scatter {
    position: fixed;
    top: 0; left: 0;
    width: 100vw;
    height: 100vh;
    pointer-events: none;
    z-index: 0;
    transform: none;
  }

  .left-stars {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    transform: none;
  }

  /* re-scatter star positions across full screen */
  .sc-r1  { top:  3%; left:  6%;  right: auto; bottom: auto; }
  .sc-b1  { top:  8%; left: 28%;  right: auto; bottom: auto; }
  .sc-bf1 { top:  5%; left: 55%;  right: auto; bottom: auto; }
  .sc-r2  { top:  4%; left: 78%;  right: auto; bottom: auto; }
  .sc-b2  { top: 18%; left:  4%;  right: auto; bottom: auto; }
  .sc-r3  { top: 20%; left: 88%;  right: auto; bottom: auto; }
  .sc-bf2 { top: 32%; left: 18%;  right: auto; bottom: auto; }
  .sc-b3  { top: 35%; left: 70%;  right: auto; bottom: auto; }
  .sc-r4  { top: 50%; left:  3%;  right: auto; bottom: auto; }
  .sc-bf3 { top: 48%; left: 85%;  right: auto; bottom: auto; }
  .sc-r5  { top: 62%; left: 38%;  right: auto; bottom: auto; }
  .sc-b4  { top: 68%; left: 60%;  right: auto; bottom: auto; }

  .left-stars .star-mini:nth-child(1) { top: 14%; left: 12%; }
  .left-stars .star-mini:nth-child(2) { top: 42%; left: 80%; }
  .left-stars .star-mini:nth-child(3) { top: 72%; left: 22%; }
  .left-stars .star-mini:nth-child(4) { top: 58%; left: 50%; }

  /* ── SCROLL BANNER ── */
.scroll-banner {
  margin-top: -12px;
  padding: 14px 0;
  position: relative;
  z-index: 10;
  flex-shrink: 0;
}
  .scroll-text { font-size: 1.1rem; }
  /* ═══════════════════════════════════════════════════
     SECOND PAGE — MOBILE ≤700px
  ═══════════════════════════════════════════════════ */

  .info-pricing-section {
    width: 100%;
    padding: 32px 14px 44px;
  }

  .info-pricing-wrap {
    display: block !important;
  }

  .info-card,
  .pricing-card,
  .work-card {
    display: block;
    width: 100% !important;
    max-width: 100% !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
  }

  .pricing-card {
    margin-top: 20px;

  }

  .info-card,
  .pricing-card,
  .work-card {
    width: 100%;
  }

  .info-card,
  .pricing-card,
  .work-card {
    border-radius: 24px;
  }

  .info-card,
  .pricing-card {
    padding: 30px 16px 18px;
  }
  .info-pricing-section,
  .info-pricing-wrap,
  .info-card,
  .pricing-card,
  .work-card {
    min-width: 0;
  }

  .section-pill {
    min-width: 132px;
    font-size: 1.35rem;
    padding: 7px 18px;
    top: -18px;
    border-radius: 12px;
  }

  .info-card {
    gap: 18px;
    padding-top: 30px;
  }

  .info-item {
    grid-template-columns: 68px 1fr;
    gap: 12px;
    align-items: center;
  }

  .info-icon {
    width: 62px;
    height: 62px;
    font-size: 1.9rem;
  }

  .info-text h3 {
    font-size: 1.35rem;
    margin-bottom: 4px;
    line-height: 1.1;
  }

  .info-text p {
    font-size: 1rem;
    line-height: 1.3;
  }

  .pricing-card {
    padding: 30px 16px 18px;
  }
  .price-row {
    justify-content: space-between;
    width: 100%;
  }

  .pricing-group {
    padding: 4px 0 12px;
    margin-bottom: 8px;
  }

  .pricing-title {
    font-size: 1.3rem;
    margin-bottom: 6px;
  }

  .price-row {
    font-size: 1rem;
    gap: 12px;
    padding: 2px 0;
  }

  .pricing-notes {
    flex-direction: column;
    align-items: stretch;
    margin-top: 12px;
  }

  .pricing-notes span {
    font-size: 0.95rem;
    text-align: center;
    padding: 10px 12px;
  }

  .pricing-notes span:first-child {
    border-radius: 12px 12px 0 0;
  }

  .pricing-notes span:last-child {
    border-radius: 0 0 12px 12px;
    border-left: 2px solid var(--ink);
    border-top: 0;
  }

  .work-card {
    margin-top: 24px;
    padding: 28px 14px 18px;
  }

  .work-grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .work-item {
    border-radius: 18px;
  }

  .work-item img {
    width: 100%;
    height: auto;
    object-fit: cover;
  }

  .work-item--no-frame img {
    object-fit: contain;
  }
}

/* ═══════════════════════════════════════════════════
   SECOND PAGE — INFO / PRICING / WORK
═══════════════════════════════════════════════════ */

.info-pricing-section {
  width: min(96vw, 1600px);
  margin: 0 auto;
  padding: 42px 40px 34px;
}

.info-pricing-wrap {
  display: grid;
  grid-template-columns: 400px 1fr;
  gap: 36px;
  align-items: start;
}

.info-card,
.pricing-card,
.work-card {
  position: relative;
  background: var(--bg);
  border: 2px solid var(--ink);
  border-radius: 32px;
  box-shadow: 3px 3px 0 var(--ink);
}

.info-card,
.pricing-card {
  padding: 58px 24px 24px;
}

.pricing-card {
  min-height: 100%;
}

.section-pill {
  position: absolute;
  top: -22px;
  left: 50%;
  transform: translateX(-50%);
  min-width: 190px;
  max-width: calc(100% - 30px);
  padding: 10px 24px;
  border: 2px solid var(--ink);
  border-radius: 14px;
  text-align: center;
  font-family: var(--f-bubble);
  font-size: 1.7rem;
  line-height: 1.08;
  font-weight: 700;
  letter-spacing: 0.04em;
  box-shadow: 2px 2px 0 var(--ink);
  z-index: 5;
}

.section-pill--red {
  background: #ff4343;
  color: #fff;
}

.section-pill--blue {
  background: #39a9e6;
  color: #fff;
}

.info-card {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding-top: 40px;
  align-self: start;
}

.info-item {
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 18px;
  align-items: center;
}
.info-work {
  margin-top: 4px;
  padding-top: 4px;
}
.info-work-arrow {
  align-self: center;
}
.info-icon {
  width: 92px;
  height: 92px;
  border-radius: 50%;
  border: 5px solid var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.8rem;
  background: var(--blue);
  box-shadow: 2px 2px 0 var(--ink);
}
.info-icon-img {
  width: 120%;
  height: 120%;
  object-fit: contain;
  display: block;
}
.info-item:nth-child(3) .info-icon,
.info-item:nth-child(5) .info-icon {
  background: #ff4343;
  color: #fff;
}

.info-text h3 {
  font-family: var(--f-bubble);
  font-size: 2rem;
  margin-bottom: 8px;
  letter-spacing: 0.03em;
}

.info-text p {
  font-size: 1.2rem;
  line-height: 1.4;
}

.info-work {
  margin-top: 8px;
  padding-top: 8px;
  position: relative;
}

.info-work-pill {
  display: inline-block;
  margin-bottom: 14px;
  padding: 8px 24px;
  border: 2px solid var(--ink);
  border-radius: 14px;
  background: var(--blue);
  color: #fff;
  font-family: var(--f-bubble);
  font-size: 1.55rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  box-shadow: 2px 2px 0 var(--ink);
}

.info-work-slider {
  display: grid;
  grid-template-columns: 42px 1fr 42px;
  align-items: center;
  gap: 10px;
  width: 100%;
}

.info-work-track-wrap {
  overflow: hidden;
  width: 100%;
}

.info-work-track {
  --slide-index: 0;
  display: flex;
  gap: 0;
  width: 100%;
  transform: translateX(calc(var(--slide-index) * -100%));
  transition: transform .25s ease;
}

.info-work-slide {
  flex: 0 0 100%;
  width: 100%;
  border: 2px solid var(--ink);
  border-radius: 22px;
  overflow: hidden;
  background: #111;
  box-shadow: 2px 2px 0 var(--ink);
  padding: 0;
  cursor: zoom-in;
  appearance: none;
  -webkit-appearance: none;
}

.info-work-slide img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.info-work-arrow {
  width: 42px;
  height: 42px;
  border: 2px solid var(--ink);
  border-radius: 12px;
  background: var(--bg);
  color: var(--ink);
  font-size: 1.2rem;
  font-family: var(--f-bubble);
  box-shadow: 2px 2px 0 var(--ink);
  cursor: pointer;
}

.info-work-arrow:hover {
  transform: translateY(-2px);
}
.pricing-card {
  padding: 40px 24px 20px;
}

.pricing-group {
  padding: 6px 0 14px;
  border-bottom: 2px solid rgba(26,26,26,.45);
  margin-bottom: 10px;
}

.pricing-group:last-of-type {
  margin-bottom: 18px;
}

.pricing-title {
  font-family: var(--f-bubble);
  font-size: 1.85rem;
  margin-bottom: 8px;
  letter-spacing: 0.04em;
}

.pricing-title--red { color: var(--red); }
.pricing-title--blue { color: var(--blue); }

.price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  font-size: 1.45rem;
  line-height: 1.45;
  padding: 4px 0;
}

.price-row span:last-child {
  font-weight: 700;
  font-size: 1.5rem;
}

.pricing-notes {
  display: flex;
  justify-content: center;
  gap: 0;
  margin-top: 14px;
}

.pricing-notes span {
  border: 2px solid var(--ink);
  padding: 10px 18px;
  font-size: 1rem;
  background: #fffaf5;
}

.pricing-notes span:first-child {
  border-radius: 12px 0 0 12px;
}

.pricing-notes span:last-child {
  border-radius: 0 12px 12px 0;
  border-left: 0;
}

.work-card {
  margin-top: 34px;
  padding: 36px 28px 26px;
}

.work-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  align-items: end;
}

.work-item {
  border-radius: 24px;
  overflow: hidden;
  border: 2px solid var(--ink);
  background: #111;
  box-shadow: 2px 2px 0 var(--ink);
}

.work-item img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.work-item--no-frame {
  border: none;
  background: transparent;
  box-shadow: none;
}

.work-item--no-frame img {
  object-fit: contain;
}

.pricing-group--with-preview {
  display: grid;
  grid-template-columns: 108px 1fr;
  gap: 18px;
  align-items: start;
  padding: 12px 0 16px;
  border-bottom: 2px solid rgba(26,26,26,.45);
  margin-bottom: 10px;
}
.pricing-group--with-preview:last-of-type {
  margin-bottom: 18px;
}

.pricing-preview {
  width: 96px;
  height: 96px;
  border: 2px solid var(--ink);
  border-radius: 22px;
  overflow: hidden;
  background: #fff;
  box-shadow: 2px 2px 0 var(--ink);
  padding: 0;
  cursor: zoom-in;
}
.pricing-preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.pricing-group-copy {
  min-width: 0;
}

.work-item--zoom {
  padding: 0;
  cursor: zoom-in;
}

.work-item--zoom img {
  pointer-events: none;
}

.art-lightbox {
  position: fixed;
  inset: 0;
  background: rgba(10, 10, 10, 0.82);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px;
  opacity: 0;
  visibility: hidden;
  transition: opacity .2s ease, visibility .2s ease;
  z-index: 99999;
}

.art-lightbox.is-open {
  opacity: 1;
  visibility: visible;
}

.art-lightbox-image {
  max-width: min(92vw, 1100px);
  max-height: 88vh;
  border-radius: 18px;
  border: 2px solid #fff;
  box-shadow: 0 10px 40px rgba(0,0,0,.35);
  background: #111;
}

.art-lightbox-backdrop {
  position: absolute;
  inset: 0;
}

.contact-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform .15s ease;
}

.contact-icons a:hover {
  transform: translateY(-3px);
}

.wont-draw-sprite {
  position: absolute;
  right: -28px;
  bottom: -35px;
  width: clamp(120px, 18vw, 300px);
  height: auto;
  display: block;
  animation: spriteBounce 2.8s ease-in-out infinite;
  transform-origin: bottom center;
}

@keyframes spriteBounce {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-10px) rotate(1.5deg); }
}

.order-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 26px;
  border: 2px solid var(--ink);
  border-radius: 16px;
  background: var(--red);
  color: #fff;
  font-family: var(--f-bubble);
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  box-shadow: 3px 3px 0 var(--ink);
  transition:
    transform .18s ease,
    box-shadow .18s ease,
    background-color .18s ease,
    filter .18s ease;
  animation: orderBob 2.6s ease-in-out infinite;
  position: relative;
}

.order-btn::after {
  content: "";
  position: absolute;
  top: 8px;
  left: 12px;
  width: 28%;
  height: 22%;
  background: rgba(255,255,255,0.18);
  border-radius: 999px;
  pointer-events: none;
}

.order-btn:hover {
  transform: translateY(-4px) rotate(-1deg) scale(1.04);
  box-shadow: 5px 7px 0 var(--ink);
  filter: brightness(1.05);
  background: #ff4747;
}

.order-btn:active {
  transform: translateY(1px) scale(0.98);
  box-shadow: 2px 2px 0 var(--ink);
}

.order-btn:focus-visible {
  outline: 3px solid rgba(91, 200, 245, 0.9);
  outline-offset: 4px;
}

.order-btn--info {
  margin-top: 20px;
  align-self: center;
  min-width: 170px;
  text-align: center;
  font-size: 1.35rem;
  padding: 12px 26px;
}

@keyframes orderBob {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-3px) rotate(-0.8deg);
  }
}
/* nav-mywork-mobile only shows inside the burger dropdown on mobile — hidden on desktop */
@media (min-width: 701px) {
  .nav-mywork-mobile { display: none; }
}

/* ── MY WORK nav wrapper — sits in grid col 3, always inside the border ── */
.nav-mywork-wrap {
  grid-column: 3;
  justify-self: end;
  flex-shrink: 0;
}

/* ── MY WORK nav link — pill style, same font as rest of nav ── */
.nav-link--work {
  background: var(--blue);
  color: #fff !important;
  padding: 5px 14px;
  border-radius: 12px;
  border: 2px solid var(--ink);
  box-shadow: inset 0 -3px 0 rgba(0,0,0,0.18);
  transition: transform .15s ease, filter .15s ease;
  white-space: nowrap;
  text-decoration: none !important;
}

.nav-link--work::after { display: none !important; }

.nav-link--work:hover {
  transform: translateY(-2px);
  filter: brightness(1.08);
  color: #fff !important;
}

.nav-link--work.active {
  color: #fff !important;
  text-decoration: none !important;
  filter: brightness(0.96);
}

/* Mobile: hide the separate wrapper, MY WORK lives inside the burger dropdown */
@media (max-width: 700px) {
  .nav-mywork-wrap {
    display: none;
  }
}

/* MY WORK pill → link */
.info-work-pill--link {
  display: inline-block;
  text-decoration: none;
  cursor: pointer;
  transition: transform .16s ease, box-shadow .16s ease, filter .16s ease;
}
.info-work-pill--link:hover {
  transform: translateY(-3px) rotate(-0.6deg);
  box-shadow: 4px 5px 0 var(--ink);
  filter: brightness(1.06);
}

/* MY WORK button below slider */
.my-work-btn-wrap {
  display: flex;
  justify-content: center;
  margin-top: 18px;
}

.my-work-btn {
  background: var(--blue);
  font-size: 1.4rem;
  padding: 13px 36px;
  min-width: 170px;
  text-align: center;
  animation: orderBob 2.9s ease-in-out infinite .4s;
}

.my-work-btn:hover {
  background: #45b8e8;
}

/* ── INFO COLUMN WRAP (card + floating button below) ── */
.info-col-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  align-self: start;
}

.order-btn-wrap {
  margin-top: 18px;
}

/* ── COPYRIGHT FOOTER ── */
.site-footer {
  text-align: center;
  padding: 18px 0 24px;
  width: 100%;
}

.copyright {
  font-family: var(--f-hand);
  font-size: 1.2rem;
  color: var(--ink);
  opacity: 0.5;
  letter-spacing: 0.04em;
}

.order-btn--info {
  font-size: 1.4rem;
  padding: 13px 32px;
  margin: 0 auto;
}

.info-card {
  display: flex;
  flex-direction: column;
}
/* ═══════════════════════════════════════════════════
   PAGE 3 — MOBILE ≤700px
═══════════════════════════════════════════════════ */

@media (max-width: 700px) {

  .tos-section {
    width: 100%;
    padding: 32px 14px 40px;
    margin-top: 0;
  }

  /* Stack the three TOS cards vertically */
  .tos-top {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .tos-card {
    min-height: unset;
    padding: 52px 18px 20px;
    border-radius: 24px;
    overflow: hidden;
  }

  .tos-list li {
    font-size: 1rem;
    line-height: 1.4;
  }

  .tos-list--small li {
    font-size: 0.9rem;
  }

  /* Won't draw sprite — shrink, stay inside the card */
  .wont-draw-sprite {
    position: absolute;
    right: 10px;
    bottom: 10px;
    width: 85px;
    height: auto;
    animation: spriteBounce 2.8s ease-in-out infinite;
  }

  /* Bottom section: stack character + contact vertically */
  .tos-bottom {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    margin-top: 28px;
  }

  .tos-character-wrap {
    margin-top: 0;
    margin-left: 0;
    min-height: unset;
    display: flex;
    align-items: flex-end;
    gap: 8px;
    position: relative;
    width: 100%;
  }

  .tos-character {
    width: 130px;
    flex-shrink: 0;
  }

  /* Speech bubble sits beside character */
  .speech-bubble {
    position: relative;
    top: unset;
    left: unset;
    width: 150px;
    align-self: flex-end;
    margin-bottom: 8px;
    flex-shrink: 0;
  }

  .speech-bubble-text {
    padding: 18px 14px 26px;
  }

  .speech-bubble-text span {
    font-size: 0.78rem;
  }

  /* Contact panel stacks below */
  .contact-panel {
    margin-left: 0;
    padding: 0;
    border-left: none;
    min-height: unset;
    width: 100%;
  }

  .contact-title {
    font-size: 1.4rem;
    margin-bottom: 10px;
  }

  .contact-icons img {
    width: 50px;
    height: 50px;
  }

  .contact-handle,
  .contact-email,
  .contact-tagline {
    font-size: 1rem;
  }

  .contact-squiggle {
    display: none;
  }

  /* Order button full-width centered on mobile */
  .order-btn-wrap {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 14px;
  }

  .info-col-wrap {
    width: 100%;
  }
}

/* ── PILL TEXT: desktop shows full, mobile shows short ── */
.pill-mobile { display: none; }
.pill-desktop { display: inline; }

@media (max-width: 700px) {
  .pill-mobile { display: inline; }
  .pill-desktop { display: none; }

  /* Give cards enough top padding so the pill doesn't sit on the text */
  .tos-card {
    padding-top: 44px;
  }

  /* Make the pill single-line and properly sized on mobile */
  .section-pill {
    font-size: 1.25rem;
    padding: 8px 20px;
    min-width: 80px;
    top: -20px;
    white-space: nowrap;
  }
}

/* ── INFO CARD MOBILE FIXES ── */
@media (max-width: 700px) {
  .info-item {
    grid-template-columns: 62px 1fr;
    gap: 10px;
    align-items: center;
  }

  .info-icon {
    width: 58px;
    height: 58px;
    flex-shrink: 0;
  }

  .info-text h3 {
    font-size: 1.1rem;
    line-height: 1.15;
    margin-bottom: 3px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .info-text p {
    font-size: 0.88rem;
    line-height: 1.35;
  }
}

/* ── INFO TEXT HEADING — allow wrap but keep small ── */
@media (max-width: 700px) {
  .info-text h3 {
    white-space: normal;
    overflow: visible;
    text-overflow: unset;
    font-size: 1.05rem;
    word-break: keep-all;
  }
}

/* ── PRICING CARD MOBILE FIXES ── */
@media (max-width: 700px) {

  .pricing-group--with-preview {
    grid-template-columns: 80px 1fr;
    gap: 12px;
    padding: 10px 0 14px;
  }

  .pricing-preview {
    width: 76px;
    height: 76px;
    border-radius: 16px;
  }

  .pricing-title {
    font-size: 1.2rem;
    margin-bottom: 6px;
  }

  .price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: nowrap;
    gap: 8px;
    font-size: 0.95rem;
    padding: 2px 0;
    width: 100%;
  }

  .price-row span:first-child {
    white-space: nowrap;
    flex-shrink: 0;
  }

  .price-row span:last-child {
    white-space: nowrap;
    font-size: 1rem;
    flex-shrink: 0;
  }
}

/* ── FINAL MOBILE PAGE 3 POLISH ── */
@media (max-width: 700px) {

  /* Give each tos-card enough top room for the pill to breathe */
  .tos-card {
    padding-top: 50px;
    margin-top: 18px;
  }

  /* Pill sits fully above the card */
  .section-pill {
    top: -22px;
  }

  /* Character + bubble row — bigger on mobile */
  .tos-character {
    width: 160px;
  }

  .speech-bubble {
    width: 170px;
  }

  .speech-bubble-text span {
    font-size: 0.85rem;
  }

  /* Find Me On section spacing */
  .contact-panel {
    padding-top: 16px;
  }

  .contact-title {
    margin-bottom: 10px;
  }
}

/* ── CHARACTER + SPEECH BUBBLE MOBILE PROPORTION FIX ── */
@media (max-width: 700px) {

  .tos-character-wrap {
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    gap: 0;
    position: relative;
    width: 100%;
    min-height: 200px;
  }

  .tos-character {
    width: 160px;
    flex-shrink: 0;
    position: relative;
    z-index: 2;
    align-self: flex-end;
  }

  .speech-bubble {
    position: relative;
    top: unset;
    left: unset;
    width: 180px;
    flex-shrink: 0;
    margin: 0 0 10px -20px;
    align-self: flex-start;
    z-index: 1;
  }

  .speech-bubble-text {
    padding: 22px 18px 32px;
  }

  .speech-bubble-text span {
    font-size: 0.92rem;
    line-height: 1.2;
  }
}

/* ── TOS CARD PILL CLIP FIX ── */
@media (max-width: 700px) {
  .tos-top {
    padding-top: 16px;
  }

  .tos-card {
    margin-top: 24px;
    padding-top: 56px;
    overflow: visible;
  }

  .section-pill {
    top: -24px;
    font-size: 1.2rem;
    padding: 9px 22px;
    white-space: nowrap;
  }
}

/* ── SCROLL BANNER MOBILE FIX ── */
@media (max-width: 700px) {
  .scroll-banner {
    margin-top: 0;
    flex-shrink: 0;
    width: 100vw;
    margin-left: calc(50% - 50vw);
    padding: 16px 0;
    box-shadow: 0 -4px 0 0 var(--ink);
    border-top: 3px solid var(--ink);
    position: relative;
    z-index: 10;
  }
}
/* ── SCROLL BANNER MOBILE FIX ── */
@media (max-width: 700px) {
  .scroll-banner {
    margin-top: 0;
    padding: 14px 0;
    width: 100%;
    margin-left: 0;
  }
}
