:root {
  --cranberry: #a9133e;
  --cranberry-dark: #710c2c;
  --pink: #f7c3d1;
  --cream: #fff8e9;
  --ink: #24161a;
  --white: #ffffff;
  --lime: #d8ef66;
  --line: rgba(36, 22, 26, 0.15);
  --shadow: 0 18px 50px rgba(75, 11, 36, 0.14);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: "DM Sans", sans-serif;
}
a { color: inherit; }
img { display: block; max-width: 100%; }

.site-header {
  position: relative;
  z-index: 10;
  width: min(1180px, calc(100% - 36px));
  margin: 18px auto 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 248, 233, 0.92);
  backdrop-filter: blur(10px);
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-family: "Fredoka", sans-serif;
  font-weight: 700;
  letter-spacing: .06em;
}
.brand-blob, .mini-jelly {
  display: grid;
  place-items: center;
  color: white;
  background: var(--cranberry);
  font-family: "Fredoka", sans-serif;
  font-weight: 700;
}
.brand-blob { width: 38px; height: 38px; border-radius: 45% 55% 48% 52% / 60% 45% 55% 40%; }
nav { display: flex; gap: 24px; }
nav a { font-weight: 700; text-decoration: none; }
nav a:hover { color: var(--cranberry); }

main { width: min(1180px, calc(100% - 36px)); margin: 0 auto; }
.hero {
  min-height: 690px;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  align-items: center;
  gap: 60px;
  padding: 70px 0 55px;
}
.eyebrow { margin: 0 0 12px; color: var(--cranberry); font-weight: 800; letter-spacing: .12em; font-size: .78rem; }
h1, h2 { font-family: "Fredoka", sans-serif; margin: 0; line-height: .98; }
h1 { font-size: clamp(4rem, 9vw, 7.6rem); letter-spacing: -.045em; }
h2 { font-size: clamp(2.5rem, 5vw, 4.7rem); letter-spacing: -.035em; }
.hero-text { max-width: 590px; font-size: clamp(1.08rem, 2vw, 1.35rem); line-height: 1.6; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border: 2px solid var(--ink);
  border-radius: 999px;
  font: inherit;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease;
}
.button:hover { transform: translateY(-2px); box-shadow: 0 8px 0 rgba(36,22,26,.15); }
.button-primary { color: white; border-color: var(--cranberry); background: var(--cranberry); }
.button-secondary { background: transparent; }
.button-light { color: var(--ink); border-color: white; background: white; }

