/* ------------------------------------------------------------------
   Choker Tokyo · チョーカー 東京 (v3)
   Harajuku select-shop: cream, sakura, mint, kawaii rounded, polaroid.
------------------------------------------------------------------ */

:root {
  --cream: #fff6eb;
  --cream-2: #ffeedb;
  --sakura: #ffd9e3;
  --sakura-soft: #ffecf2;
  --pink: #ff5b97;
  --pink-deep: #e02e6b;
  --mint: #cfebd8;
  --mint-deep: #7bc49a;
  --lavender: #e6d8f2;
  --lav-deep: #b29ad0;
  --sky: #cde4f0;
  --sun: #fff1c1;
  --ink: #3a2030;
  --ink-2: #6b4a5c;
  --ink-quiet: #a08894;
  --gold: #d4a75a;
  --line: rgba(58, 32, 48, 0.12);
  --line-strong: rgba(58, 32, 48, 0.32);

  --f-display: "Dela Gothic One", "Zen Maru Gothic", -apple-system, sans-serif;
  --f-body: "Zen Maru Gothic", "M PLUS Rounded 1c", -apple-system, sans-serif;
  --f-script: "Caveat", "Shadows Into Light", cursive;

  --pad: clamp(18px, 3.5vw, 48px);
  --radius: 20px;
  --radius-lg: 28px;
  --ease: cubic-bezier(.22,.61,.36,1);
  --shadow: 0 8px 24px rgba(58, 32, 48, 0.08), 0 2px 6px rgba(58, 32, 48, 0.04);
  --shadow-hover: 0 16px 40px rgba(255, 91, 151, 0.22), 0 4px 12px rgba(58, 32, 48, 0.08);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--f-body);
  font-size: 15px;
  line-height: 1.65;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  background-image:
    radial-gradient(circle at 10% 0%, rgba(255, 217, 227, 0.3) 0%, transparent 40%),
    radial-gradient(circle at 90% 15%, rgba(207, 235, 216, 0.25) 0%, transparent 35%),
    radial-gradient(circle at 50% 60%, rgba(230, 216, 242, 0.2) 0%, transparent 40%);
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: 0; border: 0; cursor: pointer; }
input, select, textarea { font: inherit; color: inherit; }
ul, ol { margin: 0; padding: 0; list-style: none; }
h1,h2,h3,h4 { margin: 0; font-weight: 400; }
p { margin: 0 0 1em; }
::selection { background: var(--pink); color: white; }

.sr-only { position: absolute !important; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }

