/* ==========================================================================
   Munewari – Japanische Traditionstätowierung
   Dark Design · reine Informationsseite
   ========================================================================== */

:root {
  --bg:        #0a0a0b;
  --bg-soft:   #131316;
  --bg-card:   #17171b;
  --border:    #2a2a30;
  --text:      #e8e4dd;
  --text-dim:  #c2bcb0;
  --red:       #d94449;
  --red-light: #ec6d72;
  --gold:      #c9a86a;
  --serif:     "Shippori Mincho", "Georgia", "Times New Roman", serif;
  --sans:      "Zen Kaku Gothic New", "Helvetica Neue", "Segoe UI", system-ui, sans-serif;
  --wrap:      1080px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  line-height: 1.7;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* Subtiler Seigaiha-Wellenhintergrund oben */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 50% -10%, rgba(179,40,45,0.10), transparent 55%),
    var(--bg);
}

a { color: var(--red-light); text-decoration: none; transition: color .2s; }
a:hover { color: var(--gold); }

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

/* ---------- Layout ---------- */
.wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 24px; }

section { padding: 80px 0; }
section:nth-child(even) { background: var(--bg-soft); }

/* ---------- Navigation ---------- */
header.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10,10,11,0.85);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand {
  font-family: var(--serif);
  font-size: 1.35rem;
  letter-spacing: .18em;
  color: var(--text);
  text-transform: uppercase;
}
.brand span { color: var(--red); font-weight: 700; }
.brand small {
  display: block;
  font-family: var(--sans);
  font-size: .58rem;
  letter-spacing: .3em;
  color: var(--text-dim);
  margin-top: 2px;
}
nav.links { display: flex; gap: 28px; flex-wrap: wrap; }
nav.links a {
  color: var(--text-dim);
  font-size: .82rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 4px 0;
  border-bottom: 2px solid transparent;
}
nav.links a:hover { color: var(--text); }
nav.links a.active { color: var(--text); border-bottom-color: var(--red); }

.nav-toggle {
  display: none;
  background: none;
  border: 0;
  color: var(--text);
  font-size: 1.6rem;
  cursor: pointer;
}

/* ---------- Hero ---------- */
.hero {
  min-height: 78vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 100px 24px;
  position: relative;
}
.hero .kanji {
  font-family: var(--serif);
  font-size: clamp(4rem, 16vw, 11rem);
  color: rgba(179,40,45,0.14);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  z-index: 0;
  user-select: none;
}
.hero-content { position: relative; z-index: 1; max-width: 760px; }
.hero h1 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(2.4rem, 6vw, 4.2rem);
  line-height: 1.1;
  margin-bottom: 22px;
}
.hero p { color: var(--text-dim); font-size: 1.15rem; max-width: 620px; margin: 0 auto 34px; }

/* ---------- Typo ---------- */
.eyebrow {
  color: var(--red);
  font-weight: 700;
  font-size: 1.56rem;
  letter-spacing: .32em;
  text-transform: uppercase;
  margin-bottom: 16px;
  display: block;
}
h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(1.8rem, 4vw, 2.7rem);
  line-height: 1.15;
  margin-bottom: 24px;
}
h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 1.4rem;
  margin-bottom: 10px;
  color: var(--text);
}
p + p { margin-top: 16px; }
.lead { font-size: 1.15rem; color: var(--text-dim); max-width: 720px; }
.wrap-wide-text .lead { max-width: 100%; color: var(--text); }

