/* ============================================================
   ROGER FINANCIAL, "The Pass"
   Visual world: the venue's own printed matter, kitchen dockets,
   thermal receipts, the menu board, set in brand ink + orange.
   Two families: Archivo variable (display + body),
   Spline Sans Mono (dockets, prices, data).
   ============================================================ */

@font-face {
  font-family: "Archivo";
  src: url("fonts/archivo-var.woff2?v=5") format("woff2");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Spline Sans Mono";
  src: url("fonts/spline-mono-var.woff2?v=5") format("woff2");
  font-weight: 300 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Spline Sans Mono";
  src: url("fonts/spline-mono-italic-var.woff2?v=5") format("woff2");
  font-weight: 300 700;
  font-style: italic;
  font-display: swap;
}

:root {
  --ink: #14151a;
  --ink-soft: #4c4a44;        /* warm-tinted secondary on paper */
  --paper: #fcfaf6;           /* receipt white */
  --paper-dim: #f1ede4;
  --paper-line: #e2dccd;
  --orange: #f1551b;
  --orange-deep: #c73f0c;
  --orange-tint: #3f1202;     /* secondary text on orange fields (≥4.5:1) */
  --on-ink-soft: #c9c4b8;     /* warm secondary on ink fields */
  --focus: #ffd23f;
  --display: "Archivo", "Arial Black", Impact, sans-serif;
  --body: "Archivo", "Helvetica Neue", Arial, sans-serif;
  --mono: "Spline Sans Mono", Consolas, "Courier New", monospace;
  --pad: clamp(1.25rem, 4.5vw, 3.5rem);
  --maxw: 74rem;
}

/* ---- reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--body);
  font-size: 1.0625rem;
  line-height: 1.6;
  color: var(--ink);
  background: var(--paper);
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; }
button, input, textarea, select { font: inherit; color: inherit; }

/* ---- browser surfaces carry the design too ---- */
::selection { background: var(--orange); color: var(--paper); }
:focus-visible { outline: 3px solid var(--focus); outline-offset: 3px; border-radius: 2px; }
html { scrollbar-color: var(--orange) var(--paper-dim); }
body::-webkit-scrollbar { width: 12px; }
body::-webkit-scrollbar-track { background: var(--paper-dim); }
body::-webkit-scrollbar-thumb { background: var(--orange); border: 3px solid var(--paper-dim); border-radius: 8px; }
input, textarea { caret-color: var(--orange); }
a:not([class]) { text-decoration-color: var(--orange); text-underline-offset: 3px; text-decoration-thickness: 2px; }

.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}
.skip-link {
  position: absolute; left: 1rem; top: -4rem; z-index: 99;
  background: var(--ink); color: var(--paper); padding: .6rem 1rem;
  font-weight: 700; text-decoration: none; transition: top .15s ease-out;
}
.skip-link:focus { top: 1rem; }

/* ---- type scale ---- */
h1, h2, h3 { line-height: 1.02; text-wrap: balance; }
.display {
  font-family: var(--body);
  font-weight: 800;
  letter-spacing: -0.025em;
}
.h-section { font-size: clamp(1.9rem, 4.4vw, 3rem); line-height: 1.06; }
.h-card { font-size: clamp(1.25rem, 2.2vw, 1.55rem); }
.lede { font-size: clamp(1.1rem, 2.2vw, 1.3rem); line-height: 1.5; max-width: 34em; }
.mono { font-family: var(--mono); }

/* ---- layout primitives ---- */
.wrap { max-width: var(--maxw); margin-inline: auto; padding-inline: var(--pad); }
section { padding-block: clamp(3.5rem, 9vw, 7rem); }

/* ---- buttons ---- */
.btn {
  display: inline-block;
  font-weight: 700;
  font-size: 1.05rem;
  line-height: 1;
  padding: 1.05rem 1.7rem;
  border: 2px solid var(--ink);
  border-radius: 999px;
  text-decoration: none;
  cursor: pointer;
  transition: transform .14s cubic-bezier(.2,.9,.3,1.4), background-color .14s ease-out, color .14s ease-out, box-shadow .14s ease-out;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 6px 18px rgba(20,21,26,.22); }
.btn:active { transform: translateY(0); box-shadow: none; }
.btn-ink { background: var(--ink); color: var(--paper); }
.btn-ink:hover { background: #000; }
.btn-paper { background: var(--paper); color: var(--ink); }
.btn-orange { background: var(--orange); color: var(--paper); border-color: var(--orange); }
.btn-orange:hover { background: var(--orange-deep); border-color: var(--orange-deep); }
.btn-ghost-ink { background: transparent; color: var(--ink); }
.btn-ghost-ink:hover { background: var(--ink); color: var(--paper); }

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: var(--paper);
  border-bottom: 2px solid var(--ink);
}
.site-header .wrap {
  display: flex; align-items: center; gap: 1.5rem;
  min-height: 4.25rem;
}
.brand { display: flex; align-items: center; gap: .6rem; text-decoration: none; font-weight: 800; font-size: clamp(1rem, 3.2vw, 1.2rem); letter-spacing: -.02em; white-space: nowrap; }
.brand svg { width: 2.1rem; height: 2.1rem; flex-shrink: 0; }
.site-nav { display: flex; gap: 1.4rem; margin-left: auto; }
.site-nav a { text-decoration: none; font-weight: 600; font-size: .98rem; padding: .35rem 0; border-bottom: 2px solid transparent; transition: border-color .12s ease-out; }
.site-nav a:hover { border-bottom-color: var(--orange); }
.header-cta { margin-left: auto; }
.header-cta .btn { padding: .7rem 1.15rem; font-size: .95rem; white-space: nowrap; }
@media (max-width: 799px) {
  .site-nav { display: none; }
}

/* ============================================================
   HERO, orange field, ink type, the docket
   ============================================================ */
