/* ============================================================
   MUHCINE ENNOU — shared brutalist/archival design tokens
   ============================================================ */

:root {
  --bg: #f4f2ee;
  --ink: #141413;
  --ink-60: rgba(20, 20, 19, 0.6);
  --ink-40: rgba(20, 20, 19, 0.4);
  --ink-20: rgba(20, 20, 19, 0.2);
  --ink-10: rgba(20, 20, 19, 0.1);
  --rule: rgba(20, 20, 19, 0.3);
  --hairline: rgba(20, 20, 19, 0.18);

  --mono: "Helvetica Neue", Helvetica, Arial, sans-serif;
  --serif: "Helvetica Neue", Helvetica, Arial, sans-serif;

  --fs-xs: 11px;
  --fs-sm: 12px;
  --fs-md: 13px;
  --fs-lg: 15px;
}

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

html, body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--mono);
  font-size: var(--fs-md);
  line-height: 1.45;
  font-feature-settings: "ss01", "ss02";
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
img, video { display: block; max-width: 100%; }

/* ---------- mono utilities ---------- */
.mono     { font-family: var(--mono); }
.serif    { font-family: var(--serif); font-style: normal; }
.upper    { text-transform: uppercase; letter-spacing: 0.08em; }
.tnum     { font-variant-numeric: tabular-nums; }
.muted    { color: var(--ink-60); }
.faint    { color: var(--ink-40); }

/* ---------- hairlines ---------- */
.rule       { border-top: 1px solid var(--rule); }
.rule-thick { border-top: 1px solid var(--ink); }
.rule-b     { border-bottom: 1px solid var(--rule); }

/* ---------- placeholder imagery ---------- */
.ph {
  position: relative;
  width: 100%;
  background:
    repeating-linear-gradient(
      135deg,
      rgba(20,20,19,0.05) 0 1px,
      transparent 1px 8px
    ),
    #e6e3dd;
  border: 1px solid var(--hairline);
  overflow: hidden;
  color: var(--ink-60);
}
.ph::before {
  content: attr(data-label);
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-40);
  text-align: center;
  padding: 8px;
}
.ph[data-kind="film"] {
  background:
    repeating-linear-gradient(
      90deg,
      rgba(20,20,19,0.08) 0 1px,
      transparent 1px 24px
    ),
    #d8d4cc;
}
.ph[data-kind="install"] {
  background:
    repeating-linear-gradient(
      45deg,
      rgba(20,20,19,0.06) 0 2px,
      transparent 2px 14px
    ),
    #ddd8cf;
}
.ph[data-kind="cgi"] {
  background:
    radial-gradient(ellipse at 30% 30%, rgba(20,20,19,0.10), transparent 60%),
    repeating-linear-gradient(
      0deg,
      rgba(20,20,19,0.05) 0 1px,
      transparent 1px 6px
    ),
    #d4d0c7;
}

/* play glyph for film placeholders */
.ph[data-kind="film"]::after {
  content: "";
  position: absolute;
  left: 14px; bottom: 14px;
  width: 0; height: 0;
  border-left: 10px solid var(--ink);
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
}

/* ---------- aspect helpers ---------- */
.ar-3-2  { aspect-ratio: 3 / 2; }
.ar-2-3  { aspect-ratio: 2 / 3; }
.ar-1-1  { aspect-ratio: 1 / 1; }
.ar-16-9 { aspect-ratio: 16 / 9; }
.ar-4-5  { aspect-ratio: 4 / 5; }
.ar-21-9 { aspect-ratio: 21 / 9; }

/* ---------- shared chrome ---------- */
.site {
  width: 100%;
  height: 100%;
  background: var(--bg);
  color: var(--ink);
  overflow: hidden;
  position: relative;
}

.scroll {
  height: 100%;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: var(--ink-20) transparent;
}
.scroll::-webkit-scrollbar { width: 6px; }
.scroll::-webkit-scrollbar-thumb { background: var(--ink-20); }

/* ---------- nav row ---------- */
.topnav {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  padding: 18px 28px 14px;
  font-size: var(--fs-sm);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border-bottom: 1px solid var(--ink);
  background: var(--bg);
  position: sticky;
  top: 0;
  z-index: 5;
}
.topnav .brand { font-weight: 500; }
.topnav nav { display: flex; gap: 28px; }
.topnav nav a { opacity: 0.6; transition: opacity 0.15s; }
.topnav nav a:hover, .topnav nav a.active { opacity: 1; }

/* ---------- catalog row (used in A & C) ---------- */
.cat-row {
  display: grid;
  grid-template-columns: 44px 1fr 140px 80px 1fr 60px;
  align-items: baseline;
  gap: 16px;
  padding: 18px 28px;
  border-bottom: 1px solid var(--hairline);
  font-size: var(--fs-md);
  cursor: pointer;
  transition: background 0.12s, color 0.12s;
}
.cat-row .title {
  font-family: var(--mono);
  font-style: normal;
  font-size: 18px;
  line-height: 1.1;
  font-weight: 500;
  letter-spacing: -0.01em;
}
.cat-row:hover { background: rgba(20,20,19,0.04); }
.cat-row .num { color: var(--ink-40); font-variant-numeric: tabular-nums; }
.cat-row .disc, .cat-row .year, .cat-row .loc { color: var(--ink-60); text-transform: uppercase; letter-spacing: 0.06em; font-size: var(--fs-sm); }
.cat-row .arrow { color: var(--ink-40); text-align: right; }

/* filter chips */
.filters {
  display: flex;
  gap: 6px;
  align-items: center;
  padding: 12px 28px;
  font-size: var(--fs-sm);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-bottom: 1px solid var(--hairline);
  flex-wrap: wrap;
}
.chip {
  padding: 4px 10px;
  border: 1px solid var(--ink);
  background: transparent;
  cursor: pointer;
}
.chip.on { background: var(--ink); color: var(--bg); }
.chip.count { color: var(--ink-40); border-color: transparent; padding-left: 0; }

/* ---------- column header ---------- */
.cat-head {
  display: grid;
  grid-template-columns: 44px 1fr 140px 80px 1fr 60px;
  gap: 16px;
  padding: 10px 28px;
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-40);
  border-bottom: 1px solid var(--ink);
}

