@font-face {
  font-family: 'Atkinson Hyperlegible';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/webfonts/atkinson-hyperlegible-400.woff2') format('woff2');
}

@font-face {
  font-family: 'Atkinson Hyperlegible';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('../fonts/webfonts/atkinson-hyperlegible-700.woff2') format('woff2');
}

@font-face {
  font-family: 'Atma';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('../fonts/webfonts/atma-700.woff2') format('woff2');
}

:root {
  --color-white: #ffffff;
  --color-gold: #84a1ff;
  --color-member: #fdc636;
  --color-ink: #22252b;
  --color-cream: #fdf8ef;
  --color-pastel-orange: #ffe3c8;
  --color-highlight: var(--color-gold);
  --font-heading: 'Atma', cursive;
  --font-body: 'Atkinson Hyperlegible', sans-serif;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html,
body {
  height: 100%;
}

body {
  background: var(--color-white);
  font-family: var(--font-body);
}

/* ---------- Hero ---------- */

.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  overflow: hidden;
  background: #000;
}

.hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(to bottom, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.3) 32%, rgba(0, 0, 0, 0.15) 55%, rgba(0, 0, 0, 0.6) 100%),
    radial-gradient(ellipse at center, transparent 35%, rgba(0, 0, 0, 0.55) 100%);
}

/* ---------- Header ---------- */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  padding: clamp(1.25rem, 2.5vw, 2rem) clamp(1.25rem, 4vw, 3rem);
  background: transparent;
  box-shadow: none;
  transition: background 0.3s ease, box-shadow 0.3s ease, padding 0.3s ease;
  animation: heroDropIn 0.7s ease both;
}

@keyframes heroDropIn {
  from {
    opacity: 0;
    transform: translateY(-18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroRiseIn {
  from {
    opacity: 0;
    transform: translate(-50%, -46%);
  }
  to {
    opacity: 1;
    transform: translate(-50%, -50%);
  }
}

@keyframes heroPopIn {
  from {
    opacity: 0;
    transform: scale(0.7);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.site-header.is-scrolled {
  align-items: center;
  padding-top: 0.85rem;
  padding-bottom: 0.85rem;
  background: rgba(10, 10, 12, 0.82);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
}

.site-header.is-scrolled .site-header__logo {
  height: clamp(60px, 8vh, 90px);
}

.site-header__logo {
  height: clamp(140px, 22vh, 260px);
  width: auto;
  transition: height 0.3s ease;
}

.site-header__actions {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.btn-member {
  flex-shrink: 0;
  display: inline-block;
  background: var(--color-member);
  color: var(--color-ink);
  text-decoration: none;
  border: none;
  border-radius: 999px;
  padding: 0.85rem 1.75rem;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(253, 198, 54, 0.45);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.btn-member:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(253, 198, 54, 0.55);
}

.btn-signin {
  flex-shrink: 0;
  display: inline-block;
  background: transparent;
  color: var(--color-white);
  text-decoration: none;
  border: 1.5px solid var(--color-white);
  border-radius: 999px;
  padding: 0.8rem 1.6rem;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  transition: transform 0.15s ease, background 0.15s ease;
}

.btn-signin:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-2px);
}

/* ---------- Glass card ---------- */

.glass-card {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: fit-content;
  max-width: 92%;
  padding: clamp(1.75rem, 4vh, 3rem) clamp(2rem, 3.5vw, 3.5rem);
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 28px;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.35);
  text-align: center;
  animation: heroRiseIn 0.8s ease 0.15s both;
}

.glass-card h1 {
  position: relative;
  z-index: 0;
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--color-white);
  font-size: clamp(2rem, 4.4vw, 3.5rem);
  line-height: 1.2;
  white-space: nowrap;
  margin-bottom: 1.75rem;
  animation: heroPopIn 0.6s ease 0.35s both;
}

.glass-card h1::before {
  content: '';
  position: absolute;
  z-index: -1;
  inset: -35% -8%;
  background: radial-gradient(ellipse at center, rgba(132, 161, 255, 0.35) 0%, rgba(255, 255, 255, 0.1) 40%, transparent 72%);
  pointer-events: none;
}

.glass-card h1::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: -0.85rem;
  width: 72px;
  height: 3px;
  border-radius: 999px;
  background: var(--color-gold);
  transform: translateX(-50%) rotate(-1.5deg);
}

.glass-card h2 {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--color-white);
  font-size: clamp(1rem, 2vw, 1.4rem);
  line-height: 1.3;
  white-space: nowrap;
  letter-spacing: 0.02em;
  margin-bottom: 1.5rem;
}