.hero {
  background: var(--paper);
  color: var(--ink);
  padding-block: clamp(3.5rem, 8vw, 7rem);
  position: relative;
  overflow: clip;
  border-bottom: 1px solid var(--paper-line);
}
.hero .wrap {
  display: grid;
  gap: clamp(2.5rem, 5vw, 4rem);
  align-items: center;
}
@media (min-width: 900px) {
  .hero .wrap { grid-template-columns: 1.15fr .85fr; }
}
.hero h1 { margin-bottom: 1.1rem; font-size: clamp(2.1rem, 5.4vw, 3.7rem); line-height: 1.04; max-width: 15em; }
.hero h1 .line { display: block; }
.hero h1 .line-for { color: var(--orange-deep); }
/* category first, audience second: the keyword carries the weight */
.hero h1 .line-soft { color: var(--ink-soft); font-weight: 600; }
.hero-strap {
  font-family: var(--mono); font-size: .78rem; font-weight: 700;
  letter-spacing: .2em; text-transform: uppercase; color: var(--orange-deep);
  margin-bottom: 1.4rem;
}
.hero .lede { color: var(--ink-soft); font-weight: 400; font-size: clamp(1.05rem, 2.1vw, 1.22rem); margin-bottom: 2.2rem; max-width: 36em; }
.hero .lede strong { font-weight: 800; }
.hero-ctas { display: flex; flex-wrap: wrap; gap: .9rem; align-items: center; }
.hero-note {
  font-family: var(--mono); font-size: clamp(.6rem, 2.5vw, .8rem);
  color: var(--ink-soft); margin-top: 1.4rem;
  white-space: nowrap; letter-spacing: .06em;
}
.hero-creds {
  display: flex; flex-wrap: wrap; align-items: center;
  gap: .9rem 1.5rem; margin-top: 1.5rem;
}
.hero-creds img { display: block; height: 3.1rem; width: auto; }
.hero-creds .cred-badge {
  color: var(--ink); border-color: var(--ink);
  font-size: .62rem; padding: .4rem .6rem; line-height: 1.5;
}
.hero-creds .cred-badge .ran { color: var(--orange-deep); }

/* ---- the docket ---- */
.docket-stage { display: grid; justify-items: center; }
.docket {
  background: #fff;
  color: var(--ink);
  font-family: var(--mono);
  font-size: clamp(.78rem, 1.9vw, .92rem);
  line-height: 1.55;
  width: min(21.5rem, 100%);
  padding: 1.6rem 1.5rem 1.9rem;
  border: 1px solid var(--paper-line);
  box-shadow: 0 18px 44px rgba(20, 21, 26, .10);
  position: relative;
  font-variant-numeric: tabular-nums;
  border-radius: 4px;
}
@media (prefers-reduced-motion: no-preference) {
  .docket {
    animation: docket-print .9s cubic-bezier(.16, 1, .3, 1) both;
    animation-delay: .15s;
  }
  @keyframes docket-print {
    from { transform: translateY(-14px); opacity: 0; }
    to   { transform: translateY(0); opacity: 1; }
  }
}
/* thermal-paper grain over printed artifacts */
.docket-disabled-grain::after, .enquire-form-disabled-grain::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='220' height='220'%3E%3Cfilter id='g'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix type='matrix' values='0 0 0 0 0.24 0 0 0 0 0.20 0 0 0 0 0.14 0 0 0 0.5 0'/%3E%3C/filter%3E%3Crect width='220' height='220' filter='url(%23g)'/%3E%3C/svg%3E");
  mix-blend-mode: multiply; opacity: .45;
}
.docket-head { text-align: center; margin-bottom: .9rem; }
.docket-head .docket-brand { font-weight: 700; letter-spacing: .18em; }
.docket-head .docket-sub { font-size: .92em; color: var(--ink-soft); }
.docket hr { border: 0; border-top: 2px dashed var(--paper-line); margin: .8rem 0; }
.docket-row { display: flex; justify-content: space-between; gap: 1rem; }
.docket-row .val { font-weight: 500; }
.docket-row.total { font-weight: 700; font-size: 1.08em; }
.docket-row.total .val { color: var(--orange-deep); }
.docket-sec {
  font-weight: 700; letter-spacing: .16em; font-size: .74em;
  color: var(--orange-deep); margin: .85em 0 .2em;
}
.docket-note { font-size: .92em; color: var(--ink-soft); }
.docket-row .flag { color: var(--orange-deep); font-weight: 700; }
.docket-punch { text-align: center; font-weight: 700; margin-top: .9rem; line-height: 1.45; }
.docket-punch em { font-style: normal; color: var(--orange-deep); }
.docket-tag { text-align: center; font-size: .82em; color: var(--ink-soft); letter-spacing: .14em; margin-top: .8rem; }

/* ============================================================
   CLIENT WALL, ink field, typographic wordmarks (A&CO homage)
   ============================================================ */
