:root {
  --bg: #fff8f2;
  --bg-blob-a: #ffe8f4;
  --bg-blob-b: #e8fff4;
  --bg-blob-c: #f0e8ff;
  --ink: #3d2f45;
  --muted: #6a5d76;
  --accent: #e04b7a;
  --accent-dark: #c23a66;
  --mint: #5dbe9a;
  --mint-soft: #d4f5ea;
  --butter: #ffe566;
  --lilac: #c9b8e8;
  --card: #ffffff;
  --border: #eadcf0;
  --border-playful: #f5c6e0;
  --shadow-soft: 0 14px 40px rgba(61, 47, 74, 0.09);
  --shadow-sticker: 5px 5px 0 rgba(93, 190, 154, 0.45), 10px 10px 0 rgba(224, 75, 122, 0.12);
  --radius: 22px;
  --radius-lg: 32px;
  --radius-pill: 999px;
  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Nunito", system-ui, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.05s !important;
  }

  .product:hover {
    transform: none;
  }
}

.site::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(ellipse 90% 70% at 10% -10%, var(--bg-blob-a), transparent 55%),
    radial-gradient(ellipse 80% 60% at 95% 10%, var(--bg-blob-b), transparent 50%),
    radial-gradient(ellipse 60% 50% at 50% 100%, var(--bg-blob-c), transparent 45%),
    var(--bg);
  pointer-events: none;
}

.site::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  opacity: 0.35;
  background-image: radial-gradient(circle at 20% 30%, rgba(224, 75, 122, 0.12) 0, transparent 8px),
    radial-gradient(circle at 78% 22%, rgba(93, 190, 154, 0.15) 0, transparent 6px),
    radial-gradient(circle at 65% 78%, rgba(255, 229, 102, 0.2) 0, transparent 7px),
    radial-gradient(circle at 12% 85%, rgba(201, 184, 232, 0.18) 0, transparent 5px),
    radial-gradient(circle at 92% 60%, rgba(224, 75, 122, 0.1) 0, transparent 6px);
  background-size: 100% 100%;
  pointer-events: none;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.6;
  color: var(--ink);
  min-height: 100vh;
}

a {
  color: var(--accent-dark);
  font-weight: 700;
}

a:hover {
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}

.wrap {
  width: min(1040px, 100% - 2rem);
  margin-inline: auto;
}

.site-header {
  padding: clamp(2.5rem, 6vw, 4rem) 0 clamp(2rem, 4vw, 3rem);
  text-align: center;
}

.about-back {
  margin: 0 0 1rem;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 800;
}

.about-back a {
  color: var(--muted);
  text-decoration: none;
}

