/* ============================================================
   LINKER — Editorial Cream
   Monochrome boutique. Paper + ink. Bricolage + Instrument Serif.
   ============================================================ */

:root {
  --paper: #f3efe6;
  --paper-2: #ece7da;
  --ink: #14110c;
  --ink-2: #2c2820;
  --muted: #6b655a;
  --faint: #9a9385;
  --line: rgba(20, 17, 12, 0.16);
  --line-soft: rgba(20, 17, 12, 0.08);
  --accent: #14110c;
  --accent-ink: #f3efe6;

  --container: 1320px;
  --gutter: 40px;

  --display: "Bricolage Grotesque", "Arial Black", sans-serif;
  --serif: "Instrument Serif", Georgia, serif;
  --body: "Hanken Grotesk", system-ui, sans-serif;
  --mono: "Geist Mono", ui-monospace, monospace;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; background: var(--paper); color: var(--ink); }
html { scroll-behavior: smooth; }
body {
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; background: none; border: none; color: inherit; padding: 0; }
::selection { background: var(--ink); color: var(--paper); }

.mono {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}
.mono-sm { font-family: var(--mono); font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase; }

.wrap {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}

/* ---------- NAV ---------- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  padding: 20px var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(243, 239, 230, 0.82);
  backdrop-filter: blur(10px) saturate(140%);
  -webkit-backdrop-filter: blur(10px) saturate(140%);
  border-bottom: 1px solid var(--line-soft);
}
.nav__brand { display: flex; align-items: center; gap: 11px; }
.nav__mark {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  color: var(--ink);
  flex-shrink: 0;
}
.nav__mark svg { width: 100%; height: 100%; display: block; }
.nav__brand-name {
  font-family: var(--display);
  font-size: 21px;
  font-weight: 700;
  letter-spacing: -0.03em;
  white-space: nowrap;
}
.nav__menu { display: flex; gap: 32px; align-items: center; }
.nav__menu a {
  font-family: var(--mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  transition: color .2s ease;
}
.nav__menu a:hover { color: var(--ink); }
.nav__cta {
  font-family: var(--mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 9px 18px;
  border: 1px solid var(--ink);
  color: var(--ink) !important;
  border-radius: 100px;
  transition: all .22s ease;
}
.nav__cta:hover { background: var(--ink); color: var(--paper) !important; }
@media (max-width: 760px) {
  .nav__menu a:not(.nav__cta) { display: none; }
}

/* ---------- HERO ---------- */
.hero {
  padding: 150px var(--gutter) 72px;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  border-bottom: 1px solid var(--line);
  background-image:
    linear-gradient(var(--line-soft) 0 0),
    linear-gradient(var(--line-soft) 0 0);
  background-size: 1px 100%, 1px 100%;
  background-position: 33.33% 0, 66.66% 0;
  background-repeat: no-repeat;
}
.hero__meta {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 24px;
  margin-bottom: 48px;
  max-width: var(--container);
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  border-bottom: 1px solid var(--line);
  padding-bottom: 18px;
}
.hero__meta span { white-space: nowrap; }
.hero__title {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(42px, 7.4vw, 124px);
  line-height: 0.96;
  letter-spacing: -0.045em;
  margin: 0;
  text-wrap: balance;
  max-width: var(--container);
  margin-left: auto;
  margin-right: auto;
  padding: 0 var(--gutter);
}
.hero__line { display: block; }
.hero__title em {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  letter-spacing: -0.01em;
}
.hero__title .accent-stroke {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
}
.hero__sub {
  margin-top: 64px;
  max-width: var(--container);
  margin-left: auto;
  margin-right: auto;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: end;
}
.hero__lede {
  font-size: clamp(17px, 1.5vw, 21px);
  line-height: 1.45;
  max-width: 52ch;
  color: var(--ink);
  font-weight: 400;
}
.hero__lede .muted { color: var(--muted); }
.hero__actions { display: flex; gap: 12px; flex-wrap: wrap; justify-self: end; align-items: center; }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 26px;
  font-family: var(--mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border: 1px solid var(--ink);
  border-radius: 100px;
  transition: all .22s ease;
  white-space: nowrap;
}
.btn--primary { background: var(--ink); color: var(--paper); }
.btn--primary:hover { background: transparent; color: var(--ink); }
.btn--ghost { color: var(--ink); }
.btn--ghost:hover { background: var(--ink); color: var(--paper); }
.btn .arrow { display: inline-block; transition: transform .25s ease; }
.btn:hover .arrow { transform: translateX(4px); }

