/* ============================================================
   SENBA — senba.app
   Derived from the app's design tokens (design_handoff_senba/
   senba-tokens.css). Warm paper by day, warm ink by night.
   Sharp radii, hairlines, one rare neon crease.
   ============================================================ */

/* ---------- tokens ---------- */
:root {
  --sb-display: 'Bebas Neue', 'Arial Narrow', sans-serif;
  --sb-sans:    'Space Grotesk', system-ui, -apple-system, sans-serif;
  --sb-body:    'DM Sans', system-ui, -apple-system, sans-serif;
  --sb-mono:    'JetBrains Mono', ui-monospace, 'SF Mono', monospace;

  /* earth palette — the folded-paper colors */
  --clay:     #b5562f;
  --clay-dp:  #8f3f20;
  --sand:     #c9a061;
  --sage:     #6f8050;
  --pine:     #2f5d42;
  --umber:    #8a5a3c;
  --slate:    #5c6b6b;

  /* the one neon spark */
  --neon:     #b6e84a;
  --neon-dim: #9fc23f;

  /* paper (day) */
  --bg:    #f1ece0;
  --card:  #f8f4ea;
  --sunk:  #e7e0d0;
  --line:  rgba(26,24,18,0.13);
  --line2: rgba(26,24,18,0.07);
  --ink:   #211e18;
  --ink2:  #5b5648;
  --ink3:  #8c8675;

  --accent: var(--clay);
  --btn-fg: #fdf6ec;
  --grain-opacity: 0.42;
  --grain-blend: overlay;
  --shadow-card: 0 1px 0 var(--line2), 0 18px 44px -30px rgba(26,24,18,0.55);
  --shadow-device: 0 2px 0 var(--line2), 0 44px 90px -46px rgba(26,24,18,0.62);

  --gutter: clamp(22px, 5vw, 56px);
  --maxw: 1120px;
}

/* ink (night) */
@media (prefers-color-scheme: dark) {
  :root:not([data-theme='light']) {
    --bg:    #16140f;
    --card:  #211e17;
    --sunk:  #100e0a;
    --line:  rgba(236,231,218,0.13);
    --line2: rgba(236,231,218,0.06);
    --ink:   #ece7da;
    --ink2:  #a39d8b;
    --ink3:  #6f6a5b;
    --accent: #c8663c;
    --grain-opacity: 0.05;
    --grain-blend: screen;
    --shadow-card: 0 1px 0 var(--line2), 0 18px 44px -30px rgba(0,0,0,0.9);
    --shadow-device: 0 2px 0 var(--line2), 0 44px 90px -46px rgba(0,0,0,0.9);
  }
}
:root[data-theme='dark'] {
  --bg:    #16140f;
  --card:  #211e17;
  --sunk:  #100e0a;
  --line:  rgba(236,231,218,0.13);
  --line2: rgba(236,231,218,0.06);
  --ink:   #ece7da;
  --ink2:  #a39d8b;
  --ink3:  #6f6a5b;
  --accent: #c8663c;
  --grain-opacity: 0.05;
  --grain-blend: screen;
  --shadow-card: 0 1px 0 var(--line2), 0 18px 44px -30px rgba(0,0,0,0.9);
  --shadow-device: 0 2px 0 var(--line2), 0 44px 90px -46px rgba(0,0,0,0.9);
}

/* ---------- base ---------- */
*, *::before, *::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sb-body);
  font-size: 17px;
  line-height: 1.62;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* paper grain */
body::before {
  content: '';
  position: fixed; inset: 0; z-index: 0; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23n)'/%3E%3C/svg%3E");
  opacity: var(--grain-opacity);
  mix-blend-mode: var(--grain-blend);
}
body > * { position: relative; z-index: 1; }

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

a { color: inherit; }

::selection { background: var(--accent); color: #fdf6ec; }

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

.wrap {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding-inline: var(--gutter);
}

.skip {
  position: absolute; left: -9999px; top: 0;
  background: var(--accent); color: var(--btn-fg);
  padding: 12px 18px; z-index: 99;
  font-family: var(--sb-sans); font-weight: 600;
}
.skip:focus { left: 0; }

/* ---------- type voices ---------- */
.tag {
  font-family: var(--sb-mono);
  font-size: 10px; font-weight: 500;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--ink3); white-space: nowrap;
  margin: 0;
}
.kicker {
  font-family: var(--sb-sans);
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--ink3);
  margin: 0;
}
.num {
  font-family: var(--sb-display);
  line-height: 0.8; letter-spacing: 0.01em;
  font-weight: 400;
}

