:root {
  --paper: #F7F5F1;
  --paper-warm: #F1EDE5;
  --white: #FFFFFF;
  --ink: #171717;
  --charcoal: #2B2A28;
  --clay: #C96B4B;
  --clay-light: #F1D5CA;
  --sage: #A8B89F;
  --butter: #E9C96B;
  --mist: #E7E4DE;
  --stone: #77736E;
  --money: #2F7D5B;
  --danger: #C4453C;

  --rule: rgba(23, 23, 23, 0.14);
  --rule-strong: rgba(23, 23, 23, 0.32);
  --rule-dark: rgba(247, 245, 241, 0.15);

  --serif: 'Instrument Serif', ui-serif, Georgia, serif;
  --sans: 'Geist', system-ui, -apple-system, sans-serif;
  --mono: 'Geist Mono', ui-monospace, monospace;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: auto; }
html, body {
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
body { overflow-x: hidden; }
a { color: inherit; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }

@view-transition { navigation: auto; }
::view-transition-old(root) { animation: 520ms cubic-bezier(0.7,0,0.15,1) both slide-out-up; }
::view-transition-new(root) { animation: 520ms cubic-bezier(0.7,0,0.15,1) both slide-in-down; }
@keyframes slide-out-up { to { opacity: 0; transform: translateY(-6vh); filter: blur(4px); } }
@keyframes slide-in-down { from { opacity: 0; transform: translateY(6vh); filter: blur(4px); } }
::view-transition-group(wordmark) { animation-duration: 620ms; animation-timing-function: cubic-bezier(0.7,0,0.15,1); }

.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 20px 28px;
  mix-blend-mode: difference;
  color: var(--paper);
  pointer-events: none;
}
.nav > * { pointer-events: auto; }
.nav .brand {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  display: flex;
  align-items: baseline;
  gap: 10px;
}
.nav .brand .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--clay); display: inline-block; transform: translateY(-1px); }
.nav .brand small { opacity: 0.55; font-size: 10px; }
.nav .center {
  display: flex;
  gap: 24px;
  justify-self: center;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.nav .center button { padding: 6px 0; opacity: 0.55; transition: opacity 200ms; position: relative; }
.nav .center button:hover, .nav .center button.active { opacity: 1; }
.nav .center button.active::after { content: ''; position: absolute; left: 0; right: 0; bottom: 0; height: 1px; background: currentColor; }
.nav .end {
  justify-self: end;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.nav .end .status { display: inline-flex; align-items: center; gap: 8px; }
.nav .end .pulse {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--clay);
  box-shadow: 0 0 0 0 rgba(201,107,75,0.55);
  animation: pulse 2.2s ease-out infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(201,107,75,0.55); }
  70% { box-shadow: 0 0 0 10px rgba(201,107,75,0); }
  100% { box-shadow: 0 0 0 0 rgba(201,107,75,0); }
}

.hero {
  position: relative;
  min-height: 100vh;
  padding: 120px 32px 40px;
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: 40px;
  overflow: hidden;
}
.hero-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--stone);
}
.hero-top .r { text-align: right; }
.wordmark-hero {
  view-transition-name: wordmark;
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(88px, 22vw, 340px);
  line-height: 0.82;
  letter-spacing: -0.035em;
  color: var(--ink);
  align-self: end;
}
.wordmark-hero .dot { color: var(--clay); font-style: normal; }
.wordmark-nav {
  view-transition-name: wordmark;
  font-family: var(--serif);
  font-style: italic;
  font-size: 22px;
  line-height: 1;
  letter-spacing: -0.02em;
  color: currentColor;
}
.wordmark-nav .dot { color: var(--clay); }
.hero-bottom {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: end;
  padding-top: 20px;
  border-top: 1px solid var(--rule);
}
.hero-tag {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(22px, 2.6vw, 34px);
  line-height: 1.15;
  max-width: 640px;
  letter-spacing: -0.005em;
}
.hero-cta { display: flex; flex-direction: column; gap: 12px; align-items: flex-end; }
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 20px;
  background: var(--ink);
  color: var(--paper);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border-radius: 999px;
  text-decoration: none;
  transition: transform 200ms, background 200ms, opacity 200ms;
}
.btn:hover { transform: translateY(-1px); background: var(--charcoal); }
.btn.clay { background: var(--clay); color: var(--paper); }
.btn.clay:hover { background: #b55d3f; }
.btn:disabled { opacity: 0.55; cursor: default; transform: none; }
.btn .arrow { font-family: var(--sans); font-size: 14px; transform: translateY(-1px); }
.hero-meta { font-family: var(--mono); font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--stone); }

.pattern-strip { position: relative; padding: 60px 0 100px; background: var(--ink); color: var(--paper); overflow: hidden; }
.pattern-label {
  padding: 0 32px 40px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: end;
}
.pattern-label .lg {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(32px, 5vw, 64px);
  line-height: 1.02;
  letter-spacing: -0.02em;
  max-width: 14ch;
}
.pattern-label .sm {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0.55;
  max-width: 24ch;
  text-align: right;
}
.grid { display: grid; grid-template-columns: repeat(8, 1fr); gap: 6px; padding: 0 32px; }
.tile {
  aspect-ratio: 1;
  border: 1px solid rgba(247,245,241,0.10);
  padding: 12px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  position: relative;
  overflow: hidden;
  will-change: transform;
}
.tile.charcoal { background: var(--charcoal); color: var(--paper); border-color: transparent; }
.tile.clay { background: var(--clay); color: var(--paper); border-color: transparent; }
.tile.clayLight { background: var(--clay-light); color: var(--ink); border-color: transparent; }
.tile.sage { background: var(--sage); color: var(--ink); border-color: transparent; }
.tile.butter { background: var(--butter); color: var(--ink); border-color: transparent; }
.tile.mist { background: var(--mist); color: var(--ink); border-color: transparent; }
.tile.paper { background: var(--paper); color: var(--ink); border-color: transparent; }
.tile .meta { opacity: 0.65; font-size: 9px; }
.tile .body { font-family: var(--serif); font-style: italic; font-size: 18px; line-height: 1.05; letter-spacing: -0.01em; text-transform: none; }
.tile.pat { padding: 0; }
.tile.pat svg { width: 100%; height: 100%; display: block; }