/* ---------- footer ---------- */
.foot {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 24px;
  padding: 32px 28px 22px;
  border-top: 1px solid var(--ink);
  font-size: var(--fs-sm);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 60px;
}
.foot h4 { font-size: 10px; color: var(--ink-40); margin-bottom: 8px; font-weight: 400; }
.foot a { display: block; padding: 2px 0; opacity: 0.85; }
.foot a:hover { opacity: 1; }

/* ---------- generic page chrome ---------- */
.page-h {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 16px;
  padding: 16px 28px;
  border-bottom: 1px solid var(--hairline);
  font-size: var(--fs-sm);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.page-h .label { color: var(--ink-40); }

/* ---------- picture-in-picture hover preview ---------- */
.pip {
  position: absolute;
  pointer-events: none;
  z-index: 50;
  width: 360px;
  opacity: 0;
  transform: translate3d(0,0,0) scale(0.98);
  transition: opacity 0.18s ease, transform 0.22s cubic-bezier(.2,.7,.3,1);
  filter: drop-shadow(0 12px 28px rgba(20,20,19,0.18));
}
.pip.on { opacity: 1; transform: translate3d(0,0,0) scale(1); }
.pip-frame {
  border: 1px solid var(--ink);
  background: var(--bg);
  padding: 8px;
}
.pip-meta {
  display: flex;
  justify-content: space-between;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-60);
  padding-top: 8px;
}
.pip-meta .t { color: var(--ink); font-family: var(--mono); font-style: normal; font-weight: 500; font-size: 14px; letter-spacing: 0; text-transform: none; }

/* dim non-hovered rows when a row is hovered (works for both Work and Commercial catalogs) */
.cat-list.has-hover .cat-row { opacity: 0.6; transition: opacity 0.15s; }
.cat-list.has-hover .cat-row.pip-active { opacity: 1; }

/* hover state on catalog rows when pip is active */
.cat-row.pip-active { background: rgba(20,20,19,0.04); }

/* =====================================================================
   FRIEDHATS-STYLE HOME + SLIDE-UP WORK PANEL
   ===================================================================== */
.fh {
  --navh: 67px;
  --footh: 46px;
  font-family: var(--mono);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
}

/* nav — always on top, brand always left */
.fh-nav {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 22px 32px;
  border-bottom: 1px solid var(--ink);
  background: var(--bg);
  position: relative;
  z-index: 70;
}
.fh-brand { font-weight: 600; font-size: 15px; letter-spacing: -0.01em; justify-self: start; text-align: left; }
.fh-links { display: flex; gap: 26px; justify-self: center; }
.fh-link {
  font-size: 13px;
  letter-spacing: 0.01em;
  position: relative;
  padding: 2px 0;
  transition: opacity 0.15s;
}
.fh-link::after {
  content: "";
  position: absolute;
  left: 0; right: 100%;
  bottom: -1px;
  height: 1px;
  background: var(--ink);
  transition: right 0.22s cubic-bezier(.2,.7,.3,1);
}
.fh-link:hover::after, .fh-link.active::after { right: 0; }
.fh-cart { justify-self: end; font-size: 13px; color: var(--ink-60); white-space: nowrap; }
.fh-cart:hover { color: var(--ink); }
.fh-cart.has { color: var(--ink); }
.fh-nav-right { justify-self: end; display: flex; align-items: center; gap: 18px; }

/* burger (mobile only) */
.fh-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.fh-burger span {
  display: block;
  width: 24px; height: 1.5px;
  background: var(--ink);
  transition: transform 0.28s, opacity 0.2s;
}
.fh-burger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.fh-burger.open span:nth-child(2) { opacity: 0; }
.fh-burger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* app main / view */
.fh-main {
  flex: 1;
  overflow-y: auto;
  position: relative;
  padding-bottom: var(--footh);
  transition: transform 0.5s cubic-bezier(.2,.7,.3,1), filter 0.5s, opacity 0.5s;
  transform-origin: center top;
}
.fh-main.pushed {
  transform: scale(0.965) translateY(-10px);
  filter: blur(1px);
  opacity: 0.55;
  pointer-events: none;
}
.fh-main::-webkit-scrollbar { width: 6px; }
.fh-main::-webkit-scrollbar-thumb { background: var(--ink-20); }
.fh-view { min-height: 100%; animation: fhFade 0.5s cubic-bezier(.2,.7,.3,1); }
@keyframes fhFade {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* home body */
.fh-home {
  height: calc(100% - 67px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 56px 32px 26px;
  transition: transform 0.5s cubic-bezier(.2,.7,.3,1), filter 0.5s, opacity 0.5s;
  transform-origin: center top;
}
.fh-home.pushed {
  transform: scale(0.965) translateY(-12px);
  filter: blur(1px);
  opacity: 0.55;
}

.fh-intro { max-width: 980px; }
.fh-eyebrow {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--ink-40);
  margin-bottom: 26px;
}
.fh-headline {
  font-size: 46px;
  line-height: 1.12;
  font-weight: 500;
  letter-spacing: -0.02em;
  max-width: 940px;
  text-wrap: balance;
}
.fh-sub {
  margin-top: 26px;
  max-width: 560px;
  font-size: 15px;
  line-height: 1.55;
  color: var(--ink-60);
}

/* CTA */
.fh-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 34px;
  padding: 13px 22px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  font-size: 14px;
  background: transparent;
  transition: background 0.2s, color 0.2s;
}
.fh-cta:hover { background: var(--ink); color: var(--bg); }
.fh-cta.sm { margin-top: 22px; padding: 9px 16px; font-size: 12px; }
.fh-cta-arrow { transition: transform 0.2s; }
.fh-cta:hover .fh-cta-arrow { transform: translateY(-3px); }
.fh-cta.sm:hover .fh-cta-arrow { transform: translateX(3px); }