.glass-card h2.is-typing::after {
  content: '';
  display: inline-block;
  width: 2px;
  height: 0.9em;
  margin-left: 3px;
  background: var(--color-gold);
  vertical-align: -0.1em;
  animation: caretBlink 0.85s steps(1) infinite;
}

@keyframes caretBlink {
  50% {
    opacity: 0;
  }
}

.stats {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: clamp(1.25rem, 3vw, 2.75rem);
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.stats.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.stats li {
  font-family: var(--font-body);
  color: var(--color-white);
  font-weight: 400;
  font-size: clamp(0.85rem, 1.5vw, 1rem);
  white-space: nowrap;
}

.stats li strong {
  color: var(--color-highlight);
  font-weight: 700;
}

/* ---------- Scroll prompt ---------- */

.scroll-prompt {
  position: absolute;
  left: 50%;
  bottom: clamp(1.25rem, 4vh, 2.25rem);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  color: rgba(255, 255, 255, 0.85);
  pointer-events: none;
  transition: opacity 0.2s ease;
  animation: scrollPromptBounce 1.8s ease-in-out infinite;
}

.scroll-prompt__label {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
}

@keyframes scrollPromptBounce {
  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }
  50% {
    transform: translateX(-50%) translateY(8px);
  }
}

/* ---------- Chat FAB ---------- */

.chat-fab {
  position: fixed;
  right: clamp(1.5rem, 6vw, 4rem);
  bottom: clamp(1.5rem, 8vh, 4rem);
  z-index: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 1.5px solid rgba(253, 198, 54, 0.65);
  background: rgba(20, 18, 24, 0.88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: var(--color-member);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4), 0 0 0 4px rgba(253, 198, 54, 0.15);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  animation: heroPopIn 0.5s ease 0.7s both;
}

.chat-fab:hover {
  transform: scale(1.06);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4), 0 0 0 6px rgba(253, 198, 54, 0.25);
}

.chat-panel {
  position: fixed;
  right: clamp(1.5rem, 6vw, 4rem);
  bottom: calc(clamp(1.5rem, 8vh, 4rem) + 76px);
  z-index: 300;
  width: min(370px, calc(100vw - 2rem));
  max-height: min(600px, 72vh);
  display: flex;
  flex-direction: column;
  background: rgba(20, 18, 24, 0.9);
  border: 1.5px solid rgba(253, 198, 54, 0.45);
  border-radius: 20px;
  overflow: hidden;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

.chat-panel[hidden] {
  display: none;
}

.chat-panel__header {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem 1rem;
  color: var(--color-white);
  font-family: var(--font-body);
  font-weight: 700;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.chat-panel__close {
  background: none;
  border: none;
  color: var(--color-white);
  font-size: 1.35rem;
  line-height: 1;
  cursor: pointer;
}

.chat-panel__body {
  display: flex;
  flex-direction: column;
  min-height: 0;
  padding: 0.85rem;
  gap: 0.75rem;
}

.chat-messages {
  flex: 1;
  min-height: 120px;
  max-height: 320px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  padding-right: 0.25rem;
}

.chat-message {
  max-width: 88%;
  padding: 0.6rem 0.85rem;
  border-radius: 14px;
  font-family: var(--font-body);
  font-size: 0.88rem;
  line-height: 1.45;
  color: var(--color-white);
}

.chat-message .chat-list {
  margin: 0.4rem 0 0;
  padding-left: 1.15rem;
}

.chat-message .chat-list li {
  margin-bottom: 0.3rem;
}

.chat-message .chat-list li:last-child {
  margin-bottom: 0;
}

.chat-message--bot {
  align-self: flex-start;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-bottom-left-radius: 4px;
}

.chat-message--user {
  align-self: flex-end;
  background: rgba(253, 198, 54, 0.5);
  border: 1px solid rgba(253, 198, 54, 0.65);
  border-bottom-right-radius: 4px;
}

.chat-message--typing {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 0.75rem 0.9rem;
}

.chat-message--typing span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.75);
  animation: chatTypingBounce 1.1s infinite ease-in-out;
}

.chat-message--typing span:nth-child(2) {
  animation-delay: 0.15s;
}

.chat-message--typing span:nth-child(3) {
  animation-delay: 0.3s;
}

@keyframes chatTypingBounce {
  0%, 60%, 100% {
    transform: translateY(0);
    opacity: 0.6;
  }
  30% {
    transform: translateY(-4px);
    opacity: 1;
  }
}