h1, h2, h3, h4 {
  font-family: var(--sb-sans);
  font-weight: 600;
  letter-spacing: -0.018em;
  line-height: 1.06;
  margin: 0;
  text-wrap: balance;
}
h1 { font-size: clamp(38px, 6.4vw, 67px); }
h2 { font-size: clamp(30px, 4.6vw, 50px); }
h3 { font-size: clamp(19px, 2.1vw, 23px); letter-spacing: -0.01em; line-height: 1.2; }

p { margin: 0; text-wrap: pretty; }
.lead {
  font-size: clamp(17px, 1.7vw, 20.5px);
  line-height: 1.6;
  color: var(--ink2);
  max-width: 46ch;
}
.body { color: var(--ink2); max-width: 52ch; }
.small { font-size: 14.5px; color: var(--ink3); }

/* ---------- header ---------- */
.site-head {
  position: sticky; top: 0; z-index: 20;
  background: color-mix(in srgb, var(--bg) 86%, transparent);
  backdrop-filter: saturate(140%) blur(14px);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  border-bottom: 1px solid var(--line2);
}
.site-head .wrap {
  display: flex; align-items: center; justify-content: space-between;
  gap: 18px; height: 62px;
}
.brand {
  display: inline-flex; align-items: center; gap: 10px;
  text-decoration: none;
}
.brand img {
  width: 26px; height: 26px;
  border-radius: 22.4%;              /* the iOS squircle: source icons ship square */
  box-shadow: 0 0 0 1px var(--line2);
}
.brand .crest-light { display: block; }
.brand .crest-dark  { display: none; }
.brand span {
  font-family: var(--sb-sans); font-weight: 600;
  font-size: 16.5px; letter-spacing: 0.01em;
}
.nav { display: flex; align-items: center; gap: clamp(14px, 2.4vw, 30px); }
.nav a {
  font-family: var(--sb-sans); font-weight: 500;
  font-size: 13.5px; letter-spacing: 0.01em;
  color: var(--ink2); text-decoration: none;
  padding: 6px 0;
  border-bottom: 1px solid transparent;
  transition: color .18s ease, border-color .18s ease;
}
.nav a:hover { color: var(--ink); border-bottom-color: var(--accent); }
.nav a.on { color: var(--ink); border-bottom-color: var(--accent); }
@media (max-width: 560px) { .nav a.hide-sm { display: none; } }

.theme-toggle {
  appearance: none; background: transparent;
  border: 1px solid var(--line);
  border-radius: 2px;
  width: 34px; height: 28px;
  display: inline-flex; align-items: center; justify-content: center;
  cursor: pointer; color: var(--ink2);
  transition: border-color .18s ease, color .18s ease;
}
.theme-toggle:hover { color: var(--ink); border-color: var(--ink3); }
.theme-toggle svg { width: 15px; height: 15px; }
.theme-toggle .i-sun { display: none; }
:root[data-theme='dark'] .theme-toggle .i-sun { display: block; }
:root[data-theme='dark'] .theme-toggle .i-moon { display: none; }
@media (prefers-color-scheme: dark) {
  :root:not([data-theme='light']) .theme-toggle .i-sun { display: block; }
  :root:not([data-theme='light']) .theme-toggle .i-moon { display: none; }
}

/* dark-mode crest swaps */
:root[data-theme='dark'] .crest-light { display: none !important; }
:root[data-theme='dark'] .crest-dark  { display: block !important; }
@media (prefers-color-scheme: dark) {
  :root:not([data-theme='light']) .crest-light { display: none !important; }
  :root:not([data-theme='light']) .crest-dark  { display: block !important; }
}

