:root {
  --ink: #17151c;
  --muted: #6d6875;
  --paper: #fbfafc;
  --panel: #ffffff;
  --line: #e8e4eb;
  --accent: #d83367;
  --accent-dark: #a91f4a;
  --soft: #fff0f5;
  --gold: #b47a12;
  --shadow: 0 16px 40px rgba(46, 24, 37, .08);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Hiragino Kaku Gothic ProN", "Yu Gothic", system-ui, sans-serif;
  line-height: 1.7;
}
a { color: inherit; }
img { display: block; max-width: 100%; }
button, input, select { font: inherit; }
.skip { position: absolute; left: -9999px; }
.skip:focus { left: 16px; top: 16px; z-index: 99; background: white; padding: 10px; }
.notice {
  padding: 8px 16px;
  background: #231e27;
  color: #fff;
  font-size: 12px;
  text-align: center;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(251, 250, 252, .92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.header-inner, main, .footer-inner { width: min(1160px, calc(100% - 32px)); margin: auto; }
.header-inner { min-height: 68px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { text-decoration: none; font-weight: 900; letter-spacing: -.04em; }
.brand span { color: var(--accent); }
nav { display: flex; gap: 20px; font-size: 14px; font-weight: 700; }
nav a { text-decoration: none; }
nav a:hover { color: var(--accent); }
.hero { padding: 68px 0 42px; display: grid; grid-template-columns: 1.25fr .75fr; gap: 40px; align-items: center; }
.hero.compact { grid-template-columns: 1fr; padding-bottom: 20px; }
.eyebrow { margin: 0 0 10px; color: var(--accent); font-weight: 900; font-size: 13px; letter-spacing: .09em; }
h1 { margin: 0; max-width: 760px; font-size: clamp(36px, 6vw, 70px); line-height: 1.08; letter-spacing: -.055em; }
.lead { max-width: 690px; margin: 22px 0 0; color: var(--muted); font-size: 17px; }
.hero-card { padding: 28px; background: linear-gradient(145deg, #2d232d, #17151c); color: #fff; border-radius: 22px; box-shadow: var(--shadow); }
.hero-card strong { display: block; margin-bottom: 12px; font-size: 21px; }
.hero-card ul { margin: 0; padding-left: 20px; color: #e9e2e7; }
.controls { display: grid; grid-template-columns: minmax(220px, 1fr) 180px; gap: 12px; margin: 16px 0 30px; }
.controls input, .controls select { width: 100%; padding: 13px 15px; border: 1px solid var(--line); border-radius: 12px; background: var(--panel); color: var(--ink); }
.section { padding: 44px 0; }
.section-head { display: flex; align-items: end; justify-content: space-between; gap: 20px; margin-bottom: 20px; }
.section h2 { margin: 0; font-size: clamp(26px, 3vw, 38px); letter-spacing: -.04em; }
.section-head p { margin: 0; color: var(--muted); font-size: 14px; }
.grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.card { overflow: hidden; position: relative; display: flex; flex-direction: column; min-width: 0; background: var(--panel); border: 1px solid var(--line); border-radius: 16px; box-shadow: 0 4px 20px rgba(46, 24, 37, .04); }
.card-media { aspect-ratio: 3 / 4; background: linear-gradient(145deg, #f4e9ef, #e4dce6); overflow: hidden; }
.card-media img { width: 100%; height: 100%; object-fit: contain; transition: transform .3s ease; }
.card:hover img { transform: scale(1.025); }
.card-body { display: flex; flex: 1; flex-direction: column; padding: 16px; }
.tags { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 10px; }
.tag { display: inline-flex; padding: 3px 8px; color: var(--accent-dark); background: var(--soft); border-radius: 999px; font-size: 11px; font-weight: 800; text-decoration: none; }
.tag[href]:hover { color: #fff; background: var(--accent); }
.card h3 { margin: 0; font-size: 15px; line-height: 1.55; }
.maker { margin: 8px 0 10px; color: var(--muted); font-size: 12px; }
.people { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 14px; }
.people .tag { color: #5b4d89; background: #f2effc; }
.people .tag:hover { color: #fff; background: #66529a; }
.price-row { display: flex; align-items: center; justify-content: space-between; gap: 8px; margin-top: auto; }
.price { font-weight: 900; }
.cta { display: inline-flex; align-items: center; justify-content: center; padding: 10px 13px; color: white; background: var(--accent); border-radius: 10px; text-decoration: none; font-size: 13px; font-weight: 900; }
.cta:hover { background: var(--accent-dark); }
.empty { grid-column: 1 / -1; padding: 40px; color: var(--muted); text-align: center; background: #fff; border: 1px dashed var(--line); border-radius: 14px; }
.image-empty { display: grid; grid-column: auto; place-items: center; width: 100%; height: 100%; padding: 20px; background: transparent; border: 0; border-radius: 0; }
.topic-list { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.topic { padding: 22px; text-decoration: none; background: #fff; border: 1px solid var(--line); border-radius: 14px; }
.topic:hover { border-color: #e3a7bb; box-shadow: var(--shadow); transform: translateY(-2px); }
.topic strong { display: block; }
.topic small { color: var(--muted); }
.method { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.method article { padding: 24px; background: var(--soft); border-radius: 16px; }
.method span { color: var(--accent); font-size: 13px; font-weight: 900; }
.method h3 { margin: 5px 0 8px; }
.method p { margin: 0; color: var(--muted); font-size: 14px; }
.policy-grid { grid-template-columns: repeat(2, 1fr); }
.site-footer { margin-top: 50px; padding: 38px 0; color: #dcd6dc; background: #231e27; }
.footer-inner { display: grid; grid-template-columns: 1fr auto; gap: 24px; }
.footer-inner p { margin: 4px 0; font-size: 12px; }
.footer-links { display: flex; gap: 16px; font-size: 12px; }
.credit { color: #fff; }
.credit img { width: 135px; height: 17px; }
.age-gate { position: fixed; inset: 0; z-index: 100; display: grid; place-items: center; padding: 20px; background: rgba(15, 12, 17, .94); }
.age-gate[hidden] { display: none; }
.age-box { width: min(480px, 100%); padding: 34px; background: #fff; border-radius: 20px; text-align: center; }
.age-box h2 { margin: 0 0 12px; font-size: 28px; }
.age-box p { color: var(--muted); }
.age-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 22px; }
.age-actions button, .age-actions a { padding: 12px; border: 0; border-radius: 10px; text-decoration: none; font-weight: 900; cursor: pointer; }
.age-yes { color: white; background: var(--accent); }
.age-no { color: var(--ink); background: #eee9ee; }
@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; }
  .grid { grid-template-columns: repeat(2, 1fr); }
  .topic-list, .method { grid-template-columns: 1fr; }
}
@media (max-width: 620px) {
  .header-inner { align-items: flex-start; flex-direction: column; gap: 8px; padding: 12px 0; }
  nav { width: 100%; gap: 14px; overflow-x: auto; white-space: nowrap; }
  .hero { padding-top: 44px; }
  .controls { grid-template-columns: 1fr; }
  .grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .card-body { padding: 12px; }
  .card h3 { font-size: 13px; }
  .price-row { align-items: stretch; flex-direction: column; }
  .footer-inner { grid-template-columns: 1fr; }
}