section { position: relative; }
.wrap { max-width: 1440px; margin: 0 auto; padding: 0 32px; }
.pad { padding: 120px 32px; }
.head {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 24px;
  align-items: baseline;
  padding-bottom: 60px;
  border-bottom: 1px solid var(--rule);
  margin-bottom: 60px;
}
.head .num { font-family: var(--mono); font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--stone); }
.head .ttl {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.05;
  letter-spacing: -0.015em;
}

.manifesto { padding: 180px 32px; max-width: 1200px; margin: 0 auto; }
.manifesto p {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(28px, 4.4vw, 62px);
  line-height: 1.08;
  letter-spacing: -0.02em;
}
.manifesto p .em { color: var(--clay); font-style: italic; }
.manifesto .attrib {
  display: block;
  margin-top: 60px;
  font-family: var(--mono);
  font-style: normal;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--stone);
}

.split { display: grid; grid-template-columns: 1fr 1fr; border-top: 1px solid var(--rule); border-bottom: 1px solid var(--rule); }
.split > div {
  padding: 80px 40px;
  min-height: 60vh;
  display: flex;
  flex-direction: column;
  gap: 24px;
  justify-content: space-between;
}
.split .a { border-right: 1px solid var(--rule); background: var(--paper); }
.split .b { background: var(--clay-light); color: var(--ink); }
.split .role { font-family: var(--mono); font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--stone); }
.split .role .n { color: var(--clay); }
.split .headline {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(32px, 3.6vw, 54px);
  line-height: 1.05;
  letter-spacing: -0.015em;
  max-width: 14ch;
}
.split ul { list-style: none; display: flex; flex-direction: column; gap: 14px; }
.split li {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 16px;
  align-items: baseline;
  font-size: 16px;
  line-height: 1.4;
  padding-top: 14px;
  border-top: 1px solid var(--rule);
}
.split .b li { border-top-color: rgba(23,23,23,0.15); }
.split li .idx { font-family: var(--mono); font-size: 10px; letter-spacing: 0.15em; color: var(--stone); }

.pinned { height: 400vh; position: relative; background: var(--paper); }
.pinned-frame { position: sticky; top: 0; height: 100vh; overflow: hidden; display: grid; grid-template-columns: 1fr 1fr; }
.pinned-copy {
  padding: 120px 40px 40px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-right: 1px solid var(--rule);
}
.pinned-copy .num-strip { display: flex; gap: 12px; font-family: var(--mono); font-size: 11px; letter-spacing: 0.2em; color: var(--stone); }
.pinned-copy .num-strip span { opacity: 0.55; }
.phases { position: relative; height: 100%; }
.phase { position: absolute; inset: 0; display: flex; flex-direction: column; gap: 20px; justify-content: center; }
.phase h3 { font-family: var(--serif); font-style: italic; font-size: clamp(40px, 5.4vw, 84px); line-height: 1; letter-spacing: -0.025em; }
.phase p { font-size: 17px; line-height: 1.5; max-width: 44ch; color: var(--stone); }
.pinned-visual { position: relative; background: var(--charcoal); color: var(--paper); overflow: hidden; }
.vphase { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; padding: 60px; }
.mock {
  background: var(--paper);
  color: var(--ink);
  border-radius: 22px;
  width: min(360px, 100%);
  height: min(560px, 80vh);
  box-shadow: 0 30px 80px rgba(0,0,0,0.4), 0 0 0 8px var(--ink);
  padding: 20px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 12px;
}
.mock .m-head { display: flex; justify-content: space-between; align-items: center; font-family: var(--mono); font-size: 10px; letter-spacing: 0.15em; text-transform: uppercase; color: var(--stone); }
.mock .m-title { font-family: var(--serif); font-style: italic; font-size: 22px; letter-spacing: -0.01em; }
.mock .m-post {
  border-radius: 14px;
  overflow: hidden;
  background: var(--mist);
  aspect-ratio: 1;
  position: relative;
  display: flex;
  align-items: flex-end;
  padding: 14px;
  color: var(--paper);
  background: linear-gradient(180deg, transparent 40%, rgba(23,23,23,0.55)), var(--clay);
}
.mock .m-post.b2 { background: linear-gradient(180deg, transparent 40%, rgba(23,23,23,0.55)), var(--sage); }
.mock .m-caption { font-family: var(--serif); font-style: italic; font-size: 16px; line-height: 1.1; }
.mock .m-cal { display: grid; grid-template-columns: repeat(7, 1fr); gap: 4px; }
.mock .m-day { aspect-ratio: 1; border: 1px solid var(--rule); border-radius: 8px; display: flex; align-items: center; justify-content: center; font-family: var(--mono); font-size: 11px; }
.mock .m-day.on { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.mock .m-slot {
  padding: 10px 12px;
  border: 1px solid var(--rule);
  border-radius: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--mono);
  font-size: 11px;
}
.mock .m-slot.on { background: var(--clay); color: var(--paper); border-color: var(--clay); }
.mock .m-pay {
  margin-top: auto;
  padding: 16px;
  border-radius: 14px;
  background: var(--ink);
  color: var(--paper);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.mock .m-pay .amt { font-family: var(--serif); font-style: italic; font-size: 28px; color: var(--butter); }
.mock .m-pay .pill { font-family: var(--mono); font-size: 10px; letter-spacing: 0.15em; text-transform: uppercase; background: var(--money); padding: 6px 10px; border-radius: 999px; }
.mock .m-review { padding: 12px; border: 1px solid var(--rule); border-radius: 12px; display: flex; flex-direction: column; gap: 6px; }
.mock .m-stars { letter-spacing: 0.1em; color: var(--butter); font-size: 14px; }
.mock .m-quote { font-family: var(--serif); font-style: italic; font-size: 14px; line-height: 1.25; }

.feats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; border-top: 1px solid var(--rule); }
.feat {
  padding: 36px 28px;
  min-height: 280px;
  border-right: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.feat:nth-child(3n) { border-right: 0; }
.feat .idx { font-family: var(--mono); font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--stone); }
.feat .name { font-family: var(--serif); font-style: italic; font-size: 26px; letter-spacing: -0.01em; line-height: 1.05; }
.feat .desc { font-size: 14px; line-height: 1.5; color: var(--stone); margin-top: auto; }