/* ---------- Typography atoms ---------- */
.label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: 999px;
  background: var(--sakura);
  color: var(--pink-deep);
  font-family: var(--f-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.02em;
}
.label::before { content: "♡"; color: var(--pink); font-size: 14px; }
.label--mint { background: var(--mint); color: #3d7a5a; }
.label--mint::before { content: "✿"; color: var(--mint-deep); }
.label--lav { background: var(--lavender); color: #6a4e8a; }
.label--lav::before { content: "✧"; color: var(--lav-deep); }
.label--sun { background: var(--sun); color: #a0760e; }
.label--sun::before { content: "☆"; color: #d4a75a; }

.jp {
  font-weight: 400;
  letter-spacing: 0.08em;
  color: var(--ink-quiet);
  font-size: 0.85em;
}
.script {
  font-family: var(--f-script);
  font-weight: 400;
  color: var(--pink-deep);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 999px;
  font-family: var(--f-body);
  font-size: 14px;
  font-weight: 700;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), background .3s var(--ease), color .3s var(--ease);
  border: 0;
}
.btn--pink {
  background: var(--pink);
  color: white;
  box-shadow: 0 4px 0 var(--pink-deep), var(--shadow);
}
.btn--pink:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 0 var(--pink-deep), var(--shadow-hover);
}
.btn--pink:active {
  transform: translateY(2px);
  box-shadow: 0 0 0 var(--pink-deep), var(--shadow);
}
.btn--ghost {
  background: white;
  color: var(--ink);
  border: 2px solid var(--ink);
  box-shadow: var(--shadow);
}
.btn--ghost:hover {
  background: var(--ink);
  color: white;
  transform: translateY(-2px);
}
.btn--mint { background: var(--mint-deep); color: white; box-shadow: 0 4px 0 #5ba57d, var(--shadow); }
.btn--mint:hover { transform: translateY(-2px); box-shadow: 0 6px 0 #5ba57d, var(--shadow-hover); }
.btn--lav { background: var(--lav-deep); color: white; box-shadow: 0 4px 0 #8e77ad, var(--shadow); }
.btn--lav:hover { transform: translateY(-2px); box-shadow: 0 6px 0 #8e77ad, var(--shadow-hover); }

.btn--block { width: 100%; }

/* ---------- Age strip (soft) ---------- */
.age-strip {
  background: var(--pink);
  color: white;
  padding: 10px var(--pad);
  font-size: 13px;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  text-align: center;
}
.age-strip button {
  background: white;
  color: var(--pink-deep);
  padding: 5px 14px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  transition: background .2s var(--ease), color .2s var(--ease);
}
.age-strip button:hover { background: var(--ink); color: white; }
.age-strip.is-hidden { display: none; }

/* ---------- Top banner (ticker) ---------- */
.ticker {
  background: var(--ink);
  color: var(--cream);
  overflow: hidden;
  padding: 10px 0;
  font-size: 13px;
  font-weight: 500;
}
.ticker__track {
  display: inline-flex;
  gap: 36px;
  white-space: nowrap;
  animation: scroll 40s linear infinite;
  padding-left: 36px;
}
.ticker__track em { color: var(--pink); font-style: normal; font-weight: 700; }
.ticker__track span:nth-child(odd)::after {
  content: " ♡ ";
  color: var(--pink);
  margin-left: 8px;
}
@keyframes scroll { from {transform:translateX(0)} to {transform:translateX(-50%)} }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 80;
  background: rgba(255, 246, 235, 0.92);
  backdrop-filter: blur(12px) saturate(140%);
  border-bottom: 1px solid var(--line);
}
.nav {
  max-width: 1400px;
  margin: 0 auto;
  padding: 14px var(--pad);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: transform .3s var(--ease);
}
.brand:hover { transform: rotate(-2deg); }
.brand__heart {
  width: 36px; height: 36px;
  background: var(--pink);
  color: white;
  border-radius: 50%;
  display: grid; place-items: center;
  font-size: 18px;
  box-shadow: 0 3px 0 var(--pink-deep);
}
.brand__word {
  font-family: var(--f-display);
  font-size: 24px;
  line-height: 1;
  color: var(--ink);
}
.brand__sub {
  display: block;
  font-family: var(--f-body);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.14em;
  color: var(--pink-deep);
  margin-top: 2px;
}
.nav__list {
  display: inline-flex;
  gap: 0;
  justify-self: center;
  background: white;
  padding: 6px;
  border-radius: 999px;
  box-shadow: var(--shadow);
}
.nav__list a {
  padding: 10px 18px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink-2);
  transition: background .3s var(--ease), color .3s var(--ease);
}
.nav__list a:hover, .nav__list a[aria-current="page"] {
  background: var(--pink);
  color: white;
}
.nav__tools {
  display: inline-flex;
  gap: 10px;
  align-items: center;
}
.icon-btn {
  width: 40px; height: 40px;
  border-radius: 50%;
  display: inline-grid; place-items: center;
  background: white;
  color: var(--ink);
  box-shadow: var(--shadow);
  transition: transform .25s var(--ease), background .25s var(--ease), color .25s var(--ease);
  position: relative;
}
.icon-btn:hover { transform: translateY(-2px); background: var(--pink); color: white; }
.icon-btn .bag-count {
  position: absolute;
  top: -4px; right: -4px;
  background: var(--pink);
  color: white;
  font-size: 10px;
  font-weight: 700;
  min-width: 18px;
  height: 18px;
  border-radius: 50%;
  display: grid; place-items: center;
  border: 2px solid var(--cream);
}
.nav__toggle {
  display: none;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: white;
  box-shadow: var(--shadow);
  flex-direction: column;
  gap: 4px;
  align-items: center;
  justify-content: center;
}
.nav__toggle span {
  display: block; width: 18px; height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform .3s var(--ease);
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: clamp(40px, 6vw, 100px) var(--pad) clamp(60px, 8vw, 120px);
  overflow: hidden;
}
.hero__deco {
  position: absolute;
  pointer-events: none;
  z-index: 1;
}
.hero__deco--1 { top: 8%; left: 4%; font-size: 48px; color: var(--pink); animation: float 6s ease-in-out infinite; }
.hero__deco--2 { top: 15%; right: 6%; font-size: 36px; color: var(--lav-deep); animation: float 7s ease-in-out infinite .5s; }
.hero__deco--3 { bottom: 12%; left: 8%; font-size: 40px; color: var(--mint-deep); animation: float 8s ease-in-out infinite 1s; }
.hero__deco--4 { bottom: 20%; right: 10%; font-size: 54px; color: var(--pink); animation: float 6.5s ease-in-out infinite .3s; }
.hero__deco--5 { top: 40%; left: 2%; font-size: 30px; color: var(--gold); animation: float 5s ease-in-out infinite .8s; }
@keyframes float {
  0%, 100% { transform: translateY(0) rotate(0); }
  50% { transform: translateY(-14px) rotate(6deg); }
}

.hero__inner {
  max-width: 1320px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: clamp(24px, 4vw, 60px);
  align-items: center;
}
.hero__copy { position: relative; }
.hero__jp {
  display: inline-block;
  font-size: 14px;
  font-weight: 500;
  color: var(--pink-deep);
  background: var(--sakura);
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 20px;
  transform: rotate(-2deg);
}
.hero__title {
  font-family: var(--f-display);
  font-size: clamp(56px, 8vw, 120px);
  line-height: 0.95;
  color: var(--ink);
  letter-spacing: -0.01em;
  margin: 0 0 24px;
  position: relative;
}
.hero__title .word {
  display: inline-block;
  position: relative;
}
.hero__title .word.accent {
  color: var(--pink);
  position: relative;
}
.hero__title .word.accent::after {
  content: "";
  position: absolute;
  left: 4%; right: 0; bottom: 0.08em;
  height: 0.18em;
  background: var(--sun);
  border-radius: 999px;
  z-index: -1;
  transform: rotate(-1.5deg);
}
.hero__title small {
  display: block;
  font-family: var(--f-script);
  font-size: 0.38em;
  color: var(--pink-deep);
  font-weight: 400;
  margin-top: 8px;
  letter-spacing: 0;
}
.hero__lede {
  font-size: clamp(15px, 1.3vw, 17px);
  color: var(--ink-2);
  max-width: 46ch;
  margin-bottom: 32px;
  line-height: 1.75;
}
.hero__cta {
  display: inline-flex;
  gap: 12px;
  flex-wrap: wrap;
}
.hero__meta {
  display: flex;
  gap: 24px;
  margin-top: 40px;
  padding-top: 24px;
  border-top: 2px dashed var(--line);
  flex-wrap: wrap;
}
.hero__meta div {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.hero__meta strong {
  font-family: var(--f-display);
  font-size: 22px;
  color: var(--pink-deep);
  line-height: 1;
}
.hero__meta span {
  font-size: 11px;
  color: var(--ink-quiet);
  letter-spacing: 0.06em;
}

/* Hero stack (polaroid cards) */
.hero__stack {
  position: relative;
  aspect-ratio: 1 / 1;
  max-width: 540px;
  justify-self: end;
  width: 100%;
}
.polaroid {
  position: absolute;
  background: white;
  border-radius: 10px;
  box-shadow: 0 14px 30px rgba(58, 32, 48, 0.15), 0 4px 10px rgba(58, 32, 48, 0.08);
  padding: 14px 14px 48px;
  transition: transform .5s var(--ease), box-shadow .5s var(--ease);
}
.polaroid::after {
  content: attr(data-caption);
  position: absolute;
  bottom: 14px; left: 0; right: 0;
  text-align: center;
  font-family: var(--f-script);
  font-size: 18px;
  color: var(--ink);
}
.polaroid__tape {
  position: absolute;
  top: -8px; left: 50%;
  transform: translateX(-50%) rotate(-3deg);
  width: 72px; height: 20px;
  background: repeating-linear-gradient(45deg, rgba(255, 217, 227, 0.75), rgba(255, 217, 227, 0.75) 6px, rgba(255, 91, 151, 0.45) 6px, rgba(255, 91, 151, 0.45) 12px);
  opacity: 0.9;
}
.polaroid__body {
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 1;
}
.polaroid__body svg { width: 100%; height: 100%; }
.hero__stack .polaroid:nth-child(1) {
  width: 62%;
  top: 8%;
  right: 0;
  transform: rotate(4deg);
  z-index: 3;
}
.hero__stack .polaroid:nth-child(2) {
  width: 58%;
  top: 30%;
  left: 4%;
  transform: rotate(-6deg);
  z-index: 2;
}
.hero__stack .polaroid:nth-child(3) {
  width: 54%;
  bottom: 4%;
  right: 8%;
  transform: rotate(3deg);
  z-index: 1;
}
.hero__stack:hover .polaroid:nth-child(1) { transform: rotate(2deg) translateY(-6px); }
.hero__stack:hover .polaroid:nth-child(2) { transform: rotate(-3deg) translateY(-10px); }
.hero__stack:hover .polaroid:nth-child(3) { transform: rotate(5deg) translateY(-4px); }

/* ---------- Section ---------- */
.section {
  padding: clamp(60px, 8vw, 120px) var(--pad);
  position: relative;
}
.section__head {
  max-width: 1200px;
  margin: 0 auto clamp(32px, 5vw, 60px);
  text-align: center;
}
.section__label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: white;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  color: var(--pink-deep);
  box-shadow: var(--shadow);
  margin-bottom: 20px;
}
.section__label::before { content: "♡"; }
.section__title {
  font-family: var(--f-display);
  font-size: clamp(36px, 5vw, 72px);
  line-height: 1;
  margin: 0 0 16px;
  color: var(--ink);
  letter-spacing: -0.005em;
}
.section__title .accent { color: var(--pink); position: relative; display: inline-block; }
.section__title .accent::after {
  content: "";
  position: absolute;
  left: 2%; right: 2%; bottom: 4%;
  height: 12px;
  background: var(--sun);
  border-radius: 999px;
  z-index: -1;
  transform: rotate(-1deg);
}
.section__title .jp {
  display: block;
  font-family: var(--f-body);
  font-size: 0.25em;
  color: var(--ink-quiet);
  font-weight: 400;
  letter-spacing: 0.2em;
  margin-top: 12px;
}
.section__lede {
  max-width: 52ch;
  margin: 0 auto;
  color: var(--ink-2);
  font-size: 15px;
}

/* ---------- Moods (select by feeling) ---------- */
.moods {
  max-width: 1320px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.mood {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  padding: 32px 20px 28px;
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  text-align: center;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
  position: relative;
  overflow: hidden;
}
.mood:hover {
  transform: translateY(-8px) rotate(-1deg);
  box-shadow: var(--shadow-hover);
}
.mood__art {
  width: 110px; height: 110px;
  border-radius: 50%;
  display: grid; place-items: center;
  font-size: 52px;
  position: relative;
}
.mood--sweet .mood__art { background: var(--sakura); color: var(--pink-deep); }
.mood--cool .mood__art { background: var(--sky); color: #3a6d8a; }
.mood--soft .mood__art { background: var(--mint); color: #3d7a5a; }
.mood--rebel .mood__art { background: var(--lavender); color: #6a4e8a; }
.mood h3 {
  font-family: var(--f-display);
  font-size: 22px;
  margin: 0;
  color: var(--ink);
}
.mood span.jp {
  font-size: 12px;
  color: var(--ink-quiet);
  letter-spacing: 0.1em;
}
.mood p {
  font-size: 13px;
  color: var(--ink-2);
  margin: 0;
  max-width: 24ch;
}
.mood__link {
  margin-top: 4px;
  font-size: 12px;
  color: var(--pink-deep);
  font-weight: 700;
  letter-spacing: 0.04em;
}

/* ---------- Favorites (product polaroid grid) ---------- */
.favorites {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 32px 24px;
}
.pcard {
  background: white;
  border-radius: 18px;
  padding: 16px 16px 20px;
  box-shadow: var(--shadow);
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
  cursor: pointer;
  position: relative;
}
.pcard:nth-child(3n+1) { transform: rotate(-1deg); }
.pcard:nth-child(3n+2) { transform: rotate(1deg); }
.pcard:nth-child(3n+3) { transform: rotate(-0.5deg); }
.pcard:hover {
  transform: translateY(-8px) rotate(0);
  box-shadow: var(--shadow-hover);
}
.pcard__tape {
  position: absolute;
  top: -10px; left: 20px;
  width: 60px; height: 20px;
  background: repeating-linear-gradient(45deg, rgba(255, 217, 227, 0.9), rgba(255, 217, 227, 0.9) 5px, rgba(255, 91, 151, 0.5) 5px, rgba(255, 91, 151, 0.5) 10px);
  transform: rotate(-4deg);
  border-radius: 2px;
}
.pcard:nth-child(even) .pcard__tape { left: auto; right: 24px; transform: rotate(3deg); }
.pcard__media {
  aspect-ratio: 4 / 5;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 16px;
  position: relative;
  background: var(--sakura-soft);
}
.pcard__media svg { width: 100%; height: 100%; }
.pcard__tag {
  position: absolute;
  top: 10px; right: 10px;
  padding: 4px 10px;
  background: var(--pink);
  color: white;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.06em;
  border-radius: 999px;
  box-shadow: 0 2px 6px rgba(224, 46, 107, 0.3);
}
.pcard__heart {
  position: absolute;
  top: 10px; left: 10px;
  width: 32px; height: 32px;
  border-radius: 50%;
  background: white;
  color: var(--pink);
  display: grid; place-items: center;
  font-size: 16px;
  transition: background .2s var(--ease), color .2s var(--ease), transform .2s var(--ease);
  box-shadow: 0 2px 6px rgba(58, 32, 48, 0.1);
}
.pcard__heart:hover, .pcard__heart.is-loved {
  background: var(--pink);
  color: white;
  transform: scale(1.1);
}
.pcard__qv {
  position: absolute;
  left: 10px; right: 10px; bottom: 10px;
  background: var(--ink);
  color: white;
  padding: 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .3s var(--ease), transform .3s var(--ease), background .3s var(--ease);
}
.pcard:hover .pcard__qv { opacity: 1; transform: translateY(0); }
.pcard__qv:hover { background: var(--pink); }
.pcard__name {
  font-family: var(--f-display);
  font-size: 22px;
  color: var(--ink);
  margin: 0 0 4px;
  line-height: 1.1;
}
.pcard__ref {
  font-size: 11px;
  color: var(--ink-quiet);
  letter-spacing: 0.1em;
  font-weight: 500;
  margin: 0 0 10px;
}
.pcard__foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.pcard__price {
  font-family: var(--f-display);
  font-size: 20px;
  color: var(--pink-deep);
}
.pcard__price small { font-size: 0.7em; color: var(--ink-quiet); }
.pcard__material {
  font-size: 11px;
  color: var(--ink-quiet);
  letter-spacing: 0.04em;
  max-width: 14ch;
  text-align: right;
  line-height: 1.3;
}

/* ---------- Story band ---------- */
.story {
  max-width: 1320px;
  margin: 0 auto;
  background: linear-gradient(135deg, var(--sakura) 0%, var(--lavender) 50%, var(--mint) 100%);
  border-radius: var(--radius-lg);
  padding: clamp(40px, 6vw, 80px);
  position: relative;
  overflow: hidden;
}
.story::before {
  content: "♡";
  position: absolute;
  top: 20px; left: 40px;
  font-size: 60px;
  color: white;
  opacity: 0.4;
}
.story::after {
  content: "✧";
  position: absolute;
  bottom: 20px; right: 40px;
  font-size: 60px;
  color: white;
  opacity: 0.4;
}
.story__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(30px, 4vw, 60px);
  align-items: center;
  position: relative;
}
.story__art {
  aspect-ratio: 1;
  background: white;
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: 0 14px 36px rgba(58, 32, 48, 0.12);
  transform: rotate(-2deg);
  position: relative;
}
.story__art::before {
  content: "";
  position: absolute;
  top: -14px; left: 50%;
  transform: translateX(-50%) rotate(-2deg);
  width: 100px; height: 24px;
  background: repeating-linear-gradient(45deg, rgba(255, 91, 151, 0.8), rgba(255, 91, 151, 0.8) 6px, rgba(255, 217, 227, 0.6) 6px, rgba(255, 217, 227, 0.6) 12px);
  border-radius: 3px;
}
.story__art svg { width: 100%; height: 100%; }
.story__body h2 {
  font-family: var(--f-display);
  font-size: clamp(32px, 4vw, 56px);
  line-height: 1;
  color: var(--ink);
  margin: 0 0 20px;
}
.story__body h2 em {
  color: var(--pink-deep);
  font-style: normal;
  position: relative;
}
.story__body h2 em::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 4px;
  background: white;
  opacity: 0.6;
  border-radius: 999px;
}
.story__body p {
  color: var(--ink-2);
  font-size: 15px;
  line-height: 1.75;
  margin-bottom: 1em;
}
.story__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin: 24px 0;
}
.story__stats div {
  background: rgba(255, 255, 255, 0.6);
  padding: 16px;
  border-radius: 14px;
  text-align: center;
}
.story__stats strong {
  display: block;
  font-family: var(--f-display);
  font-size: 24px;
  color: var(--ink);
  line-height: 1;
}
.story__stats span {
  font-size: 11px;
  color: var(--ink-2);
  letter-spacing: 0.04em;
}

/* ---------- Testimonials ---------- */
.testimonials {
  max-width: 1320px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.quote-card {
  background: white;
  padding: 32px 28px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  position: relative;
}
.quote-card:nth-child(1) { transform: rotate(-1.5deg); background: var(--sakura-soft); }
.quote-card:nth-child(2) { transform: rotate(0.8deg); }
.quote-card:nth-child(3) { transform: rotate(-0.5deg); background: var(--mint); }
.quote-card::before {
  content: "❝";
  position: absolute;
  top: -10px; left: 20px;
  font-size: 60px;
  color: var(--pink);
  font-family: serif;
  line-height: 1;
}
.quote-card p {
  font-family: var(--f-script);
  font-size: 22px;
  color: var(--ink);
  line-height: 1.4;
  margin: 10px 0 20px;
}
.quote-card .author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.quote-card .avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--pink);
  color: white;
  display: grid; place-items: center;
  font-weight: 700;
}
.quote-card:nth-child(2) .avatar { background: var(--lav-deep); }
.quote-card:nth-child(3) .avatar { background: var(--mint-deep); }
.quote-card cite {
  font-style: normal;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
}
.quote-card cite span {
  display: block;
  font-size: 11px;
  color: var(--ink-quiet);
  font-weight: 400;
}

/* ---------- Moodboard strip (fake Instagram grid) ---------- */
.moodboard {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
}
.mb-tile {
  aspect-ratio: 1;
  border-radius: 14px;
  background: var(--sakura-soft);
  display: grid; place-items: center;
  font-size: 32px;
  color: var(--pink);
  position: relative;
  overflow: hidden;
  transition: transform .4s var(--ease);
  cursor: pointer;
}
.mb-tile:hover { transform: scale(1.05); }
.mb-tile::after {
  content: "♡";
  position: absolute;
  top: 10px; right: 12px;
  font-size: 14px;
  color: white;
  opacity: 0;
  transition: opacity .3s var(--ease);
}
.mb-tile:hover::after { opacity: 1; }
.mb-tile:nth-child(1) { background: var(--sakura); }
.mb-tile:nth-child(2) { background: var(--mint); color: var(--mint-deep); }
.mb-tile:nth-child(3) { background: var(--lavender); color: var(--lav-deep); }
.mb-tile:nth-child(4) { background: var(--sun); color: var(--gold); }
.mb-tile:nth-child(5) { background: var(--sky); color: #3a6d8a; }
.mb-tile:nth-child(6) { background: var(--sakura); }

/* ---------- Newsletter love-letter ---------- */
.letter {
  max-width: 860px;
  margin: 0 auto;
  background: white;
  padding: clamp(40px, 5vw, 72px);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.letter::before, .letter::after {
  content: "♡";
  position: absolute;
  font-size: 180px;
  color: var(--sakura);
  opacity: 0.5;
  z-index: 0;
}
.letter::before { top: -40px; left: -20px; transform: rotate(-20deg); }
.letter::after { bottom: -60px; right: -20px; transform: rotate(20deg); }
.letter > * { position: relative; z-index: 1; }
.letter__hat {
  font-family: var(--f-script);
  font-size: 28px;
  color: var(--pink-deep);
  margin-bottom: 10px;
}
.letter h2 {
  font-family: var(--f-display);
  font-size: clamp(32px, 4vw, 52px);
  margin: 0 0 16px;
  color: var(--ink);
  line-height: 1;
}
.letter h2 em { color: var(--pink); font-style: normal; }
.letter p {
  color: var(--ink-2);
  margin-bottom: 32px;
}
.letter__form {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  max-width: 440px;
  margin: 0 auto;
}
.letter__form input {
  padding: 16px 20px;
  border-radius: 999px;
  border: 2px solid var(--line-strong);
  background: white;
  font-size: 14px;
  transition: border-color .3s var(--ease);
}
.letter__form input:focus {
  outline: none;
  border-color: var(--pink);
}
.letter__note {
  grid-column: 1 / -1;
  margin: 14px 0 0;
  font-size: 13px;
  color: var(--pink-deep);
  min-height: 16px;
  font-weight: 600;
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--ink);
  color: var(--cream);
  padding: clamp(50px, 6vw, 90px) var(--pad) 20px;
  position: relative;
  overflow: hidden;
}
.site-footer::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; height: 6px;
  background: repeating-linear-gradient(90deg, var(--pink) 0 40px, var(--sun) 40px 80px, var(--mint-deep) 80px 120px, var(--lav-deep) 120px 160px);
}
.footer__hero {
  text-align: center;
  margin-bottom: 40px;
}
.footer__hero h2 {
  font-family: var(--f-display);
  font-size: clamp(40px, 5vw, 72px);
  color: var(--cream);
  line-height: 1;
  margin: 0;
}
.footer__hero h2 em { color: var(--pink); font-style: normal; }
.footer__hero p {
  font-family: var(--f-script);
  font-size: 22px;
  color: var(--pink);
  margin: 12px 0 0;
}
.footer__grid {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr 1fr;
  gap: 30px;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 246, 235, 0.12);
}
.footer__col h4 {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--pink);
  margin: 0 0 14px;
  text-transform: uppercase;
}
.footer__col a {
  display: block;
  padding: 5px 0;
  font-size: 13px;
  color: rgba(255, 246, 235, 0.8);
  transition: color .2s var(--ease);
}
.footer__col a:hover { color: var(--pink); }
.footer__col p {
  font-size: 12px;
  color: rgba(255, 246, 235, 0.5);
  margin: 12px 0 0;
  line-height: 1.6;
}
.footer__bottom {
  max-width: 1400px;
  margin: 30px auto 0;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 246, 235, 0.1);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 11px;
  color: rgba(255, 246, 235, 0.4);
}
.footer__bottom a { color: inherit; transition: color .2s var(--ease); }
.footer__bottom a:hover { color: var(--pink); }

/* ---------- Page head ---------- */
.page-head {
  padding: clamp(60px, 7vw, 110px) var(--pad) clamp(40px, 5vw, 70px);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-head__deco {
  position: absolute;
  font-size: 36px;
  pointer-events: none;
}
.page-head__deco--1 { top: 20%; left: 10%; color: var(--pink); }
.page-head__deco--2 { top: 60%; right: 12%; color: var(--lav-deep); }
.page-head__deco--3 { bottom: 20%; left: 20%; color: var(--mint-deep); }
.page-head h1 {
  font-family: var(--f-display);
  font-size: clamp(48px, 8vw, 120px);
  line-height: 0.95;
  color: var(--ink);
  margin: 0 0 18px;
  letter-spacing: -0.01em;
  position: relative;
  z-index: 2;
}
.page-head h1 em { color: var(--pink); font-style: normal; position: relative; }
.page-head h1 em::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 4%;
  height: 14px;
  background: var(--sun);
  border-radius: 999px;
  z-index: -1;
  transform: rotate(-1deg);
}
.page-head__jp {
  font-size: 14px;
  color: var(--ink-quiet);
  letter-spacing: 0.3em;
  margin-bottom: 20px;
  font-weight: 500;
}
.page-head__lede {
  max-width: 56ch;
  margin: 0 auto;
  color: var(--ink-2);
  font-size: 15px;
}

/* ---------- Shop ---------- */
.shop {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 var(--pad) clamp(60px, 8vw, 120px);
}
.shop__filters {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  padding: 18px;
  background: white;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  margin-bottom: 40px;
}
.shop__chips {
  display: inline-flex;
  gap: 6px;
  flex-wrap: wrap;
}
.chip {
  padding: 8px 16px;
  border-radius: 999px;
  background: transparent;
  color: var(--ink-2);
  font-size: 13px;
  font-weight: 600;
  transition: background .3s var(--ease), color .3s var(--ease);
}
.chip:hover { background: var(--sakura-soft); color: var(--pink-deep); }
.chip.is-active {
  background: var(--pink);
  color: white;
}
.sort {
  padding: 8px 16px;
  border-radius: 999px;
  background: var(--sakura-soft);
  border: 0;
  font-size: 13px;
  font-weight: 600;
  color: var(--pink-deep);
  appearance: none;
  -webkit-appearance: none;
  padding-right: 36px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='10' height='6' fill='none' stroke='%23ff5b97' stroke-width='2'><path d='M1 1l4 4 4-4'/></svg>");
  background-repeat: no-repeat;
  background-position: right 14px center;
  cursor: pointer;
}
.shop__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 32px 24px;
}

