:root {
  --lemon: #ffe24a;
  --lemon-dark: #e4b900;
  --lime: #a9f04b;
  --grass: #1f8b3a;
  --sky: #bdefff;
  --blue: #0b3f78;
  --ink: #172033;
  --pink: #ff78b9;
  --orange: #ff9d2e;
  --paper: #fffced;
  --white: #ffffff;
  --shadow: 0 18px 45px rgba(55, 69, 20, .16);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  font-family: "Comic Sans MS", "Comic Sans", "Trebuchet MS", system-ui, sans-serif;
  background:
    radial-gradient(circle at 10% 10%, rgba(255, 226, 74, .55) 0 9%, transparent 10%),
    radial-gradient(circle at 95% 7%, rgba(189, 239, 255, .9) 0 13%, transparent 14%),
    linear-gradient(180deg, #fff8bd 0%, #eaffbd 48%, #dff8ff 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: .23;
  background-image:
    linear-gradient(90deg, rgba(23,32,51,.13) 1px, transparent 1px),
    linear-gradient(rgba(23,32,51,.13) 1px, transparent 1px);
  background-size: 34px 34px;
  mask-image: linear-gradient(#000, transparent 78%);
}

.skip {
  position: absolute;
  left: -999px;
  top: 10px;
  background: var(--ink);
  color: #fff;
  padding: 10px 14px;
  border-radius: 10px;
}
.skip:focus { left: 10px; z-index: 10; }

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

.topbar {
  position: sticky;
  top: 0;
  z-index: 5;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
  padding: 12px clamp(16px, 4vw, 48px);
  background: rgba(255, 252, 237, .92);
  backdrop-filter: blur(10px);
  border-bottom: 4px dashed rgba(31, 139, 58, .32);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  font-size: 15px;
  line-height: 1.05;
  font-weight: 900;
}
.brand img {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  border: 3px solid var(--blue);
  background: #fff;
  transform: rotate(-4deg);
}

nav { display: flex; gap: 8px; flex-wrap: wrap; justify-content: flex-end; }
nav a {
  text-decoration: none;
  font-weight: 900;
  padding: 9px 12px;
  border: 2px solid transparent;
  border-radius: 999px;
}
nav a:hover, nav a:focus { background: var(--lemon); border-color: var(--ink); outline: none; }

.hero {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(320px, 1.08fr);
  gap: clamp(24px, 4vw, 54px);
  align-items: center;
  padding: clamp(40px, 7vw, 92px) clamp(16px, 5vw, 70px) 34px;
  max-width: 1320px;
  margin: 0 auto;
}

.hero-copy h1 {
  margin: 14px 0 18px;
  font-size: clamp(44px, 8vw, 96px);
  line-height: .88;
  letter-spacing: -0.06em;
  text-wrap: balance;
  text-shadow: 4px 4px 0 var(--lemon), 7px 7px 0 rgba(255, 120, 185, .35);
}

.big {
  font-size: clamp(20px, 2.2vw, 30px);
  line-height: 1.25;
  max-width: 680px;
  font-weight: 750;
}

.badge, .scribble {
  display: inline-block;
  margin: 0;
  padding: 9px 14px;
  border: 3px solid var(--ink);
  border-radius: 999px;
  background: var(--lime);
  font-weight: 900;
  box-shadow: 5px 5px 0 rgba(23,32,51,.16);
  transform: rotate(-1deg);
}

.hero-buttons { display: flex; gap: 13px; flex-wrap: wrap; margin-top: 28px; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 14px 20px;
  border-radius: 18px;
  border: 3px solid var(--ink);
  font-weight: 950;
  text-decoration: none;
  box-shadow: 6px 6px 0 rgba(23,32,51,.18);
  transition: transform .15s ease, box-shadow .15s ease;
}
.button:hover, .button:focus { transform: translate(2px, 2px); box-shadow: 3px 3px 0 rgba(23,32,51,.24); outline: none; }
.primary { background: var(--ink); color: #fffbe2; }
.secondary { background: var(--white); color: var(--blue); }

.hero-card {
  position: relative;
  border: 7px solid #fff;
  border-radius: 34px;
  box-shadow: var(--shadow), 0 0 0 4px var(--ink);
  overflow: hidden;
  transform: rotate(1.4deg);
  background: #fff;
}
.hero-card img { width: 100%; height: min(58vw, 620px); object-fit: cover; object-position: center; }
.sticky-note {
  position: absolute;
  right: 22px;
  bottom: 22px;
  max-width: 190px;
  padding: 18px 16px;
  background: var(--lemon);
  border: 3px solid var(--ink);
  box-shadow: 7px 7px 0 rgba(23,32,51,.18);
  transform: rotate(-5deg);
  font-weight: 950;
  font-size: 22px;
  text-align: center;
}

.section {
  max-width: 1180px;
  margin: 0 auto;
  padding: clamp(42px, 7vw, 82px) clamp(16px, 5vw, 54px);
}
.section-heading { text-align: center; max-width: 760px; margin: 0 auto 30px; }
h2 {
  margin: 16px 0 12px;
  font-size: clamp(36px, 5vw, 66px);
  line-height: .95;
  letter-spacing: -0.045em;
}
.section-heading p:not(.badge), .paper p, .fun-list li, .visit p {
  font-size: 20px;
  line-height: 1.5;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}
.price-card {
  min-height: 340px;
  padding: 30px;
  border-radius: 34px;
  border: 5px solid var(--ink);
  box-shadow: 10px 10px 0 rgba(23,32,51,.16);
  background: var(--paper);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.price-card:nth-child(1) { transform: rotate(-1.1deg); }
.price-card:nth-child(2) { transform: rotate(1.1deg); }
.lemon-card { background: linear-gradient(145deg, #fff8a9, #ffffff); }
.cookie-card { background: linear-gradient(145deg, #ffe0b8, #ffffff); }
.emoji { font-size: 54px; }
.price-card h3 { margin: 15px 0 8px; font-size: clamp(28px, 4vw, 46px); line-height: .98; }
.price-card p { font-size: 20px; line-height: 1.4; margin: 0 0 auto; }
.price-card strong {
  margin-top: 24px;
  font-size: clamp(64px, 8vw, 106px);
  line-height: .8;
  color: var(--grass);
  text-shadow: 4px 4px 0 var(--lemon);
}

.story {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, .8fr);
  gap: 24px;
  align-items: stretch;
}
.paper, .fun-list, .visit {
  border: 4px solid var(--ink);
  border-radius: 34px;
  box-shadow: 9px 9px 0 rgba(23,32,51,.14);
}
.paper {
  background: var(--paper);
  padding: clamp(24px, 4vw, 44px);
}
.kid-note {
  display: inline-block;
  background: var(--sky);
  border: 3px dashed var(--blue);
  border-radius: 20px;
  padding: 12px 16px;
  font-weight: 900;
}
.fun-list {
  background: var(--lime);
  padding: 28px;
  transform: rotate(1deg);
}
.fun-list h3 { font-size: 34px; margin: 0 0 12px; }
.fun-list ul { padding-left: 24px; margin: 0; }
.fun-list li { margin: 12px 0; font-weight: 800; }

.photo-row {
  display: grid;
  grid-template-columns: 1.35fr .65fr;
  gap: 24px;
  align-items: stretch;
}
figure {
  margin: 0;
  background: #fff;
  border: 5px solid #fff;
  border-radius: 28px;
  box-shadow: var(--shadow), 0 0 0 3px var(--ink);
  overflow: hidden;
}
figure:nth-child(1) { transform: rotate(-.8deg); }
figure:nth-child(2) { transform: rotate(1.4deg); }
figure img { width: 100%; height: 420px; object-fit: cover; }
figure:nth-child(2) img { object-fit: contain; padding: 20px; background: #fffdf2; }
figcaption { padding: 14px 16px 16px; font-weight: 900; font-size: 18px; }

.visit {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  background: linear-gradient(135deg, #fffbe2, #dff8ff);
}
.visit > div { max-width: 680px; }
.big-button { white-space: nowrap; background: var(--pink); color: var(--ink); }

footer {
  margin-top: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
  padding: 28px 16px 42px;
  text-align: center;
  font-weight: 900;
}
footer img { width: 54px; height: 54px; object-fit: cover; border-radius: 50%; border: 3px solid var(--ink); }

@media (max-width: 880px) {
  .topbar { position: relative; align-items: flex-start; flex-direction: column; }
  nav { justify-content: flex-start; }
  .hero, .story, .photo-row, .menu-grid { grid-template-columns: 1fr; }
  .hero-card { transform: none; }
  .hero-card img { height: 460px; }
  .visit { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 560px) {
  .brand img { width: 48px; height: 48px; }
  nav a { padding: 8px 10px; font-size: 14px; }
  .hero { padding-top: 28px; }
  .hero-copy h1 { font-size: 48px; }
  .big { font-size: 19px; }
  .hero-card img, figure img { height: 330px; }
  .sticky-note { position: static; max-width: none; transform: none; border-width: 0; border-top: 3px solid var(--ink); box-shadow: none; }
  .price-card { min-height: 0; }
  .price-card strong { font-size: 72px; }
  .section { padding-left: 14px; padding-right: 14px; }
  .big-button { width: 100%; }
}