/* ---------- buttons ---------- */
.btn {
  font-family: var(--sb-sans); font-weight: 600; font-size: 15.5px;
  letter-spacing: 0.01em;
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 15px 24px; border-radius: 2px; border: none;
  text-decoration: none; cursor: pointer;
  background: var(--accent); color: var(--btn-fg);
  box-shadow: 0 1px 0 rgba(0,0,0,0.18);
  transition: transform .18s ease, background .18s ease;
}
.btn:hover { background: var(--clay-dp); }
.btn-ghost {
  background: transparent; color: var(--ink);
  border: 1.5px solid var(--line); box-shadow: none;
  padding: 13.5px 22px;
}
.btn-ghost:hover { background: transparent; border-color: var(--ink3); }

/* the quiet "not yet" store badge */
.badge-soon {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 13px 20px 13px 16px;
  border: 1px solid var(--line);
  border-radius: 3px;
  background: var(--card);
  box-shadow: var(--shadow-card);
}
.badge-soon .apple { width: 21px; height: 21px; fill: var(--ink); flex: none; }
.badge-soon .txt { display: flex; flex-direction: column; line-height: 1.15; }
.badge-soon .t1 {
  font-family: var(--sb-mono); font-size: 9.5px; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--ink3);
}
.badge-soon .t2 {
  font-family: var(--sb-sans); font-weight: 600; font-size: 16px;
  letter-spacing: -0.01em; color: var(--ink); margin-top: 2px;
}
.badge-soon .dot {
  width: 6px; height: 6px; border-radius: 999px;
  background: var(--neon-dim); flex: none; margin-left: 2px;
}

/* ---------- section scaffolding ---------- */
section { padding-block: clamp(64px, 9vw, 118px); }
.rule { border: 0; border-top: 1px solid var(--line2); margin: 0; }

.sec-head { display: flex; align-items: baseline; gap: 16px; margin-bottom: clamp(28px, 4vw, 46px); }
.sec-head .idx {
  font-family: var(--sb-mono); font-size: 11px; letter-spacing: 0.18em;
  color: var(--accent); padding-top: 4px; flex: none;
}
.sec-head .ttl { flex: 1; }
.sec-head h2 { margin-bottom: 14px; }

/* two-column: copy + device */
.split {
  display: grid;
  grid-template-columns: 1fr minmax(240px, 330px);
  gap: clamp(32px, 6vw, 80px);
  align-items: center;
}
.split.flip { grid-template-columns: minmax(240px, 330px) 1fr; }
.split.flip .copy { order: 2; }
.split.flip .device { order: 1; }
@media (max-width: 820px) {
  .split, .split.flip { grid-template-columns: 1fr; }
  .split.flip .copy, .split.flip .device { order: initial; }
  .device { max-width: 300px; margin-inline: auto; }
}

/* ---------- the device frame ---------- */
.device {
  position: relative;
  border-radius: 40px;
  padding: 9px;
  background: linear-gradient(160deg, #2a261e, #17140f 60%, #26221a);
  box-shadow: var(--shadow-device);
}
.device::after {
  content: ''; position: absolute; inset: 0;
  border-radius: 40px; pointer-events: none;
  border: 1px solid rgba(236,231,218,0.10);
}
.device img {
  width: 100%; height: auto;
  border-radius: 32px;
  display: block;
}
.device-cap {
  margin-top: 14px; text-align: center;
}

/* small floating tilt for editorial moments */
.tilt-l { transform: rotate(-1.1deg); }
.tilt-r { transform: rotate(1.1deg); }
@media (prefers-reduced-motion: reduce) { .tilt-l, .tilt-r { transform: none; } }

/* ---------- hero ---------- */
.hero { padding-top: clamp(48px, 8vw, 92px); padding-bottom: clamp(52px, 7vw, 96px); position: relative; overflow: hidden; }
.hero-grid {
  display: grid;
  grid-template-columns: 1fr minmax(250px, 340px);
  gap: clamp(36px, 6vw, 84px);
  align-items: center;
}
@media (max-width: 880px) {
  .hero-grid { grid-template-columns: 1fr; gap: 44px; }
  .hero .device { max-width: 296px; margin-inline: auto; }
}
.hero h1 { margin-block: 20px 0; }
.hero h1 .br { display: block; }
.hero .lead { margin-top: 22px; }
.hero-cta { margin-top: 34px; display: flex; flex-wrap: wrap; align-items: center; gap: 18px; }
.hero-note { margin-top: 18px; }
.hero-mark {
  position: absolute; right: -8%; top: -14%;
  width: min(660px, 66vw); opacity: 0.10;
  pointer-events: none; z-index: -1;
}
@media (prefers-color-scheme: dark) {
  :root:not([data-theme='light']) .hero-mark { opacity: 0.07; }
}
:root[data-theme='dark'] .hero-mark { opacity: 0.07; }

/* wordmark line above h1 */
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--sb-mono); font-size: 11px;
  letter-spacing: 0.2em; text-transform: uppercase; color: var(--ink3);
}
.hero-eyebrow .jp { font-family: var(--sb-body); letter-spacing: 0.14em; }

