/* sloMocha  poster / single-page site */

:root {
  /* Official palette */
  --lightest-pink: #F5DADF;
  --peachy-pink: #F9B5C4;
  --peach: #FFB3AB;
  --middle-pink: #F57EB6;
  --raspberry: #F04E98;
  --plum-purple: #87189D;
  --mud-brown: #AD6433;
  --milk-chocolate: #73381D;
  --dark-chocolate: #6B3529;
  --espresso-roast: #4F2C1D;

  /* Derived from logo tan background */
  --logo-tan: #CBB896;
  --page-bg: #A08058;
  --page-bg-deep: #8B6B45;
  --chocolate-panel: #5C3828;
  --chocolate-panel-deep: #4A2E22;
  --cream: #FFF3E8;
  --candy-highlight: #FFF8F2;

  --font-bubble: "Fredoka", "Varela Round", sans-serif;
  --font-body: "Patrick Hand", cursive;

  --page-padding: clamp(1rem, 3vw, 2.5rem);
  --sketch: 2px solid var(--espresso-roast);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  font-size: 16px;
  -webkit-print-color-adjust: exact;
  print-color-adjust: exact;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--font-body);
  font-size: 1.05rem;
  line-height: 1.45;
  color: var(--espresso-roast);
  background-color: var(--page-bg);
  background-image:
    radial-gradient(ellipse 90% 55% at 15% 8%, rgba(249, 181, 196, 0.22) 0%, transparent 55%),
    radial-gradient(ellipse 70% 50% at 88% 12%, rgba(255, 179, 171, 0.18) 0%, transparent 50%),
    radial-gradient(ellipse 80% 45% at 50% 100%, rgba(79, 44, 29, 0.2) 0%, transparent 55%),
    linear-gradient(168deg, var(--page-bg) 0%, var(--page-bg-deep) 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  z-index: 0;
}

.page {
  position: relative;
  z-index: 1;
  max-width: 1100px;
  margin: 0 auto;
  padding: var(--page-padding);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* ?? Header / logo ?? */

.site-header {
  display: flex;
  justify-content: center;
  margin-bottom: clamp(0.25rem, 1.5vh, 1rem);
}

.site-logo {
  width: 66.666%;
  height: auto;
  display: block;
  filter: drop-shadow(0 6px 14px rgba(79, 44, 29, 0.28));
}

/* ?? Poster layout ?? */

.poster {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2.5vh, 2rem);
}

/* ?? Concept: chocolate blob panel ?? */

.concept {
  flex: 2;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(1.25rem, 3vw, 2.25rem) clamp(1rem, 4vw, 2.5rem);
  color: var(--cream);
  background:
    radial-gradient(ellipse 120% 80% at 30% 20%, rgba(115, 56, 29, 0.5) 0%, transparent 60%),
    radial-gradient(ellipse 90% 70% at 80% 75%, rgba(79, 44, 29, 0.4) 0%, transparent 55%),
    linear-gradient(155deg, var(--chocolate-panel) 0%, var(--chocolate-panel-deep) 100%);
  border-radius: 46% 54% 42% 58% / 44% 48% 52% 56%;
  box-shadow:
    0 8px 28px rgba(47, 24, 14, 0.35),
    inset 0 1px 0 rgba(255, 243, 232, 0.12);
  transform: rotate(-0.4deg);
}

.concept::before,
.concept::after {
  content: "";
  position: absolute;
  pointer-events: none;
  border: 2px solid rgba(47, 24, 14, 0.55);
  border-radius: inherit;
}

.concept::before {
  inset: -5px -3px -7px -4px;
  transform: rotate(0.7deg);
  opacity: 0.45;
}

.concept::after {
  inset: 4px 6px 3px 5px;
  border-color: rgba(255, 243, 232, 0.08);
  transform: rotate(-0.3deg);
}