/* mailing list */
.fh-mail { max-width: 460px; margin-top: 40px; }
.fh-mail-label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--ink-40);
  margin-bottom: 12px;
}
.fh-mail-form {
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--ink);
  padding-bottom: 8px;
  gap: 10px;
}
.fh-mail-input {
  flex: 1;
  border: 0;
  background: transparent;
  font-family: var(--mono);
  font-size: 20px;
  color: var(--ink);
  outline: none;
}
.fh-mail-input::placeholder { color: var(--ink-20); }
.fh-mail-btn {
  font-size: 22px;
  line-height: 1;
  transition: transform 0.2s;
}
.fh-mail-btn:hover { transform: translateX(4px); }
.fh-mail-done { font-size: 20px; border-bottom: 1px solid var(--ink); padding-bottom: 8px; }
.fh-mail-note { font-size: 12px; color: var(--ink-40); margin-top: 12px; line-height: 1.5; }

/* home footer */
.fh-foot {
  display: flex;
  gap: 28px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ink-40);
  margin-top: 26px;
}

/* persistent footer — fixed to the bottom of the app at every size */
.fh-footer {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: var(--footh);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 0 32px;
  border-top: 1px solid var(--ink);
  background: var(--bg);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ink-40);
  z-index: 25;
}
.fh-footer-mid { color: var(--ink-60); }
.fh-footer-links { display: flex; gap: 22px; }
.fh-footer-links a:hover { color: var(--ink); }

/* scrim */
.fh-scrim {
  position: absolute;
  inset: 0;
  background: rgba(20,20,19,0.10);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s;
  z-index: 35;
}
.fh-scrim.on { opacity: 1; pointer-events: auto; }

/* slide-up panel — starts below the fixed nav so the menu stays visible */
.fh-panel {
  position: absolute;
  left: 0; right: 0;
  top: var(--navh); bottom: 0;
  background: var(--bg);
  border-top: 1px solid var(--ink);
  box-shadow: 0 -20px 60px rgba(20,20,19,0.18);
  transform: translateY(101%);
  transition: transform 0.52s cubic-bezier(.16,.84,.3,1);
  z-index: 40;
  display: flex;
  flex-direction: column;
}
.fh-panel.open { transform: translateY(0); }

.fh-panel-grip {
  display: flex;
  justify-content: center;
  padding: 12px 0 6px;
  cursor: pointer;
}
.fh-grip-bar {
  width: 46px; height: 4px;
  border-radius: 99px;
  background: var(--ink-20);
  transition: background 0.15s, width 0.2s;
}
.fh-panel-grip:hover .fh-grip-bar { background: var(--ink-40); width: 60px; }

.fh-panel-head {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 6px 32px 16px;
  border-bottom: 1px solid var(--ink);
}
.fh-panel-title { font-size: 20px; font-weight: 500; letter-spacing: -0.01em; flex: none; }
.fh-panel-filters { display: flex; gap: 6px; flex: 1; justify-content: center; flex-wrap: wrap; }
.fh-chip {
  padding: 5px 12px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  transition: background 0.15s, color 0.15s;
}
.fh-chip.on { background: var(--ink); color: var(--bg); }
.fh-panel-close { font-size: 13px; color: var(--ink-60); flex: none; margin-left: auto; }
.fh-panel-close:hover { color: var(--ink); }

/* panel scroll body */
.fh-panel-scroll { flex: 1; overflow-y: auto; }
.fh-panel-scroll::-webkit-scrollbar { width: 6px; }
.fh-panel-scroll::-webkit-scrollbar-thumb { background: var(--ink-20); }
.fh-panel-pad { padding: 36px 32px 60px; max-width: 1180px; }

/* accordion list */
.fh-acc { }
.fh-acc-item { border-bottom: 1px solid var(--hairline); position: relative; }

/* row — black fill fills fast on hover, then DECAYS slowly on mouse-out */
.fh-acc-row {
  position: relative;
  display: grid;
  grid-template-columns: 60px 1fr 140px 80px 72px;
  align-items: center;
  gap: 16px;
  width: 100%;
  text-align: left;
  padding: 22px 32px;
  color: var(--ink);
  background: transparent;
  transition: background 1.1s ease, color 1.1s ease, padding-left 1.1s ease;
}
.fh-acc-row:hover {
  background: var(--ink);
  color: var(--bg);
  padding-left: 44px;
  transition: background 0.09s ease, color 0.09s ease, padding-left 0.25s ease;
}
/* children follow the row's colour via currentColor */
.fh-acc-num { color: inherit; opacity: 0.45; transition: opacity 1.1s ease; }
.fh-acc-row:hover .fh-acc-num { opacity: 0.7; transition: opacity 0.09s ease; }
.fh-acc-title { font-size: 26px; font-weight: 500; letter-spacing: -0.02em; color: inherit; }
.fh-acc-disc, .fh-acc-year {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: inherit;
  opacity: 0.6;
  transition: opacity 1.1s ease;
}
.fh-acc-row:hover .fh-acc-disc, .fh-acc-row:hover .fh-acc-year { opacity: 0.8; transition: opacity 0.09s ease; }
.fh-acc-toggle {
  font-size: 11px; text-transform: uppercase; letter-spacing: 0.1em;
  color: inherit; opacity: 0.55; text-align: right;
  transition: opacity 1.1s ease;
}
.fh-acc-row:hover .fh-acc-toggle { opacity: 1; transition: opacity 0.09s ease; }

/* open row stays inked so it reads as active */
.fh-acc-item.open > .fh-acc-row {
  background: var(--ink);
  color: var(--bg);
  transition: background 0.12s ease, color 0.12s ease;
}
.fh-acc-item.open > .fh-acc-row .fh-acc-toggle { opacity: 1; }

/* full inline project — measured-height expand (JS drives max-height) */
.fh-acc-full-clip {
  overflow: hidden;
  transition: max-height 0.5s cubic-bezier(.2,.7,.3,1);
}