@media (max-width: 760px) {
  .hero__sub { grid-template-columns: 1fr; gap: 28px; }
  .hero__actions { justify-self: start; }
}

/* Rotating brand chip — ink box with inverted (white) logo */
.brand-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  vertical-align: baseline;
  padding: 0.16em 0.34em;
  margin: 0 0.04em;
  border-radius: 0.1em;
  position: relative;
  overflow: hidden;
  transform: translateY(0.12em);
  background: var(--ink);
  min-width: 0.8em;
  animation: chipIn .5s cubic-bezier(.2,.8,.2,1);
}
.brand-chip__logo {
  height: 0.5em;
  width: auto;
  display: block;
}
.brand-chip__inner {
  display: inline-block;
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  color: var(--paper);
  padding: 0 0.1em;
}
@keyframes chipIn {
  0% { transform: translateY(0.5em); opacity: 0; }
  100% { transform: translateY(0.12em); opacity: 1; }
}

/* ---------- BRAND BAND (static, editorial) ---------- */
.brand-band {
  position: relative;
  border-bottom: 1px solid var(--line);
  padding: 56px var(--gutter);
  background: var(--paper);
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 56px;
  align-items: center;
}
.brand-band__caption {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  line-height: 1.5;
  white-space: nowrap;
  align-self: center;
}
.brand-band__row {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: center;
  gap: 0;
}
.brand-band__item {
  display: grid;
  place-items: center;
  padding: 8px 24px;
}
.brand-band__logo {
  height: clamp(28px, 3.6vw, 52px);
  width: auto;
  display: block;
  opacity: 0.82;
  transition: opacity .3s ease, transform .3s ease;
}
.brand-band__item:hover .brand-band__logo { opacity: 1; transform: translateY(-2px); }
.brand-band__rule { width: 1px; height: 48px; background: var(--line); justify-self: center; }
@media (max-width: 760px) {
  .brand-band { grid-template-columns: 1fr; gap: 32px; padding: 40px var(--gutter); text-align: center; }
  .brand-band__caption { text-align: center; }
  .brand-band__row { grid-template-columns: 1fr; gap: 28px; }
  .brand-band__rule { width: 40px; height: 1px; }
}

/* ---------- SPINNING STICKER ---------- */
.sticker {
  position: fixed;
  bottom: 24px; right: 24px;
  width: 116px; height: 116px;
  z-index: 40;
  display: grid;
  place-items: center;
  transform: scale(var(--dc-inv-zoom,1));
  transform-origin: bottom right;
}
.sticker__svg { position: absolute; inset: 0; width: 100%; height: 100%; animation: spin 18s linear infinite; }
.sticker__text { fill: var(--ink); font-family: var(--mono); font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase; }
.sticker__core {
  width: 52px; height: 52px; border-radius: 50%;
  background: var(--ink); color: var(--paper);
  display: grid; place-items: center;
  position: relative; z-index: 2;
  transition: transform .25s ease;
}
.sticker__core-arrow { font-size: 20px; font-family: var(--display); font-weight: 600; transform: rotate(-45deg); }
.sticker:hover .sticker__core { transform: scale(1.12); }
@keyframes spin { to { transform: rotate(360deg); } }
@media (max-width: 760px) { .sticker { width: 92px; height: 92px; } .sticker__core { width: 42px; height: 42px; } }

.edge-label { display: none; }