.wall {
  background: var(--ink);
  color: var(--paper);
  position: relative;
  overflow: clip;
  text-align: center;
}
.wall-marks {
  --markw: clamp(7rem, 24vw, 11rem);
  display: grid;
  /* fixed column counts with flexible tracks: the marks can never overflow the
     viewport, and two even columns on a phone keep every row full */
  grid-template-columns: repeat(2, 1fr);
  justify-items: center; align-items: center;
  gap: 1.8rem 1.4rem;
  max-width: 70rem; margin-inline: auto;
  padding-inline: var(--pad);
}
@media (min-width: 620px) { .wall-marks { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 900px) { .wall-marks { grid-template-columns: repeat(5, 1fr); } }
.wall-marks li { list-style: none; display: flex; align-items: center; justify-content: center; }
.wall-marks .mark {
  white-space: nowrap;
  color: var(--paper);
}
/* wordmark voices, variety from two families */
.mk-black { font-family: var(--display); font-weight: 900; text-transform: uppercase; font-size: 1.35rem; letter-spacing: .01em; }
.mk-wide  { font-weight: 700; text-transform: uppercase; letter-spacing: .34em; font-size: .95rem; }
.mk-mono  { font-family: var(--mono); font-weight: 500; font-size: 1.05rem; letter-spacing: .06em; }
.mk-mono-caps { font-family: var(--mono); font-weight: 700; text-transform: uppercase; font-size: .95rem; letter-spacing: .2em; }
.mk-lower { font-weight: 800; font-size: 1.35rem; letter-spacing: -.03em; text-transform: lowercase; }
.mk-box   { font-weight: 800; text-transform: uppercase; font-size: .9rem; letter-spacing: .12em; border: 2px solid var(--paper); padding: .35rem .7rem; }
.mk-round { font-weight: 800; text-transform: uppercase; font-size: .85rem; letter-spacing: .1em; border: 2px solid var(--paper); border-radius: 999px; padding: .4rem .9rem; }
.mk-serifish { font-family: var(--mono); font-style: italic; font-size: 1.1rem; }
.mk-lg { font-size: 2rem; }
.mk-sm { font-size: .72rem; letter-spacing: .28em; }
.mk-outline { font-family: var(--display); font-weight: 900; text-transform: uppercase; font-size: 1.6rem; }
@supports (-webkit-text-stroke: 1px #fff) {
  .mk-outline { color: transparent; -webkit-text-stroke: 1.5px var(--paper); paint-order: stroke; }
}
.mk-orange { color: var(--orange); }
.mk-dim { opacity: .55; }
/* real client logos: pre-processed white-on-transparent marks */
/* every mark ships on the same 520x260 canvas, optically normalised, so one
   width gives the whole wall identical boxes and perfect row alignment */
.mk-logo img { display: block; width: 100%; max-width: var(--markw); height: auto; object-fit: contain; }
.wall-statement {
  margin: clamp(2.5rem, 6vw, 4rem) auto;
  max-width: 46rem;
  padding-inline: var(--pad);
}
.wall-statement .display { font-size: clamp(1.9rem, 5.4vw, 3.4rem); }
.wall-statement .could {
  font-family: var(--mono); font-style: italic; font-size: clamp(1.05rem, 2.4vw, 1.35rem);
  color: var(--orange); margin-top: 1.1rem; display: block;
}
.wall-statement .wall-cta { margin-top: 1.8rem; }
.wall-note { font-family: var(--mono); font-size: .8rem; color: var(--on-ink-soft); margin-top: 2.6rem; letter-spacing: .08em; }

/* ============================================================
   SERVICES, the ticket rail
   ============================================================ */
.services { background: var(--paper); }
.services-head { margin-bottom: .8rem; }
.services-sub { color: var(--ink-soft); max-width: 38em; margin-bottom: 2.4rem; }
.rail-bar {
  height: 6px; background: var(--ink); border-radius: 3px;
  margin-bottom: -3px; position: relative; z-index: 1;
}
.rail {
  display: grid; gap: 2rem 1.1rem;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 13.5rem), 1fr));
  padding-top: 2rem;
}
@media (min-width: 1000px) { .rail { grid-template-columns: repeat(4, 1fr); } }
.compliance-strip {
  margin-top: 1.6rem;
  background: var(--ink); color: var(--paper);
  padding: 1.1rem 1.4rem;
  display: flex; flex-wrap: wrap; align-items: baseline; gap: .4rem 2rem;
}
.compliance-strip .comp-item { font-family: var(--mono); font-size: .88rem; letter-spacing: .06em; }
.compliance-strip .comp-item strong { color: var(--orange); font-weight: 700; }
.compliance-strip .comp-note { font-size: .95rem; color: var(--on-ink-soft); flex: 1; min-width: 14rem; font-family: var(--body); }
.ticket {
  background: #fff;
  border: 2px solid var(--ink);
  padding: 1.4rem 1.3rem 1.5rem;
  position: relative;
  display: flex; flex-direction: column; gap: .8rem;
  box-shadow: 0 10px 22px rgba(20,21,26,.10);
}
.ticket::before {
  /* punched hole where the ticket hangs on the rail */
  content: ""; position: absolute; top: -1.05rem; left: 50%;
  width: .85rem; height: .85rem; transform: translateX(-50%);
  background: var(--paper); border: 2px solid var(--ink); border-radius: 50%;
}
.ticket-meta {
  font-family: var(--mono); font-size: .78rem; font-weight: 700;
  letter-spacing: .14em; color: var(--orange-deep);
  display: flex; justify-content: space-between; gap: .5rem;
  border-bottom: 2px dashed var(--paper-line); padding-bottom: .7rem;
}
.ticket h3 {
  font-size: 1.3rem; letter-spacing: -.01em;
  /* reserve two lines so every ticket's body copy and cadence line up,
     whether the heading wraps or not */
  min-height: 2.6em; display: flex; align-items: flex-start;
}
.ticket p { color: var(--ink-soft); font-size: .98rem; flex: 1; }
/* only the body copy absorbs spare height; the slug and cadence stay fixed so
   every ticket in a row aligns on the same baselines */
.ticket .ticket-meta, .ticket .ticket-cadence { flex: 0 0 auto; }
.ticket-cadence {
  font-family: var(--mono); font-size: .8rem; font-weight: 700;
  letter-spacing: .16em; text-transform: uppercase;
  border-top: 2px dashed var(--paper-line); padding-top: .7rem;
}
.services-cta { margin-top: 2.4rem; text-align: center; }

/* ============================================================
   WHY / WEEK STRIP
   ============================================================ */