/* the whole project page, rendered inline */
.fh-proj { padding: 8px 32px 64px; max-width: 1180px; animation: fhFade 0.5s; }
.fh-proj-hero { margin: 16px 0 0; }
.fh-proj-hero.second { margin-top: 28px; }
.fh-proj-hero .ph { width: 100%; }
.fh-proj-intro {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 40px;
  padding: 34px 0 30px;
  border-bottom: 1px solid var(--hairline);
  margin-top: 24px;
}
.fh-proj-desc { font-size: 22px; line-height: 1.4; font-weight: 500; letter-spacing: -0.01em; }
.fh-proj-credits {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px 24px;
  align-content: start;
  font-size: 13px;
  line-height: 1.5;
}
.fh-proj-credits .faint { font-size: 10px; text-transform: uppercase; letter-spacing: 0.1em; }
.fh-proj-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 28px;
}
.fh-proj-cell { margin: 0; }
.fh-proj-cell.wide { grid-column: 1 / -1; }
.fh-proj-foot {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 32px;
  padding-top: 18px;
  border-top: 1px solid var(--ink);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ink-60);
}
.fh-proj-foot .faint { margin-left: auto; }

/* inline text article */
.fh-article { max-width: 760px; }
.fh-article-head {
  display: flex; justify-content: space-between; align-items: baseline;
  font-size: 11px; text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--ink-40);
  padding: 20px 0 0;
}
.fh-article-title {
  font-size: 40px; font-weight: 500; letter-spacing: -0.03em; line-height: 1.05;
  margin: 12px 0 28px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--ink);
}
.fh-article-body p { font-size: 17px; line-height: 1.62; margin-bottom: 20px; max-width: 640px; }
.fh-article-body .fh-article-lead { font-size: 22px; line-height: 1.45; font-weight: 500; letter-spacing: -0.01em; }

/* home inside the real-site scroller */
.fh-main .fh-home { height: auto; min-height: 100%; }

/* ---------- PAGE VIEWS (Text / About / Shop / Contact) ---------- */
.fh-page { padding: 56px 32px 80px; max-width: 1280px; }
.fh-page-head { max-width: 760px; margin-bottom: 44px; }
.fh-page-title { font-size: 56px; font-weight: 500; letter-spacing: -0.03em; line-height: 1; margin-top: 6px; }
.fh-page-lede { margin-top: 22px; font-size: 16px; line-height: 1.55; color: var(--ink-60); max-width: 560px; }

/* generic list (Text) */
.fh-list { border-top: 1px solid var(--ink); }
.fh-list-row {
  display: grid;
  grid-template-columns: 120px 1fr auto 40px;
  align-items: baseline;
  gap: 20px;
  padding: 22px 4px;
  border-bottom: 1px solid var(--hairline);
  transition: padding-left 0.2s, background 0.12s;
}
.fh-list-row:hover { padding-left: 14px; background: rgba(20,20,19,0.03); }
.fh-list-num { color: var(--ink-40); font-size: 13px; }
.fh-list-title { font-size: 26px; font-weight: 500; letter-spacing: -0.02em; }
.fh-list-tag { font-size: 11px; text-transform: uppercase; letter-spacing: 0.08em; color: var(--ink-60); }
.fh-list-arrow { color: var(--ink-40); text-align: right; }

/* about */
.fh-about { display: grid; grid-template-columns: 360px 1fr; gap: 56px; align-items: start; }
.fh-about-portrait { position: sticky; top: 0; }
.fh-about-lead { font-size: 24px; line-height: 1.35; font-weight: 500; letter-spacing: -0.01em; max-width: 620px; }
.fh-about-text { margin-top: 22px; font-size: 15px; line-height: 1.6; color: var(--ink-60); max-width: 620px; }
.fh-cv { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; margin-top: 48px; }
.fh-cv-h { font-size: 11px; text-transform: uppercase; letter-spacing: 0.12em; color: var(--ink-40); padding-bottom: 10px; border-bottom: 1px solid var(--ink); margin-bottom: 12px; font-weight: 500; }
.fh-cv-row { display: grid; grid-template-columns: 48px 1fr auto; gap: 12px; padding: 7px 0; font-size: 13px; border-bottom: 1px solid var(--hairline); }
.fh-cv-y { color: var(--ink-40); }

/* shop */
.fh-shop-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 36px 28px; }
.fh-shop-card { display: block; width: 100%; text-align: left; }
.fh-shop-img {
  display: block; width: 100%; padding: 0; position: relative; cursor: pointer;
  background: none; border: 0;
}
.fh-shop-img .ph { transition: filter 0.2s; }
.fh-shop-img:hover .ph { filter: brightness(0.96); }
.fh-shop-img.armed .ph { filter: brightness(0.92); cursor: none; }
.fh-shop-zoomhint {
  position: absolute; left: 12px; bottom: 12px;
  font-size: 10px; text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--bg); background: var(--ink);
  padding: 4px 8px; opacity: 0;
  transition: opacity 0.18s;
  pointer-events: none;
}
.fh-shop-img:hover .fh-shop-zoomhint { opacity: 0.85; }

/* cursor-following preview popup */
.fh-shop-pop {
  position: fixed;
  z-index: 90;
  pointer-events: none;
  background: var(--bg);
  border: 1px solid var(--ink);
  padding: 8px;
  box-shadow: 0 24px 60px rgba(20,20,19,0.28);
  animation: fhPop 0.16s ease-out;
}
@keyframes fhPop { from { opacity: 0; transform: scale(0.96); } to { opacity: 1; transform: scale(1); } }
.fh-shop-pop-meta {
  display: flex; justify-content: space-between; gap: 12px;
  font-size: 11px; text-transform: uppercase; letter-spacing: 0.06em;
  padding: 8px 2px 2px;
}

.fh-shop-meta { margin-top: 14px; }
.fh-shop-row { display: flex; justify-content: space-between; align-items: baseline; gap: 12px; }
.fh-shop-title { font-size: 16px; font-weight: 500; }
.fh-shop-price { font-size: 14px; }
.fh-shop-spec { font-size: 11px; text-transform: uppercase; letter-spacing: 0.06em; color: var(--ink-40); margin-top: 5px; }
.fh-shop-add {
  margin-top: 12px;
  font-size: 12px;
  letter-spacing: 0.02em;
  color: var(--ink-60);
  border: 1px solid var(--ink);
  border-radius: 999px;
  padding: 7px 14px;
  background: transparent;
  transition: background 0.15s, color 0.15s;
}
.fh-shop-add:hover { background: var(--ink); color: var(--bg); }
.fh-shop-add.added { background: var(--ink); color: var(--bg); }
.fh-shop-add.added:hover { background: transparent; color: var(--ink); }

