:root {
  --black: #0b0a08;
  --ink: #201b15;
  --muted: #6d655b;
  --line: #e7dfd2;
  --soft: #faf7f1;
  --gold: #c69320;
  --gold-dark: #8b650f;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(30, 22, 10, 0.13);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.55;
}

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

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 78px;
  padding: 14px clamp(20px, 4vw, 64px);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(16px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 22px;
  text-decoration: none;
}

.brand img {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.nav {
  display: flex;
  gap: 24px;
  color: var(--muted);
  font-size: 14px;
}

.nav a {
  text-decoration: none;
}

.nav a:hover,
.text-link:hover {
  color: var(--gold-dark);
}

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 2px;
  min-height: 44px;
  border: 1px solid var(--black);
  border-radius: 6px;
  padding: 0 18px;
  font-weight: 700;
  text-decoration: none;
}

.button small {
  display: block;
  font-size: 11px;
  font-weight: 700;
  opacity: 0.72;
}

.header-cta {
  color: var(--white);
  background: var(--black);
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
  min-height: calc(100vh - 78px);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
  background:
    radial-gradient(circle at 16% 18%, rgba(198, 147, 32, 0.18), transparent 30%),
    linear-gradient(115deg, #ffffff 0%, #ffffff 48%, #15100a 48%, #050403 100%);
}

.hero-copy {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(48px, 7vw, 96px) clamp(24px, 5vw, 76px);
}

.hero-watermark {
  position: absolute;
  left: clamp(18px, 3vw, 44px);
  bottom: clamp(18px, 4vw, 54px);
  z-index: 1;
  width: min(340px, 42vw);
  opacity: 0.035;
  pointer-events: none;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold-dark);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.jp-note,
.jp-translation,
.jp-inline {
  color: var(--gold-dark);
  font-family: Arial, Helvetica, sans-serif;
  letter-spacing: 0;
}

.jp-note {
  margin: -8px 0 16px;
  font-size: 13px;
  font-weight: 800;
}

.jp-translation {
  max-width: 680px;
  margin: -8px 0 18px;
  padding-left: 14px;
  border-left: 3px solid var(--gold);
  color: #7b6736;
  font-size: 14px;
  line-height: 1.7;
}

.jp-inline {
  margin: -2px 0 10px;
  color: #7b6736;
  font-size: 13px;
  line-height: 1.65;
}

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

h1,
h2 {
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.08;
}

h1 {
  max-width: 760px;
  margin-bottom: 22px;
  color: var(--black);
  font-size: clamp(42px, 6vw, 78px);
  font-weight: 500;
}

h2 {
  margin-bottom: 18px;
  color: var(--black);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 500;
}

h3 {
  margin-bottom: 8px;
  color: var(--black);
  font-size: 20px;
}

.lead {
  max-width: 650px;
  margin-bottom: 30px;
  color: var(--muted);
  font-size: 18px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 26px;
}

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

.button.secondary {
  color: var(--black);
  border-color: var(--line);
  background: var(--white);
}

.quick-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.quick-facts span {
  display: flex;
  flex-direction: column;
  gap: 2px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 12px;
  color: var(--muted);
  background: var(--soft);
  font-size: 13px;
}

.quick-facts small,
.proof-band small,
.flow small,
li small {
  display: block;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.45;
  opacity: 0.78;
}

.hero-proof {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  max-width: 640px;
  margin-top: 22px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.hero-proof div {
  min-height: 86px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 14px 36px rgba(30, 22, 10, 0.08);
}

.hero-proof strong {
  display: block;
  color: var(--black);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 27px;
  font-weight: 500;
  line-height: 1;
}

.hero-proof small {
  display: block;
  margin-top: 8px;
  color: var(--gold-dark);
  font-size: 12px;
  font-weight: 800;
}

.hero-media {
  position: relative;
  align-self: start;
  display: flex;
  flex-direction: column;
  margin: clamp(20px, 3vw, 40px) clamp(20px, 4vw, 70px) clamp(24px, 4vw, 54px) 0;
  overflow: hidden;
  border: 1px solid rgba(230, 189, 98, 0.38);
  border-radius: 8px;
  background: var(--black);
  box-shadow: 0 36px 90px rgba(0, 0, 0, 0.42);
}

.hero-media img {
  display: block;
  width: 100%;
  height: auto;
}

.hero-video {
  align-self: center;
  width: 100%;
  max-width: 260px;
  height: auto;
  margin: 16px auto 22px;
  border: 1px solid rgba(230, 189, 98, 0.35);
  border-radius: 10px;
}

.hero-media-caption {
  position: absolute;
  right: 22px;
  bottom: 22px;
  left: 22px;
  z-index: 2;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  border-top: 1px solid rgba(230, 189, 98, 0.46);
  padding-top: 18px;
  color: var(--white);
}

.hero-media-caption span {
  color: #e6bd62;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(22px, 2.8vw, 42px);
}

.hero-media-caption strong {
  max-width: 260px;
  color: #f5ead6;
  font-size: 13px;
  text-align: right;
}

.proof-band {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-bottom: 1px solid var(--line);
  background: var(--black);
}

.proof-band div {
  min-height: 132px;
  padding: 26px;
  border-right: 1px solid rgba(255, 255, 255, 0.14);
}

.proof-band strong,
.proof-band span {
  display: block;
}

.proof-band strong {
  color: var(--white);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 26px;
  font-weight: 500;
}

.proof-band span {
  margin-top: 6px;
  color: #d9cdb7;
  font-size: 14px;
}

.proof-band small {
  margin-top: 7px;
  color: #e6bd62;
}

.section {
  padding: clamp(64px, 8vw, 112px) clamp(24px, 5vw, 76px);
  border-bottom: 1px solid var(--line);
}

.two-column,
.contact-person,
.policy-section,
.logistics,
.final-cta {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
  gap: clamp(32px, 5vw, 72px);
  align-items: start;
}

.section-intro p,
.section-heading p,
.policy-copy p,
.contact-person p,
.final-cta p {
  max-width: 680px;
  color: var(--muted);
}

.company-card,
.person-panel,
.product-card,
.policy-list,
.terms-grid > div,
.faq-list details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.company-card {
  box-shadow: var(--shadow);
  padding: 28px;
}

.company-logo {
  width: 148px;
  margin-bottom: 18px;
}

dl {
  margin: 0;
}

dl div {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 16px;
  padding: 13px 0;
  border-top: 1px solid var(--line);
}

dt {
  color: var(--muted);
  font-size: 14px;
}

dd {
  margin: 0;
  font-weight: 700;
}

.text-link {
  display: inline-block;
  margin-top: 18px;
  color: var(--gold-dark);
  font-weight: 700;
}

.contact-person {
  background: var(--soft);
}

.person-panel {
  display: grid;
  grid-template-columns: 138px 1fr;
  gap: 24px;
  padding: 24px;
}

.portrait-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--gold-dark);
  background: linear-gradient(145deg, #fff, #f2eadc);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 24px;
}

ul {
  margin: 14px 0 0;
  padding-left: 18px;
  color: var(--muted);
}

.section-heading {
  max-width: 820px;
  margin-bottom: 34px;
}

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

.product-card {
  min-height: 260px;
  padding: 26px;
  overflow: hidden;
}

.product-card span {
  display: inline-block;
  margin-bottom: 26px;
  color: var(--gold-dark);
  font-weight: 800;
}

.product-photo {
  height: 156px;
  margin: -26px -26px 22px;
  border-bottom: 1px solid var(--line);
  background-color: #15100a;
  background-repeat: no-repeat;
}

.pokemon-photo {
  background-image: linear-gradient(rgba(11, 10, 8, 0.04), rgba(11, 10, 8, 0.04)), url("assets/pokemon.jpg");
  background-size: cover;
  background-position: center;
}

.onepiece-photo {
  background-image: linear-gradient(rgba(11, 10, 8, 0.04), rgba(11, 10, 8, 0.04)), url("assets/onepiece.jpg");
  background-size: cover;
  background-position: center;
}

.stock-photo {
  background-image: linear-gradient(rgba(11, 10, 8, 0.04), rgba(11, 10, 8, 0.04)), url("assets/wholesale-boxes.jpg");
  background-size: cover;
  background-position: center;
}

.oripa-photo {
  background-image: linear-gradient(rgba(11, 10, 8, 0.04), rgba(11, 10, 8, 0.04)), url("assets/oripa-pack.jpg");
  background-size: cover;
  background-position: center 20%;
}

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

.product-card.accent-card {
  background: var(--soft);
}

.policy-list {
  display: grid;
  gap: 0;
  overflow: hidden;
}

.policy-list div {
  padding: 24px;
  border-bottom: 1px solid var(--line);
}

.policy-list div:last-child {
  border-bottom: 0;
}

.logistics {
  background: var(--black);
}

.logistics h2,
.logistics h3,
.logistics .jp-note {
  color: var(--white);
}

.logistics .jp-translation,
.logistics .jp-inline {
  color: #e2c57e;
  border-left-color: #e6bd62;
}

.logistics .eyebrow {
  color: #e6bd62;
}

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

.terms-grid > div {
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.06);
  padding: 24px;
}