.wait { padding: 160px 32px; text-align: center; background: var(--ink); color: var(--paper); position: relative; overflow: hidden; }
.wait h2 {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(48px, 8vw, 128px);
  line-height: 0.95;
  letter-spacing: -0.03em;
  max-width: 16ch;
  margin: 0 auto;
}
.wait h2 .em { color: var(--clay); }
.wait .sub { margin-top: 32px; font-size: 16px; opacity: 0.6; max-width: 44ch; margin-left: auto; margin-right: auto; }
.wait .form {
  margin-top: 48px;
  display: inline-flex;
  align-items: center;
  gap: 0;
  background: var(--paper);
  color: var(--ink);
  border-radius: 999px;
  padding: 6px;
  min-width: min(560px, 90vw);
}
.wait .form input {
  flex: 1;
  background: transparent;
  border: 0;
  outline: 0;
  padding: 14px 20px;
  font: inherit;
  font-size: 15px;
  color: var(--ink);
}
.wait .form input::placeholder { color: var(--stone); }
.wait .fine { margin-top: 20px; font-family: var(--mono); font-size: 10px; letter-spacing: 0.15em; text-transform: uppercase; opacity: 0.4; }
.wait .err-line {
  margin-top: 20px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #ff8f8f;
}
.wait .thanks {
  margin-top: 48px;
  display: inline-flex;
  align-items: center;
  gap: 16px;
  padding: 14px 20px;
  border: 1px solid var(--rule-dark);
  border-radius: 999px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.wait .thanks .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--clay); }

.contact-grid { display: grid; grid-template-columns: 4fr 6fr; gap: 60px; }
.contact-side { display: flex; flex-direction: column; gap: 40px; }
.contact-intro {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(20px, 2vw, 26px);
  line-height: 1.25;
  color: var(--ink);
}
.contact-direct { display: flex; flex-direction: column; gap: 0; }
.contact-direct .cd-label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--stone);
  margin-bottom: 8px;
}
.contact-direct a {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
  padding: 14px 0;
  border-top: 1px solid var(--rule);
  text-decoration: none;
  font-size: 15px;
  transition: color 200ms;
}
.contact-direct a:hover { color: var(--clay); }
.contact-direct .cd-tag {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--stone);
}

.contact-form { display: flex; flex-direction: column; gap: 24px; }
.field { display: flex; flex-direction: column; gap: 8px; border: 0; padding: 0; margin: 0; }
.field label, .field legend {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--stone);
  padding: 0;
}
.field input[type="text"], .field input[type="email"], .field textarea {
  background: var(--white);
  border: 1px solid var(--rule);
  border-radius: 12px;
  padding: 14px 16px;
  font: inherit;
  font-size: 15px;
  color: var(--ink);
  transition: border-color 200ms;
  width: 100%;
  font-family: var(--sans);
}
.field input:focus, .field textarea:focus { outline: none; border-color: var(--ink); }
.field input::placeholder, .field textarea::placeholder { color: var(--stone); opacity: 0.7; }
.field textarea { resize: vertical; min-height: 120px; }
.field.err input, .field.err textarea { border-color: var(--danger); }
.field .err-msg {
  font-size: 11px;
  color: var(--danger);
  display: none;
  font-family: var(--mono);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.field.err .err-msg { display: block; }

.pills { display: flex; gap: 8px; flex-wrap: wrap; }
.pills input[type="radio"] { position: absolute; opacity: 0; pointer-events: none; width: 0; height: 0; }
.pills label {
  padding: 10px 14px;
  border: 1px solid var(--rule);
  border-radius: 999px;
  cursor: pointer;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--stone);
  background: var(--white);
  transition: all 200ms;
}
.pills input[type="radio"]:checked + label { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.pills input[type="radio"]:focus-visible + label { outline: 2px solid var(--clay); outline-offset: 2px; }

.contact-actions { display: flex; align-items: center; gap: 20px; margin-top: 8px; flex-wrap: wrap; }
.contact-status {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--stone);
}
.contact-status.ok { color: var(--money); }
.contact-status.err { color: var(--danger); }

.honey { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; }

footer {
  padding: 60px 32px 40px;
  border-top: 1px solid var(--rule);
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
  align-items: end;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--stone);
}
footer .col { display: flex; flex-direction: column; gap: 8px; }
footer .col .lg { font-family: var(--serif); font-style: italic; font-size: 36px; letter-spacing: -0.02em; text-transform: none; color: var(--ink); }
footer .col .lg .dot { color: var(--clay); }
footer .col .tagline { color: var(--ink); text-transform: none; letter-spacing: 0; font-family: var(--serif); font-style: italic; font-size: 14px; opacity: 0.7; }
footer .col.mid { align-items: center; text-align: center; }
footer .col.end { align-items: flex-end; text-align: right; }
footer a { text-decoration: none; opacity: 0.7; transition: opacity 200ms; }
footer a:hover { opacity: 1; color: var(--clay); }

.inner-hero {
  padding: 160px 32px 80px;
  border-bottom: 1px solid var(--rule);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: end;
}
.inner-hero .eyebrow { font-family: var(--mono); font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--stone); }
.inner-hero h1 {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(52px, 8vw, 132px);
  line-height: 0.92;
  letter-spacing: -0.03em;
  margin-top: 24px;
}
.inner-hero h1 .em { color: var(--clay); }
.inner-hero .side {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--stone);
  text-align: right;
  max-width: 28ch;
}
.longform { display: grid; grid-template-columns: 3fr 5fr; gap: 80px; padding: 100px 32px; }
.longform .lead {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1.15;
  letter-spacing: -0.015em;
}
.longform .body p { font-size: 17px; line-height: 1.6; margin-bottom: 1.2em; color: var(--charcoal); }
.longform .body p:first-child::first-letter {
  font-family: var(--serif);
  font-style: italic;
  font-size: 4em;
  float: left;
  line-height: 0.85;
  padding: 6px 10px 0 0;
  color: var(--clay);
}