/* ---------- three beats (fold / keep / return) ---------- */
.beats {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: clamp(22px, 3.2vw, 44px);
}
@media (max-width: 760px) { .beats { grid-template-columns: 1fr; gap: 30px; } }
.beat { border-top: 1px solid var(--line); padding-top: 20px; }
.beat .n { font-size: 46px; line-height: 0.8; margin-bottom: 14px; }
.beat:nth-child(1) .n { color: var(--clay); }
.beat:nth-child(2) .n { color: var(--sand); }
.beat:nth-child(3) .n { color: var(--sage); }
.beat h3 { margin-bottom: 8px; }
.beat p { color: var(--ink2); font-size: 15.5px; }

/* ---------- capture grid ---------- */
.captures {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1px; background: var(--line2);
  border: 1px solid var(--line2);
  border-radius: 3px; overflow: hidden;
}
@media (max-width: 880px) { .captures { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 470px) { .captures { grid-template-columns: 1fr; } }
.cap { background: var(--card); padding: 26px 22px 28px; }
.cap .ico { display: block; width: 22px; height: 22px; margin-bottom: 16px; }
.cap .ico svg { width: 22px; height: 22px; }
.cap h3 { font-size: 18px; margin-bottom: 7px; }
.cap p { font-size: 14.5px; color: var(--ink2); }
.cap .constraint {
  margin-top: 14px; display: inline-flex; align-items: center; gap: 7px;
  font-family: var(--sb-mono); font-size: 10px; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--ink3);
}
.cap .constraint::before {
  content: ''; width: 5px; height: 5px; border-radius: 999px;
  background: var(--neon-dim);
}

/* ---------- pull quote ---------- */
.pull {
  font-family: var(--sb-body);
  font-size: clamp(24px, 3.4vw, 38px);
  line-height: 1.28; letter-spacing: -0.015em;
  color: var(--ink); max-width: 20ch;
}
.pull-meta { margin-top: 20px; }

/* ---------- the weld band (always ink) ---------- */
.weld-band {
  background: #100e0a;
  color: #ece7da;
  --ink: #ece7da; --ink2: #a39d8b; --ink3: #6f6a5b;
  --line: rgba(236,231,218,0.13); --line2: rgba(236,231,218,0.06);
  --card: #211e17;
  border-block: 1px solid rgba(236,231,218,0.12);
}
.weld-band .sec-head .idx { color: var(--neon); }
.weld-spine {
  width: 2px; height: 46px; background: var(--neon);
  margin: 22px 0; opacity: 0.85;
}
.weld-tag {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--sb-mono); font-size: 11px; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--neon);
}
.weld-tag::before {
  content: ''; width: 8px; height: 8px; background: var(--neon);
  transform: rotate(45deg);
}
.weld-band .btn-neon {
  background: var(--neon); color: #17150f;
}
.weld-band .btn-neon:hover { background: var(--neon-dim); }