.hero-art { position: relative; min-height: 500px; display: grid; place-items: center; }
.jelly-character {
  position: relative;
  width: min(380px, 76vw);
  aspect-ratio: .92;
  background: linear-gradient(145deg, #c62d59 0%, var(--cranberry) 55%, var(--cranberry-dark) 100%);
  border-radius: 42% 58% 46% 54% / 58% 42% 58% 42%;
  box-shadow: inset 22px 15px 0 rgba(255,255,255,.12), var(--shadow);
  transform: rotate(-5deg);
  animation: float 4s ease-in-out infinite;
}
.jelly-shadow { position: absolute; bottom: 50px; width: 310px; height: 55px; border-radius: 50%; background: rgba(77,12,37,.18); filter: blur(10px); }
.eye { position: absolute; top: 38%; width: 27px; height: 36px; border-radius: 50%; background: var(--ink); }
.eye-left { left: 31%; }
.eye-right { right: 31%; }
.smile { position: absolute; left: 42%; top: 53%; width: 62px; height: 35px; border-bottom: 8px solid var(--ink); border-radius: 0 0 60px 60px; }
.spark { position: absolute; font-size: 2.4rem; color: var(--cranberry); }
.spark-one { top: 45px; left: 15px; }
.spark-two { right: 12px; top: 120px; color: #f0b600; }
.spark-three { right: 65px; bottom: 42px; color: var(--lime); font-size: 1.5rem; }
@keyframes float { 50% { transform: translateY(-14px) rotate(-2deg); } }

.social-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-block: 1px solid var(--line);
}
.social-strip a { padding: 22px; text-align: center; font-weight: 800; text-decoration: none; border-right: 1px solid var(--line); }
.social-strip a:last-child { border-right: 0; }
.social-strip a:hover { background: var(--pink); }

.video-section { padding: 110px 0; }
.section-heading { display: flex; justify-content: space-between; align-items: end; gap: 30px; margin-bottom: 34px; }
.section-heading > p { max-width: 360px; line-height: 1.6; }
.video-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.video-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: white;
  box-shadow: 0 12px 30px rgba(75,11,36,.08);
  transition: transform .25s ease, box-shadow .25s ease;
}
.video-card:hover { transform: translateY(-6px) rotate(-.4deg); box-shadow: var(--shadow); }
.video-thumb { position: relative; aspect-ratio: 4 / 5; overflow: hidden; background: var(--pink); }
.video-thumb img { width: 100%; height: 100%; object-fit: cover; }
.video-thumb.placeholder { display: grid; place-items: center; background: linear-gradient(135deg, var(--cranberry), #e87495); color: white; font-family: "Fredoka"; font-size: 4rem; }
.play { position: absolute; inset: 50% auto auto 50%; transform: translate(-50%, -50%); width: 64px; height: 64px; display: grid; place-items: center; border-radius: 50%; background: rgba(255,255,255,.92); font-size: 1.4rem; padding-left: 4px; }
.video-info { padding: 18px; }
.platform { color: var(--cranberry); font-size: .76rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.video-info h3 { margin: 6px 0 10px; font-family: "Fredoka"; font-size: 1.45rem; line-height: 1.08; }
.video-info a { font-weight: 800; text-decoration: none; }
.video-info a:hover { color: var(--cranberry); }

.cta-panel { margin-bottom: 90px; padding: 48px; display: flex; align-items: center; justify-content: space-between; gap: 25px; border-radius: 30px; color: white; background: var(--cranberry); }
.cta-panel .eyebrow { color: var(--pink); }

.contact-page { padding: 90px 0; }
.contact-intro { max-width: 850px; margin-bottom: 45px; }
.contact-intro p:last-child { font-size: 1.2rem; line-height: 1.6; }
.contact-layout { display: grid; grid-template-columns: 1.25fr .75fr; gap: 25px; }
.contact-card, .contact-aside { border: 1px solid var(--line); border-radius: 28px; background: white; box-shadow: var(--shadow); }
.contact-card { padding: clamp(24px, 5vw, 52px); }
.contact-aside { padding: 38px; background: var(--pink); }
.contact-aside h2 { margin-top: 28px; font-size: 2.6rem; }
.contact-aside a { display: inline-block; margin: 18px 0; font-weight: 800; font-size: 1.1rem; }
.contact-aside p { line-height: 1.6; }
.mini-jelly { width: 90px; height: 90px; border-radius: 44% 56% 50% 50% / 58% 43% 57% 42%; font-size: 2rem; }
form { display: grid; gap: 10px; }
label { margin-top: 8px; font-weight: 800; }
input, textarea { width: 100%; border: 1.5px solid var(--line); border-radius: 14px; padding: 14px 15px; background: var(--cream); font: inherit; }
input:focus, textarea:focus { outline: 3px solid rgba(169,19,62,.18); border-color: var(--cranberry); }
textarea { resize: vertical; }
form .button { justify-self: start; margin-top: 12px; }
.hidden-field { position: absolute !important; left: -9999px !important; }

footer { width: min(1180px, calc(100% - 36px)); margin: 0 auto; padding: 30px 0 40px; display: flex; justify-content: space-between; border-top: 1px solid var(--line); }
footer a { font-weight: 700; }

@media (max-width: 850px) {
  .hero { grid-template-columns: 1fr; padding-top: 75px; }
  .hero-art { order: -1; min-height: 390px; }
  .jelly-character { width: 290px; }
  .jelly-shadow { bottom: 25px; width: 250px; }
  .video-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-layout { grid-template-columns: 1fr; }
}
@media (max-width: 580px) {
  .site-header { border-radius: 22px; }
  nav { gap: 12px; }
  .brand > span:last-child { display: none; }
  .hero { min-height: auto; gap: 20px; }
  .hero-art { min-height: 330px; }
  .jelly-character { width: 245px; }
  .social-strip { grid-template-columns: 1fr; }
  .social-strip a { border-right: 0; border-bottom: 1px solid var(--line); }
  .social-strip a:last-child { border-bottom: 0; }
  .section-heading, .cta-panel { align-items: flex-start; flex-direction: column; }
  .video-grid { grid-template-columns: 1fr; }
  .video-section { padding: 75px 0; }
  .cta-panel { padding: 34px 26px; }
  footer { flex-direction: column; gap: 10px; }
}