@supports (animation-timeline: scroll()) {
  .tile { animation: tile-drift linear both; animation-timeline: scroll(root); animation-range: 0 200vh; }
  .tile:nth-child(3n) { animation-name: tile-drift-a; }
  .tile:nth-child(3n+1) { animation-name: tile-drift-b; }
  .tile:nth-child(3n+2) { animation-name: tile-drift-c; }
  @keyframes tile-drift-a { to { transform: translateY(-70px) rotate(1.5deg); } }
  @keyframes tile-drift-b { to { transform: translateY(-30px) rotate(-1deg); } }
  @keyframes tile-drift-c { to { transform: translateY(-110px) rotate(2deg); } }

  .reveal { animation: reveal-in linear both; animation-timeline: view(); animation-range: entry 0% cover 35%; }
  @keyframes reveal-in { from { opacity: 0; transform: translateY(40px); } to { opacity: 1; transform: translateY(0); } }

  .manifesto .word { display: inline-block; animation: word-in linear both; animation-timeline: view(); animation-range: entry 10% cover 55%; }
  @keyframes word-in { from { opacity: 0.15; } to { opacity: 1; } }

  .pinned { scroll-timeline: --sc block; }
  .phase { opacity: 0; }
  .vphase { opacity: 0; }
  .phase-1, .vphase-1 { animation: fade-inout linear both; animation-timeline: --sc; animation-range: 0% 25%; }
  .phase-2, .vphase-2 { animation: fade-inout linear both; animation-timeline: --sc; animation-range: 22% 50%; }
  .phase-3, .vphase-3 { animation: fade-inout linear both; animation-timeline: --sc; animation-range: 47% 75%; }
  .phase-4, .vphase-4 { animation: fade-inout linear both; animation-timeline: --sc; animation-range: 72% 100%; }
  @keyframes fade-inout {
    0% { opacity: 0; transform: translateY(30px); }
    18%, 82% { opacity: 1; transform: translateY(0); }
    100% { opacity: 0; transform: translateY(-30px); }
  }

  .feat { animation: reveal-in linear both; animation-timeline: view(); animation-range: entry 0% cover 30%; }
}
@supports not (animation-timeline: scroll()) {
  .phase, .vphase { opacity: 1; position: relative; inset: auto; }
  .pinned { height: auto; }
  .pinned-frame { position: relative; height: auto; grid-template-columns: 1fr; }
  .phases { height: auto; }
  .phase { padding: 60px 40px; }
  .vphase { padding: 60px 40px; min-height: 60vh; }
}

@media (max-width: 900px) {
  .hero { padding: 96px 20px 30px; }
  .grid { grid-template-columns: repeat(4, 1fr); padding: 0 20px; }
  .hero-top, .hero-bottom { grid-template-columns: 1fr; }
  .hero-top .r { text-align: left; }
  .hero-cta { align-items: flex-start; }
  .head { grid-template-columns: 1fr; padding-bottom: 30px; margin-bottom: 40px; }
  .split { grid-template-columns: 1fr; }
  .split .a { border-right: 0; border-bottom: 1px solid var(--rule); }
  .split > div { padding: 60px 24px; min-height: auto; }
  .pinned { height: auto; }
  .pinned-frame { position: relative; height: auto; grid-template-columns: 1fr; }
  .pinned-copy { padding: 80px 24px 40px; border-right: 0; border-bottom: 1px solid var(--rule); }
  .phases { position: relative; height: auto; }
  .phase { position: relative; padding: 20px 0; }
  .vphase { position: relative; padding: 40px 24px; min-height: 60vh; }
  .pad { padding: 80px 20px; }
  .manifesto { padding: 120px 20px; }
  .feats { grid-template-columns: 1fr; }
  .feat { border-right: 0; }
  .wait { padding: 100px 20px; }
  .wait .form { flex-direction: column; padding: 8px; border-radius: 22px; }
  .wait .form input { text-align: center; width: 100%; }
  .wait .form .btn { width: 100%; justify-content: center; }
  footer { grid-template-columns: 1fr; text-align: left; }
  footer .col.mid, footer .col.end { align-items: flex-start; text-align: left; }
  .nav { padding: 16px 20px; grid-template-columns: auto 1fr; }
  .nav .center { display: none; }
  .longform { grid-template-columns: 1fr; padding: 60px 20px; gap: 40px; }
  .inner-hero { padding: 120px 20px 60px; grid-template-columns: 1fr; }
  .inner-hero .side { text-align: left; }
  .pattern-label { padding: 0 20px 30px; grid-template-columns: 1fr; }
  .pattern-label .sm { text-align: left; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; }
  ::view-transition-group(*), ::view-transition-old(*), ::view-transition-new(*) { animation-duration: 0.001ms !important; }
  .phase, .vphase { opacity: 1; }
}

/* ─── THE DUET ─────────────────────────────────────────────────────────────
   Dual scroll scrubber, 6 beats. 600vh so each beat gets ~100vh of scroll.
   Every mock element inside .ph is faithful to the Android app.
   ────────────────────────────────────────────────────────────────────────── */
.duet {
  height: 600vh;
  position: relative;
  background: var(--paper);
  view-timeline: --duet block;
}
.duet-frame {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.duet-header {
  padding: 24px 32px 16px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  border-bottom: 1px solid var(--rule);
  align-items: end;
}
.duet-title {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--stone);
}
.duet-heading {
  font-family: var(--serif); font-style: italic;
  font-size: clamp(24px, 2.6vw, 40px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-top: 6px;
}
.duet-beat-strip {
  display: flex;
  gap: 12px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  color: var(--stone);
  justify-content: flex-end;
}
.duet-beat-strip span { opacity: 0.35; transition: opacity 300ms, color 300ms; }
.duet-beat-strip span.on { opacity: 1; color: var(--clay); }
.duet-legend {
  margin-top: 8px;
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--stone);
  display: flex;
  align-items: center;
  gap: 4px;
  justify-content: flex-end;
}
.duet-legend .dot { display: inline-block; width: 6px; height: 6px; border-radius: 50%; margin: 0 4px; }
.duet-legend .dot.vendor { background: var(--sage); }
.duet-legend .dot.customer { background: var(--clay); }

.duet-stage {
  position: relative;
  flex: 1;
  overflow: hidden;
}

/* Each scene absolutely stacked; fades in during its scroll range */
.scene {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  padding: 20px 32px 32px;
  opacity: 0;
}
.scene-side {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 0 12px;
  min-height: 0;
  align-items: stretch;
  transition: opacity 400ms;
}
.scene-side .side-label {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--stone);
  display: flex;
  align-items: center;
  gap: 8px;
}
.scene-side .side-label::before {
  content: '';
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--stone);
  transition: background 400ms, box-shadow 400ms;
}
.scene-side.active .side-label::before {
  background: var(--clay);
  box-shadow: 0 0 0 4px rgba(201,107,75,0.18);
}
.scene-side .side-copy {
  font-family: var(--serif); font-style: italic;
  font-size: clamp(18px, 1.8vw, 26px);
  line-height: 1.1;
  letter-spacing: -0.015em;
  color: var(--stone);
  transition: color 400ms;
  min-height: 2.4em;
}
.scene-side.active .side-copy { color: var(--ink); }
.scene-side.passive { opacity: 0.55; }
.scene-side.passive .ph { transform: scale(0.94); }