/* ---------- SECTION SHELL ---------- */
.sec {
  padding: 104px var(--gutter);
  border-bottom: 1px solid var(--line);
  position: relative;
}
.sec__head { max-width: var(--container); margin: 0 auto 80px; }
.sec__num {
  font-family: var(--mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 28px;
}
.sec__num::before { content: ""; width: 32px; height: 1px; background: var(--ink); }
.sec__title {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(34px, 4.8vw, 76px);
  line-height: 1.0;
  letter-spacing: -0.04em;
  margin: 0;
  max-width: 16ch;
}
.sec__title em { font-family: var(--serif); font-style: italic; font-weight: 400; letter-spacing: -0.01em; }
@media (max-width: 760px) { .sec { padding: 80px var(--gutter); } .sec__head { margin-bottom: 48px; } }

/* ---------- MANIFESTO (ink block) ---------- */
.manifesto {
  background: var(--ink);
  color: var(--paper);
  padding: 140px var(--gutter);
  border-bottom: 1px solid var(--ink);
  position: relative;
  overflow: hidden;
}
.manifesto__inner { max-width: var(--container); margin: 0 auto; }
.manifesto__inner .sec__num { color: rgba(243,239,230,0.55); margin-bottom: 44px; }
.manifesto__inner .sec__num::before { background: var(--paper); }
.manifesto__text {
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(30px, 4vw, 64px);
  line-height: 1.08;
  letter-spacing: -0.035em;
  color: var(--paper);
  max-width: 20ch;
  text-wrap: balance;
}
.manifesto__text em { font-family: var(--serif); font-style: italic; font-weight: 400; }
.manifesto__text .muted { color: rgba(243,239,230,0.5); }
.manifesto__stamp { display: none; }
.watermark { display: none; }

/* ---------- SCARCITY ---------- */
.scarcity {
  padding: 40px var(--gutter);
  background: var(--paper-2);
  border-bottom: 1px solid var(--line);
}
.scarcity__row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 48px;
  align-items: center;
  max-width: var(--container);
  margin: 0 auto;
}
.scarcity__label {
  font-family: var(--mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 10px;
}
.scarcity__pulse { width: 8px; height: 8px; border-radius: 50%; background: var(--ink); position: relative; }
.scarcity__pulse::after {
  content: ""; position: absolute; inset: -4px; border-radius: 50%;
  border: 1px solid var(--ink); animation: pulse 2s ease-out infinite;
}
@keyframes pulse { 0% { transform: scale(0.8); opacity: 1; } 100% { transform: scale(2.2); opacity: 0; } }
.scarcity__slots { display: flex; gap: 8px; }
.slot {
  flex: 1; height: 46px; border: 1px solid var(--line);
  display: grid; place-items: center;
  font-family: var(--mono); font-size: 15px; color: var(--faint);
  position: relative; overflow: hidden; min-width: 26px;
  border-radius: 3px;
}
.slot--taken { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.slot--open { border-color: var(--ink); color: var(--ink); }
.scarcity__counter {
  font-family: var(--display);
  font-size: 40px; font-weight: 700; letter-spacing: -0.04em; color: var(--ink);
  white-space: nowrap;
}
.scarcity__counter small {
  font-size: 12px; color: var(--muted); font-family: var(--mono);
  letter-spacing: 0.05em; margin-left: 8px; text-transform: uppercase;
}
@media (max-width: 760px) { .scarcity__row { grid-template-columns: 1fr; gap: 24px; } }

/* ---------- MODES (editorial rows) ---------- */
.modes.sec { padding-bottom: 60px; }
.modes__grid {
  max-width: var(--container);
  margin: 0 auto;
  border-top: 1px solid var(--ink);
}
.mode {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 64px;
  align-items: start;
  padding: 44px 0;
  border-bottom: 1px solid var(--line);
  transition: padding .3s ease;
}
.mode:hover { padding-left: 20px; padding-right: 20px; }
.mode__rail { display: flex; flex-direction: column; align-items: flex-start; gap: 18px; }
.mode__num {
  font-family: var(--mono);
  font-size: 12px; letter-spacing: 0.08em; color: var(--muted);
}
.mode__name {
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(30px, 3.4vw, 50px);
  letter-spacing: -0.035em; line-height: 0.98; margin: 0;
}
.mode__avail {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.06em;
  text-transform: uppercase; padding: 8px 14px; border: 1px solid var(--line);
  border-radius: 100px; color: var(--muted); white-space: nowrap;
}
.mode__avail-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--faint); flex-shrink: 0; }
.mode__avail--scarce { color: var(--ink); border-color: var(--ink); }
.mode__avail--scarce .mode__avail-dot { background: var(--ink); animation: dotPulse 2s ease-out infinite; }
@keyframes dotPulse { 0% { box-shadow: 0 0 0 0 rgba(20,17,12,.5); } 100% { box-shadow: 0 0 0 5px transparent; } }
.mode__avail--open .mode__avail-dot { background: var(--ink); }