.section-head { max-width: 720px; margin-bottom: 48px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  padding: 14px 32px;
  border: 1px solid var(--red);
  color: var(--text);
  letter-spacing: .12em;
  text-transform: uppercase;
  font-size: .8rem;
  transition: all .25s;
}
.btn:hover { background: var(--red); color: #fff; border-color: var(--red); }
.btn.ghost { border-color: var(--border); }
.btn.ghost:hover { border-color: var(--gold); background: transparent; color: var(--gold); }

/* ---------- Cards ---------- */
.grid { display: grid; gap: 22px; }
.grid.cols-2 { grid-template-columns: repeat(2,1fr); }
.grid.cols-3 { grid-template-columns: repeat(3,1fr); }

.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 30px;
  transition: transform .25s, border-color .25s;
  position: relative;
}
.card:hover { transform: translateY(-4px); border-color: var(--red); }
.card.has-img { padding: 0; overflow: hidden; }
.card.has-img .card-img { aspect-ratio: 4/3; overflow: hidden; }
.card.has-img .card-img img { width: 100%; height: 100%; object-fit: contain; filter: grayscale(30%) contrast(1.05); transition: filter .4s; }
.card.has-img:hover .card-img img { filter: grayscale(0%); }
.card.has-img .card-body { padding: 24px 28px 28px; }
.card .jp {
  font-family: var(--serif);
  font-size: 1.6rem;
  color: var(--gold);
  margin-bottom: 6px;
}
.card p { color: var(--text-dim); font-size: .95rem; }
a.card { color: var(--text); }
a.card .arrow { color: var(--red); margin-top: 16px; display: inline-block; font-size: .85rem; letter-spacing: .1em; }

/* 50:50 Typ-Zeilen (Bodysuit-Typen) */
.type-row {
  display: flex;
  align-items: stretch;
  background: var(--bg-card);
  border: 1px solid var(--border);
  overflow: hidden;
  margin-bottom: 24px;
  transition: border-color .25s;
}
.type-row:hover { border-color: var(--red); }
.type-row .type-img {
  flex: 0 0 50%;
  max-width: 50%;
  min-height: 320px;
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
}
.type-row .type-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: grayscale(30%) contrast(1.05);
  transition: filter .4s;
}
.type-row:hover .type-img img { filter: grayscale(0%); }
.type-row .type-img.placeholder .jp {
  font-size: clamp(3rem, 6vw, 5rem);
  color: rgba(179,40,45,0.28);
  margin: 0;
}
.type-row .type-body {
  flex: 0 0 50%;
  max-width: 50%;
  padding: 34px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.type-row .type-body p { color: var(--text-dim); font-size: 1rem; margin: 0; }
@media (max-width: 720px) {
  .type-row { flex-direction: column; }
  .type-row .type-img,
  .type-row .type-body { flex-basis: auto; max-width: 100%; }
  .type-row .type-img { min-height: 240px; }
  .type-row .type-body { padding: 26px 24px; }
}

/* Figure / Bild mit Bildunterschrift */
figure.media { margin: 34px 0; border: 1px solid var(--border); background: var(--bg-card); }
figure.media img { width: 100%; filter: grayscale(20%); }
figure.media figcaption { padding: 12px 18px; color: var(--text-dim); font-size: .85rem; }

/* Künstlerliste (FAQ-Seite) */
.artist-land {
  color: var(--gold);
  font-size: .8rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  border-bottom: 1px solid var(--border);
  padding-bottom: 8px;
  margin-bottom: 12px;
}
.artist-list { margin: 0; line-height: 2; }
.artist-list a { color: var(--text); }
.artist-list a:hover { color: var(--gold); }

/* Hero-Hintergrundbild */
.hero.has-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.82;
  filter: grayscale(12%);
  background-image: var(--hero-img);
}

/* Divider */
.rule {
  width: 60px; height: 2px; background: var(--red);
  margin: 0 0 28px;
}

/* ---------- Motiv-Liste ---------- */
.motif-cat { margin-bottom: 56px; }
.motif-cat h3 { color: var(--gold); border-bottom: 1px solid var(--border); padding-bottom: 10px; margin-bottom: 24px; }
.motif { border-left: 2px solid var(--red); padding: 4px 0 4px 20px; margin-bottom: 22px; }
.motif h4 { font-family: var(--serif); font-size: 1.15rem; font-weight: 400; margin-bottom: 4px; }
.motif h4 span { color: var(--text-dim); font-size: .9rem; font-family: var(--sans); }
.motif p { color: var(--text-dim); font-size: .95rem; }

