:root {
  --ink: #182026;
  --muted: #65717a;
  --paper: #f6f4ef;
  --surface: #ffffff;
  --line: #d8dedb;
  --teal: #0f8b8d;
  --coral: #e35d44;
  --blue: #33658a;
  --gold: #d2a11d;
  --shadow: 0 18px 42px rgba(24, 32, 38, 0.12);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
}

a {
  color: inherit;
  text-decoration: none;
}

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

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  font-size: clamp(40px, 5vw, 68px);
  letter-spacing: 0;
  line-height: 0.98;
  margin-bottom: 20px;
}

h2 {
  font-size: clamp(30px, 4vw, 48px);
  letter-spacing: 0;
  line-height: 1.05;
  margin-bottom: 16px;
}

h3 {
  font-size: 19px;
  letter-spacing: 0;
  line-height: 1.2;
  margin-bottom: 10px;
}

.site-header {
  align-items: center;
  background: rgba(246, 244, 239, 0.94);
  border-bottom: 1px solid rgba(24, 32, 38, 0.08);
  display: flex;
  gap: 22px;
  justify-content: space-between;
  left: 0;
  padding: 14px clamp(18px, 4vw, 56px);
  position: sticky;
  right: 0;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(14px);
}

.brand {
  align-items: center;
  display: inline-flex;
  font-weight: 900;
  gap: 10px;
  letter-spacing: 0;
  white-space: nowrap;
}

.brand-mark {
  align-items: center;
  background: var(--ink);
  color: white;
  display: inline-flex;
  font-size: 12px;
  height: 34px;
  justify-content: center;
  width: 34px;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  justify-content: center;
  font-size: 14px;
  color: var(--muted);
}

.nav a:hover,
.header-cta:hover,
.site-footer a:hover,
.series-grid a:hover {
  color: var(--coral);
}

.header-cta {
  border: 1px solid var(--ink);
  font-size: 14px;
  font-weight: 800;
  padding: 9px 14px;
  white-space: nowrap;
}

.hero,
.subpage-hero {
  display: grid;
  gap: clamp(24px, 5vw, 58px);
  grid-template-columns: minmax(360px, 0.9fr) minmax(360px, 1.1fr);
  padding: clamp(28px, 5vw, 62px) clamp(18px, 4vw, 56px);
  align-items: center;
}

.brand-hero {
  min-height: calc(100vh - 72px);
}

.category-gateway {
  background: #171a1c;
  border-bottom: 1px solid #30363a;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  min-height: clamp(600px, calc(100svh - 104px), 760px);
  overflow: hidden;
}

.gateway-panel {
  --stage-rx: 0deg;
  --stage-ry: 0deg;
  color: #f7f5ef;
  min-height: 600px;
  overflow: hidden;
  padding: clamp(30px, 4vw, 58px);
  position: relative;
  transform-style: preserve-3d;
  transition: background-color 320ms ease;
}

.gateway-panel:first-child {
  border-right: 1px solid rgba(255, 255, 255, 0.13);
}

.gateway-creative {
  background: #202326;
}

.gateway-art-toys {
  background: #1d2926;
}

.gateway-creative:hover,
.gateway-creative:focus-visible,
.gateway-creative.is-revealed {
  background: #272a2e;
}

.gateway-art-toys:hover,
.gateway-art-toys:focus-visible,
.gateway-art-toys.is-revealed {
  background: #23322e;
}

.gateway-panel:focus-visible {
  outline: 3px solid #f1c252;
  outline-offset: -4px;
}

.gateway-copy {
  max-width: 560px;
  position: relative;
  transform: translateZ(100px);
  z-index: 6;
}

.gateway-brand {
  color: #f1c252;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  margin-bottom: 18px;
  text-transform: uppercase;
}

.gateway-art-toys .gateway-brand {
  color: #77d6bb;
}

.gateway-panel h1,
.gateway-panel h2 {
  font-size: clamp(44px, 5vw, 76px);
  line-height: 0.94;
  margin-bottom: 18px;
  max-width: 680px;
}

.gateway-panel .gateway-copy > p:not(.gateway-brand) {
  color: rgba(247, 245, 239, 0.72);
  font-size: clamp(16px, 1.45vw, 20px);
  max-width: 500px;
}

.gateway-link {
  border-bottom: 2px solid currentColor;
  display: inline-flex;
  font-size: 14px;
  font-weight: 900;
  margin-top: 8px;
  padding-bottom: 5px;
}

.gateway-link::after {
  content: "\2192";
  margin-left: 9px;
  transition: transform 180ms ease;
}

.gateway-panel:hover .gateway-link::after,
.gateway-panel:focus-visible .gateway-link::after {
  transform: translateX(5px);
}