.mode__body { display: flex; flex-direction: column; align-items: flex-start; gap: 26px; padding-top: 6px; }
.mode__pitch { font-size: 16px; line-height: 1.6; color: var(--muted); margin: 0; max-width: 52ch; }
.mode__list { list-style: none; padding: 0; margin: 0; display: flex; flex-wrap: wrap; gap: 8px; }
.mode__list li {
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.04em; text-transform: uppercase;
  color: var(--ink); padding: 7px 13px; border: 1px solid var(--line); border-radius: 100px; white-space: nowrap;
}
.mode__cta {
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--ink); display: inline-flex; align-items: center; gap: 8px; white-space: nowrap;
  padding-bottom: 4px; border-bottom: 1px solid var(--ink); transition: gap .22s ease; margin-top: 2px;
}
.mode__cta:hover { gap: 14px; }
.mode__cta .arrow { display: inline-block; }
.mode--scarce .mode__cta {
  border: 1px solid var(--ink); border-radius: 100px; padding: 12px 20px;
  background: var(--ink); color: var(--paper);
}
.mode--scarce .mode__cta:hover { background: transparent; color: var(--ink); }
@media (max-width: 900px) {
  .mode { grid-template-columns: 1fr; gap: 28px; padding: 40px 0; }
}

/* ---------- SERVICES (numbered editorial list) ---------- */
.services.sec { padding-top: 84px; }
.services__list { max-width: var(--container); margin: 0 auto; border-top: 1px solid var(--ink); }
.svc {
  display: grid;
  grid-template-columns: 80px 1.1fr 2fr auto;
  gap: 40px;
  align-items: center;
  padding: 40px 0;
  border-bottom: 1px solid var(--line);
  transition: padding .3s ease, background .3s ease;
}
.svc:hover { padding-left: 24px; padding-right: 24px; background: var(--paper-2); }
.svc:hover .svc__name { font-style: italic; font-family: var(--serif); }
.svc:hover .svc__arrow { transform: translate(4px,-4px); }
.svc__num { font-family: var(--mono); font-size: 12px; letter-spacing: 0.08em; color: var(--muted); }
.svc__name {
  font-family: var(--display); font-weight: 600;
  font-size: clamp(28px, 3.4vw, 50px);
  letter-spacing: -0.035em; line-height: 1;
}
.svc__desc { color: var(--muted); font-size: 14px; line-height: 1.5; max-width: 52ch; }
.svc__tags { display: flex; gap: 6px; flex-wrap: wrap; justify-content: flex-end; }
.svc__tag {
  font-family: var(--mono); font-size: 9px; letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--muted); padding: 5px 9px; border: 1px solid var(--line); border-radius: 100px; white-space: nowrap;
}
.svc__arrow { font-family: var(--display); font-size: 24px; color: var(--ink); transition: transform .25s ease; justify-self: end; }
@media (max-width: 900px) {
  .svc { grid-template-columns: 56px 1fr auto; gap: 16px; padding: 28px 0; }
  .svc__desc, .svc__tags { display: none; }
}