/* frame vs print-only (in cart item) */
.fh-cart-frametag {
  display: inline-block; margin-left: 10px;
  font-size: 9px; text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--ink-40); vertical-align: middle;
  border: 1px solid var(--ink-20); border-radius: 999px; padding: 2px 7px;
}
.fh-frame-opt { padding: 14px 0 4px; }
.fh-frame-seg {
  display: grid; grid-template-columns: 1fr 1fr;
  border: 1px solid var(--ink); border-radius: 999px; overflow: hidden;
}
.fh-frame-seg button {
  font-size: 11px; text-transform: uppercase; letter-spacing: 0.05em;
  padding: 8px 6px; color: var(--ink-60); background: transparent;
  transition: background 0.15s, color 0.15s;
}
.fh-frame-seg button.on { background: var(--ink); color: var(--bg); }
.fh-frame-note { font-size: 11px; color: var(--ink-40); margin-top: 8px; }

/* ---------- PURCHASE PANEL (slides in from the right) ---------- */
.fh-buy {
  position: absolute;
  top: var(--navh); bottom: 0; right: 0;
  width: 440px;
  max-width: 100%;
  background: var(--bg);
  border-left: 1px solid var(--ink);
  box-shadow: -20px 0 60px rgba(20,20,19,0.18);
  transform: translateX(101%);
  transition: transform 0.5s cubic-bezier(.16,.84,.3,1);
  z-index: 50;
  display: flex;
  flex-direction: column;
}
.fh-buy.open { transform: translateX(0); }
.fh-buy-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 24px; border-bottom: 1px solid var(--ink);
}
.fh-buy-title { font-size: 16px; font-weight: 500; }
.fh-buy-body { flex: 1; overflow-y: auto; padding: 24px; }
.fh-buy-body::-webkit-scrollbar { width: 6px; }
.fh-buy-body::-webkit-scrollbar-thumb { background: var(--ink-20); }
.fh-buy-card { display: grid; grid-template-columns: 130px 1fr; gap: 16px; padding-bottom: 22px; border-bottom: 1px solid var(--hairline); }
.fh-buy-card-meta { align-self: start; }
.fh-buy-card-row { display: flex; flex-direction: column; gap: 3px; }
.fh-buy-card .fh-shop-title { font-size: 18px; }
.fh-buy-card .fh-shop-price { font-size: 16px; }
.fh-buy-ref { font-size: 10px; letter-spacing: 0.1em; color: var(--ink-40); margin-top: 12px; }
.fh-buy-note { font-size: 13px; line-height: 1.55; color: var(--ink-60); margin: 22px 0; }
.fh-buy-form { display: flex; flex-direction: column; gap: 18px; }
.fh-field { display: flex; flex-direction: column; gap: 6px; }
.fh-field > span { font-size: 11px; text-transform: uppercase; letter-spacing: 0.1em; color: var(--ink-40); }
.fh-field input, .fh-field textarea {
  font-family: var(--mono);
  font-size: 15px;
  color: var(--ink);
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--ink);
  padding: 8px 0;
  outline: none;
  resize: vertical;
}
.fh-field input::placeholder, .fh-field textarea::placeholder { color: var(--ink-20); }
.fh-field input:focus, .fh-field textarea:focus { border-color: var(--ink); }
.fh-buy-done { display: flex; gap: 14px; align-items: flex-start; padding-top: 6px; }
.fh-buy-done-mark { font-size: 24px; line-height: 1; }
.fh-buy-done p { margin-top: 6px; font-size: 13px; line-height: 1.5; }

/* ---------- ENQUIRY CART (reuses .fh-buy shell) ---------- */
.fh-cart-empty { padding-top: 6px; }
.fh-cart-empty-h { font-size: 18px; font-weight: 500; margin-bottom: 8px; }

.fh-cart-list { border-top: 1px solid var(--ink); margin-bottom: 4px; }
.fh-cart-item { border-bottom: 1px solid var(--hairline); }
.fh-cart-row { display: flex; align-items: center; }
.fh-cart-toggle-row {
  flex: 1;
  display: grid;
  grid-template-columns: 44px 1fr auto 24px;
  align-items: center;
  gap: 12px;
  text-align: left;
  padding: 14px 0;
}
.fh-cart-ref { color: var(--ink-40); font-size: 12px; }
.fh-cart-name { font-size: 16px; font-weight: 500; }
.fh-cart-remove {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--ink-40);
  padding-left: 14px;
}
.fh-cart-remove:hover { color: var(--ink); }
.fh-cart-body { overflow: hidden; transition: max-height 0.36s cubic-bezier(.2,.7,.3,1); }
.fh-cart-body-inner { display: grid; grid-template-columns: 120px 1fr; gap: 16px; padding: 4px 0 18px; align-items: start; }
.fh-cart-spec { display: grid; gap: 12px; font-size: 12px; line-height: 1.5; }
.fh-cart-spec .faint { font-size: 10px; text-transform: uppercase; letter-spacing: 0.1em; }

.fh-cart-actions {
  display: flex; align-items: center; justify-content: space-between;
  gap: 14px; padding: 16px 0 20px;
  border-bottom: 1px solid var(--ink);
  margin-bottom: 20px;
}
.fh-cart-add {
  font-size: 13px; color: var(--ink);
  border-bottom: 1px solid var(--ink);
  padding-bottom: 2px;
}
.fh-cart-add:hover { opacity: 0.6; }
.fh-cart-total { display: flex; flex-direction: column; align-items: flex-end; gap: 2px; font-size: 14px; }
.fh-cart-total .faint { font-size: 10px; text-transform: uppercase; letter-spacing: 0.1em; }