.about-back a:hover {
  color: var(--accent-dark);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.brand-logo--subpage {
  animation: none;
  transform: rotate(-1deg);
}

@media (prefers-reduced-motion: reduce) {
  .brand-logo--subpage {
    transform: none;
  }
}

.about-main {
  padding-bottom: 3rem;
}

.about-card {
  max-width: 42rem;
  margin-inline: auto;
}

.section-title--in-card {
  margin-bottom: 0.75rem;
}

.about-placeholder {
  margin: 0;
  font-size: 1.08rem;
  font-weight: 600;
  color: var(--muted);
  line-height: 1.55;
}

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

.brand-logo {
  display: block;
  width: 168px;
  height: 168px;
  margin: 0 auto 1.35rem;
  /* Circle mask: asymmetric blobs clip circular artwork; border eats inner space */
  border-radius: 50%;
  object-fit: contain;
  object-position: center;
  background: var(--card);
  border: 4px solid var(--card);
  box-shadow: var(--shadow-sticker), var(--shadow-soft);
  animation: gentle-float 6s ease-in-out infinite;
}

@media (prefers-reduced-motion: reduce) {
  .brand-logo {
    animation: none;
    transform: rotate(-1deg);
  }
}

.eyebrow {
  display: inline-block;
  margin: 0 0 0.65rem;
  padding: 0.35rem 1rem;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 800;
  color: var(--ink);
  background: linear-gradient(105deg, var(--mint-soft), #fff6d9);
  border: 2px dashed var(--mint);
  border-radius: var(--radius-pill);
}

.title {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2.1rem, 5.5vw, 3.15rem);
  font-weight: 800;
  font-variation-settings: "SOFT" 80, "WONK" 1;
  line-height: 1.12;
  letter-spacing: -0.02em;
  background: linear-gradient(115deg, var(--accent) 0%, #9b4dc9 45%, var(--accent-dark) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

@supports not (background-clip: text) {
  .title {
    color: var(--accent-dark);
    -webkit-text-fill-color: unset;
    background: none;
  }
}

.tagline {
  margin: 1.1rem auto 0;
  max-width: 38ch;
  font-size: 1.14rem;
  font-weight: 600;
  color: var(--muted);
}

.header-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.65rem 0.85rem;
  margin-top: 1.25rem;
}

.header-about-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.55rem 1.35rem;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 800;
  color: var(--ink);
  text-decoration: none;
  background: linear-gradient(180deg, #ffffff 0%, var(--mint-soft) 100%);
  border: 3px solid var(--mint);
  border-radius: var(--radius-pill);
  box-shadow: 4px 4px 0 rgba(93, 190, 154, 0.45);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.header-about-btn:hover {
  color: var(--accent-dark);
  text-decoration: none;
  transform: translate(-2px, -2px) rotate(1deg);
  box-shadow: 6px 6px 0 rgba(93, 190, 154, 0.52);
}

.header-about-btn:active {
  transform: translate(1px, 1px);
  box-shadow: 2px 2px 0 rgba(93, 190, 154, 0.4);
}

.social-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1.4rem;
  padding: 0.55rem 1.25rem;
  text-decoration: none;
  color: var(--ink);
  font-weight: 800;
  font-size: 1rem;
  background: linear-gradient(180deg, #fffef8 0%, #fff3d9 100%);
  border: 3px solid var(--butter);
  border-radius: var(--radius-pill);
  box-shadow: 4px 4px 0 rgba(255, 197, 92, 0.55);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.social-link:hover {
  text-decoration: none;
  color: var(--accent-dark);
  transform: translate(-2px, -2px) rotate(-1deg);
  box-shadow: 6px 6px 0 rgba(255, 197, 92, 0.65);
}

.social-link:active {
  transform: translate(1px, 1px);
  box-shadow: 2px 2px 0 rgba(255, 197, 92, 0.5);
}

.social-link__icon {
  flex-shrink: 0;
}

.header-actions .social-link {
  margin-top: 0;
}

@media (prefers-reduced-motion: reduce) {
  .header-about-btn:hover,
  .header-about-btn:active {
    transform: none;
  }
}

main {
  padding-bottom: 3rem;
}

.section-title {
  margin: 0 0 1.35rem;
  font-family: var(--font-display);
  font-size: 1.65rem;
  font-weight: 800;
  font-variation-settings: "SOFT" 60, "WONK" 1;
  color: var(--ink);
  position: relative;
  display: inline-block;
}

.section-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.2rem;
  width: 100%;
  height: 0.45rem;
  border-radius: 4px;
  background: linear-gradient(90deg, var(--mint-soft), var(--butter), #ffd4e8);
  opacity: 0.85;
  z-index: -1;
}

.notice-board {
  margin-bottom: 2.5rem;
}

.cards {
  display: grid;
  gap: 1.15rem;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.card {
  background: var(--card);
  border: 3px solid var(--border);
  border-radius: var(--radius);
  padding: 1.3rem 1.4rem;
  box-shadow: var(--shadow-soft);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.card:nth-child(odd) {
  transform: rotate(-0.35deg);
}

.card:nth-child(even) {
  transform: rotate(0.35deg);
}

.card:hover {
  transform: rotate(0deg) translateY(-4px);
  border-color: var(--lilac);
  box-shadow: var(--shadow-soft), 6px 6px 0 rgba(201, 184, 232, 0.35);
}

@media (prefers-reduced-motion: reduce) {
  .card:nth-child(odd),
  .card:nth-child(even) {
    transform: none;
  }

  .card:hover {
    transform: none;
  }
}

.card--accent {
  border-color: var(--border-playful);
  background: linear-gradient(155deg, #fffafc 0%, #ffe8f2 40%, #fff5fa 100%);
  box-shadow: var(--shadow-soft), 5px 5px 0 rgba(224, 75, 122, 0.2);
}

.card--accent:hover {
  box-shadow: var(--shadow-soft), 7px 7px 0 rgba(224, 75, 122, 0.25);
}

.card h3 {
  margin: 0 0 0.55rem;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 800;
  font-variation-settings: "WONK" 0.85;
  color: var(--accent-dark);
}

.card p {
  margin: 0;
  color: var(--muted);
  font-weight: 600;
}

.card p + p {
  margin-top: 0.65rem;
}

.fine-print {
  font-size: 0.94rem;
  font-weight: 600;
}

.products {
  margin-bottom: 2.5rem;
}

.product-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1.15rem;
}

.product {
  display: flex;
  flex-wrap: nowrap;
  align-items: stretch;
  gap: 1.15rem 1.35rem;
  padding: 1.15rem 1.3rem 1.15rem 1.15rem;
  background: var(--card);
  border: 3px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.product:hover {
  transform: scale(1.01);
  box-shadow: var(--shadow-soft), 6px 6px 0 rgba(93, 190, 154, 0.3);
}

.product__media {
  flex: 0 0 clamp(104px, 26vw, 168px);
  margin: 0;
  align-self: center;
  border-radius: 40% 60% 55% 45% / 45% 55% 50% 50%;
  overflow: hidden;
  background: var(--mint-soft);
  box-shadow: inset 0 0 0 3px rgba(255, 255, 255, 0.85);
}

.product__img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1;
  object-fit: cover;
}

.product__body {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0.15rem 0;
}

.product__head {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.35rem 1rem;
  margin-bottom: 0.4rem;
}

.product h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.18rem;
  font-weight: 800;
  font-variation-settings: "WONK" 0.9;
  flex: 1 1 auto;
  min-width: 12ch;
  color: var(--ink);
}

.product__desc {
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
  font-weight: 600;
}

.product__price {
  margin: 0;
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--accent);
  white-space: nowrap;
  flex-shrink: 0;
}

.order-mode {
  border: 0;
  margin: 0 0 1.35rem;
  padding: 0;
}

.order-mode__legend {
  font-family: var(--font-display);
  font-size: 1.12rem;
  font-weight: 800;
  font-variation-settings: "WONK" 0.8;
  margin: 0 0 0.75rem;
  padding: 0;
  color: var(--ink);
}

.order-mode__options {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
}

.order-mode__option {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  margin: 0;
  padding: 1.05rem 1.15rem;
  border: 3px solid var(--border);
  border-radius: var(--radius);
  background: linear-gradient(180deg, #ffffff 0%, #fff9fc 100%);
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.order-mode__option:hover {
  border-color: var(--lilac);
  transform: translateY(-2px);
}

.order-mode__option:has(input:checked) {
  border-color: var(--mint);
  background: linear-gradient(165deg, #f2fff9 0%, #ffe8f4 100%);
  box-shadow: 5px 5px 0 rgba(93, 190, 154, 0.35);
}

.order-mode__option input {
  margin: 0.25rem 0 0;
  flex-shrink: 0;
  width: 1.15rem;
  height: 1.15rem;
  accent-color: var(--mint);
}

.order-mode__option-inner {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  min-width: 0;
}

.order-mode__label {
  font-weight: 800;
  color: var(--ink);
}

.order-mode__hint {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.45;
  font-weight: 600;
}

.embed-wrap {
  position: relative;
}

.embed-shell {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 4px solid var(--ink);
  background: #fff;
  box-shadow: 8px 8px 0 var(--butter), var(--shadow-soft);
  min-height: 0;
}

.embed-loading {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  background: rgba(255, 250, 252, 0.94);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.22s ease, visibility 0.22s ease;
}

.embed-loading.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.embed-loading__text {
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 1.05rem;
  color: var(--ink);
  text-align: center;
}

.embed-loading__spinner {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 4px solid var(--border);
  border-top-color: var(--accent);
  animation: embed-spin 0.7s linear infinite;
}

@keyframes embed-spin {
  to {
    transform: rotate(360deg);
  }
}

@media (prefers-reduced-motion: reduce) {
  .embed-loading__spinner {
    animation: none;
    border-color: var(--mint-soft);
    border-top-color: var(--accent);
  }
}

.jotform-embed {
  display: block;
  width: 100%;
  min-width: 100%;
  min-height: 520px;
  height: 3000px;
  border: 0;
  overflow: hidden;
}

.embed-fallback {
  margin: 1rem 0 0;
  font-size: 0.95rem;
  color: var(--muted);
  font-weight: 600;
}

.site-footer {
  padding: 2.25rem 0 2.75rem;
  margin-top: 0.5rem;
  border-top: 3px dashed var(--border-playful);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.75) 0%, rgba(255, 248, 252, 0.95) 100%);
  border-radius: 28px 28px 0 0;
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.5rem 1rem;
}

.footer-copy {
  margin: 0;
  font-size: 0.92rem;
  color: var(--muted);
  font-weight: 600;
}

.footer-ig {
  font-size: 0.92rem;
  color: var(--muted);
  font-weight: 800;
  text-decoration: none;
}

.footer-ig:hover {
  color: var(--accent);
  text-decoration: underline;
  text-decoration-style: wavy;
  text-underline-offset: 4px;
}

@media (max-width: 480px) {
  .product {
    flex-direction: column;
    align-items: stretch;
    padding: 1.2rem 1.3rem;
  }

  .product__media {
    flex: 0 0 auto;
    align-self: center;
    width: min(220px, 72vw);
  }
}

@media (max-width: 520px) {
  .order-mode__options {
    grid-template-columns: 1fr;
  }

  .jotform-embed {
    min-height: 480px;
    height: 3400px;
  }
}