.chat-quick-replies {
  flex-shrink: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  max-height: 130px;
  overflow-y: auto;
  padding-top: 0.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.chat-chip {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--color-white);
  background: rgba(253, 198, 54, 0.18);
  border: 1px solid rgba(253, 198, 54, 0.5);
  border-radius: 999px;
  padding: 0.4rem 0.8rem;
  cursor: pointer;
  transition: background 0.15s ease, transform 0.15s ease;
}

.chat-chip:hover {
  background: rgba(253, 198, 54, 0.35);
  transform: translateY(-1px);
}

/* ---------- Toys section ---------- */

.toys {
  /* BEGIN child-friendly-decor: remove this radial-gradient layer stack to revert to a flat background */
  background:
    radial-gradient(circle at 6% 12%, rgba(132, 161, 255, 0.28) 0%, transparent 60%),
    radial-gradient(circle at 93% 18%, rgba(253, 198, 54, 0.24) 0%, transparent 55%),
    radial-gradient(circle at 12% 88%, rgba(253, 198, 54, 0.2) 0%, transparent 50%),
    radial-gradient(circle at 90% 92%, rgba(132, 161, 255, 0.22) 0%, transparent 55%),
    var(--color-pastel-orange);
  /* END child-friendly-decor */
  padding: clamp(3rem, 7vw, 5.5rem) clamp(1.5rem, 6vw, 4rem);
  text-align: center;
}

.toys__intro h2 {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--color-ink);
  font-size: clamp(1.9rem, 4vw, 2.75rem);
  margin-bottom: 0.75rem;
}

.toys__intro p {
  font-family: var(--font-body);
  color: #555;
  max-width: 620px;
  margin: 0 auto clamp(2rem, 4vw, 2.75rem);
  font-size: 1rem;
  line-height: 1.5;
}

.toys__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: clamp(1rem, 2.5vw, 1.75rem);
  max-width: 1100px;
  margin: 0 auto clamp(2rem, 4vw, 2.75rem);
}

.toy-card {
  background: var(--color-cream);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
  /* BEGIN child-friendly-decor: revert transition/hover below to translateY(-4px) only, ease timing, to undo the bounce */
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.2s ease;
}

.toy-card:hover {
  transform: translateY(-6px) scale(1.03) rotate(-1deg);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
  /* END child-friendly-decor */
}

.toy-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.toy-card:hover img {
  transform: scale(1.08);
}

.toy-card__name {
  padding: 0.75rem 1rem;
  font-family: var(--font-body);
  font-weight: 700;
  color: var(--color-ink);
  font-size: 0.95rem;
}

.btn-view-all {
  display: inline-block;
  background: var(--color-member);
  color: var(--color-ink);
  text-decoration: none;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 0.9rem 2.25rem;
  border-radius: 999px;
  box-shadow: 0 4px 16px rgba(253, 198, 54, 0.4);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.btn-view-all:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(253, 198, 54, 0.5);
}

/* ---------- Info section ---------- */

.info {
  /* BEGIN child-friendly-decor: remove this radial-gradient layer stack to revert to a flat background */
  background:
    radial-gradient(circle at 5% 8%, rgba(253, 198, 54, 0.16) 0%, transparent 55%),
    radial-gradient(circle at 95% 22%, rgba(132, 161, 255, 0.18) 0%, transparent 50%),
    radial-gradient(circle at 90% 94%, rgba(253, 198, 54, 0.15) 0%, transparent 55%),
    var(--color-cream);
  /* END child-friendly-decor */
  padding: clamp(3rem, 7vw, 5.5rem) clamp(1.5rem, 6vw, 4rem);
}

.info__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: clamp(1.25rem, 2.5vw, 1.75rem);
  max-width: 1100px;
  margin: 0 auto;
}

.info-card {
  background: var(--color-white);
  border-radius: 20px;
  padding: clamp(1.5rem, 3vw, 2rem);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.06);
}

.info-card h3 {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--color-ink);
  font-size: 1.35rem;
  margin-bottom: 0.65rem;
}

.info-card p,
.info-card ul {
  font-family: var(--font-body);
  color: #444;
  font-size: 0.95rem;
  line-height: 1.55;
  margin-bottom: 0.75rem;
}

.info-card p:last-child,
.info-card ul:last-child {
  margin-bottom: 0;
}

.info-card ul {
  padding-left: 1.15rem;
}

.info-card li {
  margin-bottom: 0.4rem;
}

.info-card li:last-child {
  margin-bottom: 0;
}

.info-card strong {
  color: var(--color-highlight);
}