/* ---------- Quick view ---------- */
.quick {
  position: fixed; inset: 0;
  z-index: 150;
  display: grid; place-items: center;
  padding: 20px;
}
.quick[hidden] { display: none; }
.quick__backdrop {
  position: absolute; inset: 0;
  background: rgba(58, 32, 48, 0.5);
  backdrop-filter: blur(6px);
  cursor: pointer;
}
.quick__panel {
  position: relative;
  background: white;
  border-radius: var(--radius-lg);
  max-width: 920px;
  width: 100%;
  max-height: 92vh;
  overflow: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  box-shadow: 0 30px 80px rgba(58, 32, 48, 0.3);
  animation: pop .4s var(--ease);
}
@keyframes pop {
  from { opacity: 0; transform: scale(0.94) translateY(20px); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}
.quick__close {
  position: absolute;
  top: 16px; right: 16px;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--sakura);
  color: var(--pink-deep);
  font-size: 18px;
  line-height: 1;
  z-index: 2;
  transition: transform .2s var(--ease), background .2s var(--ease), color .2s var(--ease);
}
.quick__close:hover { background: var(--pink); color: white; transform: rotate(90deg); }
.quick__art {
  aspect-ratio: 1;
  background: var(--sakura-soft);
  border-radius: var(--radius-lg) 0 0 var(--radius-lg);
  padding: 30px;
  display: grid; place-items: center;
}
.quick__art svg { width: 100%; height: 100%; }
.quick__body { padding: 40px; }
.quick__ref {
  font-size: 11px;
  letter-spacing: 0.14em;
  color: var(--pink-deep);
  font-weight: 700;
  margin: 0 0 6px;
}
.quick__body h3 {
  font-family: var(--f-display);
  font-size: clamp(32px, 3.5vw, 44px);
  line-height: 1;
  color: var(--ink);
  margin: 0 0 12px;
}
.quick__price {
  font-family: var(--f-display);
  font-size: 24px;
  color: var(--pink-deep);
  margin: 0 0 16px;
}
.quick__desc {
  color: var(--ink-2);
  font-size: 14px;
  margin: 0 0 24px;
}
.quick__specs {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 6px 16px;
  margin: 0 0 24px;
  padding: 16px;
  background: var(--sakura-soft);
  border-radius: 12px;
  font-size: 12px;
}
.quick__specs dt { color: var(--ink-quiet); font-weight: 600; }
.quick__specs dd { margin: 0; color: var(--ink); font-weight: 500; }
.quick__size { margin-bottom: 24px; }
.quick__size > span {
  display: block;
  font-size: 12px;
  font-weight: 700;
  color: var(--ink-quiet);
  letter-spacing: 0.1em;
  margin-bottom: 8px;
}
.quick__sizes { display: inline-flex; gap: 8px; flex-wrap: wrap; }
.quick__sizes button {
  min-width: 48px;
  padding: 10px 14px;
  border-radius: 999px;
  border: 2px solid var(--line-strong);
  background: white;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
  transition: all .2s var(--ease);
}
.quick__sizes button:hover { border-color: var(--pink); }
.quick__sizes button.is-selected {
  background: var(--pink);
  color: white;
  border-color: var(--pink);
}
.quick__note {
  margin-top: 14px;
  font-size: 11px;
  color: var(--ink-quiet);
  text-align: center;
  letter-spacing: 0.04em;
}
.quick__note::before { content: "♡ "; color: var(--pink); }