.why { background: var(--paper-dim); }
.why-grid { display: grid; gap: clamp(2rem, 4vw, 3.5rem); }
@media (min-width: 900px) { .why-grid { grid-template-columns: 1fr 1fr; align-items: start; } }
.why h2 { margin-bottom: 1.3rem; }
.why p + p { margin-top: 1rem; }
.why .big-claim { font-weight: 800; font-size: 1.15rem; }
.week {
  background: var(--ink); color: var(--paper);
  padding: 1.6rem 1.4rem 1.8rem;
  font-family: var(--mono);
}
.week-title { font-weight: 700; letter-spacing: .18em; font-size: .8rem; color: var(--orange); margin-bottom: 1.2rem; text-transform: uppercase; }
.week ol { list-style: none; display: grid; gap: .1rem; }
.week li {
  display: grid; grid-template-columns: 3.2rem 1fr; gap: 1rem;
  padding: .55rem 0; font-size: .92rem;
  border-bottom: 1px dashed #33342c;
}
.week li:last-child { border-bottom: 0; }
.week .day { font-weight: 700; color: var(--orange); }
.week .what { color: var(--paper); }
.week .sub { display: block; color: var(--on-ink-soft); font-size: .82rem; }
.week-note { margin-top: 1rem; font-size: .78rem; color: var(--on-ink-soft); letter-spacing: .08em; }

/* ============================================================
   PRICING, the menu board
   ============================================================ */
.menu { background: var(--paper); color: var(--ink); }
.menu-head { text-align: center; margin-bottom: .9rem; }
.menu-sub { text-align: center; color: var(--ink-soft); max-width: 40em; margin: 0 auto 3rem; }
.menu-board { max-width: 46rem; margin-inline: auto; display: grid; gap: 2rem; }
.menu-item { position: relative; }
.menu-line {
  display: flex; align-items: baseline; gap: .8rem;
}
.menu-line .name { font-family: var(--body); font-weight: 800; letter-spacing: -.02em; font-size: clamp(1.2rem, 2.6vw, 1.5rem); }
.menu-line .leader { flex: 1; border-bottom: 1px dotted var(--paper-line); transform: translateY(-6px); }
.menu-line .price { font-family: var(--mono); font-weight: 700; font-size: clamp(1.15rem, 3vw, 1.5rem); color: var(--orange-deep); white-space: nowrap; }
.menu-line .price small { font-size: .62em; font-weight: 500; color: var(--ink-soft); }
.menu-item .desc { color: var(--ink-soft); margin-top: .45rem; max-width: 36rem; }
.chefs-pick {
  display: inline-block; font-family: var(--mono); font-size: .68rem; font-weight: 700;
  letter-spacing: .18em; text-transform: uppercase;
  color: var(--orange-deep); border: 1px solid var(--orange-deep);
  padding: .24rem .55rem; border-radius: 3px;
  margin-bottom: .6rem;
}
.menu-terms {
  max-width: 46rem; margin: 3rem auto 0;
  border: 1px solid var(--paper-line); background: var(--paper-dim);
  padding: 1.6rem 1.7rem;
  display: grid; gap: .8rem;
}
.menu-terms p { color: var(--ink); font-size: .98rem; }
.menu-terms p strong { color: var(--orange-deep); }
.menu-cta { text-align: center; margin-top: 2.6rem; }

/* ============================================================
   FOUNDER
   ============================================================ */
.founder { background: var(--paper); }
.founder .wrap { max-width: 56rem; }
.founder blockquote { margin-bottom: 2rem; }
.founder blockquote .display { font-size: clamp(1.7rem, 5vw, 3rem); text-transform: none; letter-spacing: -.01em; }
.founder blockquote .display .q { color: var(--orange); }
.founder .story { max-width: 40em; color: var(--ink-soft); }
.founder .story p + p { margin-top: 1rem; }
.founder .sig { margin-top: 1.6rem; font-family: var(--mono); font-weight: 700; letter-spacing: .08em; font-size: .9rem; }
.founder .sig .role { display: block; font-weight: 400; color: var(--ink-soft); }

/* ============================================================
   FAQ
   ============================================================ */
.faq { background: var(--paper-dim); }
.faq .wrap { max-width: 52rem; }
.faq h2 { margin-bottom: 2.2rem; }
.faq details {
  border-bottom: 2px solid var(--ink);
}
.faq details:first-of-type { border-top: 2px solid var(--ink); }
.faq summary {
  cursor: pointer; list-style: none;
  display: flex; align-items: baseline; justify-content: space-between; gap: 1rem;
  padding: 1.15rem .2rem;
  font-weight: 700; font-size: 1.08rem;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+"; font-family: var(--mono); font-weight: 700; font-size: 1.3rem;
  color: var(--orange-deep); flex-shrink: 0; line-height: 1;
  transition: rotate .18s ease-out;
}
.faq details[open] summary::after { rotate: 45deg; }
.faq .answer { padding: 0 .2rem 1.3rem; color: var(--ink-soft); max-width: 42em; }
.faq .answer p + p { margin-top: .8rem; }

/* ============================================================
   ENQUIRE, orange field, receipt form
   ============================================================ */