.gateway-stage {
  inset: 0;
  pointer-events: none;
  position: absolute;
  transform: perspective(1100px) rotateX(var(--stage-rx)) rotateY(var(--stage-ry));
  transform-style: preserve-3d;
  transition: transform 220ms ease-out;
  z-index: 1;
}

.gateway-product {
  --entry-y: 160%;
  --parallax-x: 0px;
  --parallax-y: 0px;
  --reveal-delay: 80ms;
  --z: 0px;
  filter: brightness(0.8) saturate(0.7) drop-shadow(0 18px 22px rgba(0, 0, 0, 0.28));
  height: 70%;
  object-fit: contain;
  object-position: left bottom;
  opacity: 0;
  position: absolute;
  transform: translate3d(var(--parallax-x), calc(var(--parallax-y) + var(--entry-y)), var(--z)) rotate(var(--rotation, 0deg)) scale(var(--scale, 1));
  transition: filter 420ms ease var(--reveal-delay), opacity 260ms ease var(--reveal-delay), transform 1050ms cubic-bezier(0.16, 1, 0.3, 1) var(--reveal-delay);
  will-change: transform;
}

.gateway-art-toys .gateway-product {
  height: 64%;
}

.gateway-panel:hover .gateway-product,
.gateway-panel:focus-visible .gateway-product,
.gateway-panel.is-revealed .gateway-product {
  --entry-y: 0%;
  filter: brightness(1) saturate(1) drop-shadow(0 30px 26px rgba(0, 0, 0, 0.44));
  opacity: 1;
}