/* ---------- About page (zine) ---------- */
.zine {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 var(--pad);
}
.zine__hello {
  font-family: var(--f-script);
  font-size: 40px;
  color: var(--pink-deep);
  text-align: center;
  transform: rotate(-2deg);
  display: inline-block;
  margin-bottom: 20px;
}
.zine__intro {
  background: white;
  padding: clamp(32px, 4vw, 56px);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  position: relative;
  margin-bottom: clamp(40px, 6vw, 80px);
}
.zine__intro::before {
  content: "";
  position: absolute;
  top: -16px; left: 50%;
  transform: translateX(-50%) rotate(-2deg);
  width: 100px; height: 24px;
  background: repeating-linear-gradient(45deg, rgba(255, 91, 151, 0.8), rgba(255, 91, 151, 0.8) 6px, rgba(255, 217, 227, 0.6) 6px, rgba(255, 217, 227, 0.6) 12px);
  border-radius: 2px;
}
.zine__intro p {
  font-size: 16px;
  color: var(--ink);
  margin-bottom: 1em;
  line-height: 1.8;
}
.zine__intro p:first-of-type::first-letter {
  font-family: var(--f-display);
  font-size: 4em;
  line-height: 0.85;
  float: left;
  padding: 6px 12px 0 0;
  color: var(--pink);
}
.zine__signature {
  text-align: right;
  font-family: var(--f-script);
  font-size: 24px;
  color: var(--pink-deep);
  margin-top: 20px;
}