.enquire { background: var(--ink); color: var(--paper); }
.enquire-grid { display: grid; gap: clamp(2rem, 5vw, 4rem); align-items: start; }
@media (min-width: 900px) { .enquire-grid { grid-template-columns: 1fr 1fr; } }
.enquire h2 { margin-bottom: 1.2rem; }
.enquire .pitch { font-weight: 400; max-width: 32em; color: var(--on-ink-soft); font-size: 1.08rem; }
.enquire .pitch strong { font-weight: 700; color: var(--paper); }
.enquire .alt {
  margin-top: 1.6rem; font-family: var(--mono); font-size: .88rem; color: var(--on-ink-soft);
}
.enquire .alt a { color: var(--orange); font-weight: 700; text-decoration-color: var(--orange); }
.enquire-form {
  background: var(--paper);
  /* the section around it is ink, so the card must reassert ink text or the
     field labels inherit white and vanish on white */
  color: var(--ink);
  padding: 1.8rem 1.6rem 2rem;
  border-radius: 4px;
  box-shadow: 0 20px 48px rgba(0,0,0,.28);
  display: grid; gap: 1.1rem;
  position: relative;
}
.enquire-form .form-head { font-family: var(--mono); font-weight: 700; letter-spacing: .18em; font-size: .8rem; text-align: center; color: var(--orange-deep); border-bottom: 2px dashed var(--paper-line); padding-bottom: .9rem; text-transform: uppercase; }
.field { display: grid; gap: .35rem; }
.field label { font-weight: 700; font-size: .92rem; }
.field .hint { font-weight: 400; color: var(--ink-soft); }
.field input, .field textarea {
  border: 2px solid var(--ink); border-radius: 4px;
  padding: .75rem .85rem; background: #fff; width: 100%;
}
.field input::placeholder, .field textarea::placeholder { color: #71706a; }
.field input:focus-visible, .field textarea:focus-visible { outline-offset: 0; }
.enquire-form .btn { width: 100%; text-align: center; }
.form-fine { font-size: .85rem; color: var(--ink-soft); text-align: center; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { background: var(--ink); color: var(--paper); padding-block: 3.5rem 2.5rem; }
.footer-grid { display: grid; gap: 2.5rem; }
@media (min-width: 800px) { .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; } }
.site-footer .brand { color: var(--paper); margin-bottom: 1rem; }
.footer-blurb { color: var(--on-ink-soft); max-width: 26em; font-size: .95rem; }
.footer-col h2 { font-family: var(--mono); font-size: .78rem; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; color: var(--orange); margin-bottom: 1rem; }
.footer-col ul { list-style: none; display: grid; gap: .55rem; }
.footer-col a { text-decoration: none; color: var(--paper); font-size: .98rem; }
.footer-col a:hover { color: var(--orange); }
.creds {
  display: flex; flex-wrap: wrap; align-items: center; gap: 1.4rem 2.5rem;
  margin-top: 3rem; padding-top: 2rem; border-top: 1px dashed #33342c;
}
.cred { display: flex; align-items: center; gap: .8rem; }
.cred img { display: block; height: 3rem; width: auto; }
.cred .cred-label { font-family: var(--mono); font-size: .72rem; font-weight: 700; letter-spacing: .18em; color: var(--on-ink-soft); line-height: 1.5; }
.cred-badge {
  font-family: var(--mono); font-size: .72rem; font-weight: 700; letter-spacing: .18em;
  color: var(--paper); border: 2px double var(--on-ink-soft);
  padding: .55rem .8rem; line-height: 1.6;
}
.cred-badge .ran { color: var(--orange); }
.footer-legal {
  margin-top: 1.6rem;
  font-family: var(--mono); font-size: .78rem; color: var(--on-ink-soft);
  line-height: 1.8; letter-spacing: .02em;
}

/* ============================================================
   LANDING PAGES (cafe / restaurant / payroll / tax)
   ============================================================ */
.lp-hero { background: var(--paper); color: var(--ink); padding-block: clamp(3rem, 8vw, 5.5rem); border-bottom: 1px solid var(--paper-line); }
.lp-hero h1 { font-family: var(--body); font-weight: 800; font-size: clamp(1.9rem, 4.6vw, 3.2rem); letter-spacing: -.025em; line-height: 1.05; margin-bottom: 1.2rem; max-width: 16em; }
.lp-hero .lede { font-weight: 400; color: var(--ink-soft); margin-bottom: 2rem; }
.lp-body { background: var(--paper); }
.lp-body .wrap { max-width: 52rem; }
.lp-body h2 { font-family: var(--body); font-weight: 800; letter-spacing: -.02em; font-size: clamp(1.35rem, 3vw, 1.9rem); margin: 2.6rem 0 1rem; }
.lp-body h2:first-child { margin-top: 0; }
.lp-body p { color: var(--ink-soft); max-width: 42em; }
.lp-body p + p { margin-top: 1rem; }
.lp-body strong { color: var(--ink); }
.lp-list { list-style: none; margin: 1.4rem 0; display: grid; gap: .7rem; max-width: 42em; }
.lp-list li {
  display: grid; grid-template-columns: 1.4rem 1fr; gap: .7rem;
  color: var(--ink-soft);
}
.lp-list li::before {
  content: ""; width: .95rem; height: .95rem; margin-top: .3rem;
  background: var(--orange); border-radius: 50%;
}
.lp-list li strong { color: var(--ink); }
.lp-price-strip {
  background: var(--ink); color: var(--paper);
  padding: 1.6rem 1.5rem; margin: 2.4rem 0;
  display: flex; flex-wrap: wrap; align-items: center; gap: 1.2rem 2rem;
}
.lp-price-strip .price { font-family: var(--mono); font-weight: 700; font-size: 1.5rem; color: var(--orange); }
.lp-price-strip .price small { font-size: .6em; color: var(--on-ink-soft); font-weight: 500; }
.lp-price-strip .terms { color: var(--on-ink-soft); font-size: .92rem; flex: 1; min-width: 14rem; }
.lp-cta-row { display: flex; flex-wrap: wrap; gap: .9rem; margin-top: 2rem; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}

/* ============================================================
   BLOG
   ============================================================ */
.post-hero h1 { font-size: clamp(1.7rem, 5vw, 3rem); max-width: 20em; }
.post-meta { font-family: var(--mono); font-size: .8rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--orange-tint); margin-bottom: 1rem; }
.post-list { list-style: none; display: grid; gap: 0; }
.post-item { border-bottom: 2px solid var(--ink); }
.post-item:first-child { border-top: 2px solid var(--ink); }
.post-item a { display: grid; gap: .3rem; padding: 1.3rem .2rem; text-decoration: none; }
.post-item a:hover .post-item-title { color: var(--orange-deep); }
.post-item-date { font-family: var(--mono); font-size: .75rem; font-weight: 700; letter-spacing: .14em; color: var(--orange-deep); }
.post-item-title { font-family: var(--body); font-weight: 800; letter-spacing: -.02em; font-size: clamp(1.05rem, 2.2vw, 1.35rem); line-height: 1.15; color: var(--ink); transition: color .12s ease-out; }
.post-item-desc { color: var(--ink-soft); max-width: 46em; }
.post-body { max-width: 42em; }
.post-body h2 { font-family: var(--body); font-weight: 800; letter-spacing: -.02em; font-size: clamp(1.3rem, 3vw, 1.7rem); margin: 2.2rem 0 .9rem; line-height: 1.15; }
.post-body h3 { font-size: 1.15rem; font-weight: 800; margin: 1.8rem 0 .6rem; }
.post-body p { color: var(--ink-soft); margin-bottom: 1rem; }
.post-body strong { color: var(--ink); }
.post-body ul, .post-body ol { margin: 0 0 1rem 1.3rem; color: var(--ink-soft); display: grid; gap: .4rem; }
.post-body li::marker { color: var(--orange); font-weight: 700; }
.post-body blockquote { border: 2px dashed var(--paper-line); padding: 1rem 1.2rem; margin: 1.4rem 0; font-weight: 600; color: var(--ink); }
.post-body table { border-collapse: collapse; font-family: var(--mono); font-size: .88rem; margin: 1.4rem 0; font-variant-numeric: tabular-nums; }
.post-body th, .post-body td { border-bottom: 2px dashed var(--paper-line); padding: .5rem .9rem .5rem 0; text-align: left; }
.post-body th { font-weight: 700; color: var(--ink); }
.post-body a { color: var(--orange-deep); }