/* ---------- VIDEO / SOCIAL EMBEDS ---------- */
.fh-embed { position: relative; width: 100%; background: #111; border: 1px solid var(--hairline); overflow: hidden; }
.fh-embed iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.fh-embed-ig {
  display: flex; align-items: center; gap: 14px;
  padding: 18px; border: 1px solid var(--ink);
  font-size: 13px; transition: background 0.15s;
}
.fh-embed-ig:hover { background: rgba(20,20,19,0.04); }
.fh-embed-ig-mark { font-size: 22px; }
.fh-embed-ig-label { display: flex; flex-direction: column; line-height: 1.3; }
.fh-embed-ig-sub { font-size: 11px; color: var(--ink-40); margin-top: 2px; }
.fh-embed-ig-arrow { margin-left: auto; color: var(--ink-40); }

/* contact */
.fh-contact { display: grid; grid-template-columns: repeat(3, 1fr); gap: 48px; }
.fh-contact-big { font-size: 26px; font-weight: 500; letter-spacing: -0.02em; border-bottom: 1px solid var(--ink); padding-bottom: 6px; display: inline-block; }
.fh-contact-name { font-size: 15px; font-weight: 500; margin-bottom: 4px; }
.fh-contact-link { display: block; color: var(--ink-60); padding: 2px 0; }
.fh-contact-link:hover { color: var(--ink); }
.fh-contact-addr { font-size: 13px; line-height: 1.6; color: var(--ink-60); }
.fh-contact-addr strong { color: var(--ink); font-weight: 500; }
.fh-contact-social { display: flex; gap: 18px; margin-top: 22px; font-size: 12px; text-transform: uppercase; letter-spacing: 0.06em; }

.fh-home-bottom { display: flex; justify-content: space-between; align-items: flex-end; gap: 32px; flex-wrap: wrap; }

/* ---------- MOBILE MENU ---------- */
.fh-mobile-menu {
  position: absolute;
  inset: 0;
  background: var(--bg);
  z-index: 60;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 32px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px);
  transition: opacity 0.3s, transform 0.3s;
}
.fh-mobile-menu.open { opacity: 1; pointer-events: auto; transform: translateY(0); }
.fh-mobile-menu nav { display: flex; flex-direction: column; gap: 4px; }
.fh-mobile-link {
  display: flex; align-items: baseline; gap: 14px;
  font-size: 38px; font-weight: 500; letter-spacing: -0.03em;
  text-align: left; padding: 6px 0;
  opacity: 0; transform: translateY(12px);
  transition: opacity 0.4s, transform 0.4s;
}
.fh-mobile-menu.open .fh-mobile-link { opacity: 1; transform: translateY(0); }
.fh-mobile-num { font-size: 13px; color: var(--ink-40); letter-spacing: 0; }
.fh-mobile-foot { margin-top: 44px; display: flex; flex-direction: column; gap: 10px; font-size: 14px; }
.fh-mobile-social { display: flex; gap: 20px; color: var(--ink-60); }

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1024px) {
  .fh-headline { font-size: 38px; }
  .fh-shop-grid { grid-template-columns: repeat(2, 1fr); }
  .fh-acc-title { font-size: 22px; }
}
@media (max-width: 820px) {
  .fh-links { display: none; }
  .fh-burger { display: flex; }
  .fh-nav { grid-template-columns: 1fr auto; }
  .fh-about { grid-template-columns: 1fr; gap: 32px; }
  .fh-about-portrait { position: static; max-width: 320px; }
  .fh-cv { grid-template-columns: 1fr; gap: 28px; }
  .fh-contact { grid-template-columns: 1fr; gap: 36px; }
  .fh-acc-inner { grid-template-columns: 1fr; gap: 18px; }
  .fh-proj-intro { grid-template-columns: 1fr; gap: 20px; }
  .pp-grid-body { grid-template-columns: repeat(2, 1fr); }
  .pp-cell.span-3 { grid-column: span 2; }
  .pp-grid-title { font-size: 48px; }
  .pp-sl-mat { max-width: 78vw; }
  .pp-sl-meta { max-width: 60%; }
}
@media (max-width: 600px) {
  .fh { --navh: 57px; --footh: 42px; }
  .fh-nav { padding: 16px 20px; }
  .fh-cart { display: none; }
  .fh-home { padding: 36px 20px 22px; }
  .fh-eyebrow { margin-bottom: 18px; }
  .fh-headline { font-size: 28px; }
  .fh-sub { font-size: 14px; margin-top: 18px; }
  .fh-mail-input { font-size: 17px; }
  .fh-home-bottom { flex-direction: column; align-items: stretch; gap: 26px; }
  .fh-foot { flex-wrap: wrap; gap: 12px 20px; }
  .fh-footer { padding: 0 20px; font-size: 10px; }
  .fh-footer-mid { display: none; }
  .fh-footer-links { gap: 14px; }
  .fh-page { padding: 36px 20px 64px; }
  .fh-page-title { font-size: 40px; }
  .fh-shop-grid { grid-template-columns: 1fr; gap: 28px; }
  .fh-list-row { grid-template-columns: 1fr auto; gap: 6px 14px; }
  .fh-list-num { grid-column: 1 / -1; }
  .fh-list-title { font-size: 22px; }
  .fh-list-arrow { display: none; }
  .fh-panel-head { flex-wrap: wrap; gap: 12px; padding: 6px 20px 14px; }
  .fh-panel-filters { order: 3; flex-basis: 100%; justify-content: flex-start; flex: none; }
  .fh-panel-pad { padding: 28px 20px 48px; }
  .fh-acc-row { grid-template-columns: 44px 1fr 56px; padding: 16px 20px; }
  .fh-acc-row:hover { padding-left: 28px; }
  .fh-acc-disc, .fh-acc-year { display: none; }
  .fh-acc-title { font-size: 19px; }
  .fh-proj { padding: 8px 20px 48px; }
  .fh-proj-desc { font-size: 18px; }
  .fh-proj-credits { grid-template-columns: 1fr 1fr; }
  .fh-proj-gallery { grid-template-columns: 1fr; }
  .fh-buy { width: 100%; }
  .fh-mobile-link { font-size: 30px; }
  .pp-bar { grid-template-columns: auto 1fr; padding: 14px 20px; }
  .pp-bar-title { display: none; }
  .pp-toggle { grid-column: 2; justify-self: end; }
  .pp-grid { padding: 36px 20px 64px; }
  .pp-grid-title { font-size: 34px; }
  .pp-grid-body { grid-template-columns: 1fr; gap: 22px; }
  .pp-cell.span-2, .pp-cell.span-3 { grid-column: span 1; }
  .pp-sl-meta { position: static; max-width: none; padding: 18px 20px 0; }
  .pp-sl-counter { top: 16px; right: 20px; }
  .pp-slider { grid-template-rows: auto auto 1fr auto auto; }
  .pp-sl-stage { grid-row: 3; padding: 20px 44px 12px; }
  .pp-sl-caption { grid-row: 4; }
  .pp-sl-thumbs { grid-row: 5; flex-wrap: wrap; padding-bottom: 20px; }
  .pp-sl-mat { max-width: 86vw; padding: 12px; }
  .pp-sl-mat .ph { max-height: 44vh; }
  .pp-sl-arrow { font-size: 30px; width: 40px; height: 40px; }
  .pp-sl-thumb { width: 44px; height: 44px; }
}

