:root {
  --color-primary: #000000;
  --color-on-primary: #ffffff;
  --color-ink: #000000;
  --color-body: #757575;
  --color-hairline: #e0e0e0;
  --color-canvas: #ffffff;
  --color-canvas-soft: #f5f5f5;
  --color-link: #057dbc;
  --font-display: WiredDisplay, "Times New Roman", Georgia, serif, system-ui, Segoe UI, PingFang SC, Microsoft YaHei;
  --font-serif: BreveText, Georgia, "Times New Roman", serif, system-ui, Segoe UI, PingFang SC, Microsoft YaHei;
  --font-sans: Apercu, "Helvetica Neue", Helvetica, Arial, system-ui, Segoe UI, PingFang SC, Microsoft YaHei, sans-serif;
}
* { box-sizing: border-box; }
html { background: #111; }
body {
  margin: 0 auto;
  max-width: 390px;
  min-height: 100vh;
  font-family: var(--font-sans);
  color: var(--color-ink);
  background: var(--color-canvas);
  line-height: 1.45;
  padding-bottom: 64px;
}
a { color: var(--color-ink); text-decoration: none; }
.top {
  padding: 14px 16px; display: flex; align-items: center; justify-content: space-between;
  border-bottom: 1px solid #000;
}
.logo {
  font-family: var(--font-display); color: #000; font-weight: 400;
  letter-spacing: 0.14em; text-transform: uppercase; font-size: 18px;
}
.back { font-size: 11px; font-weight: 700; letter-spacing: 0.4px; text-transform: uppercase; color: #000; }

.hero { padding: 24px 16px; border-bottom: 1px solid var(--color-hairline); }
.hero .eyebrow { font-size: 11px; font-weight: 700; letter-spacing: 0.4px; text-transform: uppercase; margin: 0 0 8px; }
.hero h1 {
  font-family: var(--font-display); font-size: 32px; font-weight: 400;
  letter-spacing: -0.4px; margin: 0 0 8px; line-height: 0.95;
}
.hero p { margin: 0; font-family: var(--font-serif); font-size: 15px; }

.block { padding: 16px; border-bottom: 1px solid var(--color-hairline); }
.block h2 { font-family: var(--font-display); font-size: 22px; font-weight: 400; margin: 0 0 12px; }
.cell {
  display: block; padding: 12px 0; margin-bottom: 0;
  color: var(--color-ink); border-bottom: 1px solid var(--color-hairline);
}
.cell:hover { text-decoration: none; }
.cell h3 { margin: 0 0 4px; font-size: 16px; font-weight: 700; }
.cell p { margin: 0; color: var(--color-body); font-size: 13px; }
.row {
  display: flex; justify-content: space-between; gap: 8px;
  padding: 12px 0; border-bottom: 1px solid var(--color-hairline); font-size: 14px; font-weight: 700;
}
.row:last-child { border-bottom: 0; }
.row span { color: var(--color-body); font-weight: 400; font-size: 12px; }
.ph {
  background: var(--color-canvas-soft); color: var(--color-body);
  height: 140px; display: flex; align-items: center; justify-content: center;
  font-size: 13px; margin-bottom: 12px;
}

form label { display: block; margin: 0 0 4px; font-size: 13px; font-weight: 700; letter-spacing: 0.4px; }
form input, form textarea {
  width: 100%; padding: 12px; border: 1px solid #000; border-radius: 0;
  font: inherit; margin-bottom: 12px;
}
form button {
  width: 100%; padding: 12px; border: 1px solid #000; background: #000;
  color: #fff; font: inherit; font-weight: 700; letter-spacing: 0.3px; border-radius: 0;
}

.tab {
  position: fixed; left: 50%; bottom: 0; transform: translateX(-50%);
  width: 100%; max-width: 390px;
  display: flex; background: #000;
}
.tab a {
  flex: 1; text-align: center; padding: 10px 0 12px;
  font-size: 10px; font-weight: 700; letter-spacing: 0.4px;
  text-transform: uppercase; color: #888;
}
.tab a.on { color: #fff; }

.ph { overflow: hidden; }
.ph img { width: 100%; height: 100%; object-fit: cover; display: block; }