/* TPB registered stamp lockup */
.cred-stamp { display: flex; align-items: center; gap: .7rem; }
.cred-stamp img { display: block; height: 4rem; width: auto; }
.cred-stamp-text { font-weight: 600; font-size: .92rem; line-height: 1.35; letter-spacing: .01em; }
.creds .cred-stamp-text { color: var(--paper); }
.hero-creds .cred-stamp-text { color: var(--ink); }

/* social icons */
.socials { display: flex; gap: 1rem; margin-top: 1.3rem; }
.socials a { color: var(--paper); display: block; padding: .2rem; }
.socials a:hover { color: var(--orange); }
.socials svg { display: block; }

@media (max-width: 899px) {
  .hero-creds { justify-content: center; }
  .hero-ctas { justify-content: center; }
  .hero .hero-note { text-align: center; }
  .hero h1, .hero-strap { text-align: center; }
  .hero .lede { text-align: center; margin-inline: auto; }
}
/* ============================================================
   BURGER NAV (no-JS details dropdown)
   ============================================================ */
.site-header .wrap { position: relative; }
.header-cta { margin-left: auto; }
.nav-menu { margin-left: 1rem; }
.nav-menu summary {
  list-style: none; cursor: pointer; display: flex; align-items: center;
  padding: .5rem; border-radius: 6px; color: var(--ink);
  transition: background-color .12s ease-out;
}
.nav-menu summary::-webkit-details-marker { display: none; }
.nav-menu summary:hover { background: var(--paper-dim); }
.nav-menu[open] summary { background: var(--ink); color: var(--paper); }
.nav-panel {
  position: absolute; right: var(--pad); top: calc(100% + 2px); z-index: 60;
  background: var(--paper); border: 2px solid var(--ink);
  box-shadow: 0 14px 32px rgba(20,21,26,.22);
  min-width: 15rem; padding: .6rem 0;
  display: grid;
}
.nav-panel a {
  display: block; padding: .8rem 1.3rem;
  text-decoration: none; font-weight: 700; font-size: 1.02rem;
  border-bottom: 1px dashed var(--paper-line);
}
.nav-panel a:last-child { border-bottom: 0; }
.nav-panel a:hover { background: var(--orange); color: var(--paper); }
.nav-panel .soon {
  font-family: var(--mono); font-size: .66rem; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase;
  background: var(--ink); color: var(--orange);
  padding: .18rem .45rem; border-radius: 3px; margin-left: .5rem;
  vertical-align: 2px;
}
.nav-panel a:hover .soon { background: var(--paper); }

/* ============================================================
   FOUNDER PHOTO
   ============================================================ */
.founder-grid { display: grid; gap: clamp(1.8rem, 4vw, 3rem); align-items: start; }
@media (min-width: 760px) { .founder-grid { grid-template-columns: minmax(200px, 300px) 1fr; } }
.founder-photo { position: relative; }
.founder-photo img {
  display: block; width: 100%; height: auto;
  border: 2px solid var(--ink);
  box-shadow: 0 12px 28px rgba(20,21,26,.18);
}
.founder-photo figcaption {
  font-family: var(--mono); font-size: .74rem; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase; color: var(--ink-soft);
  margin-top: .7rem;
}

/* ============================================================
   PLATFORM PAGE
   ============================================================ */
.soon-badge {
  display: inline-block; font-family: var(--mono); font-size: .78rem; font-weight: 700;
  letter-spacing: .18em; text-transform: uppercase;
  border: 2px solid var(--ink); padding: .4rem .8rem; margin-bottom: 1.2rem;
}
.status-meta { font-family: var(--mono); font-size: .74rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; }
.status-live { color: var(--orange-deep); }
.status-dev { color: var(--ink); }
.status-planned { color: var(--ink-soft); }
.platform-group { margin-top: 2.2rem; }
.platform-group h3 { font-family: var(--mono); font-size: .82rem; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; color: var(--orange-deep); border-bottom: 2px dashed var(--paper-line); padding-bottom: .6rem; margin-bottom: 1rem; }
.platform-list { list-style: none; display: grid; gap: 1.1rem; }
.platform-list li strong { display: block; font-size: 1.08rem; }
.platform-list li span { color: var(--ink-soft); }
/* ============================================================
   OUR TEAM
   ============================================================ */