.info-card__more {
  display: inline-block;
  margin-top: 0.85rem;
  background: var(--color-member);
  border: none;
  color: var(--color-ink);
  text-decoration: none;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.85rem;
  padding: 0.6rem 1.5rem;
  border-radius: 999px;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(253, 198, 54, 0.4);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.info-card__more:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(253, 198, 54, 0.5);
}

/* ---------- Contact ---------- */

.contact {
  position: relative;
  overflow: hidden;
  padding: clamp(4rem, 10vw, 7rem) clamp(1.5rem, 6vw, 4rem);
  color: var(--color-white);
}

.contact__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.contact__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(120deg, rgba(20, 16, 12, 0.85) 0%, rgba(20, 16, 12, 0.6) 55%, rgba(20, 16, 12, 0.4) 100%);
}

.contact__inner {
  position: relative;
  z-index: 2;
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}

.contact__eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.8rem;
  color: var(--color-gold);
  margin-bottom: 1rem;
}

.contact__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-gold);
  flex-shrink: 0;
}

.contact__title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  line-height: 1.15;
  margin-bottom: 1rem;
}

.contact__text {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.85);
  max-width: 480px;
  margin: 0 auto 2rem;
}

.contact__form {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.contact__honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.contact__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  width: 100%;
}

.contact__field {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.4rem;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.8);
}

.contact__form > .contact__field {
  width: 100%;
}

.contact__field input,
.contact__field textarea {
  width: 100%;
}

.contact__field input,
.contact__field textarea {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 400;
  color: var(--color-white);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 10px;
  padding: 0.75rem 0.9rem;
  resize: vertical;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.contact__field input:focus,
.contact__field textarea:focus {
  outline: none;
  border-color: var(--color-member);
  background: rgba(255, 255, 255, 0.16);
}

.btn-contact-submit {
  align-self: center;
  display: inline-block;
  background: var(--color-member);
  color: var(--color-ink);
  border: none;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 0.85rem 2rem;
  border-radius: 999px;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(253, 198, 54, 0.4);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.btn-contact-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(253, 198, 54, 0.5);
}

.contact__status {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 700;
  min-height: 1.2em;
}

.contact__status.is-success {
  color: #7de08a;
}

.contact__status.is-error {
  color: #ff9d9d;
}

/* ---------- Footer ---------- */

.site-footer {
  /* BEGIN child-friendly-decor: remove this radial-gradient layer stack to revert to a flat background */
  background:
    radial-gradient(circle at 8% 15%, rgba(253, 198, 54, 0.14) 0%, transparent 55%),
    radial-gradient(circle at 92% 80%, rgba(132, 161, 255, 0.12) 0%, transparent 55%),
    var(--color-ink);
  /* END child-friendly-decor */
  color: rgba(255, 255, 255, 0.85);
  padding: clamp(2.5rem, 5vw, 3.5rem) clamp(1.5rem, 6vw, 4rem) clamp(1.5rem, 3vw, 2rem);
  font-family: var(--font-body);
}

.site-footer__sponsors {
  text-align: center;
  margin-bottom: clamp(2rem, 4vw, 2.75rem);
}

.site-footer__sponsors-label {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 1rem;
}

.site-footer__logos {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
}

.site-footer__logos img {
  height: 56px;
  width: auto;
  max-width: 140px;
  object-fit: contain;
}

.site-footer__main {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2rem;
  max-width: 1100px;
  margin: 0 auto;
  padding-bottom: clamp(1.5rem, 3vw, 2rem);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.site-footer__brand-name {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--color-white);
  margin-bottom: 0.4rem;
}

.site-footer__brand p {
  font-size: 0.9rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.7);
}

.site-footer__links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.site-footer__links a,
.site-footer__contact a,
.site-footer__link-button {
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.15s ease;
}

.site-footer__links a:hover,
.site-footer__contact a:hover,
.site-footer__link-button:hover {
  color: var(--color-gold);
}

.site-footer__link-button {
  background: none;
  border: none;
  padding: 0;
  font-family: var(--font-body);
  text-align: left;
  cursor: pointer;
}

.site-footer__contact {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.85rem;
}

.site-footer__socials {
  display: flex;
  gap: 0.75rem;
}

.site-footer__socials a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: rgba(255, 255, 255, 0.75);
  transition: color 0.15s ease, border-color 0.15s ease, background 0.15s ease;
}

.site-footer__socials a:hover {
  color: var(--color-ink);
  background: var(--color-gold);
  border-color: var(--color-gold);
}

.site-footer__bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.5rem;
  max-width: 1100px;
  margin: 0 auto;
  padding-top: clamp(1.25rem, 2.5vw, 1.5rem);
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
}