/* ---------- SHOPIFY FEATURE ---------- */
.shopify {
  background: var(--paper-2);
  border-bottom: 1px solid var(--line);
  padding: 130px var(--gutter);
}
.shopify__inner {
  max-width: var(--container); margin: 0 auto;
  display: grid; grid-template-columns: 1.1fr 1fr; gap: 80px; align-items: stretch;
}
.shopify__copy { display: flex; flex-direction: column; justify-content: space-between; gap: 48px; }
.shopify__kicker {
  font-family: var(--mono); font-size: 11px; text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--ink); display: flex; align-items: center; gap: 12px; margin-bottom: 32px;
}
.shopify__kicker::before { content: ""; width: 32px; height: 1px; background: var(--ink); }
.shopify__title {
  font-family: var(--display); font-weight: 700;
  font-size: clamp(40px, 5.4vw, 92px); line-height: 0.98; letter-spacing: -0.045em; margin: 0 0 32px;
}
.shopify__title em { font-family: var(--serif); font-style: italic; font-weight: 400; }
.shopify__body { font-size: 17px; line-height: 1.6; color: var(--muted); max-width: 50ch; }
.shopify__body strong { color: var(--ink); font-weight: 600; }
.shopify__stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; border-top: 1px solid var(--line); padding-top: 32px; }
.stat__num { font-family: var(--display); font-size: clamp(32px, 3.4vw, 48px); font-weight: 700; letter-spacing: -0.03em; line-height: 1; }
.stat__lbl { font-family: var(--mono); font-size: 10px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--muted); margin-top: 10px; }
.shopify__panel { border: 1px solid var(--ink); border-radius: 8px; padding: 30px; background: var(--paper); display: flex; flex-direction: column; gap: 22px; }
.shopify__panel-hd {
  display: flex; justify-content: space-between; align-items: center;
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--muted); border-bottom: 1px solid var(--line); padding-bottom: 16px;
}
.checks { display: flex; flex-direction: column; gap: 16px; }
.check { display: grid; grid-template-columns: 20px 1fr; gap: 14px; align-items: start; }
.check__mark { width: 18px; height: 18px; background: var(--ink); border-radius: 4px; position: relative; margin-top: 2px; }
.check__mark::after {
  content: ""; position: absolute; left: 6px; top: 3px; width: 4px; height: 8px;
  border: solid var(--paper); border-width: 0 1.5px 1.5px 0; transform: rotate(45deg);
}
.check b { color: var(--ink); font-weight: 600; font-size: 14px; }
.check p { margin: 4px 0 0; color: var(--muted); font-size: 13px; line-height: 1.45; }
@media (max-width: 900px) { .shopify__inner { grid-template-columns: 1fr; gap: 48px; } }

/* ---------- PROJECTS ---------- */
.projects { padding: 130px 0; border-bottom: 1px solid var(--line); }
.projects__head {
  max-width: var(--container); margin: 0 auto 80px; padding: 0 var(--gutter);
}
.projects__head .sec__num { margin-bottom: 28px; }
.projects__head .sec__title { margin-bottom: 28px; }
.projects__intro { font-size: 16px; line-height: 1.6; color: var(--muted); max-width: 56ch; }
.projects__intro strong { color: var(--ink); font-weight: 600; }

.discretion-note {
  max-width: var(--container); margin: 0 auto 64px; padding: 0 var(--gutter);
  display: grid; grid-template-columns: 44px 1fr; gap: 22px; align-items: center;
}
.discretion-note > span:last-child {
  font-family: var(--mono); font-size: 12px; letter-spacing: 0.02em; color: var(--muted);
  line-height: 1.6; border-left: 2px solid var(--ink); padding-left: 22px; max-width: 64ch;
}
.discretion-note b { color: var(--ink); font-weight: 500; letter-spacing: 0.04em; text-transform: uppercase; margin-right: 8px; }
.discretion-note__icon {
  font-family: var(--serif); font-style: italic; font-size: 26px; color: var(--ink);
  width: 44px; height: 44px; border: 1px solid var(--ink); display: grid; place-items: center; border-radius: 50%;
}
@media (max-width: 760px) {
  .discretion-note { grid-template-columns: 1fr; }
  .discretion-note > span:last-child { border-left: none; padding-left: 0; }
}