/* Phone frame */
.ph {
  align-self: center;
  width: min(240px, 100%);
  aspect-ratio: 9/17;
  background: var(--paper);
  border-radius: 30px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.15), 0 0 0 5px var(--ink);
  padding: 16px 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-family: 'Manrope', system-ui, -apple-system, sans-serif;
  font-size: 12px;
  color: var(--ink);
  overflow: hidden;
  transition: transform 500ms cubic-bezier(0.7,0,0.15,1);
  margin-top: 4px;
}
.ph.ph-dark { background: #1D1D1B; color: #F5F3EF; box-shadow: 0 20px 50px rgba(0,0,0,0.35), 0 0 0 5px #0a0a0a; }
.ph-status { font-family: var(--mono); font-size: 9px; letter-spacing: 0.1em; opacity: 0.4; }
.ph-status.paper { color: #A5A19B; }
.app-title {
  font-size: 16px; font-weight: 600; letter-spacing: -0.015em;
  display: flex; align-items: center; gap: 8px;
}
.app-sub { font-size: 10px; color: var(--stone); margin-top: -2px; }
.new-badge {
  background: var(--clay); color: white;
  font-size: 8px; letter-spacing: 0.1em;
  padding: 2px 5px; border-radius: 4px;
  font-weight: 700;
}

/* Form field blocks */
.field-block { display: flex; flex-direction: column; gap: 4px; margin-top: 2px; }
.field-label {
  font-size: 9px; font-weight: 700; color: var(--stone);
  text-transform: uppercase; letter-spacing: 0.08em;
}
.app-input {
  padding: 8px 10px;
  border: 1px solid var(--rule);
  border-radius: 10px;
  background: white;
  font-size: 11px;
  min-height: 30px;
  display: flex; align-items: center;
}
.app-textarea {
  padding: 8px 10px;
  border-radius: 10px;
  background: rgba(23,23,23,0.05);
  font-size: 10px;
  min-height: 44px;
  color: var(--ink);
  line-height: 1.35;
}
.app-row { display: flex; gap: 6px; align-items: stretch; }
.app-chip {
  padding: 8px 10px; border-radius: 10px; background: var(--mist);
  font-size: 10px; color: var(--stone); font-weight: 500;
  display: flex; align-items: center;
}
.app-btn {
  margin-top: 4px;
  padding: 9px 12px;
  background: var(--clay);
  color: white;
  border-radius: 10px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.06em;
  border: 0;
  text-align: center;
  cursor: default;
}
.app-divider { height: 1px; background: var(--rule); }
.app-card {
  padding: 12px;
  border: 1px solid var(--rule);
  border-radius: 12px;
  background: white;
  display: flex; flex-direction: column; gap: 10px;
}
.ghs { color: var(--clay); font-weight: 700; margin-right: 6px; }

/* Day selector row (SchedulingView.kt DayCircle) */
.day-circles { display: flex; justify-content: space-between; }
.day-c {
  width: 22px; height: 22px; border-radius: 50%;
  border: 1.5px solid rgba(23,23,23,0.2);
  display: flex; align-items: center; justify-content: center;
  font-size: 10px; font-weight: 500; color: var(--stone);
}
.day-c.on { background: var(--clay); border-color: var(--clay); color: white; font-weight: 700; }
.time-field {
  flex: 1;
  padding: 6px 8px;
  border: 1px solid var(--rule);
  border-radius: 8px;
  display: flex; flex-direction: column; gap: 1px;
  background: white;
}
.time-field span { font-size: 8px; color: var(--stone); letter-spacing: 0.08em; text-transform: uppercase; }
.time-field strong { font-size: 13px; font-weight: 600; }

/* Post tile in post creation */
.post-tile {
  aspect-ratio: 4/3;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--clay-light), var(--clay));
}

/* Notification / booking cards */
.notif {
  padding: 10px;
  border-radius: 12px;
  background: white;
  border: 1px solid var(--rule);
  display: flex; gap: 10px; align-items: flex-start;
}
.notif.clay-tint { background: rgba(201,107,75,0.08); border-color: rgba(201,107,75,0.2); }
.notif.money-tint { background: rgba(47,125,91,0.08); border-color: rgba(47,125,91,0.25); }
.notif-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--clay); flex-shrink: 0; margin-top: 5px;
  animation: notif-pulse 1.6s ease-out infinite;
}
@keyframes notif-pulse {
  0%   { box-shadow: 0 0 0 0 rgba(201,107,75,0.55); }
  70%  { box-shadow: 0 0 0 6px rgba(201,107,75,0); }
  100% { box-shadow: 0 0 0 0 rgba(201,107,75,0); }
}
.notif-body { flex: 1; display: flex; flex-direction: column; gap: 3px; font-size: 10px; }
.notif-body strong { font-size: 11px; font-weight: 600; }
.notif-body span { color: var(--stone); font-size: 9px; }
.check-icon {
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--money); color: white;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 12px; flex-shrink: 0;
}