/* =====================================================================
   SINGLE PROJECT PAGE — grid + Fabric-style slider
   ===================================================================== */
.pp {
  position: absolute;
  inset: 0;
  background: var(--bg);
  z-index: 80;
  display: flex;
  flex-direction: column;
  transform: translateY(101%);
  transition: transform 0.55s cubic-bezier(.16,.84,.3,1);
  pointer-events: none;
}
.pp.open { transform: translateY(0); pointer-events: auto; }

/* top bar */
.pp-bar {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 18px 32px;
  border-bottom: 1px solid var(--ink);
  background: var(--bg);
  z-index: 2;
}
.pp-back { justify-self: start; font-size: 13px; color: var(--ink-60); }
.pp-back:hover { color: var(--ink); }
.pp-bar-title { font-size: 14px; font-weight: 600; letter-spacing: -0.01em; }
.pp-toggle { justify-self: end; display: flex; border: 1px solid var(--ink); border-radius: 999px; overflow: hidden; }
.pp-toggle button { font-size: 11px; text-transform: uppercase; letter-spacing: 0.08em; padding: 6px 14px; color: var(--ink-60); }
.pp-toggle button.on { background: var(--ink); color: var(--bg); }

.pp-scroll { flex: 1; overflow-y: auto; position: relative; }
.pp-scroll::-webkit-scrollbar { width: 6px; }
.pp-scroll::-webkit-scrollbar-thumb { background: var(--ink-20); }

/* ---------- GRID MODE ---------- */
.pp-grid { padding: 56px 32px 80px; max-width: 1280px; margin: 0 auto; animation: fhFade 0.5s; }
.pp-grid-head { max-width: 820px; margin-bottom: 44px; }
.pp-grid-num { font-size: 13px; color: var(--ink-40); }
.pp-grid-title { font-size: 64px; font-weight: 500; letter-spacing: -0.03em; line-height: 1; margin: 8px 0 18px; }
.pp-grid-meta { display: flex; flex-wrap: wrap; gap: 20px; font-size: 11px; text-transform: uppercase; letter-spacing: 0.08em; color: var(--ink-60); padding-bottom: 18px; border-bottom: 1px solid var(--ink); }
.pp-grid-desc { font-size: 18px; line-height: 1.5; max-width: 620px; margin-top: 20px; }

.pp-grid-body { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-top: 8px; }
.pp-cell { margin: 0; }
.pp-cell.span-2 { grid-column: span 2; }
.pp-cell.span-3 { grid-column: span 3; }
.pp-cell figcaption { font-size: 11px; text-transform: uppercase; letter-spacing: 0.08em; color: var(--ink-40); margin-top: 10px; }
.pp-note { align-self: center; }
.pp-note p { font-size: 15px; line-height: 1.55; max-width: 360px; }
.pp-note p + p { margin-top: 12px; }
.pp-colophon { border-top: 1px solid var(--ink); padding-top: 14px; align-self: end; }
.pp-colophon-h { font-size: 11px; text-transform: uppercase; letter-spacing: 0.12em; color: var(--ink-40); margin-bottom: 12px; }
.pp-colophon dl { display: grid; grid-template-columns: auto 1fr; gap: 6px 16px; font-size: 13px; }
.pp-colophon dt { color: var(--ink-40); }
.pp-colophon dd { text-align: right; }

/* ---------- SLIDER MODE (Fabric) ---------- */
.pp-slider {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-rows: auto 1fr auto auto;
  transition: background 0.7s ease;
  overflow: hidden;
}
.pp-sl-meta { position: absolute; top: 28px; left: 32px; z-index: 4; max-width: 50%; }
.pp-sl-title { font-size: 26px; font-weight: 500; letter-spacing: -0.02em; }
.pp-sl-sub { font-size: 11px; text-transform: uppercase; letter-spacing: 0.1em; color: var(--ink-60); margin-top: 4px; }
.pp-sl-counter { position: absolute; top: 30px; right: 32px; z-index: 4; font-size: 14px; }

.pp-sl-stage { grid-row: 2; position: relative; display: flex; align-items: center; justify-content: center; padding: 64px 80px 20px; }
.pp-sl-frames { position: relative; width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; }
.pp-sl-frame {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: scale(0.97) translateY(10px);
  transition: opacity 0.55s ease, transform 0.55s cubic-bezier(.2,.7,.3,1);
  pointer-events: none;
}
.pp-sl-frame.on { opacity: 1; transform: scale(1) translateY(0); pointer-events: auto; }
.pp-sl-mat {
  padding: 18px;
  max-width: min(62vw, 760px);
  max-height: 100%;
  box-shadow: 0 24px 60px rgba(20,20,19,0.22);
  transition: background 0.7s ease;
}
.pp-sl-mat .ph { max-height: 56vh; width: auto; }
.pp-sl-mat .ph, .pp-sl-mat .fh-embed { width: min(56vw, 700px); }

.pp-sl-arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  z-index: 4; font-size: 40px; line-height: 1; color: var(--ink);
  width: 56px; height: 56px; display: flex; align-items: center; justify-content: center;
  transition: opacity 0.15s;
  opacity: 0.5;
}
.pp-sl-arrow:hover { opacity: 1; }
.pp-sl-arrow.left { left: 12px; }
.pp-sl-arrow.right { right: 12px; }

.pp-sl-caption { grid-row: 3; text-align: center; font-size: 11px; text-transform: uppercase; letter-spacing: 0.1em; color: var(--ink-60); padding-bottom: 14px; }