.team { background: var(--ink); color: var(--paper); }
.team-head { text-align: center; }
.team-sub {
  text-align: center; color: var(--on-ink-soft);
  max-width: 40em; margin: 1rem auto 3rem;
}
.team-grid {
  display: grid; gap: 2.4rem 1.8rem;
  grid-template-columns: repeat(auto-fit, minmax(13rem, 1fr));
  max-width: 68rem; margin-inline: auto;
}
.team-member figure { margin: 0; }
.team-figure {
  display: block;
  position: relative; width: 100%; padding-top: 100%;
  overflow: hidden;
  border: 2px solid var(--paper);
  background: var(--ink);
  margin-bottom: 1.1rem;
}
.team-figure img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center 22%;
}
.team-member h3 {
  font-family: var(--body); font-weight: 800;
  font-size: 1.1rem; letter-spacing: -.02em; line-height: 1.15;
}
.team-role {
  font-family: var(--mono); font-size: .74rem; font-weight: 700;
  letter-spacing: .16em; text-transform: uppercase;
  color: var(--orange); margin: .45rem 0 .7rem;
}
.team-member p.team-bio { color: var(--on-ink-soft); font-size: .96rem; }
.team-note {
  font-family: var(--mono); font-size: .78rem; letter-spacing: .1em;
  color: var(--on-ink-soft); text-align: center; margin-top: 3rem;
}

/* ============================================================
   B2B LAYER: utility strip, questions, pillars, service grid
   Orange is an accent here, never the field.
   ============================================================ */
.utility-strip {
  background: var(--ink); color: var(--on-ink-soft);
  font-size: .9rem;
  padding-block: .7rem;
}
.utility-strip .wrap {
  display: flex; flex-wrap: wrap; align-items: center;
  justify-content: center; gap: .3rem .8rem; text-align: center;
}
.utility-strip a { color: var(--orange); font-weight: 700; text-decoration: none; }
.utility-strip a:hover { text-decoration: underline; text-underline-offset: 3px; }

.eyebrow {
  font-family: var(--mono); font-size: .74rem; font-weight: 700;
  letter-spacing: .2em; text-transform: uppercase; color: var(--orange-deep);
  margin-bottom: 1rem;
}
.on-ink .eyebrow { color: var(--orange); }

/* ---- questions that keep you up at night ---- */
.questions { background: var(--paper-dim); }
.questions-head { max-width: 22em; margin-bottom: 3rem; }
.questions-grid { display: grid; gap: 1px; background: var(--paper-line); border: 1px solid var(--paper-line); }
@media (min-width: 820px) { .questions-grid { grid-template-columns: 1fr 1fr; } }
.question {
  background: var(--paper);
  padding: clamp(1.6rem, 3vw, 2.4rem);
  display: grid; gap: .9rem; align-content: start;
}
.question h3 {
  font-size: clamp(1.15rem, 2.1vw, 1.42rem); font-weight: 800;
  letter-spacing: -.02em; line-height: 1.2;
}
.question p { color: var(--ink-soft); font-size: .99rem; }
.question p strong { color: var(--ink); font-weight: 700; }

/* ---- three pillars ---- */
.pillars { background: var(--paper); }
.pillars-grid { display: grid; gap: 2.6rem 2.4rem; margin-top: 2.8rem; }
@media (min-width: 860px) { .pillars-grid { grid-template-columns: repeat(3, 1fr); } }
.pillar { display: grid; gap: .8rem; align-content: start; }
.pillar-num {
  font-family: var(--mono); font-size: .78rem; font-weight: 700;
  letter-spacing: .16em; color: var(--orange-deep);
  padding-bottom: .8rem; border-bottom: 2px solid var(--ink);
}
.pillar h3 { font-size: clamp(1.2rem, 2.2vw, 1.45rem); font-weight: 800; letter-spacing: -.02em; line-height: 1.2; }
.pillar p { color: var(--ink-soft); font-size: .99rem; }

/* ---- ticked service grid ---- */
.capabilities { background: var(--ink); color: var(--paper); }
.capabilities .h-section, .team .h-section { color: var(--paper); }
.cap-sub { color: var(--on-ink-soft); max-width: 40em; margin-top: 1rem; }
.cap-grid {
  display: grid; gap: 1px; margin-top: 3rem;
  background: #2a2b31; border: 1px solid #2a2b31;
}
@media (min-width: 640px) { .cap-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .cap-grid { grid-template-columns: repeat(3, 1fr); } }
.cap {
  background: var(--ink); padding: 1.5rem 1.4rem;
  display: grid; gap: .7rem; align-content: start;
}
.cap-name {
  font-family: var(--mono); font-size: .76rem; font-weight: 700;
  letter-spacing: .16em; text-transform: uppercase; color: var(--orange);
}
.cap h3 { font-size: 1.08rem; font-weight: 800; letter-spacing: -.01em; }
.cap ul { list-style: none; display: grid; gap: .45rem; }
.cap li {
  display: grid; grid-template-columns: 1.1rem 1fr; gap: .55rem;
  color: var(--on-ink-soft); font-size: .93rem; line-height: 1.45;
}
.cap li::before {
  content: ""; margin-top: .42rem;
  width: .62rem; height: .34rem;
  border-left: 2px solid var(--orange); border-bottom: 2px solid var(--orange);
  transform: rotate(-45deg);
}
.cap-note {
  margin-top: 2.2rem; font-family: var(--mono); font-size: .8rem;
  letter-spacing: .08em; color: var(--on-ink-soft);
}