.timeline {
  display: grid;
  gap: 20px;
  max-width: 760px;
  margin: 0 auto;
}
.timeline__item {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 24px;
  padding: 24px;
  background: white;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  align-items: start;
  transition: transform .3s var(--ease);
}
.timeline__item:hover { transform: translateX(8px); }
.timeline__item:nth-child(odd) { background: var(--sakura-soft); }
.timeline__item:nth-child(3n) { background: var(--mint); }
.timeline__year {
  font-family: var(--f-display);
  font-size: 34px;
  color: var(--pink-deep);
  line-height: 1;
}
.timeline__year span {
  display: block;
  font-family: var(--f-body);
  font-size: 11px;
  color: var(--ink-quiet);
  margin-top: 4px;
  letter-spacing: 0.06em;
}
.timeline__body h3 {
  font-family: var(--f-display);
  font-size: 22px;
  margin: 0 0 8px;
  color: var(--ink);
}
.timeline__body p {
  font-size: 14px;
  color: var(--ink-2);
  margin: 0;
}

.craft-cards {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.craft-card {
  padding: 32px 26px;
  background: white;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  text-align: center;
  position: relative;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.craft-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-hover); }
.craft-card:nth-child(6n+1) { background: var(--sakura-soft); }
.craft-card:nth-child(6n+2) { background: var(--mint); }
.craft-card:nth-child(6n+3) { background: var(--lavender); }
.craft-card:nth-child(6n+4) { background: var(--sun); }
.craft-card:nth-child(6n+5) { background: var(--sky); }
.craft-card__num {
  font-family: var(--f-display);
  font-size: 52px;
  color: var(--pink-deep);
  line-height: 1;
  margin-bottom: 14px;
}
.craft-card:nth-child(6n+2) .craft-card__num { color: var(--mint-deep); }
.craft-card:nth-child(6n+3) .craft-card__num { color: var(--lav-deep); }
.craft-card:nth-child(6n+4) .craft-card__num { color: var(--gold); }
.craft-card:nth-child(6n+5) .craft-card__num { color: #3a6d8a; }
.craft-card h3 {
  font-family: var(--f-display);
  font-size: 22px;
  margin: 0 0 10px;
  color: var(--ink);
}
.craft-card p {
  font-size: 13px;
  color: var(--ink-2);
  margin: 0;
}

.stats {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.stats div {
  padding: 32px 24px;
  background: white;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  text-align: center;
}
.stats div:nth-child(1) { background: var(--sakura); }
.stats div:nth-child(2) { background: var(--mint); }
.stats div:nth-child(3) { background: var(--lavender); }
.stats div:nth-child(4) { background: var(--sun); }
.stats strong {
  display: block;
  font-family: var(--f-display);
  font-size: clamp(40px, 4.5vw, 64px);
  color: var(--ink);
  line-height: 1;
  margin-bottom: 10px;
}
.stats span {
  font-size: 12px;
  color: var(--ink-2);
  font-weight: 500;
}

/* ---------- Contact ---------- */
.contact-grid {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--pad) clamp(60px, 8vw, 120px);
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: clamp(30px, 4vw, 60px);
}
.contact-form {
  background: white;
  padding: clamp(28px, 4vw, 48px);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}
.field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.field--full { grid-column: 1 / -1; }
.field label {
  font-size: 12px;
  font-weight: 700;
  color: var(--pink-deep);
  letter-spacing: 0.06em;
}
.field input, .field select, .field textarea {
  padding: 14px 18px;
  background: var(--sakura-soft);
  border: 2px solid transparent;
  border-radius: 14px;
  font-size: 14px;
  transition: border-color .3s var(--ease);
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--pink);
  background: white;
}
.field textarea { min-height: 140px; resize: vertical; font-family: var(--f-body); }
.field select {
  appearance: none; -webkit-appearance: none;
  padding-right: 44px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='10' height='6' fill='none' stroke='%23ff5b97' stroke-width='2'><path d='M1 1l4 4 4-4'/></svg>");
  background-repeat: no-repeat;
  background-position: right 18px center;
  cursor: pointer;
}
.field__radio { display: inline-flex; gap: 10px; flex-wrap: wrap; }
.field__radio label {
  padding: 10px 16px;
  background: var(--sakura-soft);
  border-radius: 999px;
  font-size: 13px;
  color: var(--ink);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: background .3s var(--ease), color .3s var(--ease);
  font-weight: 600;
}
.field__radio label:has(input:checked) {
  background: var(--pink);
  color: white;
}
.field__radio input { display: none; }
.check {
  display: inline-flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  color: var(--ink-2);
  cursor: pointer;
}
.contact-form__note {
  grid-column: 1 / -1;
  font-size: 13px;
  color: var(--pink-deep);
  text-align: center;
  min-height: 16px;
  font-weight: 600;
}