.terms-grid p {
  color: #d9cdb7;
}

.flow-section {
  padding: clamp(64px, 8vw, 112px) clamp(24px, 5vw, 76px);
  background: var(--soft);
  border-bottom: 1px solid var(--line);
}

.flow {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
}

.flow li {
  min-height: 142px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 18px;
  background: var(--white);
  font-weight: 700;
}

.flow li small {
  margin-top: 8px;
  color: #7b6736;
}

.flow span {
  display: block;
  width: 34px;
  height: 34px;
  margin-bottom: 22px;
  border-radius: 50%;
  color: var(--white);
  background: var(--gold-dark);
  text-align: center;
  line-height: 34px;
}

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

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

.faq-list summary {
  cursor: pointer;
  color: var(--black);
  font-weight: 800;
}

.faq-list p {
  margin: 12px 0 0;
}

.final-cta {
  align-items: center;
  padding-left: clamp(24px, 5vw, 76px);
  padding-right: clamp(24px, 5vw, 76px);
  background: linear-gradient(90deg, var(--black), #211a10);
  color: var(--white);
}

.final-cta h2 {
  max-width: 820px;
  color: var(--white);
}

.final-cta p {
  color: #d9cdb7;
}

.final-cta .button {
  justify-self: end;
  width: min(100%, 340px);
  border-color: var(--gold);
  background: var(--gold);
  color: var(--black);
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 26px clamp(24px, 5vw, 76px);
  color: var(--muted);
  font-size: 14px;
}

@media (max-width: 980px) {
  .site-header {
    position: static;
    flex-wrap: wrap;
  }

  .nav {
    order: 3;
    width: 100%;
    overflow-x: auto;
  }

  .hero,
  .two-column,
  .contact-person,
  .policy-section,
  .logistics,
  .final-cta {
    grid-template-columns: 1fr;
  }

  .hero-media {
    margin: 0 24px 32px;
  }

  .hero {
    background:
      radial-gradient(circle at 16% 18%, rgba(198, 147, 32, 0.18), transparent 30%),
      linear-gradient(180deg, #ffffff 0%, #ffffff 62%, #15100a 62%, #050403 100%);
  }

  .proof-band,
  .product-grid,
  .flow {
    grid-template-columns: repeat(2, 1fr);
  }

  .final-cta .button {
    justify-self: start;
  }
}

@media (max-width: 640px) {
  .brand span {
    font-size: 19px;
  }

  .header-cta {
    width: 100%;
  }

  .hero {
    min-height: 0;
  }

  .hero-copy {
    padding-top: 40px;
  }

  .hero-media {
    order: -1;
    margin: 0;
    border-right: 0;
    border-left: 0;
    border-radius: 0;
  }

  .hero-proof {
    grid-template-columns: 1fr;
  }

  .hero-media-caption {
    align-items: start;
    flex-direction: column;
  }

  .hero-media-caption strong {
    text-align: left;
  }

  .final-cta {
    padding: 48px 24px;
  }

  .final-cta h2 {
    font-size: 34px;
  }

  .final-cta .button {
    justify-self: stretch;
    width: 100%;
  }

  h1 {
    font-size: 40px;
  }

  .proof-band,
  .product-grid,
  .terms-grid,
  .flow,
  .person-panel {
    grid-template-columns: 1fr;
  }

  .proof-band div {
    min-height: auto;
  }

  dl div {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .footer {
    flex-direction: column;
  }
}