.projects__list { max-width: var(--container); margin: 0 auto; padding: 0 var(--gutter); display: flex; flex-direction: column; }
.proj {
  display: grid; grid-template-columns: 1fr 1.1fr; gap: 64px;
  padding: 56px 0; border-top: 1px solid var(--line); align-items: center;
}
.proj:last-child { border-bottom: 1px solid var(--line); }
.proj__media {
  aspect-ratio: 4 / 3;
  background: #e9e3d4;
  border: 1px solid var(--line);
  border-radius: 8px;
  position: relative;
  overflow: hidden;
  display: grid;
  place-items: center;
  transition: transform .4s cubic-bezier(.2,.7,.2,1);
}
.proj:hover .proj__media { transform: translateY(-4px); }
.proj__media-cat {
  position: absolute;
  top: 16px; left: 16px;
  font-family: var(--mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ink);
  z-index: 2;
  padding: 6px 11px;
  border: 1px solid var(--ink);
  border-radius: 100px;
  white-space: nowrap;
}
.proj__media-label {
  position: absolute; bottom: 16px; left: 16px;
  font-family: var(--mono); font-size: 10px; text-transform: uppercase; letter-spacing: 0.08em;
  color: var(--muted); z-index: 2;
}
.proj__media-logo { width: 56%; max-width: 380px; height: auto; display: block; z-index: 1; }
.proj__media--dada { background: #e7e0cf; }
.proj__media--marson { background: #dfe2d8; }
.proj__media--divergent { background: #ece0d0; }
.proj__media::after {
  content: "";
  position: absolute; inset: 0;
  background-image: repeating-linear-gradient(90deg, transparent 0, transparent 79px, rgba(20,17,12,0.04) 79px, rgba(20,17,12,0.04) 80px);
  pointer-events: none;
}

.proj__copy { padding-right: 24px; }
.proj__meta {
  display: flex; gap: 24px; flex-wrap: wrap;
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 24px;
}
.proj__meta span:first-child { color: var(--ink); }
.proj__name {
  font-family: var(--display); font-weight: 700;
  font-size: clamp(34px, 4.4vw, 62px); letter-spacing: -0.04em; line-height: 1; margin: 0 0 18px;
}
.proj__desc { color: var(--muted); font-size: 15px; line-height: 1.6; max-width: 50ch; margin: 0 0 28px; }
.proj__link {
  font-family: var(--mono); font-size: 11px; text-transform: uppercase; letter-spacing: 0.06em;
  color: var(--ink); display: inline-flex; align-items: center; gap: 8px;
  border-bottom: 1px solid var(--ink); padding-bottom: 4px; transition: gap .22s ease;
}
.proj__link:hover { gap: 14px; }
.proj--reverse { grid-template-columns: 1.1fr 1fr; }
.proj--reverse .proj__copy { order: -1; padding-right: 0; }
@media (max-width: 900px) {
  .proj, .proj--reverse { grid-template-columns: 1fr; gap: 32px; }
  .proj--reverse .proj__copy { order: 0; }
}

/* ---------- APPLY ---------- */
.apply { padding: 140px var(--gutter); border-bottom: 1px solid var(--line); }
.apply__inner { max-width: var(--container); margin: 0 auto; display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 88px; align-items: start; }
.apply__left { position: sticky; top: 110px; }
.apply__title { font-family: var(--display); font-weight: 700; font-size: clamp(40px, 5.4vw, 84px); line-height: 0.98; letter-spacing: -0.045em; margin: 0 0 32px; }
.apply__title em { font-family: var(--serif); font-style: italic; font-weight: 400; }
.apply__title .accent { font-family: var(--serif); font-style: italic; font-weight: 400; }
.apply__meta { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; margin-top: 48px; padding-top: 32px; border-top: 1px solid var(--line); }
.apply__meta-item .mono-sm { color: var(--muted); margin-bottom: 8px; display: block; }
.apply__meta-item p { margin: 0; font-size: 16px; line-height: 1.45; color: var(--ink); }
.apply__meta-item a { color: var(--ink); border-bottom: 1px solid var(--line); }
.apply__meta-item a:hover { border-color: var(--ink); }

.form { display: flex; flex-direction: column; gap: 30px; }
.form__row { display: flex; flex-direction: column; gap: 10px; }
.form__row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; }
.form__label { font-family: var(--mono); font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); display: block; }
.form__input, .form__textarea {
  background: transparent; border: none; border-bottom: 1px solid var(--line);
  padding: 12px 0; color: var(--ink); font-family: var(--body); font-size: 18px; outline: none;
  transition: border-color .2s ease;
}
.form__input::placeholder, .form__textarea::placeholder { color: var(--faint); }
.form__input:focus, .form__textarea:focus { border-color: var(--ink); }
.form__textarea { resize: vertical; min-height: 100px; line-height: 1.5; }
.form__chips { display: flex; gap: 8px; flex-wrap: wrap; }
.chip {
  font-family: var(--mono); font-size: 11px; text-transform: uppercase; letter-spacing: 0.05em;
  padding: 9px 15px; border: 1px solid var(--line); border-radius: 100px; color: var(--muted);
  cursor: pointer; transition: all .2s ease; background: transparent;
}
.chip:hover { color: var(--ink); border-color: var(--ink); }
.chip--active { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.form__submit {
  margin-top: 16px; padding: 20px 30px; font-family: var(--mono); font-size: 12px; letter-spacing: 0.1em;
  text-transform: uppercase; background: var(--ink); color: var(--paper); border: 1px solid var(--ink);
  border-radius: 100px; display: flex; align-items: center; justify-content: space-between; transition: all .25s ease;
}
.form__submit:hover { background: transparent; color: var(--ink); }
.form__submit:disabled { opacity: 0.5; cursor: wait; }
.form__submit .arrow { transition: transform .25s ease; }
.form__submit:hover .arrow { transform: translateX(6px); }
.form__notice { font-family: var(--mono); font-size: 10px; letter-spacing: 0.05em; text-transform: uppercase; color: var(--faint); text-align: center; padding: 22px; border: 1px dashed var(--line); border-radius: 8px; }
.form__error { border: 1px solid var(--ink); padding: 14px 18px; border-radius: 8px; background: var(--paper-2); color: var(--ink); font-family: var(--mono); font-size: 12px; letter-spacing: 0.02em; line-height: 1.5; }
.form__success { border: 1px solid var(--ink); padding: 36px; text-align: center; background: var(--paper-2); border-radius: 8px; }
.form__success h3 { font-family: var(--display); font-weight: 700; font-size: 30px; letter-spacing: -0.03em; margin: 0 0 10px; }
.form__success p { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.55; }
@media (max-width: 900px) {
  .apply__inner { grid-template-columns: 1fr; gap: 48px; }
  .apply__left { position: static; }
  .form__row-2 { grid-template-columns: 1fr; }
}

/* ---------- FOOTER ---------- */
.foot { padding: 90px var(--gutter) 36px; background: var(--paper); }
.foot__inner { max-width: var(--container); margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 56px; border-bottom: 1px solid var(--line); }
.foot__brand { display: flex; flex-direction: column; gap: 18px; }
.foot__wordmark { font-family: var(--display); font-weight: 700; font-size: clamp(64px, 13vw, 184px); line-height: 0.82; letter-spacing: -0.05em; }
.foot__wordmark em { font-family: var(--serif); font-style: italic; font-weight: 400; }
.foot__col h4 { font-family: var(--mono); font-size: 10px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); margin: 0 0 18px; font-weight: 400; }
.foot__col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 11px; }
.foot__col a { font-size: 15px; color: var(--ink); transition: opacity .2s ease; }
.foot__col a:hover { opacity: 0.55; }
.foot__bottom { max-width: var(--container); margin: 24px auto 0; display: flex; justify-content: space-between; align-items: center; font-family: var(--mono); font-size: 10px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--faint); }
.foot__bottom .dot { width: 5px; height: 5px; background: var(--ink); border-radius: 50%; display: inline-block; margin: 0 8px; vertical-align: middle; }
@media (max-width: 900px) { .foot__inner { grid-template-columns: 1fr 1fr; } .foot__brand { grid-column: 1 / -1; } }