.creative-product-trophy,
.toy-product-rainbow {
  --rotation: 0deg;
  --scale: 1;
  --z: 0px;
  -webkit-mask-image: linear-gradient(to right, #000 0%, #000 34%, rgba(0, 0, 0, 0.55) 60%, transparent 100%);
  -webkit-mask-repeat: no-repeat;
  bottom: 0;
  left: -10%;
  mask-image: linear-gradient(to right, #000 0%, #000 34%, rgba(0, 0, 0, 0.55) 60%, transparent 100%);
  mask-repeat: no-repeat;
  width: 76%;
  z-index: 1;
}

.creative-product-set,
.toy-product-blue-red {
  --rotation: 0deg;
  --scale: 1;
  --reveal-delay: 180ms;
  --z: 0px;
  -webkit-mask-image: linear-gradient(to right, #000 0%, #000 34%, rgba(0, 0, 0, 0.55) 60%, transparent 100%);
  -webkit-mask-repeat: no-repeat;
  bottom: 0;
  left: 44%;
  mask-image: linear-gradient(to right, #000 0%, #000 34%, rgba(0, 0, 0, 0.55) 60%, transparent 100%);
  mask-repeat: no-repeat;
  right: auto;
  width: 76%;
  z-index: 1;
}

.hero-copy,
.subpage-hero > div:first-child {
  max-width: 720px;
}

.eyebrow {
  color: var(--teal);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  margin: 0 0 12px;
  text-transform: uppercase;
}

.hero-lede,
.subpage-hero p,
.section-head p,
.split > div:first-child p,
.about-grid p,
.contact-copy p,
.catalog-group-head p {
  color: var(--muted);
  font-size: 18px;
}

.hero-actions,
.filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 24px;
}

.button,
.filter-chip {
  align-items: center;
  border: 1px solid var(--ink);
  cursor: pointer;
  display: inline-flex;
  font: inherit;
  font-weight: 900;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
}

.button.primary {
  background: var(--ink);
  color: white;
}

.button.primary:hover {
  background: var(--coral);
  border-color: var(--coral);
}

.button.secondary,
.filter-chip {
  background: transparent;
}

.button.secondary:hover,
.filter-chip:hover {
  border-color: var(--coral);
  color: var(--coral);
}

.button.small {
  font-size: 14px;
  min-height: 42px;
  padding: 10px 14px;
  width: 100%;
}

.hero-stats {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(3, 1fr);
  margin: 0;
}

.hero-stats div {
  border-top: 2px solid var(--line);
  padding-top: 12px;
}

.hero-stats dt {
  font-weight: 900;
}

.hero-stats dd {
  color: var(--muted);
  font-size: 14px;
  margin: 3px 0 0;
}

.hero-product-stage,
.catalog-preview {
  display: grid;
  gap: 16px;
  grid-template-columns: 1.12fr 0.88fr;
  min-width: 0;
}

.hero-product-stage img,
.catalog-preview img {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  height: 100%;
  object-fit: contain;
  padding: clamp(12px, 2vw, 24px);
  width: 100%;
}

.hero-product-stage .stage-main,
.catalog-preview img:first-child {
  grid-row: span 2;
}

.section {
  padding: clamp(48px, 8vw, 92px) clamp(18px, 4vw, 56px);
}

.trust-strip {
  align-items: center;
  background: var(--ink);
  color: white;
  display: grid;
  font-size: clamp(14px, 1.6vw, 18px);
  font-weight: 900;
  gap: 12px;
  grid-template-columns: repeat(5, 1fr);
  min-height: 104px;
  text-align: center;
}

.split {
  display: grid;
  gap: clamp(28px, 5vw, 64px);
  grid-template-columns: minmax(280px, 0.8fr) minmax(320px, 1.2fr);
}

.capability-grid,
.about-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.capability-grid article,
.faq-list details,
.product-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.capability-grid article {
  padding: 22px;
}

.capability-grid article p,
.faq-list p,
.product-card p {
  color: var(--muted);
}

.series-grid a {
  color: var(--ink);
  font-weight: 900;
}

.icon-dot {
  background: var(--teal);
  display: block;
  height: 12px;
  margin-bottom: 18px;
  width: 34px;
}

.icon-dot.coral {
  background: var(--coral);
}

.icon-dot.blue {
  background: var(--blue);
}

.icon-dot.ink {
  background: var(--ink);
}

.product-feature,
.safety-section,
.catalog-section,
.module-index {
  background: #edf3f1;
}

.section-head {
  max-width: 780px;
  margin-bottom: 28px;
}

.product-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.product-grid.compact {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.product-card {
  display: grid;
  overflow: hidden;
}

.product-media {
  align-items: center;
  aspect-ratio: 1 / 1;
  background: white;
  border-bottom: 1px solid var(--line);
  display: flex;
  justify-content: center;
  padding: 18px;
}

.product-media img {
  height: 100%;
  object-fit: contain;
  width: 100%;
}

.product-copy {
  display: grid;
  grid-template-rows: auto auto 1fr auto auto;
  padding: 18px;
}

.product-kicker {
  color: var(--teal);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.product-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 4px 0 14px;
}

.product-meta span {
  background: #f0eee8;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 800;
  padding: 5px 9px;
}

.module-card-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.module-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  display: grid;
  gap: 18px;
  grid-template-columns: minmax(220px, 0.78fr) minmax(260px, 1.22fr);
  overflow: hidden;
  padding: 18px;
}

.module-card h3 {
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1;
}

.module-card-copy {
  align-content: center;
  display: grid;
}

.module-card-copy p:not(.eyebrow) {
  color: var(--muted);
}

.module-preview-grid {
  display: grid;
  gap: 12px;
}

.module-preview-grid.two-up {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.module-preview-grid a {
  background: #f8f8f6;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--ink);
  display: grid;
  font-weight: 900;
  gap: 10px;
  min-height: 100%;
  padding: 12px;
}

.module-preview-grid img {
  aspect-ratio: 1 / 1;
  object-fit: contain;
  width: 100%;
}

.module-hero {
  display: grid;
  gap: clamp(24px, 5vw, 58px);
  grid-template-columns: minmax(340px, 0.82fr) minmax(380px, 1.18fr);
  padding: clamp(34px, 6vw, 72px) clamp(18px, 4vw, 56px);
  align-items: center;
}

.module-hero-copy {
  max-width: 720px;
}

.module-hero-copy p:not(.eyebrow) {
  color: var(--muted);
  font-size: 18px;
}

.module-video-grid,
.video-strip {
  display: grid;
  gap: 16px;
  grid-template-columns: 1.2fr 0.8fr;
}

.module-video-grid.single {
  grid-template-columns: 1fr;
}

.video-strip {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.video-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  color: var(--ink);
  display: grid;
  font-weight: 900;
  gap: 10px;
  overflow: hidden;
  padding: 12px;
}

.video-card.large {
  grid-row: span 2;
}

.video-card video {
  aspect-ratio: 16 / 10;
  background: #0c1114;
  border-radius: calc(var(--radius) - 2px);
  object-fit: cover;
  width: 100%;
}

.module-subroutes {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.module-subroutes a {
  align-items: center;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  display: grid;
  gap: 20px;
  grid-template-columns: 170px 1fr;
  padding: 18px;
}

.module-subroutes img {
  aspect-ratio: 1 / 1;
  object-fit: contain;
  width: 100%;
}

.module-products {
  grid-template-columns: minmax(280px, 420px);
}

.catalog-group-head a {
  color: var(--teal);
  font-weight: 900;
}

.notice-band {
  align-items: start;
  background: var(--ink);
  color: white;
  display: grid;
  gap: clamp(24px, 4vw, 54px);
  grid-template-columns: minmax(260px, 0.8fr) minmax(320px, 1.2fr);
}

.notice-band .eyebrow,
.notice-list p {
  color: #cfdbd7;
}

.notice-list {
  display: grid;
  gap: 14px;
}

.notice-list p {
  background: rgba(255, 255, 255, 0.07);
  border-left: 5px solid var(--gold);
  margin: 0;
  padding: 18px 20px;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-list details {
  padding: 20px 22px;
}

summary {
  cursor: pointer;
  font-weight: 900;
}

summary::marker {
  color: var(--coral);
}

.about-band {
  background: var(--paper);
}

.about-grid p {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  margin: 0;
  padding: 22px;
}

.contact-section {
  align-items: start;
  background: white;
  display: grid;
  gap: clamp(24px, 4vw, 54px);
  grid-template-columns: minmax(260px, 0.75fr) minmax(320px, 1.25fr);
}

.inquiry-form {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

label {
  color: inherit;
  display: grid;
  font-size: 14px;
  font-weight: 800;
  gap: 7px;
}

input,
select,
textarea {
  border: 1px solid var(--line);
  border-radius: 0;
  color: var(--ink);
  font: inherit;
  min-height: 46px;
  padding: 12px 13px;
  width: 100%;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--gold);
  outline: 3px solid rgba(210, 161, 29, 0.28);
}

.wide {
  grid-column: 1 / -1;
}

.form-note {
  color: var(--muted);
  grid-column: 1 / -1;
  margin: 0;
}

.subpage-main {
  background: var(--paper);
}

.content-band {
  padding: clamp(48px, 7vw, 84px) clamp(18px, 4vw, 56px);
}

.legal {
  max-width: 920px;
}

.legal h1 {
  font-size: clamp(38px, 5vw, 62px);
}

.legal h2 {
  font-size: clamp(24px, 3vw, 34px);
  margin-top: 34px;
}

.legal p {
  color: var(--muted);
}

.product-list-hero {
  align-items: center;
}

.catalog-preview img {
  min-height: 190px;
}

.catalog-group {
  scroll-margin-top: 96px;
}

.catalog-group + .catalog-group {
  margin-top: clamp(54px, 8vw, 92px);
}

.catalog-group-head {
  max-width: 820px;
  margin-bottom: 24px;
}

.site-footer {
  align-items: center;
  background: #ffffff;
  border-top: 1px solid var(--line);
  display: flex;
  gap: 22px;
  justify-content: space-between;
  padding: 28px clamp(18px, 4vw, 56px);
}

.site-footer p {
  color: var(--muted);
  margin: 4px 0 0;
}

.site-footer a {
  font-weight: 900;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: flex-end;
}

@media (max-width: 980px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .nav {
    justify-content: flex-start;
  }

  .hero,
  .subpage-hero,
  .module-hero,
  .split,
  .notice-band,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .brand-hero {
    min-height: auto;
  }

  .product-grid,
  .product-grid.compact {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .module-card-grid,
  .module-card,
  .module-subroutes,
  .module-video-grid,
  .video-strip {
    grid-template-columns: 1fr;
  }

  .trust-strip {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 680px) {
  h1 {
    font-size: 40px;
  }

  h2 {
    font-size: 30px;
  }

  .site-header {
    padding: 12px 16px;
  }

  .nav {
    gap: 12px;
  }

  .header-cta {
    width: 100%;
    text-align: center;
    justify-content: center;
  }

  .category-gateway {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .gateway-panel {
    min-height: 70svh;
    padding: 28px 18px;
  }

  .gateway-panel:first-child {
    border-bottom: 1px solid rgba(255, 255, 255, 0.13);
    border-right: 0;
  }

  .gateway-product {
    --entry-y: 140%;
    opacity: 0;
  }

  .gateway-copy {
    max-width: 94%;
  }

  .gateway-panel h1,
  .gateway-panel h2 {
    font-size: 40px;
    max-width: 520px;
  }

  .gateway-panel .gateway-copy > p:not(.gateway-brand) {
    font-size: 16px;
    max-width: 420px;
  }

  .hero,
  .subpage-hero,
  .module-hero,
  .section {
    padding-left: 16px;
    padding-right: 16px;
  }

  .hero-product-stage,
  .catalog-preview {
    grid-template-columns: 1fr;
  }

  .hero-product-stage .stage-main,
  .catalog-preview img:first-child {
    grid-row: auto;
  }

  .hero-stats,
  .capability-grid,
  .about-grid,
  .product-grid,
  .product-grid.compact,
  .inquiry-form,
  .trust-strip,
  .module-preview-grid.two-up,
  .module-subroutes a {
    grid-template-columns: 1fr;
  }

  .module-card {
    padding: 14px;
  }

  .module-card h3 {
    font-size: 30px;
  }

  .video-card.large {
    grid-row: auto;
  }

  .product-copy {
    grid-template-rows: auto;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-links {
    justify-content: flex-start;
  }
}

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

  .gateway-link::after,
  .gateway-product,
  .gateway-stage {
    transition: none;
  }

  .gateway-product {
    --entry-y: 0%;
    filter: brightness(1) saturate(1) drop-shadow(0 30px 26px rgba(0, 0, 0, 0.44));
    opacity: 1;
  }
}