.site-footer__bottom a {
  color: rgba(255, 255, 255, 0.5);
  transition: color 0.15s ease;
}

.site-footer__bottom a:hover {
  color: var(--color-gold);
}

/* ---------- Modal ---------- */

.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 400;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(1rem, 4vw, 3rem);
  background: rgba(10, 8, 6, 0.72);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.modal-overlay[hidden] {
  display: none;
}

.modal {
  position: relative;
  width: min(760px, 100%);
  max-height: min(85vh, 900px);
  display: flex;
  flex-direction: column;
  background: var(--color-white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
  animation: modalPopIn 0.25s ease both;
}

@keyframes modalPopIn {
  from {
    opacity: 0;
    transform: scale(0.96) translateY(8px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

.modal__header {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 1.75rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.modal__header h2 {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--color-ink);
  font-size: 1.5rem;
}

.modal__close {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: none;
  background: var(--color-cream);
  color: var(--color-ink);
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
  transition: background 0.15s ease;
}

.modal__close:hover {
  background: #f0e6d3;
}

.modal__body {
  overflow-y: auto;
  padding: 1.75rem;
  font-family: var(--font-body);
  color: #444;
  line-height: 1.6;
}

.modal__body h3 {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--color-ink);
  font-size: 1.15rem;
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
}

.modal__body h3:first-child {
  margin-top: 0;
}

.modal__body p {
  margin-bottom: 0.75rem;
}

.modal__body ul {
  margin: 0 0 0.75rem;
  padding-left: 1.25rem;
}

.modal__body li {
  margin-bottom: 0.3rem;
}

.modal__body strong {
  color: var(--color-highlight);
}

.modal__eyebrow {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--color-highlight);
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
}

.modal__image-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 220px;
  margin-bottom: 1rem;
  background: var(--color-cream);
  border: 2px dashed rgba(0, 0, 0, 0.15);
  border-radius: 14px;
  color: rgba(0, 0, 0, 0.35);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.9rem;
}

.modal__image {
  display: block;
  width: 100%;
  height: 260px;
  object-fit: cover;
  margin-bottom: 1rem;
  border-radius: 14px;
}

.modal__image-placeholder--small {
  height: 140px;
}

.modal__image--small {
  height: 140px;
}

/* ---------- Responsive ---------- */

@media (max-width: 480px) {
  .site-header {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .site-header__logo {
    height: clamp(109px, 27vh, 205px);
  }

  .glass-card {
    top: 68%;
    width: 90%;
    max-width: 90%;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  .glass-card h1,
  .glass-card h2 {
    white-space: normal;
  }

  .stats {
    flex-direction: column;
    gap: 0.5rem;
  }

  .stats li {
    white-space: normal;
  }

  .contact__row {
    grid-template-columns: 1fr;
  }

  .site-footer__main {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .site-footer__links {
    align-items: center;
  }

  .site-footer__contact {
    align-items: center;
  }

  .site-footer__bottom {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}

/* ---------- Scroll reveal ---------- */

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.toys__grid .toy-card:nth-child(1) { transition-delay: 0s; }
.toys__grid .toy-card:nth-child(2) { transition-delay: 0.08s; }
.toys__grid .toy-card:nth-child(3) { transition-delay: 0.16s; }
.toys__grid .toy-card:nth-child(4) { transition-delay: 0.24s; }
.toys__grid .toy-card:nth-child(5) { transition-delay: 0.32s; }
.toys__grid .toy-card:nth-child(6) { transition-delay: 0.4s; }

.info__grid .info-card:nth-child(1) { transition-delay: 0s; }
.info__grid .info-card:nth-child(2) { transition-delay: 0.08s; }
.info__grid .info-card:nth-child(3) { transition-delay: 0.16s; }
.info__grid .info-card:nth-child(4) { transition-delay: 0.24s; }
.info__grid .info-card:nth-child(5) { transition-delay: 0.32s; }
.info__grid .info-card:nth-child(6) { transition-delay: 0.4s; }

@media (prefers-reduced-motion: reduce) {
  .reveal,
  .stats {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .site-header__logo,
  .toy-card,
  .toy-card img,
  .btn-member,
  .btn-view-all,
  .chat-fab {
    transition: none !important;
  }

  .site-header,
  .glass-card,
  .glass-card h1,
  .chat-fab,
  .glass-card h2.is-typing::after {
    animation: none !important;
  }

  .scroll-prompt {
    animation: none !important;
    transform: translateX(-50%);
  }
}