/* Status pills */
.status-pill {
  display: inline-block;
  padding: 2px 7px;
  border-radius: 999px;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-top: 3px;
  align-self: flex-start;
}
.status-pill.pending { background: rgba(233,201,107,0.35); color: #7a5a10; }
.status-pill.paid { background: rgba(47,125,91,0.15); color: var(--money); }

.receipt-line {
  display: flex; justify-content: space-between;
  font-size: 10px; padding: 5px 2px;
  border-top: 1px dashed var(--rule);
  color: var(--stone);
}
.receipt-line .money { color: var(--money); font-weight: 700; }

/* Customer feed mocks */
.empty-hint {
  font-family: var(--serif); font-style: italic;
  font-size: 13px; color: var(--stone);
  margin-top: 12px;
}
.skeleton-block {
  height: 110px;
  border-radius: 10px;
  background: rgba(23,23,23,0.05);
  margin-top: 6px;
}
.skeleton { background: rgba(23,23,23,0.06); border-radius: 8px; }
.skeleton.shimmer {
  background: linear-gradient(90deg, rgba(23,23,23,0.06) 0%, rgba(255,255,255,0.7) 50%, rgba(23,23,23,0.06) 100%);
  background-size: 200% 100%;
  animation: dshimmer 1.8s linear infinite;
}
@keyframes dshimmer {
  from { background-position: 200% 0; }
  to { background-position: -200% 0; }
}
.post-shell { display: flex; flex-direction: column; gap: 6px; }
.post-head { display: flex; align-items: center; gap: 8px; }
.avatar-sm { width: 20px; height: 20px; border-radius: 50%; background: linear-gradient(135deg, var(--butter), var(--clay)); flex-shrink: 0; }
.avatar-sm.skeleton { background: rgba(23,23,23,0.06); }
.post-name { font-size: 11px; font-weight: 600; }
.post-name.skeleton { width: 70px; height: 11px; border-radius: 4px; background: rgba(23,23,23,0.06); }
.post-city { font-size: 9px; color: var(--stone); margin-left: auto; }
.post-image { aspect-ratio: 1; border-radius: 10px; }
.post-image.clay-fill { background: linear-gradient(135deg, var(--clay-light), var(--clay)); }
.post-image.skeleton { background: rgba(23,23,23,0.06); }
.post-caption { font-size: 10px; line-height: 1.35; }
.post-actions { display: flex; align-items: center; gap: 10px; font-size: 10px; color: var(--stone); }
.book-chip {
  margin-left: auto;
  padding: 3px 9px;
  background: rgba(201,107,75,0.1);
  border: 1px solid rgba(201,107,75,0.3);
  color: var(--clay);
  border-radius: 999px;
  font-weight: 600;
  font-size: 9px;
}
.fade-in-post { animation: post-in 700ms ease-out both; }
@keyframes post-in {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Vendor profile (VendorProfileScreen.kt) */
.profile-head { display: flex; align-items: center; gap: 10px; margin-top: 4px; }
.avatar-lg { width: 42px; height: 42px; border-radius: 50%; background: linear-gradient(135deg, var(--butter), var(--clay)); flex-shrink: 0; }
.profile-info { flex: 1; display: flex; flex-direction: column; gap: 1px; }
.profile-info strong { font-size: 13px; font-weight: 600; }
.profile-info span { font-size: 9px; color: var(--stone); }
.follow-pill {
  padding: 4px 10px;
  background: var(--clay);
  color: white;
  border-radius: 999px;
  font-size: 9px;
  font-weight: 600;
}
.chip-row { display: flex; gap: 5px; overflow: hidden; margin-top: 2px; }
.filter-chip {
  padding: 4px 9px;
  border-radius: 999px;
  background: rgba(23,23,23,0.05);
  color: var(--stone);
  font-size: 9px;
  font-weight: 500;
  white-space: nowrap;
}
.filter-chip.on { background: var(--ink); color: white; }
.grid-2x2 {
  display: grid; grid-template-columns: 1fr 1fr; gap: 3px;
  margin-top: 2px;
}
.grid-cell { aspect-ratio: 1; border-radius: 6px; }
.clay-fill { background: linear-gradient(135deg, var(--clay-light), var(--clay)); }
.butter-fill { background: linear-gradient(135deg, var(--butter), #c9a445); }
.sage-fill { background: linear-gradient(135deg, var(--sage), #7d8f74); }
.mist-fill { background: linear-gradient(135deg, var(--mist), var(--paper-warm)); }

/* Booking calendar (Calendar.kt + DatePicker.kt) */
.sel-date-card {
  padding: 8px 12px;
  background: rgba(201,107,75,0.3);
  border-radius: 12px;
  text-align: center;
  margin-top: 2px;
}
.sd-label { font-size: 8px; font-weight: 500; color: var(--stone); letter-spacing: 0.08em; text-transform: uppercase; }
.sd-value { font-size: 11px; font-weight: 600; margin-top: 1px; }
.cal-head {
  padding: 6px 10px;
  background: rgba(201,107,75,0.25);
  border-radius: 12px;
  display: flex; justify-content: space-between; align-items: center;
  color: var(--clay);
}
.cal-head > div { text-align: center; color: var(--ink); }
.cal-head > div div { font-size: 8px; color: var(--stone); font-weight: 400; }
.cal-head > div strong { font-size: 12px; font-weight: 700; }
.cal-head > span { font-size: 16px; padding: 0 4px; }
.dow-row {
  display: grid; grid-template-columns: repeat(7, 1fr);
  font-size: 8px; color: var(--stone); text-align: center;
  padding: 2px 0;
  font-weight: 600; letter-spacing: 0.05em;
}
.date-grid {
  display: grid; grid-template-columns: repeat(7, 1fr); gap: 1px;
}
.date-cell {
  aspect-ratio: 1;
  display: flex; align-items: center; justify-content: center;
  font-size: 9px;
  border-radius: 50%;
  color: var(--ink);
  font-weight: 400;
}
.date-cell.sel { background: rgba(201,107,75,0.85); color: white; font-weight: 700; }
.date-cell.today { background: rgba(119,115,110,0.3); color: var(--clay); font-weight: 700; }
.date-cell.unav { color: rgba(23,23,23,0.3); text-decoration: line-through; }
.slot-row {
  display: flex; gap: 5px; margin-top: 4px;
  overflow-x: hidden;
}
.slot-chip {
  display: flex; align-items: center; gap: 4px;
  padding: 4px 8px;
  border-radius: 999px;
  border: 1px solid var(--rule);
  background: rgba(23,23,23,0.03);
  font-size: 9px;
  font-family: var(--mono);
  font-weight: 600;
}
.slot-chip .ct {
  background: rgba(201,107,75,0.15); color: var(--clay);
  padding: 1px 5px; border-radius: 999px; font-size: 8px; font-weight: 700;
}
.slot-chip.on { background: var(--clay); color: white; border-color: var(--clay); }
.slot-chip.on .ct { background: rgba(255,255,255,0.25); color: white; }

/* Payment / confirmation (BookingConfrimationScreen.kt) */
.pay-label {
  font-size: 8px; letter-spacing: 0.15em; text-transform: uppercase;
  font-weight: 700; color: rgba(245,243,239,0.55);
}
.pay-service { font-size: 15px; font-weight: 600; margin-top: 2px; letter-spacing: -0.01em; }
.glass-panel {
  padding: 12px;
  border-radius: 14px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  display: flex; flex-direction: column; gap: 12px;
  margin-top: 4px;
}
.pay-price {
  font-family: var(--serif); font-style: italic;
  font-size: 26px; font-weight: 300;
  line-height: 1; margin-top: 3px;
  color: #F5F3EF;
}
.pay-deposit {
  color: #D77A59;
  font-size: 17px; font-weight: 500;
  margin-top: 2px;
}
.info-rows { display: flex; flex-direction: column; gap: 4px; margin-top: 4px; }
.info-row {
  display: flex; justify-content: space-between;
  font-size: 10px;
  padding: 6px 10px;
  border-radius: 8px;
  background: rgba(255,255,255,0.03);
}
.info-row span { color: rgba(245,243,239,0.5); }
.info-row strong { color: #F5F3EF; font-weight: 600; }
.pay-btn {
  margin-top: auto;
  padding: 11px;
  background: #D77A59;
  color: #1D1D1B;
  border: 0;
  border-radius: 12px;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-align: center;
}

/* Scroll-driven scene reveal */
@supports (animation-timeline: scroll()) {
  .scene {
    animation: scene-fade linear both;
    animation-timeline: --duet;
  }
  .scene-1 { animation-range: contain 0%     contain 16.66%; }
  .scene-2 { animation-range: contain 16.66% contain 33.33%; }
  .scene-3 { animation-range: contain 33.33% contain 50%;    }
  .scene-4 { animation-range: contain 50%    contain 66.66%; }
  .scene-5 { animation-range: contain 66.66% contain 83.33%; }
  .scene-6 { animation-range: contain 83.33% contain 100%;   }
  @keyframes scene-fade {
    0%      { opacity: 0; transform: translateY(20px); }
    15%,85% { opacity: 1; transform: translateY(0);    }
    100%    { opacity: 0; transform: translateY(-20px);}
  }

  /* Beat strip highlight sync */
  .duet-beat-strip span { animation: beat-tick linear both; animation-timeline: --duet; }
  .duet-beat-strip span[data-b="1"] { animation-range: contain 0%     contain 16.66%; }
  .duet-beat-strip span[data-b="2"] { animation-range: contain 16.66% contain 33.33%; }
  .duet-beat-strip span[data-b="3"] { animation-range: contain 33.33% contain 50%;    }
  .duet-beat-strip span[data-b="4"] { animation-range: contain 50%    contain 66.66%; }
  .duet-beat-strip span[data-b="5"] { animation-range: contain 66.66% contain 83.33%; }
  .duet-beat-strip span[data-b="6"] { animation-range: contain 83.33% contain 100%;   }
  @keyframes beat-tick {
    0%,100% { opacity: 0.35; color: var(--stone); }
    50%     { opacity: 1;    color: var(--clay);  }
  }
}

/* Fallback for browsers without scroll-driven animations — stack all scenes */
@supports not (animation-timeline: scroll()) {
  .duet { height: auto; }
  .duet-frame { position: relative; height: auto; }
  .duet-stage { overflow: visible; }
  .scene {
    position: relative; inset: auto; opacity: 1;
    border-bottom: 1px solid var(--rule);
    min-height: 480px;
  }
}

/* Mobile — stack scenes serially, both sides visible, no sticky */
@media (max-width: 900px) {
  .duet { height: auto; }
  .duet-frame { position: relative; height: auto; }
  .duet-header { grid-template-columns: 1fr; padding: 24px 20px 16px; }
  .duet-beat-strip { justify-content: flex-start; }
  .duet-legend { justify-content: flex-start; }
  .duet-stage { overflow: visible; }
  .scene {
    position: relative; inset: auto; opacity: 1;
    grid-template-columns: 1fr;
    padding: 40px 20px;
    border-bottom: 1px solid var(--rule);
    gap: 32px;
  }
  .ph { width: min(260px, 100%); }
  .scene-side.passive { opacity: 0.75; }
  .scene-side.passive .ph { transform: scale(1); }
}

/* ─── MOBILE ISLAND NAV ─────────────────────────────────────────────────── */
.mobile-nav {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 101;
  justify-content: center;
  padding: 12px 16px calc(12px + env(safe-area-inset-bottom, 0px));
  pointer-events: none;
  transition: transform 320ms cubic-bezier(0.32, 0.72, 0, 1), opacity 220ms ease;
}
.mobile-nav.is-hidden {
  transform: translateY(calc(100% + 12px));
  opacity: 0;
}
.mobile-nav-inner {
  pointer-events: auto;
  display: flex;
  align-items: center;
  gap: 2px;
  padding: 5px 6px;
  background: rgba(23, 23, 23, 0.86);
  -webkit-backdrop-filter: blur(24px) saturate(1.4);
  backdrop-filter: blur(24px) saturate(1.4);
  border-radius: 999px;
  border: 1px solid rgba(247, 245, 241, 0.08);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.28), 0 2px 8px rgba(0, 0, 0, 0.16);
  max-width: calc(100vw - 24px);
  scale: 3;
}
.mobile-nav-inner .mn-live {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--clay);
  margin: 0 8px 0 8px;
  flex-shrink: 0;
  box-shadow: 0 0 0 0 rgba(201, 107, 75, 0.6);
  animation: mn-pulse 2.2s ease-out infinite;
}
@keyframes mn-pulse {
  0%   { box-shadow: 0 0 0 0 rgba(201, 107, 75, 0.55); }
  70%  { box-shadow: 0 0 0 8px rgba(201, 107, 75, 0); }
  100% { box-shadow: 0 0 0 0 rgba(201, 107, 75, 0); }
}
.mobile-nav-inner button {
  padding: 9px 13px;
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(247, 245, 241, 0.55);
  border-radius: 999px;
  transition: color 200ms, background 200ms, transform 200ms;
  white-space: nowrap;
  font-weight: 500;
  cursor: pointer;
}
.mobile-nav-inner button:hover { color: var(--paper); }
.mobile-nav-inner button.active {
  color: var(--paper);
  background: var(--clay);
  font-weight: 600;
}

@media (max-width: 900px) {
  .mobile-nav { display: flex; }
  /* Give final content breathing room so the pill doesn't cover the footer */
  main { padding-bottom: 84px; }
  /* Top nav's status pill moves down into the mobile island */
  .nav .end { display: none; }
}
@media (max-width: 400px) {
  .mobile-nav-inner button { padding: 9px 10px; font-size: 10px; letter-spacing: 0.12em; }
  .mobile-nav-inner .mn-live { margin: 0 6px 0 6px; }
}

/* ─── FEATURE ICONS ─────────────────────────────────────────────────────── */
.feat-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.feat-icon {
  display: inline-flex;
  width: 32px;
  height: 32px;
  color: var(--stone);
  transition: color 300ms, transform 300ms;
}
.feat-icon svg { width: 100%; height: 100%; }
.feat:hover .feat-icon { color: var(--clay); transform: rotate(-3deg) scale(1.05); }

/* ─── TWO-SIDES MINI VISUALS ────────────────────────────────────────────── */
.ts-visual {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 8px 0 4px;
}

/* Artisan side — service stack */
.ts-artisan .ts-svc {
  padding: 12px 14px;
  border: 1px solid var(--rule);
  border-radius: 12px;
  background: var(--paper);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 4px 12px;
  align-items: baseline;
  transition: transform 300ms, box-shadow 300ms;
}
.ts-artisan .ts-svc:hover { transform: translateX(4px); box-shadow: 0 4px 20px rgba(23,23,23,0.06); }
.ts-artisan .ts-svc.ts-highlight {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--paper);
}
.ts-artisan .ts-time {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.18em;
  color: var(--stone);
  text-transform: uppercase;
}
.ts-artisan .ts-highlight .ts-time { color: rgba(247,245,241,0.65); }
.ts-artisan .ts-name {
  font-family: var(--serif);
  font-style: italic;
  font-size: 18px;
  line-height: 1;
  letter-spacing: -0.01em;
  grid-column: 1;
}
.ts-artisan .ts-meta {
  grid-column: 2;
  grid-row: 1 / 3;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 600;
}
.ts-artisan .ts-highlight .ts-meta { color: var(--butter); }
.ts-artisan .ts-pill {
  font-size: 9px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 2px 8px;
  border-radius: 999px;
  background: var(--clay);
  color: var(--paper);
  font-weight: 700;
}
.ts-artisan .ts-pill.dim { background: transparent; color: var(--stone); border: 1px solid var(--rule); }
.ts-artisan .ts-highlight .ts-pill.dim { color: rgba(247,245,241,0.55); border-color: rgba(247,245,241,0.2); }

/* Customer side — feed stack */
.ts-customer {
  gap: 10px;
}
.ts-customer .ts-post {
  display: flex;
  gap: 12px;
  align-items: center;
  padding: 10px;
  border: 1px solid var(--rule);
  border-radius: 12px;
  background: var(--paper);
  transition: transform 300ms, box-shadow 300ms;
}
.ts-customer .ts-post:hover { transform: translateX(-4px); box-shadow: 0 4px 20px rgba(23,23,23,0.06); }
.ts-customer .ts-media {
  width: 52px;
  height: 52px;
  border-radius: 8px;
  flex-shrink: 0;
}
.ts-customer .ts-media.clay-fill { background: linear-gradient(135deg, var(--clay-light), var(--clay)); }
.ts-customer .ts-media.sage-fill { background: linear-gradient(135deg, #C6D0BF, var(--sage)); }
.ts-customer .ts-media.butter-fill { background: linear-gradient(135deg, #F5DE9A, var(--butter)); }
.ts-customer .ts-cap {
  font-family: var(--serif);
  font-style: italic;
  font-size: 15px;
  line-height: 1.2;
  letter-spacing: -0.005em;
}
.ts-customer .ts-cap strong {
  font-style: normal;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--stone);
  display: block;
  margin-bottom: 2px;
}

/* ─── HERO ILLUSTRATIONS ────────────────────────────────────────────────── */
.hero-visual {
  padding: 40px 32px 60px;
  display: flex;
  justify-content: center;
  border-bottom: 1px solid var(--rule);
}
.hero-illus {
  width: 100%;
  max-width: 900px;
  height: auto;
  display: block;
}
.hero-illus circle,
.hero-illus rect,
.hero-illus line,
.hero-illus path,
.hero-illus text { transition: opacity 400ms; }

/* Ambient float animations on the illustration bits */
@keyframes hi-float-a {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-6px); }
}
@keyframes hi-float-b {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(4px); }
}
.hero-illus g:nth-of-type(3) circle:nth-of-type(1),
.hero-illus g:nth-of-type(3) circle:nth-of-type(3) { animation: hi-float-a 4s ease-in-out infinite; transform-origin: center; transform-box: fill-box; }
.hero-illus g:nth-of-type(3) circle:nth-of-type(2),
.hero-illus g:nth-of-type(3) circle:nth-of-type(4) { animation: hi-float-b 5s ease-in-out infinite; transform-origin: center; transform-box: fill-box; }

/* ─── PULL QUOTES ───────────────────────────────────────────────────────── */
.pullquote {
  margin: 48px 0;
  padding: 24px 0 24px 32px;
  border-left: 3px solid var(--clay);
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: relative;
}
.pullquote .pq-mark {
  position: absolute;
  top: -12px;
  left: 12px;
  font-family: var(--serif);
  font-style: italic;
  font-size: 72px;
  line-height: 1;
  color: var(--clay);
  opacity: 0.4;
}
.pullquote .pq-text {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(22px, 2.4vw, 32px);
  line-height: 1.2;
  letter-spacing: -0.015em;
  color: var(--ink);
}
.pullquote .pq-cite {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--stone);
  font-style: normal;
}

/* ─── RESPONSIVE ADJUSTMENTS FOR NEW ELEMENTS ───────────────────────────── */
@media (max-width: 900px) {
  .hero-visual { padding: 30px 20px 40px; }
  .feat-top { margin-bottom: 4px; }
  .feat-icon { width: 28px; height: 28px; }
  .pullquote { padding: 20px 0 20px 24px; margin: 36px 0; }
  .pullquote .pq-mark { font-size: 56px; }
  .ts-artisan .ts-svc { padding: 10px 12px; }
  .ts-customer .ts-media { width: 44px; height: 44px; }
  .ts-customer .ts-cap { font-size: 13px; }
}