/* ---------- CURSOR ---------- */
.cursor { position: fixed; top: 0; left: 0; width: 14px; height: 14px; border-radius: 50%; background: var(--ink); mix-blend-mode: difference; pointer-events: none; z-index: 9999; transform: translate(-50%, -50%); transition: width .2s ease, height .2s ease; }
.cursor--hover { width: 56px; height: 56px; }
@media (hover: none) { .cursor { display: none; } }

/* ---------- REVEAL ---------- */
.reveal { opacity: 1; transform: none; }
.reveal.in { animation: revealUp .7s cubic-bezier(.2,.7,.2,1) both; }
@keyframes revealUp { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: none; } }
@media (prefers-reduced-motion: reduce) { .reveal.in { animation: none; } }

/* ---------- DENSITY / FONT VARIANTS ---------- */
[data-density="compact"] { --gutter: 28px; }
[data-density="compact"] .sec, [data-density="compact"] .shopify, [data-density="compact"] .projects { padding-top: 90px; padding-bottom: 90px; }
[data-density="comfy"] { --gutter: 52px; }
[data-density="comfy"] .sec, [data-density="comfy"] .shopify, [data-density="comfy"] .projects { padding-top: 170px; padding-bottom: 170px; }

[data-display="instrument"] { --display: "Instrument Serif", Georgia, serif; }
[data-display="instrument"] .hero__title, [data-display="instrument"] .sec__title,
[data-display="instrument"] .shopify__title, [data-display="instrument"] .apply__title,
[data-display="instrument"] .proj__name, [data-display="instrument"] .foot__wordmark,
[data-display="instrument"] .manifesto__text { font-weight: 400; letter-spacing: -0.02em; }