.concept__heading {
  position: relative;
  margin: 0 0 clamp(0.5rem, 2vh, 1rem);
  text-align: center;
  font-family: var(--font-bubble);
  font-size: clamp(1.8rem, 4.5vw, 2.8rem);
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: lowercase;
  background: linear-gradient(180deg, var(--peach) 0%, var(--middle-pink) 45%, var(--plum-purple) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-stroke: 1px rgba(47, 24, 14, 0.35);
  paint-order: stroke fill;
  filter: drop-shadow(0 1px 0 rgba(255, 248, 242, 0.45));
}

.concept__body {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(0.45rem, 1.4vh, 0.9rem);
  text-align: center;
}

.concept__stanza {
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.12em;
  width: 456px;
  text-align: left;
}

.concept__stanza .line {
  display: block;
  font-size: clamp(1.15rem, 2.8vw, 1.9rem);
  line-height: 1.22;
  text-shadow: 0 1px 2px rgba(47, 24, 14, 0.35);
}

.concept__stanza--lead .line {
  font-family: var(--font-bubble);
  font-size: clamp(1.3rem, 3.1vw, 2rem);
  font-weight: 500;
}

.concept__stanza--lead em {
  font-style: normal;
  color: var(--peachy-pink);
}

.concept__stanza--lead strong {
  font-weight: 600;
  background: linear-gradient(180deg, var(--peach) 0%, var(--raspberry) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.concept__stanza--product .line {
  font-family: var(--font-bubble);
  font-size: clamp(1.35rem, 3.3vw, 2.15rem);
  font-weight: 500;
}

/* Candy-gradient text (mirrors logo lettering) */

.candy {
  font-weight: 600;
  background: linear-gradient(
    180deg,
    var(--peach) 0%,
    var(--peachy-pink) 28%,
    var(--middle-pink) 55%,
    var(--plum-purple) 100%
  );
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-stroke: 0.8px rgba(47, 24, 14, 0.4);
  filter: drop-shadow(0 1px 0 rgba(255, 248, 242, 0.5));
}

.candy--cream {
  background: linear-gradient(180deg, var(--cream) 0%, var(--peachy-pink) 60%, var(--middle-pink) 100%);
  -webkit-background-clip: text;
  background-clip: text;
}

.candy--free {
  font-size: 1.2em;
  font-weight: 700;
  background: linear-gradient(180deg, #FFE0D4 0%, var(--peach) 20%, var(--raspberry) 70%, var(--plum-purple) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  animation: candy-glow 3s ease-in-out infinite;
}

@keyframes candy-glow {
  0%, 100% { filter: drop-shadow(0 1px 0 rgba(255, 248, 242, 0.5)); }
  50% { filter: drop-shadow(0 0 8px rgba(245, 126, 182, 0.55)); }
}

.candy--patreon {
  text-decoration: underline wavy var(--middle-pink) 2px;
  text-underline-offset: 4px;
}

.concept__aside {
  margin: 0;
  font-size: clamp(0.88rem, 2vw, 1.05rem);
  color: rgba(255, 243, 232, 0.72);
  transform: rotate(-0.5deg);
}

.concept__stanza--choice em {
  font-family: var(--font-bubble);
  font-style: normal;
  font-size: 1.1em;
  color: var(--peachy-pink);
}

.hot-cold {
  font-family: var(--font-bubble);
}

.hot {
  color: var(--raspberry);
}

.cold {
  color: #C9A0E8;
}

.concept__stanza--thanks {
  margin-top: 0.2em;
  padding: 0.65em 1.3em;
  background: rgba(79, 44, 29, 0.45);
  border: 2px solid rgba(245, 126, 182, 0.45);
  border-radius: 28px 34px 24px 30px / 26px 30px 32px 28px;
  transform: rotate(0.6deg);
  max-width: 28em;
  box-shadow: inset 0 1px 0 rgba(255, 243, 232, 0.08);
}

.concept__stanza--thanks .line--indent {
  padding-left: 1.4em;
  font-size: clamp(1rem, 2.3vw, 1.45rem);
  opacity: 0.9;
}

/* ?? Lower third panels ?? */

.lower-third {
  flex: 1;
  display: grid;
  grid-template-columns: minmax(240px, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(1rem, 3vw, 2rem);
  align-items: stretch;
}

.panel {
  position: relative;
  padding: clamp(0.85rem, 2vw, 1.35rem);
  background:
    linear-gradient(175deg, var(--cream) 0%, var(--lightest-pink) 100%);
  border-radius: 32px 28px 36px 26px / 28px 34px 26px 32px;
  box-shadow:
    0 5px 18px rgba(79, 44, 29, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.65);
}

.panel::before {
  content: "";
  position: absolute;
  inset: -4px -3px -5px -4px;
  border: 2px solid rgba(79, 44, 29, 0.55);
  border-radius: inherit;
  transform: rotate(0.5deg);
  pointer-events: none;
  opacity: 0.7;
}

.lifecycle {
  transform: rotate(-0.3deg);
}

.hosts {
  transform: rotate(0.25deg);
}

.panel.lifecycle {
  padding: clamp(0.65rem, 1.6vw, 1rem);
}

.panel.hosts {
  padding: clamp(1.05rem, 2.3vw, 1.6rem);
}

.section-label {
  position: relative;
  margin: 0 0 0.65rem;
  font-family: var(--font-bubble);
  font-size: clamp(1.35rem, 2.8vw, 1.85rem);
  font-weight: 600;
  background: linear-gradient(180deg, var(--mud-brown) 0%, var(--milk-chocolate) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-stroke: 0.6px rgba(79, 44, 29, 0.3);
  transform: rotate(-0.8deg);
}

.section-label::after {
  content: "";
  display: block;
  width: 3.2em;
  height: 3px;
  margin-top: 0.2em;
  background: linear-gradient(90deg, var(--raspberry), var(--plum-purple));
  border-radius: 3px;
  transform: rotate(1.2deg) skewX(-10deg);
}

/* Lifecycle wheel */

.lifecycle {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.lifecycle__wheel {
  width: 100%;
  max-width: 340px;
  aspect-ratio: 1;
  position: relative;
}

.lifecycle__wheel svg {
  width: 100%;
  height: 100%;
  overflow: visible;
}

.lifecycle__wheel .wheel-ring {
  fill: none;
  stroke: var(--milk-chocolate);
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-dasharray: 7 5;
  opacity: 0.75;
}

.lifecycle__wheel .wheel-arrow {
  fill: none;
  stroke: var(--raspberry);
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.lifecycle__wheel .step-bubble {
  fill: url(#bubble-gradient);
  stroke: var(--milk-chocolate);
  stroke-width: 2;
}

.lifecycle__wheel .step-bubble--accent {
  fill: url(#bubble-accent-gradient);
  stroke: var(--plum-purple);
  stroke-width: 2.5;
}

.lifecycle__wheel .step-label {
  font-family: "Fredoka", sans-serif;
  font-size: 10.5px;
  font-weight: 500;
  fill: var(--espresso-roast);
  text-anchor: middle;
  dominant-baseline: central;
}

.lifecycle__wheel .center-mark {
  font-family: "Fredoka", sans-serif;
  font-size: 15px;
  font-weight: 600;
  fill: var(--milk-chocolate);
  text-anchor: middle;
  dominant-baseline: central;
}

/* Host column */

.hosts__content {
  font-size: clamp(0.82rem, 1.55vw, 0.93rem);
  line-height: 1.52;
  columns: 1;
}

.hosts__content p {
  margin: 0 0 0.6em;
}

.hosts__content p:last-child {
  margin-bottom: 0;
}

.hosts__content strong {
  font-family: var(--font-bubble);
  font-weight: 600;
  color: var(--milk-chocolate);
  letter-spacing: 0.02em;
}

.hosts__content em {
  color: var(--plum-purple);
  font-style: italic;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ?? Web footer ?? */

.web-footer {
  margin-top: clamp(1.5rem, 3vh, 2.5rem);
  padding: 1.25rem;
  background: rgba(79, 44, 29, 0.25);
  border-radius: 20px 24px 18px 22px / 22px 18px 24px 20px;
  border: 2px dashed rgba(245, 126, 182, 0.5);
}

.web-footer__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1.5rem 2.5rem;
}

.web-footer__qr {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
}

.web-footer__qr-code {
  border: 3px solid var(--milk-chocolate);
  border-radius: 12px 14px 11px 15px / 13px 11px 14px 12px;
  background: var(--cream);
  padding: 5px;
  line-height: 0;
  box-shadow: 0 3px 10px rgba(79, 44, 29, 0.2);
}

.web-footer__qr-code img,
.web-footer__qr-code canvas {
  display: block;
}

.web-footer__qr-caption {
  font-family: var(--font-bubble);
  font-size: 1rem;
  font-weight: 500;
  color: var(--cream);
}

.web-footer__contact {
  font-style: normal;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  text-align: center;
}

.web-footer__link {
  font-family: var(--font-bubble);
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--peachy-pink);
  text-decoration: none;
  border-bottom: 2px wavy var(--middle-pink);
  transition: color 0.2s;
}

.web-footer__link:hover,
.web-footer__link:focus-visible {
  color: var(--cream);
  outline: none;
}

/* ?? Responsive ?? */

@media (max-width: 720px) {
  .lower-third {
    grid-template-columns: 1fr;
  }

  .concept {
	min-width: 480px;
    border-radius: 36px 40px 32px 38px / 34px 36px 38px 32px;
  }

  .lifecycle__wheel {
    max-width: 270px;
    margin: 0 auto;
  }

  .hosts__content {
	min-width: 444px;
    font-size: 0.9rem;
  }
}

/* ?? Print / poster ?? */

@media print {
  body {
    background: var(--logo-tan);
    background-image: none;
  }

  body::before {
    display: none;
  }

  .page {
    max-width: none;
    padding: 0.45in;
    min-height: auto;
  }

  .web-footer {
    display: none !important;
  }

  .concept {
    transform: none;
    box-shadow: none;
  }

  .concept__stanza--thanks,
  .lower-third {
    break-inside: avoid;
  }

  .candy--free {
    animation: none;
  }

  @page {
    size: letter portrait;
    margin: 0.45in;
  }
}