.pp-sl-thumbs { grid-row: 4; display: flex; gap: 10px; justify-content: center; padding: 0 24px 26px; }
.pp-sl-thumb {
  width: 56px; height: 56px;
  padding: 0; overflow: hidden;
  opacity: 0.5;
  outline: 1px solid rgba(20,20,19,0.25);
  outline-offset: -1px;
  transition: opacity 0.2s, transform 0.2s;
}
.pp-sl-thumb .ph { height: 100%; border: 0; }
.pp-sl-thumb.on { opacity: 1; transform: translateY(-4px); outline: 1px solid var(--ink); }
.pp-sl-thumb:hover { opacity: 0.85; }

/* ---------- STICKY NOTE (home only, draggable) ---------- */
.me-sticky {
  position: absolute;
  top: 90px; right: 48px;
  width: 240px;
  background: #fdf6d8;
  border: 1px solid var(--ink);
  box-shadow: 0 14px 34px rgba(20,20,19,0.22);
  transform: rotate(-2deg);
  cursor: grab;
  z-index: 20;
  user-select: none;
  touch-action: none;
}
.me-sticky:active { cursor: grabbing; transform: rotate(0deg); }
.me-sticky-pin {
  position: absolute; top: -7px; left: 50%; margin-left: -7px;
  width: 14px; height: 14px; border-radius: 50%;
  background: var(--ink);
}
.me-sticky-img { display: block; width: 100%; pointer-events: none; }
.me-sticky-imgph { pointer-events: none; }
.me-sticky-body { padding: 14px 16px 12px; color: #141413; }
.me-sticky-title { font-size: 11px; text-transform: uppercase; letter-spacing: 0.12em; opacity: 0.55; margin-bottom: 6px; }
.me-sticky-text { font-size: 14px; line-height: 1.45; font-weight: 500; }
.me-sticky-hint {
  padding: 0 16px 10px;
  font-size: 9px; text-transform: uppercase; letter-spacing: 0.14em;
  color: rgba(20,20,19,0.35);
}

/* ---------- STUDIO ADMIN ---------- */
.me-admin { width: 480px; }
.me-admin-err { font-size: 12px; color: #a33; }
.me-admin-note { font-size: 11px; color: var(--ink-40); line-height: 1.5; margin-top: 10px; }
.me-admin-tabs {
  display: flex; gap: 6px; flex-wrap: wrap;
  padding-bottom: 16px; margin-bottom: 18px;
  border-bottom: 1px solid var(--ink);
}
.me-admin-tabs button {
  font-size: 11px; text-transform: uppercase; letter-spacing: 0.06em;
  border: 1px solid var(--ink); border-radius: 999px; padding: 6px 12px;
  color: var(--ink-60);
}
.me-admin-tabs button.on { background: var(--ink); color: var(--bg); }
.me-admin-toggle { display: flex; align-items: center; gap: 10px; font-size: 13px; cursor: pointer; }
.me-admin-toggle input { width: 16px; height: 16px; accent-color: var(--ink); }
.me-admin-fonts { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.me-admin-fonts button {
  border: 1px solid var(--ink); padding: 12px 10px; font-size: 15px;
  color: var(--ink-60); background: transparent;
}
.me-admin-fonts button.on { background: var(--ink); color: var(--bg); }
.me-admin-swatches { display: flex; gap: 10px; }
.me-admin-swatches button {
  width: 42px; height: 42px; border: 1px solid var(--ink); border-radius: 50%;
  padding: 0;
}
.me-admin-swatches button.on { outline: 2px solid var(--ink); outline-offset: 3px; }
.me-admin-proj { border-bottom: 1px solid var(--hairline); }
.me-admin-proj summary {
  padding: 12px 0; font-size: 14px; cursor: pointer; list-style: none;
  display: flex; align-items: baseline; gap: 10px;
}
.me-admin-proj summary::-webkit-details-marker { display: none; }
.me-admin-proj-disc { margin-left: auto; font-size: 10px; text-transform: uppercase; letter-spacing: 0.08em; color: var(--ink-40); }
.me-admin-proj-body { padding: 6px 0 16px; }
.me-admin-grid2 { display: grid; grid-template-columns: 1fr 1fr; gap: 0 14px; }
.me-admin-remove { font-size: 11px; text-transform: uppercase; letter-spacing: 0.06em; color: #a33; }
.me-admin-savebar {
  display: flex; justify-content: space-between; align-items: center;
  margin-top: 26px; padding-top: 16px; border-top: 1px solid var(--ink);
}
.me-admin-reset { font-size: 11px; text-transform: uppercase; letter-spacing: 0.06em; color: var(--ink-40); }
.me-admin-reset:hover { color: #a33; }
.me-admin-savebar .fh-cta[disabled] { opacity: 0.4; pointer-events: none; }
.fh-footer-studio {
  font-size: 11px; text-transform: uppercase; letter-spacing: 0.08em;
  color: var(--ink-20);
}
.fh-footer-studio:hover { color: var(--ink); }

/* ---------- MINI SLIDER (inside accordion) ---------- */
.fh-mini-slider { margin-top: 26px; }
.fh-mini-stage { display: grid; grid-template-columns: 48px 1fr 48px; align-items: center; gap: 8px; }
.fh-mini-frame { max-width: 820px; margin: 0 auto; width: 100%; }
.fh-mini-arrow {
  font-size: 34px; line-height: 1; color: var(--ink);
  opacity: 0.45; height: 64px;
  transition: opacity 0.15s;
}
.fh-mini-arrow:hover { opacity: 1; }
.fh-mini-foot {
  display: flex; align-items: center; gap: 18px;
  max-width: 820px; margin: 14px auto 0;
  font-size: 11px; text-transform: uppercase; letter-spacing: 0.08em;
  color: var(--ink-60);
}
.fh-mini-dots { display: flex; gap: 8px; margin: 0 auto; }
.fh-mini-dots button {
  width: 9px; height: 9px; border-radius: 50%;
  border: 1px solid var(--ink); background: transparent; padding: 0;
}
.fh-mini-dots button.on { background: var(--ink); }

/* selection */
::selection { background: var(--ink); color: var(--bg); }