/* ============================================================
   MOBILE HARDENING — real phone widths (≤600px)
   ============================================================ */
html, body { overflow-x: hidden; }
* { min-width: 0; }

@media (max-width: 600px) {
  :root { --gutter: 20px; }

  /* Nav */
  .nav { padding: 14px var(--gutter); }
  .nav__brand-name { font-size: 19px; }

  /* Hero */
  .hero {
    padding: 120px var(--gutter) 56px;
    min-height: auto;
    background-image: none; /* drop column guides on mobile */
  }
  .hero__meta {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    margin-bottom: 36px;
    padding-bottom: 16px;
  }
  .hero__meta span { white-space: normal; }
  .hero__title { font-size: clamp(34px, 11vw, 56px); line-height: 1.0; }
  .hero__sub { margin-top: 40px; }
  .hero__lede { font-size: 16px; }
  .btn { padding: 13px 20px; }

  /* Brand band */
  .brand-band { padding: 32px var(--gutter); gap: 24px; }

  /* Sections */
  .sec, .shopify, .projects, .apply { padding-left: var(--gutter); padding-right: var(--gutter); }
  .sec { padding-top: 64px; padding-bottom: 64px; }
  .manifesto { padding: 72px var(--gutter); }
  .manifesto__text { font-size: clamp(26px, 7vw, 38px); }
  .sec__title { font-size: clamp(30px, 9vw, 46px); }

  /* Scarcity */
  .scarcity { padding: 28px var(--gutter); }
  .scarcity__slots { flex-wrap: wrap; }
  .slot { min-width: 30px; height: 40px; }
  .scarcity__counter { font-size: 32px; }

  /* Modes */
  .mode { gap: 20px; padding: 32px 0; }
  .mode__rail { gap: 14px; }

  /* Services */
  .svc { grid-template-columns: 44px 1fr 28px; gap: 12px; padding: 24px 0; }
  .svc__name { font-size: clamp(26px, 7.5vw, 40px); }

  /* Shopify */
  .shopify { padding: 72px var(--gutter); }
  .shopify__inner { gap: 40px; }
  .shopify__stats { gap: 16px; }
  .shopify__panel { padding: 22px; }

  /* Projects */
  .projects { padding: 72px 0; }
  .proj { padding: 36px 0; gap: 24px; }
  .proj__copy { padding-right: 0; }
  .proj__media-cat { font-size: 9px; padding: 5px 9px; }

  /* Apply */
  .apply { padding: 80px var(--gutter); }
  .apply__meta { grid-template-columns: 1fr; gap: 22px; }
  .form__input, .form__textarea { font-size: 16px; } /* avoid iOS zoom-on-focus jump */

  /* Footer */
  .foot { padding: 64px var(--gutter) 28px; }
  .foot__inner { grid-template-columns: 1fr 1fr; gap: 32px 24px; }
  .foot__bottom { flex-direction: column; align-items: flex-start; gap: 10px; }

  /* Sticker — smaller, out of the way */
  .sticker { width: 78px; height: 78px; bottom: 16px; right: 16px; }
  .sticker__core { width: 36px; height: 36px; }
  .sticker__core-arrow { font-size: 16px; }
}

@media (max-width: 380px) {
  .hero__title { font-size: 32px; }
  .foot__inner { grid-template-columns: 1fr; }
}