/* ---------- senbazuru flock ---------- */
.flock-stat { display: flex; align-items: baseline; gap: 16px; flex-wrap: wrap; }
.flock-stat .big { font-size: clamp(64px, 11vw, 118px); color: var(--ink); }
.flock-stat .of {
  font-family: var(--sb-display); font-size: clamp(24px, 3.4vw, 38px);
  color: var(--ink3); line-height: 0.9;
}
.flock-bar {
  margin-top: 22px; height: 2px; background: var(--sunk);
  position: relative; overflow: hidden;
}
.flock-bar i { position: absolute; inset: 0 auto 0 0; width: 24.7%; background: var(--neon-dim); }
.flock {
  margin-top: 34px;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(29px, 1fr));
  gap: clamp(9px, 1.3vw, 14px);
}
.flock i {
  display: block; aspect-ratio: 1 / 0.62;
  background-color: currentColor;
  -webkit-mask: url('img/crane-mark.svg') center / contain no-repeat;
  mask: url('img/crane-mark.svg') center / contain no-repeat;
}
.flock i.t0 { color: var(--clay); }
.flock i.t1 { color: var(--sage); }
.flock i.t2 { color: var(--umber); }
.flock i.t3 { color: var(--sand); }
.flock i.t4 { color: var(--pine); }
.flock i.t5 { color: var(--slate); }
.flock i.ghost { color: var(--ink3); opacity: 0.36; }

/* ---------- feature rows ---------- */
.rows { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(24px, 3.4vw, 46px); }
@media (max-width: 820px) { .rows { grid-template-columns: 1fr; gap: 28px; } }
.row-item { border-top: 1px solid var(--line); padding-top: 18px; }
.row-item h3 { font-size: 18.5px; margin-bottom: 8px; }
.row-item p { font-size: 15px; color: var(--ink2); }

/* ---------- privacy band ---------- */
.privacy-list {
  list-style: none; margin: 0; padding: 0;
  display: grid; gap: 2px;
}
.privacy-list li {
  display: grid; grid-template-columns: 24px 1fr; gap: 14px;
  align-items: start; padding: 16px 0;
  border-bottom: 1px solid var(--line2);
  color: var(--ink2); font-size: 15.5px;
}
.privacy-list li:first-child { border-top: 1px solid var(--line2); }
.privacy-list b { color: var(--ink); font-weight: 500; font-family: var(--sb-sans); }
.privacy-list .mk {
  width: 9px; height: 9px; background: var(--sage);
  transform: rotate(45deg); margin-top: 8px;
}

/* ---------- price ---------- */
.price-card {
  background: var(--card);
  border: 1px solid var(--line2);
  border-radius: 3px;
  padding: clamp(28px, 4vw, 46px);
  box-shadow: var(--shadow-card);
  position: relative;
  max-width: 640px;
}
.price-card .corner {
  position: absolute; top: 0; right: 0;
  width: 0; height: 0; border-style: solid;
  border-width: 0 26px 26px 0;
  border-color: transparent var(--sunk) transparent transparent;
  filter: drop-shadow(-1px 1px 0 var(--line2));
}
.price-card .free { font-size: clamp(46px, 6vw, 66px); color: var(--ink); }