/* ---------- FAQ / Accordion ---------- */
.faq { border-top: 1px solid var(--border); }
details.faq-item {
  border-bottom: 1px solid var(--border);
  padding: 4px 0;
}
details.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 20px 40px 20px 0;
  font-family: var(--serif);
  font-size: 1.15rem;
  position: relative;
  color: var(--text);
}
details.faq-item summary::-webkit-details-marker { display: none; }
details.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 4px; top: 50%;
  transform: translateY(-50%);
  color: var(--red);
  font-size: 1.5rem;
}
details.faq-item[open] summary::after { content: "–"; }
details.faq-item .a { padding: 0 0 22px; color: var(--text-dim); }

/* ---------- Tipps ---------- */
.tip { display: flex; gap: 20px; padding: 22px 0; border-bottom: 1px solid var(--border); }
.tip .num {
  font-family: var(--serif);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--red);
  min-width: 44px;
}
.tip h4 { font-family: var(--serif); font-weight: 400; font-size: 1.2rem; margin-bottom: 4px; }
.tip p { color: var(--text-dim); font-size: .96rem; }

/* ---------- Timeline ---------- */
.timeline { border-left: 2px solid var(--border); padding-left: 30px; margin-top: 20px; }
.tl-item { position: relative; margin-bottom: 44px; }
.tl-item::before {
  content: "";
  position: absolute;
  left: -37px; top: 6px;
  width: 12px; height: 12px;
  background: var(--red);
  border-radius: 50%;
}
.tl-item .era { color: var(--gold); font-size: .82rem; letter-spacing: .2em; text-transform: uppercase; }
.tl-item h3 { margin: 4px 0 8px; }
.tl-item p { color: var(--text-dim); }

/* ---------- Callout ---------- */
.callout {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-left: 3px solid var(--gold);
  padding: 24px 28px;
  margin: 32px 0;
  color: var(--text-dim);
}

/* ---------- Footer ---------- */
footer {
  border-top: 1px solid var(--border);
  padding: 50px 0 40px;
  background: var(--bg);
}
.foot-inner { max-width: var(--wrap); margin: 0 auto; padding: 0 24px; display: flex; flex-wrap: wrap; gap: 30px; justify-content: space-between; align-items: flex-start; }
footer .brand { font-size: 1.1rem; }
footer nav { display: flex; flex-direction: column; gap: 8px; }
footer nav a { color: var(--text-dim); font-size: .88rem; }
footer .disclaimer { color: var(--text-dim); font-size: .8rem; max-width: 420px; line-height: 1.6; }
.copy { text-align: center; color: var(--text-dim); font-size: .78rem; margin-top: 40px; letter-spacing: .1em; }

/* ---------- Responsive ---------- */
@media (max-width: 820px) {
  .grid.cols-3, .grid.cols-2 { grid-template-columns: 1fr; }
  .nav-toggle { display: block; }
  nav.links {
    display: none;
    position: absolute;
    top: 100%; left: 0; right: 0;
    flex-direction: column;
    gap: 0;
    background: var(--bg-soft);
    border-bottom: 1px solid var(--border);
    padding: 8px 24px 20px;
  }
  nav.links.open { display: flex; }
  nav.links a { padding: 12px 0; border-bottom: 1px solid var(--border); }
  section { padding: 56px 0; }
}

/* Hero: Bild mobil unter dem Titel statt hinter dem Text (nach Basis-Regel, damit es greift) */
@media (max-width: 720px) {
  .hero.has-bg { min-height: auto; padding: 72px 24px 40px; justify-content: flex-start; }
  .hero.has-bg .kanji { display: none; }
  .hero.has-bg::after {
    position: relative;
    inset: auto;
    width: 100%;
    height: 240px;
    margin-top: 30px;
    opacity: 1;
    border: 1px solid var(--border);
  }
}