/* ---- proof strip ---- */
.proof { background: var(--paper); }
.proof-grid { display: grid; gap: 2.4rem; margin-top: 2.6rem; }
@media (min-width: 760px) { .proof-grid { grid-template-columns: repeat(3, 1fr); } }
.proof-item { border-top: 3px solid var(--ink); padding-top: 1.2rem; }
.proof-figure {
  font-family: var(--body); font-weight: 800; letter-spacing: -.03em;
  font-size: clamp(2.2rem, 5vw, 3.1rem); line-height: 1; color: var(--orange-deep);
}
.proof-label { font-weight: 700; margin-top: .6rem; }
.proof-item p { color: var(--ink-soft); font-size: .97rem; margin-top: .4rem; }

/* section heading colour on ink grounds */
.on-ink { background: var(--ink); color: var(--paper); }

@media (max-width: 620px) {
  /* the trust line wraps rather than running off the edge */
  .hero-note { white-space: normal; line-height: 1.7; }
}

/* ============================================================
   THE WEEKLY FOUR: the clearest thing on the page
   ============================================================ */
.weekly { background: var(--ink); color: var(--paper); }
.weekly .h-section { color: var(--paper); }
.weekly-grid { display: grid; gap: 1.2rem; margin-top: 3rem; }
@media (min-width: 620px) { .weekly-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1020px) { .weekly-grid { grid-template-columns: repeat(4, 1fr); } }
.weekly-card {
  background: #1b1c22; border: 1px solid #2f3038;
  border-top: 3px solid var(--orange);
  padding: 1.6rem 1.4rem 1.4rem;
  display: flex; flex-direction: column; gap: .7rem;
}
.weekly-num {
  font-family: var(--mono); font-size: .78rem; font-weight: 700;
  letter-spacing: .18em; color: var(--orange);
}
.weekly-card h3 {
  font-size: 1.28rem; font-weight: 800; letter-spacing: -.02em; line-height: 1.2;
  min-height: 2.4em; display: flex; align-items: flex-start;
}
.weekly-card > p:not(.weekly-num):not(.weekly-tag) {
  color: var(--on-ink-soft); font-size: .96rem; flex: 1;
}
.weekly-tag {
  font-family: var(--mono); font-size: .72rem; font-weight: 700;
  letter-spacing: .16em; text-transform: uppercase; color: var(--paper);
  border-top: 1px solid #2f3038; padding-top: .8rem; flex: 0 0 auto;
}

.cadence-row { display: grid; gap: 2rem; margin-top: 3.4rem; }
@media (min-width: 780px) { .cadence-row { grid-template-columns: repeat(3, 1fr); } }
.cadence-item { border-top: 1px solid #33343c; padding-top: 1.2rem; }
.cadence-when {
  font-family: var(--mono); font-size: .72rem; font-weight: 700;
  letter-spacing: .18em; text-transform: uppercase; color: var(--orange);
  margin-bottom: .5rem;
}
.cadence-item h3 { font-size: 1.12rem; font-weight: 800; letter-spacing: -.02em; margin-bottom: .4rem; }
.cadence-item p { color: var(--on-ink-soft); font-size: .94rem; }

.included { margin-top: 3.4rem; border-top: 1px solid #33343c; padding-top: 1.8rem; }
.included-head {
  font-family: var(--mono); font-size: .74rem; font-weight: 700;
  letter-spacing: .18em; text-transform: uppercase; color: var(--on-ink-soft);
  margin-bottom: 1.1rem;
}
.included-list { list-style: none; display: grid; gap: .7rem; }
@media (min-width: 860px) { .included-list { grid-template-columns: 1fr 1fr; gap: .7rem 2.4rem; } }
.included-list li {
  display: grid; grid-template-columns: 1.1rem 1fr; gap: .6rem;
  color: var(--paper); font-size: .96rem;
}
.included-list li::before {
  content: ""; margin-top: .45rem;
  width: .62rem; height: .34rem;
  border-left: 2px solid var(--orange); border-bottom: 2px solid var(--orange);
  transform: rotate(-45deg);
}

/* ============================================================
   BLOG AT SCALE: topic hubs, pagination, FAQ, related posts
   ============================================================ */
.crumbs {
  font-family: var(--mono); font-size: .78rem; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase;
  display: flex; gap: .5rem; align-items: center; margin-bottom: 1rem;
  color: var(--ink-soft); flex-wrap: wrap;
}
.crumbs a { color: var(--orange-deep); text-decoration: none; }
.crumbs a:hover { text-decoration: underline; }

.topic-nav { display: flex; flex-wrap: wrap; gap: .5rem; margin-bottom: 2.4rem; }
.topic-chip {
  display: inline-flex; align-items: center; gap: .45rem;
  font-family: var(--mono); font-size: .76rem; font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase;
  padding: .5rem .85rem; border: 1px solid var(--paper-line);
  border-radius: 999px; color: var(--ink); text-decoration: none;
  background: var(--paper);
}
.topic-chip:hover { border-color: var(--ink); }
.topic-chip.is-active { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.topic-count { font-size: .9em; opacity: .6; }

.pager {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; flex-wrap: wrap; margin-top: 2.6rem;
  padding-top: 1.6rem; border-top: 1px solid var(--paper-line);
}
.pager-state {
  font-family: var(--mono); font-size: .78rem; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase; color: var(--ink-soft);
}

.post-faq { margin-top: 3rem; padding-top: 2rem; border-top: 2px solid var(--ink); }
.post-faq h2 { font-size: clamp(1.5rem, 4vw, 2rem); margin-bottom: 1.6rem; }
.post-faq-item { padding: 1.2rem 0; border-bottom: 1px solid var(--paper-line); }
.post-faq dt { font-weight: 800; font-size: 1.05rem; margin-bottom: .5rem; }
.post-faq dd { margin: 0; color: var(--ink-soft); }

.post-related { margin-top: 3.2rem; padding-top: 2rem; border-top: 1px solid var(--paper-line); }
.post-related-head {
  font-family: var(--mono); font-size: .8rem; font-weight: 700;
  letter-spacing: .18em; text-transform: uppercase; color: var(--ink-soft);
  margin-bottom: 1.4rem;
}