/* ---------- gallery strip ---------- */
.strip {
  display: flex; gap: clamp(14px, 2vw, 26px);
  overflow-x: auto; padding-bottom: 18px;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
  -webkit-overflow-scrolling: touch;
  -webkit-mask-image: linear-gradient(90deg, #000 0, #000 90%, transparent 100%);
  mask-image: linear-gradient(90deg, #000 0, #000 90%, transparent 100%);
}
.strip figure { margin: 0; flex: none; width: clamp(170px, 24vw, 224px); scroll-snap-align: start; }
.strip .device { border-radius: 28px; padding: 6px; }
.strip .device::after { border-radius: 28px; }
.strip .device img { border-radius: 23px; }
.strip figcaption { margin-top: 12px; }

/* ---------- footer ---------- */
.site-foot {
  border-top: 1px solid var(--line2);
  padding-block: clamp(44px, 6vw, 72px) 44px;
}
.foot-grid {
  display: flex; flex-wrap: wrap; gap: 32px;
  justify-content: space-between; align-items: flex-start;
}
.foot-brand { display: flex; align-items: center; gap: 12px; }
.foot-brand img {
  width: 34px; height: 34px;
  border-radius: 22.4%;
  box-shadow: 0 0 0 1px var(--line2);
}
.foot-brand .wm { font-family: var(--sb-sans); font-weight: 600; font-size: 18px; }
.foot-links { display: flex; flex-wrap: wrap; gap: 26px; }
.foot-links a {
  font-family: var(--sb-sans); font-size: 14px; font-weight: 500;
  color: var(--ink2); text-decoration: none;
  border-bottom: 1px solid transparent;
}
.foot-links a:hover { color: var(--ink); border-bottom-color: var(--accent); }
.foot-fine { margin-top: 40px; display: flex; flex-wrap: wrap; gap: 10px 26px; justify-content: space-between; }

/* ---------- document pages (privacy / support) ---------- */
.doc { padding-block: clamp(52px, 7vw, 90px) clamp(56px, 8vw, 104px); }
.doc-head { max-width: 62ch; margin-bottom: clamp(34px, 5vw, 54px); }
.doc-head h1 { font-size: clamp(34px, 5.4vw, 58px); margin-block: 16px 18px; }
.doc-body { max-width: 68ch; }
.doc-body h2 {
  font-size: clamp(20px, 2.3vw, 25px);
  margin-top: 52px; margin-bottom: 14px;
  padding-top: 22px; border-top: 1px solid var(--line2);
}
.doc-body h2:first-child { margin-top: 0; border-top: 0; padding-top: 0; }
.doc-body h3 { font-size: 17px; margin-top: 28px; margin-bottom: 8px; }
.doc-body p { color: var(--ink2); margin-bottom: 16px; }
.doc-body ul { color: var(--ink2); margin: 0 0 18px; padding-left: 20px; }
.doc-body li { margin-bottom: 9px; }
.doc-body li::marker { color: var(--ink3); }
.doc-body strong { color: var(--ink); font-weight: 600; }
.doc-body a { color: var(--accent); text-decoration-thickness: 1px; text-underline-offset: 3px; }
.doc-body a.btn { color: var(--btn-fg); text-decoration: none; }
.doc-body a.btn-ghost { color: var(--ink); }

.callout {
  background: var(--card);
  border: 1px solid var(--line2);
  border-left: 2px solid var(--accent);
  border-radius: 3px;
  padding: 22px 24px;
  margin: 26px 0 30px;
  box-shadow: var(--shadow-card);
}
.callout p { margin-bottom: 0; color: var(--ink2); }
.callout p + p { margin-top: 12px; }

.faq { border-top: 1px solid var(--line2); }
.faq details {
  border-bottom: 1px solid var(--line2);
  padding: 4px 0;
}
.faq summary {
  cursor: pointer; list-style: none;
  padding: 18px 30px 18px 0;
  position: relative;
  font-family: var(--sb-sans); font-weight: 600; font-size: 17px;
  letter-spacing: -0.01em; color: var(--ink);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: '+'; position: absolute; right: 4px; top: 50%;
  transform: translateY(-50%);
  font-family: var(--sb-mono); font-size: 18px; color: var(--ink3);
  transition: transform .2s ease;
}
.faq details[open] summary::after { content: '\2212'; }
.faq details p { color: var(--ink2); padding-bottom: 20px; margin: 0; max-width: 62ch; }
.faq details p + p { padding-top: 0; margin-top: -8px; padding-bottom: 20px; }

.contact-card {
  display: flex; flex-wrap: wrap; align-items: center; gap: 20px 30px;
  justify-content: space-between;
  background: var(--card);
  border: 1px solid var(--line2);
  border-radius: 3px;
  padding: 26px 28px;
  box-shadow: var(--shadow-card);
  margin-top: 12px;
}
.contact-card .who h3 { margin-bottom: 6px; }
.contact-card .who p { margin: 0; color: var(--ink2); font-size: 15px; }

.meta-table { width: 100%; border-collapse: collapse; margin: 8px 0 24px; }
.meta-table td {
  padding: 12px 0; border-bottom: 1px solid var(--line2);
  font-size: 15px; color: var(--ink2); vertical-align: top;
}
.meta-table td:first-child {
  font-family: var(--sb-mono); font-size: 11px; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--ink3);
  width: 40%; padding-right: 20px; padding-top: 15px;
}

/* ---------- entrance motion ---------- */
@media (prefers-reduced-motion: no-preference) {
  .rise { opacity: 0; transform: translateY(14px); }
  .rise.in { opacity: 1; transform: none; transition: opacity .7s ease, transform .7s cubic-bezier(.2,.6,.2,1); }
}