.contact-aside {
  display: grid;
  gap: 16px;
  align-content: start;
}
.salon-card {
  background: white;
  padding: 26px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  position: relative;
}
.salon-card:nth-child(1) { background: var(--sakura-soft); }
.salon-card:nth-child(2) { background: var(--mint); }
.salon-card h3 {
  font-family: var(--f-display);
  font-size: 28px;
  color: var(--ink);
  margin: 0 0 4px;
}
.salon-card h3 span { color: var(--pink-deep); }
.salon-card .jp {
  font-size: 12px;
  color: var(--ink-quiet);
  letter-spacing: 0.18em;
  margin-bottom: 12px;
}
.salon-card p {
  font-size: 13px;
  color: var(--ink-2);
  margin-bottom: 8px;
  line-height: 1.6;
}
.salon-card a {
  color: var(--ink);
  font-weight: 600;
  border-bottom: 2px solid var(--pink);
  transition: color .2s var(--ease);
}
.salon-card a:hover { color: var(--pink-deep); }
.salon-card__hours {
  margin-top: 12px;
  padding-top: 12px;
  border-top: 2px dashed var(--line);
  font-size: 12px;
  color: var(--ink-quiet);
}

/* ---------- Three-way version switcher ---------- */
.switcher {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 50;
  display: inline-flex;
  padding: 4px;
  background: white;
  border-radius: 999px;
  box-shadow: 0 8px 20px rgba(58, 32, 48, 0.15), 0 2px 6px rgba(58, 32, 48, 0.08);
  font-family: var(--f-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
}
.switcher a {
  padding: 7px 14px;
  border-radius: 999px;
  color: var(--ink-2);
  transition: background .2s var(--ease), color .2s var(--ease);
}
.switcher a:hover { color: var(--pink-deep); }
.switcher a.is-current {
  background: var(--pink);
  color: white;
  box-shadow: 0 2px 4px rgba(224, 46, 107, 0.4);
}

/* ---------- Scroll reveal ---------- */
[data-reveal] {
  opacity: 0;
  transform: translateY(20px) scale(0.98);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
}
[data-reveal].is-visible { opacity: 1; transform: translateY(0) scale(1); }

/* ---------- Responsive ---------- */
@media (max-width: 1100px) {
  .hero__inner { grid-template-columns: 1fr; text-align: center; }
  .hero__copy { order: 1; }
  .hero__stack { order: 2; justify-self: center; max-width: 440px; }
  .hero__cta, .hero__meta { justify-content: center; }
  .moods { grid-template-columns: repeat(2, 1fr); }
  .story__grid { grid-template-columns: 1fr; text-align: center; }
  .story__art { max-width: 360px; margin: 0 auto; }
  .testimonials { grid-template-columns: 1fr; }
  .moodboard { grid-template-columns: repeat(3, 1fr); }
  .moodboard .mb-tile:nth-child(n+4) { display: grid; }
  .footer__grid { grid-template-columns: 1fr 1fr 1fr; }
  .craft-cards { grid-template-columns: repeat(2, 1fr); }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
}
@media (max-width: 760px) {
  .nav__list { display: none; position: fixed; top: 78px; left: 12px; right: 12px; background: white; border-radius: var(--radius); padding: 12px; box-shadow: var(--shadow); flex-direction: column; gap: 4px; }
  .nav__list.is-open { display: flex; }
  .nav__list a { padding: 14px; border-radius: 12px; text-align: center; }
  .nav__toggle { display: inline-flex; }
  .moods { grid-template-columns: 1fr 1fr; }
  .contact-form { grid-template-columns: 1fr; padding: 24px; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .quick__panel { grid-template-columns: 1fr; max-height: 96vh; }
  .quick__art { border-radius: var(--radius-lg) var(--radius-lg) 0 0; aspect-ratio: 1; max-height: 40vh; }
  .quick__body { padding: 24px; }
  .timeline__item { grid-template-columns: 1fr; gap: 8px; }
  .hero__deco { display: none; }
  .page-head__deco { display: none; }
}
@media (max-width: 460px) {
  .moods { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
  .moodboard { grid-template-columns: repeat(2, 1fr); }
  .stats { grid-template-columns: 1fr; }
  .craft-cards { grid-template-columns: 1fr; }
  .letter__form { grid-template-columns: 1fr; }
  .letter__form button { width: 100%; }
  .nav__list { gap: 2px; }
  .brand__sub { display: none; }
  .switcher { bottom: 12px; right: 12px; font-size: 10px; }
  .switcher a { padding: 6px 10px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}
