/* XD Readers · UK craft studio (redesign) */
:root {
  --ink: #12141a;
  --ink-2: #2a2f3a;
  --muted: #5c6575;
  --line: #d8dde6;
  --paper: #f3f4f7;
  --white: #ffffff;
  --forest: #1a5c45;
  --forest-deep: #134536;
  --mist: #e7f0eb;
  --cta: #1a5c45;
  --cta-hover: #134536;
  --focus: #1a5c45;
  --shadow: 0 18px 40px rgba(18, 20, 26, 0.1);
  --font: "Figtree", system-ui, sans-serif;
  --display: "Instrument Serif", Georgia, serif;
  --max: 1100px;
  --header-h: 4rem;
}

*, *::before, *::after { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  overflow-x: clip;
}
body {
  margin: 0;
  font-family: var(--font);
  font-size: clamp(1rem, 0.95rem + 0.2vw, 1.0625rem);
  line-height: 1.65;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
  padding-bottom: calc(5.5rem + env(safe-area-inset-bottom, 0px));
  min-height: 100dvh;
}
img, video, iframe, svg {
  max-width: 100%;
  height: auto;
  display: block;
}
img { content-visibility: auto; }
.pay-marks img { content-visibility: visible; }
button, .btn, .filter-btn, .menu-toggle, a.sticky-wa, a.sticky-call {
  min-height: 44px;
  touch-action: manipulation;
}
input, textarea, select {
  font-size: 16px; /* stops iOS zoom-on-focus */
  max-width: 100%;
}
a { color: var(--forest); text-underline-offset: 3px; }
a:hover { color: var(--forest-deep); }

.skip-link {
  position: absolute;
  left: 1rem;
  top: -100px;
  z-index: 200;
  background: var(--ink);
  color: #fff;
  padding: 0.65rem 1rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
}
.skip-link:focus {
  top: 1rem;
  outline: 3px solid #9fd4bd;
  outline-offset: 2px;
}

:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 3px;
}
.btn:focus-visible,
.filter-btn:focus-visible,
.menu-toggle:focus-visible,
.sticky-wa:focus-visible,
.sticky-call:focus-visible,
.nav a:focus-visible,
.promo-dismiss:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 3px;
}
.hero-founder :focus-visible,
.offer-panel :focus-visible,
.section-ink :focus-visible {
  outline-color: #9fd4bd;
}

h1, h2, h3 {
  font-family: var(--display);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: 0 0 0.5em;
  text-wrap: balance;
}
h1 { font-size: clamp(2.6rem, 6vw, 4.1rem); }
h2 { font-size: clamp(1.9rem, 3.5vw, 2.75rem); }
h3 { font-size: 1.45rem; }
p { margin: 0 0 1em; }
.lead { font-size: 1.15rem; color: var(--muted); max-width: 34rem; line-height: 1.55; }

.container { width: min(100% - 2rem, var(--max)); margin-inline: auto; }
.section { padding: clamp(2.75rem, 6vw, 4.75rem) 0; }
.section > .container > .eyebrow {
  margin-bottom: 0.55rem;
}
.section > .container > h1,
.section > .container > h2,
.section .proof-block > h2,
.split > div > h1,
.split > div > h2 {
  margin-bottom: 0.55rem;
}
.section > .container > .lead,
.section .proof-block > .lead,
.split > div > .lead {
  margin-bottom: 1.35rem;
}
.eyebrow {
  margin: 0 0 0.75rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--forest);
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(243, 244, 247, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  min-height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  position: relative;
  flex-wrap: nowrap;
}
.site-header {
  padding-top: env(safe-area-inset-top, 0px);
}
.brand {
  display: inline-flex;
  align-items: baseline;
  gap: 0.35rem;
  text-decoration: none;
  color: var(--ink);
  font-weight: 700;
  letter-spacing: -0.03em;
}
.brand small {
  font-weight: 500;
  color: var(--muted);
  font-size: 0.78rem;
}
.nav { display: flex; align-items: center; gap: 1.15rem; }
.nav a {
  text-decoration: none;
  color: var(--ink-2);
  font-size: 0.92rem;
  font-weight: 600;
}
.nav a[aria-current="page"], .nav a:hover { color: var(--forest); }
.menu-toggle {
  display: none;
  border: 1px solid var(--line);
  background: var(--white);
  border-radius: 8px;
  padding: 0.45rem 0.7rem;
  font: inherit;
  cursor: pointer;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.85rem 1.25rem;
  border-radius: 10px;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  transition: transform 0.18s ease, background 0.18s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
.btn-primary { background: var(--cta); color: #fff; }
.btn-primary:hover { background: var(--cta-hover); color: #fff; }
.btn-dark { background: var(--ink); color: #fff; }
.btn-dark:hover { background: #000; color: #fff; }
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--line);
}
.btn-ghost:hover { border-color: var(--ink-2); color: var(--ink); }
.btn-compact {
  padding: 0.5rem 0.9rem;
  font-size: 0.85rem;
  min-height: 40px;
}
.btn-ghost-on-dark {
  border-color: rgba(255, 255, 255, 0.35);
  color: #fff;
}
.btn-ghost-on-dark:hover {
  border-color: #fff;
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}
/* On dark heroes, primary CTA must pop (white plate, forest text) */
.hero-founder .btn-primary,
.sector-lp-hero .btn-primary,
.offer-panel .btn-primary {
  background: #fff;
  color: var(--forest-deep);
}
.hero-founder .btn-primary:hover,
.sector-lp-hero .btn-primary:hover,
.offer-panel .btn-primary:hover {
  background: var(--mist);
  color: var(--forest-deep);
}
.cta-row { display: flex; flex-wrap: wrap; gap: 0.7rem; margin-top: 1.35rem; align-items: center; }
.link-on-ink { color: #9fd4bd; }

/* Founder hero · full bleed craft */
.hero-founder {
  position: relative;
  min-height: min(88dvh, 720px);
  display: grid;
  align-items: end;
  color: #fff;
  overflow: hidden;
}
.hero-founder-media {
  position: absolute;
  inset: 0;
}
.hero-founder-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 72% 42%;
}
.hero-founder-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      105deg,
      rgba(10, 14, 20, 0.82) 0%,
      rgba(10, 14, 20, 0.68) 38%,
      rgba(10, 14, 20, 0.35) 68%,
      rgba(10, 14, 20, 0.18) 100%
    ),
    linear-gradient(to top, rgba(10, 14, 20, 0.55) 0%, transparent 45%);
}
.hero-founder .container {
  position: relative;
  z-index: 1;
  padding: clamp(4.5rem, 11vw, 7rem) 0 clamp(2.5rem, 5vw, 3.5rem);
}
.hero-founder .hero-brand,
.hero-founder h1,
.hero-founder .lead,
.hero-founder .cta-row,
.hero-founder .hero-meta {
  max-width: 40rem;
}
.hero-founder .eyebrow { color: #9fd4bd; }
.hero-brand {
  font-family: var(--font);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin: 0 0 0.85rem;
  color: #9fd4bd;
  line-height: 1.2;
  animation: rise 0.75s ease both;
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.35);
}
.founder-name {
  font-family: var(--display);
  font-size: clamp(1.35rem, 2.4vw, 1.75rem);
  margin: 0 0 0.65rem;
  color: #fff;
}
.hero-founder h1 {
  font-family: var(--display);
  color: #fff;
  max-width: 22ch;
  font-size: clamp(1.85rem, 5.2vw, 2.95rem);
  font-weight: 400;
  line-height: 1.12;
  letter-spacing: -0.02em;
  margin: 0 0 0.9rem;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.45);
  animation: rise 0.85s 0.08s ease both;
}
.hero-founder .lead {
  color: rgba(255, 255, 255, 0.92);
  max-width: 36rem;
  font-size: clamp(1.02rem, 1.8vw, 1.15rem);
  line-height: 1.55;
  margin: 0;
  text-shadow: 0 1px 14px rgba(0, 0, 0, 0.4);
  animation: rise 0.85s 0.16s ease both;
}
.hero-founder .cta-row { animation: rise 0.85s 0.24s ease both; }
.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 0.65rem;
  margin-top: 1.1rem;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.78);
  animation: rise 0.85s 0.32s ease both;
}
.hero-meta span { display: inline-flex; align-items: center; gap: 0.35rem; }
.hero-meta span + span::before {
  content: "·";
  margin-right: 0.65rem;
  opacity: 0.7;
}
.hero-meta strong { color: #fff; font-weight: 700; }

.trust-band { padding-top: clamp(2rem, 4vw, 3rem); padding-bottom: clamp(2rem, 4vw, 3rem); }
.trust-line {
  margin: 0 0 1rem;
  font-size: 0.92rem;
  color: var(--muted);
  max-width: 48rem;
}
.price-band {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.55rem;
  margin-bottom: 1.25rem;
  font-size: 0.9rem;
  color: var(--ink-2);
}
.price-band .price-chip {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.3rem 0.45rem;
  padding: 0.55rem 0.75rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 10px;
  line-height: 1.35;
  min-height: 3.1rem;
}
@media (max-width: 900px) {
  .price-band { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 480px) {
  .price-band { grid-template-columns: 1fr; }
}
.price-band .price-chip em {
  font-style: normal;
  font-weight: 700;
  color: var(--forest-deep);
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  width: 100%;
}
.price-band strong { color: var(--ink); }
.section-white { background: var(--white); }

@keyframes rise {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: none; }
}

/* Work grid */
.work-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  align-items: stretch;
}
.work-card {
  position: relative;
  min-height: 0;
  aspect-ratio: 3 / 2;
  border-radius: 14px;
  overflow: hidden;
  text-decoration: none;
  color: #fff;
  box-shadow: var(--shadow);
}
.work-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s ease;
}
.work-card:hover img { transform: scale(1.06); }
.work-card .cap {
  position: relative;
  z-index: 1;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.25rem;
  background: linear-gradient(transparent 30%, rgba(18, 20, 26, 0.88));
}
.work-card .cap strong {
  font-family: var(--display);
  font-size: 1.45rem;
  font-weight: 400;
}
.work-card .cap span { font-size: 0.88rem; opacity: 0.85; }

/* Package comparison table (Sunny-style) */
.pack-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--white);
  box-shadow: var(--shadow);
}
.pack-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 640px;
  font-size: 0.95rem;
}
.pack-table th, .pack-table td {
  padding: 0.95rem 1rem;
  text-align: left;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
  width: 33.333%;
}
.pack-table th {
  background: var(--ink);
  color: #fff;
  font-weight: 600;
}
.pack-table th.highlight { background: var(--forest); }
.pack-table td.highlight { background: var(--mist); }
.pack-table .price {
  font-family: var(--display);
  font-size: clamp(1.35rem, 2.5vw, 1.65rem);
  color: var(--ink);
  margin-bottom: 0.65rem;
}
.price-was {
  display: block;
  font-family: var(--font);
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--muted);
  text-decoration: line-through;
  letter-spacing: 0;
  line-height: 1.3;
}
.price-now {
  display: block;
  font-family: var(--display);
  font-weight: 400;
  line-height: 1.15;
}
.sale-badge {
  display: inline-block;
  margin-top: 0.35rem;
  font-family: var(--font);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: var(--mist);
  color: var(--forest-deep);
  padding: 0.18rem 0.45rem;
  border-radius: 6px;
}
.price-band .price-was,
.price-band .price-now {
  display: inline;
  font-size: inherit;
  font-family: inherit;
  font-weight: 700;
}
.price-band .price-was {
  margin-right: 0.2rem;
  font-weight: 500;
}
.price-band .price-now {
  color: var(--forest-deep);
}
.launch-offer {
  background: var(--mist);
  border: 1px solid #c5d9cf;
  border-radius: 12px;
  padding: 0.95rem 1.2rem;
  margin: 1.35rem 0 0;
}
.launch-offer p { margin: 0; }
.launch-offer strong { color: var(--forest-deep); }
.pack-table ul {
  margin: 0;
  padding-left: 1.1rem;
  color: var(--muted);
}
.pack-note {
  margin-top: 1rem;
  font-size: 0.92rem;
  color: var(--muted);
}

.pack-next {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0.45rem;
  min-width: 7.5rem;
}
.pack-next .btn {
  width: 100%;
}
.pack-more {
  appearance: none;
  cursor: pointer;
}
.pack-more[aria-expanded="true"] {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
}

.pack-detail {
  margin-top: 1rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 1.35rem 1.5rem;
  box-shadow: var(--shadow);
  animation: packDetailIn 0.28s ease;
}
.pack-detail[hidden] { display: none !important; }
.pack-detail h3 {
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
  margin-bottom: 0.35rem;
}
.pack-detail .lead { margin-bottom: 0.85rem; }
.pack-detail ul {
  margin: 0 0 1rem;
  padding-left: 1.15rem;
  color: var(--muted);
}
.pack-detail li { margin-bottom: 0.35rem; }
.pack-detail-foot {
  margin: 1rem 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
@keyframes packDetailIn {
  from { opacity: 0; transform: translateY(-8px); }
  to { opacity: 1; transform: none; }
}
@media (prefers-reduced-motion: reduce) {
  .pack-detail { animation: none; }
}

/* About split */
.split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(1.75rem, 4vw, 2.75rem);
  align-items: start;
}
.portrait {
  border-radius: 16px;
  overflow: visible;
  box-shadow: none;
  min-height: 0;
  margin-top: 0.25rem;
}
.portrait img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  min-height: 0;
  border-radius: 16px;
  box-shadow: var(--shadow);
}
.portrait-note {
  font-size: 0.8rem;
  color: var(--muted);
  margin-top: 0.5rem;
}

.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(12rem, 1fr));
  gap: 0.85rem;
  counter-reset: s;
}
.steps article {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 1.1rem;
}
.steps article::before {
  counter-increment: s;
  content: counter(s);
  display: inline-flex;
  width: 1.6rem;
  height: 1.6rem;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--mist);
  color: var(--forest);
  font-weight: 700;
  font-size: 0.85rem;
  margin-bottom: 0.55rem;
}

.trust-inline {
  margin-top: 1.25rem;
  font-size: 0.92rem;
  color: var(--muted);
  max-width: 36rem;
}
.trust-inline span { display: inline; }
.trust-inline span + span::before {
  content: " · ";
  color: var(--line);
}

.section-ink {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.86);
}
.section-ink h2, .section-ink h3 { color: #fff; }
.section-ink .eyebrow { color: #9fd4bd; }

.form-grid { display: grid; gap: 0.9rem; }
.form-grid.two {
  grid-template-columns: 1fr 1fr;
  align-items: start;
}
@media (max-width: 640px) {
  .form-grid.two { grid-template-columns: 1fr; }
}
/* Bot honeypot · visually hidden, still in DOM for bots */
.hp-field {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
}
label { display: block; font-size: 0.82rem; font-weight: 700; margin-bottom: 0.3rem; }
input, select, textarea {
  width: 100%;
  padding: 0.8rem 0.9rem;
  border: 1px solid var(--line);
  border-radius: 10px;
  font: inherit;
  background: var(--white);
}
textarea { min-height: 130px; resize: vertical; }
.aside-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 1.35rem;
}
.aside-card p { margin: 0 0 0.9rem; }
.aside-card strong {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.2rem;
}

.site-footer {
  background: #0c0e12;
  color: rgba(255, 255, 255, 0.7);
  padding: 3rem 0 1.5rem;
  font-size: 0.9rem;
}
.site-footer a { color: #fff; text-decoration: none; }
.site-footer a:hover { text-decoration: underline; color: #fff; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr 1fr 1fr;
  gap: 2rem 1.5rem;
}
.footer-grid h3 {
  font-family: var(--font);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  margin: 0 0 0.85rem;
}
.footer-grid ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.footer-grid li { margin: 0 0 0.42rem; }
.footer-studio p { margin: 0 0 0.85rem; max-width: 18rem; line-height: 1.5; }
.footer-bottom {
  margin-top: 2rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}
.pay-marks {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.55rem;
}
.pay-marks img {
  height: 52px;
  width: auto;
  max-width: none;
  flex: 0 0 auto;
  background: transparent;
  border-radius: 8px;
  padding: 0;
  display: block;
  image-rendering: auto;
}
.pay-note {
  margin: 0.75rem 0 0;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.55);
  max-width: 36rem;
  line-height: 1.45;
}
.site-footer s { opacity: 0.55; }

/* Sticky UK contact bar: deferred until scroll */
.sticky-contact {
  position: fixed;
  right: max(1rem, env(safe-area-inset-right));
  bottom: max(1rem, env(safe-area-inset-bottom));
  z-index: 70;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
  transition: opacity 0.35s ease, transform 0.35s ease;
}
.sticky-contact.is-shown {
  opacity: 1;
  transform: none;
  pointer-events: auto;
}
.sticky-contact[hidden] { display: none !important; }
.sticky-contact a {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.75rem 1rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.88rem;
  box-shadow: var(--shadow);
}
.sticky-wa { background: #128c7e; color: #fff; }
.sticky-call { background: var(--ink); color: #fff; }
.sticky-wa:hover, .sticky-call:hover { color: #fff; filter: brightness(1.06); }

/* Google + Trustpilot strip */
.reviews-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin: 0.85rem 0 1.15rem;
}
.review-badge {
  display: inline-flex;
  flex-direction: column;
  gap: 0.15rem;
  text-decoration: none;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 0.55rem 0.85rem;
  min-width: 9.5rem;
  transition: border-color 0.18s ease, transform 0.18s ease;
}
.review-badge:hover {
  border-color: var(--forest);
  color: var(--ink);
  transform: translateY(-1px);
}
.review-badge-name {
  font-size: 0.82rem;
  font-weight: 700;
}
.review-badge-meta {
  font-size: 0.75rem;
  color: var(--muted);
  font-weight: 500;
}
.offer-panel .reviews-strip { margin-bottom: 0.5rem; }
.offer-panel .review-badge {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.22);
  color: #fff;
}
.offer-panel .review-badge:hover {
  border-color: #9fd4bd;
  color: #fff;
}
.offer-panel .review-badge-meta { color: rgba(255, 255, 255, 0.7); }
.offer-panel .review-badge-google .review-badge-name { color: #8ab4f8; }
.offer-panel .review-badge-tp .review-badge-name { color: #6dffb4; }

.reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.reveal.is-visible { opacity: 1; transform: none; }

@media (max-width: 1024px) {
  .portfolio-grid { grid-template-columns: repeat(2, 1fr); }
  .work-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  .work-grid, .steps { grid-template-columns: 1fr 1fr; }
  .split { grid-template-columns: 1fr; }
  .menu-toggle { display: inline-flex; margin-left: auto; }
  .header-actions .header-phone { display: none; }
  .nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    background: rgba(243, 244, 247, 0.98);
    padding: 0.75rem 1rem 1.15rem;
    border-bottom: 1px solid var(--line);
    max-height: min(70vh, 28rem);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    z-index: 80;
  }
  .nav.open { display: flex; }
  .nav a {
    padding: 0.75rem 0.35rem;
    border-bottom: 1px solid var(--line);
    min-height: 44px;
    display: flex;
    align-items: center;
  }
  .nav a:last-child { border-bottom: 0; }
  .hero-founder { min-height: min(82dvh, 620px); }
  .hero-founder h1 { max-width: 20ch; font-size: clamp(1.7rem, 6.5vw, 2.35rem); }
  .hero-brand { font-size: 0.72rem; }
  .hero-founder-media img { object-position: 62% 40%; }
}

@media (max-width: 768px) {
  .work-grid, .steps, .sector-grid { grid-template-columns: 1fr 1fr; }
  .filter-bar {
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    padding-bottom: 0.35rem;
    margin-right: -1rem;
    padding-right: 1rem;
  }
  .filter-btn { flex: 0 0 auto; white-space: nowrap; }
  .pack-table-wrap { -webkit-overflow-scrolling: touch; }
  .cta-row .btn { width: 100%; }
  .cta-row { flex-direction: column; align-items: stretch; }
}

@media (max-width: 560px) {
  .work-grid, .steps, .form-grid.two, .sector-grid, .portfolio-grid { grid-template-columns: 1fr; }
  .sticky-contact {
    left: auto;
    right: max(0.75rem, env(safe-area-inset-right));
    bottom: max(0.75rem, env(safe-area-inset-bottom));
    flex-direction: column;
  }
  .sticky-contact a { justify-content: center; }
  .header-actions {
    display: flex;
    gap: 0.35rem;
  }
  .header-actions .btn-compact {
    padding: 0.45rem 0.7rem;
    font-size: 0.78rem;
  }
  .header-chat-btn {
    display: none;
  }
  .promo-bar { font-size: 0.76rem; padding: 0.5rem 0.75rem; line-height: 1.35; }
  .container { width: min(100% - 1.25rem, var(--max)); }
  h1 { font-size: clamp(2.1rem, 9vw, 3rem); }
  .hero-founder .container { padding-bottom: 2.5rem; }
  .cookie-bar {
    left: 0.75rem;
    right: 0.75rem;
    bottom: calc(4.75rem + env(safe-area-inset-bottom, 0px));
    max-width: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
  .hero-founder-media img { animation: none; transform: none; }
}

@media (max-width: 900px) {
  .hero-founder-media img { animation: none; transform: scale(1.03); }
}

/* Promo bar: dismissible */
.promo-bar {
  background: var(--ink);
  color: #fff;
  text-align: center;
  font-size: 0.85rem;
  font-weight: 600;
  padding: 0.55rem 2.5rem 0.55rem 1rem;
  position: relative;
}
.promo-bar[hidden] { display: none !important; }
.promo-bar a {
  color: #9fd4bd;
  text-decoration: none;
}
.promo-bar a:hover { text-decoration: underline; }
.promo-dismiss {
  position: absolute;
  right: 0.65rem;
  top: 50%;
  transform: translateY(-50%);
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.25rem;
  line-height: 1;
  cursor: pointer;
  min-height: 44px;
  min-width: 44px;
  padding: 0;
}
.promo-dismiss:hover { color: #fff; }

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  flex-shrink: 0;
}
.header-chat-btn {
  white-space: nowrap;
}
/* Do not CSS-hide Crisp internals (class names change and can break the chat panel).
   Launcher is hidden via the Crisp JS API in forms.js instead. */
.header-chat-btn[data-crisp-open] {
  cursor: pointer;
}
.header-phone {
  display: none !important;
}
.nav {
  flex-wrap: wrap;
  gap: 0.65rem 0.95rem;
  font-size: 0.88rem;
}
.nav a { font-size: 0.86rem; }

/* Dark offer panel */
.offer-panel {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.88);
  border-radius: 18px;
  padding: clamp(1.75rem, 4vw, 2.75rem);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.offer-panel::before {
  content: "";
  position: absolute;
  right: -10%;
  top: -20%;
  width: 55%;
  height: 140%;
  background: radial-gradient(circle, rgba(26, 92, 69, 0.35), transparent 70%);
  pointer-events: none;
}
.offer-panel > * { position: relative; z-index: 1; }
.offer-panel h1, .offer-panel h2 { color: #fff; }
.offer-panel .lead { color: rgba(255, 255, 255, 0.78); }
.offer-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}
.offer-badge .pill {
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 999px;
  padding: 0.35rem 0.75rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.offer-badge .reviews {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.75);
}
.offer-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-top: 1.5rem;
}
.offer-tags span {
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  padding: 0.35rem 0.7rem;
  font-size: 0.78rem;
}
.offer-cta-stack {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  align-items: flex-start;
  margin-top: 1.25rem;
}
.offer-cta-stack .btn-primary {
  background: #fff;
  color: var(--forest-deep);
}
.offer-cta-stack .btn-primary:hover { background: var(--mist); color: var(--forest-deep); }
.offer-layout {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2rem;
  align-items: start;
}
@media (max-width: 800px) {
  .offer-layout { grid-template-columns: 1fr; }
}

/* Free offer strip: typographic, not card boxes */
.free-strip {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem 1.5rem;
  margin-top: 0;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
}
.free-strip a {
  display: block;
  background: transparent;
  border: 0;
  border-radius: 0;
  padding: 0.35rem 0;
  text-decoration: none;
  color: var(--ink);
  box-shadow: none;
  font-size: 0.95rem;
  line-height: 1.45;
  transition: color 0.2s ease;
}
.free-strip a:hover { color: var(--forest); }
.free-strip strong {
  display: inline;
  font-family: var(--font);
  font-size: inherit;
  font-weight: 700;
  margin: 0;
}
.free-strip span { color: var(--muted); font-size: 0.92rem; }
.free-strip-inline { margin-top: 0.25rem; }
@media (max-width: 700px) {
  .free-strip { grid-template-columns: 1fr; }
}

.sector-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem 1.25rem;
  margin-top: 1rem;
}
.sector-chips a {
  color: var(--ink);
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid var(--line);
  padding-bottom: 0.1rem;
}
.sector-chips a:hover {
  color: var(--forest);
  border-color: var(--forest);
}

/* Featured portfolio row */
.featured-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(15.5rem, 1fr));
  gap: 1.15rem;
  margin: 1.75rem 0 2.5rem;
}
.featured-card {
  text-decoration: none;
  color: var(--ink);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.featured-card .thumb {
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: var(--ink);
}
.featured-card .thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s ease;
}
.featured-card:hover .thumb img { transform: scale(1.05); }
.featured-card h3 {
  font-size: 1.35rem;
  margin: 0 0 0.25rem;
}
.featured-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}
.featured-card .craft-note {
  font-size: 0.8rem;
  color: var(--forest);
  font-weight: 600;
}
@media (max-width: 900px) {
  .featured-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .featured-grid { grid-template-columns: 1fr; }
}

/* Portfolio filters */
.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin: 1.5rem 0 1.75rem;
}
.filter-btn {
  border: 1px solid var(--line);
  background: var(--white);
  border-radius: 999px;
  padding: 0.4rem 0.85rem;
  font: inherit;
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  color: var(--ink-2);
}
.filter-btn.is-active,
.filter-btn:hover {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
}
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.1rem;
}
.portfolio-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  text-decoration: none;
  color: var(--ink);
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease;
}
.portfolio-card:hover { transform: translateY(-3px); color: var(--ink); }
.portfolio-card .thumb {
  aspect-ratio: 16/10;
  overflow: hidden;
  background: var(--ink);
}
.portfolio-card .thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.portfolio-card .body { padding: 1rem 1.1rem 1.2rem; }
.portfolio-card .tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin-top: 0.5rem;
}
.portfolio-card .tags span {
  font-size: 0.72rem;
  background: var(--mist);
  color: var(--forest-deep);
  padding: 0.2rem 0.5rem;
  border-radius: 999px;
  font-weight: 600;
}
.portfolio-card.is-hidden { display: none; }
.portfolio-card.coming .thumb {
  display: grid;
  place-items: center;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 600;
}
@media (max-width: 700px) {
  .portfolio-grid { grid-template-columns: 1fr; }
}

/* Sectors */
.sector-group {
  margin-bottom: 2.5rem;
}
.sector-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.85rem;
  margin-top: 1rem;
}
.sector-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 1.1rem;
}
.sector-card h3 { font-size: 1.2rem; margin-bottom: 0.35rem; }
.sector-card p { margin: 0; font-size: 0.92rem; color: var(--muted); }
@media (max-width: 900px) {
  .sector-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .sector-grid { grid-template-columns: 1fr; }
}

/* FAQ */
.faq-list { display: grid; gap: 0.65rem; margin-top: 1.5rem; }
.faq-item {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
}
.faq-item button {
  width: 100%;
  text-align: left;
  background: transparent;
  border: 0;
  padding: 1rem 1.15rem;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
  color: var(--ink);
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}
.faq-item button span { color: var(--forest); font-size: 1.25rem; line-height: 1; }
.faq-item .faq-body {
  display: none;
  padding: 0 1.15rem 1.15rem;
  color: var(--muted);
}
.faq-item.is-open .faq-body { display: block; }
.faq-item.is-open button span { transform: rotate(45deg); }

/* Cookie consent */
.cookie-bar {
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: 5.5rem;
  z-index: 80;
  max-width: 420px;
  margin-left: auto;
  background: var(--ink);
  color: rgba(255, 255, 255, 0.9);
  border-radius: 14px;
  padding: 1rem 1.1rem;
  box-shadow: var(--shadow);
  font-size: 0.88rem;
}
.cookie-bar a { color: #9fd4bd; }
.cookie-bar p { margin: 0 0 0.85rem; }
.cookie-actions { display: flex; gap: 0.5rem; flex-wrap: wrap; }
.cookie-actions .btn { padding: 0.55rem 0.9rem; font-size: 0.82rem; }
.cookie-actions .btn-ghost { border-color: rgba(255,255,255,.3); color: #fff; }
.demo-label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--forest);
  margin-bottom: 0.35rem;
}
.sector-lp-hero { min-height: 70vh; }
.sector-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin: 1rem 0 0;
}
.sector-chips span {
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 999px;
  padding: 0.3rem 0.7rem;
  font-size: 0.8rem;
}

/* Audit before / after */
.audit-compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 1.5rem;
}
.audit-col {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 1.15rem 1.2rem 1.25rem;
}
.audit-before { border-top: 4px solid #b45309; }
.audit-after { border-top: 4px solid var(--forest); }
.audit-label {
  margin: 0 0 0.75rem;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.audit-before .audit-label { color: #b45309; }
.audit-after .audit-label { color: var(--forest); }
.audit-fake {
  border: 1px solid var(--line);
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 1rem;
  background: var(--paper);
}
.audit-fake-bar {
  height: 28px;
  background: #e5e7eb;
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 0 0.55rem;
}
.audit-fake-bar i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #c4c4c4;
  display: block;
}
.audit-fake-body { padding: 1rem; min-height: 8.5rem; }
.audit-skel {
  display: block;
  height: 8px;
  background: #d1d5db;
  border-radius: 4px;
  margin-bottom: 0.45rem;
}
.audit-skel-mid { width: 60%; }
.audit-skel-short { width: 40%; }
.audit-cta-bad {
  display: inline-block;
  margin-top: 0.75rem;
  font-size: 0.72rem;
  padding: 0.35rem 0.55rem;
  background: #9ca3af;
  color: #fff;
  border-radius: 4px;
}
.audit-fake-title {
  font-family: var(--display);
  font-size: 1.15rem;
  margin: 0 0 0.5rem;
}
.audit-cta-good {
  display: inline-block;
  margin-top: 0.65rem;
  font-size: 0.78rem;
  font-weight: 700;
  padding: 0.55rem 0.9rem;
  background: var(--forest);
  color: #fff;
  border-radius: 999px;
}
.audit-col ul {
  margin: 0;
  padding-left: 1.1rem;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.55;
}
@media (max-width: 700px) {
  .audit-compare { grid-template-columns: 1fr; }
}

/* Sector switcher */
.sector-switch { margin-top: 1.5rem; }
.sector-switch-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1rem;
}
.sector-switch-chips button {
  appearance: none;
  font: inherit;
  font-weight: 700;
  font-size: 0.88rem;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--ink);
  padding: 0.55rem 1rem;
  border-radius: 999px;
  cursor: pointer;
  min-height: 44px;
}
.sector-switch-chips button.is-on {
  background: var(--forest);
  border-color: var(--forest);
  color: #fff;
}
.sector-switch-panel {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 0;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow);
  align-items: stretch;
}
.sector-switch-visual {
  min-height: 100%;
  min-height: 240px;
  background-size: cover;
  background-position: center;
  background-color: var(--mist);
}
.sector-switch-body {
  padding: 1.35rem 1.4rem 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.sector-switch-tag {
  margin: 0 0 0.35rem;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--forest);
}
.sector-switch-body h3 {
  font-family: var(--display);
  font-weight: 400;
  font-size: 1.55rem;
  margin: 0 0 0.45rem;
}
.sector-switch-body p { margin: 0 0 1rem; color: var(--muted); }
.sector-switch-more {
  margin: 1rem 0 0 !important;
  font-size: 0.88rem;
}
@media (max-width: 800px) {
  .sector-switch-panel { grid-template-columns: 1fr; }
  .sector-switch-visual { min-height: 180px; }
}

/* Brief → sample scope */
.scope-tool { margin-top: 1.5rem; max-width: 40rem; }
.scope-tool label {
  display: block;
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 0.4rem;
}
.scope-tool-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.scope-tool-row input {
  flex: 1;
  min-width: 200px;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 0.75rem 1rem;
  background: var(--white);
}
.scope-card {
  margin-top: 1.15rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 1.25rem 1.3rem;
  box-shadow: var(--shadow);
}
.scope-card[hidden] { display: none !important; }
.scope-card-eyebrow {
  margin: 0 0 0.35rem;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--forest);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.scope-card h3 {
  font-family: var(--display);
  font-weight: 400;
  font-size: 1.4rem;
  margin: 0 0 0.75rem;
}
.scope-card ul {
  margin: 0;
  padding-left: 1.15rem;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.55;
}
.scope-card-foot {
  margin: 1rem 0 0.85rem;
  font-size: 0.82rem;
  color: var(--muted);
}

/* Homepage enquiry-path animation */
.enquiry-path {
  margin-top: 1.75rem;
  padding: clamp(1.15rem, 3vw, 1.6rem);
  background: linear-gradient(165deg, #fff 0%, var(--mist) 100%);
  border: 1px solid var(--line);
  border-radius: 18px;
  position: relative;
  box-shadow: 0 10px 28px rgba(20, 32, 28, 0.05);
}
.enquiry-path-track {
  position: absolute;
  left: 1.5rem;
  right: 1.5rem;
  top: 2.55rem;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--line), transparent);
  pointer-events: none;
  display: none;
}
@media (min-width: 900px) {
  .enquiry-path-track { display: block; }
}
.enquiry-path-pulse {
  position: absolute;
  top: -4px;
  left: 8%;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--forest);
  opacity: 0;
  box-shadow: 0 0 0 0 rgba(26, 92, 69, 0.4);
}
.enquiry-path-pulse.is-run {
  opacity: 1;
  animation: enquiry-travel 7.2s ease-in-out infinite;
}
@keyframes enquiry-travel {
  0% { left: 8%; box-shadow: 0 0 0 0 rgba(26, 92, 69, 0.45); }
  22% { left: 32%; }
  48% { left: 56%; }
  74% { left: 82%; box-shadow: 0 0 0 12px rgba(26, 92, 69, 0); }
  100% { left: 82%; opacity: 0; }
}
.enquiry-path-steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.75rem;
  align-items: stretch;
}
.enquiry-step {
  text-align: left;
  padding: 1rem 0.9rem;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: var(--white);
  opacity: 0.45;
  transform: translateY(6px);
  transition: opacity 0.4s ease, transform 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
  display: flex;
  flex-direction: column;
  min-height: 100%;
}
.enquiry-step p {
  margin: 0;
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.45;
}
.enquiry-step.is-on {
  opacity: 1;
  transform: none;
  border-color: rgba(26, 92, 69, 0.45);
  box-shadow: 0 8px 18px rgba(26, 92, 69, 0.08);
}
.enquiry-step-num {
  display: grid;
  place-items: center;
  width: 1.85rem;
  height: 1.85rem;
  margin: 0 0 0.55rem;
  border-radius: 50%;
  background: var(--ink);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 700;
  font-family: "Figtree", system-ui, sans-serif;
}
.enquiry-step.is-on .enquiry-step-num { background: var(--forest); }
.enquiry-step h3 {
  margin: 0 0 0.3rem;
  font-size: 1.05rem;
  line-height: 1.2;
}
.enquiry-step p {
  margin: 0;
  font-size: 0.84rem;
  color: var(--muted);
  line-height: 1.45;
}
@media (max-width: 900px) {
  .enquiry-path-steps { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 520px) {
  .enquiry-path-steps { grid-template-columns: 1fr; }
  .enquiry-step {
    display: grid;
    grid-template-columns: auto 1fr;
    grid-template-rows: auto auto;
    column-gap: 0.75rem;
    align-items: start;
    opacity: 1;
    transform: none;
  }
  .enquiry-step-num {
    grid-row: 1 / span 2;
    margin: 0.15rem 0 0;
  }
  .enquiry-step h3 { margin-top: 0; }
}
@media (prefers-reduced-motion: reduce) {
  .enquiry-path-pulse { display: none !important; }
  .enquiry-step {
    opacity: 1;
    transform: none;
  }
}

.path-steps {
  list-style: none;
  margin: 1.75rem 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.75rem;
  counter-reset: path;
}
.path-steps li {
  counter-increment: path;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 1.05rem 1.1rem 1.15rem;
  display: flex;
  flex-direction: column;
  min-height: 100%;
}
.path-steps li::before {
  content: counter(path);
  display: block;
  font-family: var(--display);
  font-size: 1.35rem;
  color: var(--forest);
  margin-bottom: 0.35rem;
  line-height: 1;
}
.path-steps strong {
  display: block;
  font-family: var(--font);
  font-size: 0.98rem;
  margin-bottom: 0.35rem;
  color: var(--ink);
}
.path-steps span {
  display: block;
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.45;
  margin-top: auto;
}
.path-close {
  margin: 1.35rem 0 0;
  max-width: 38rem;
  font-size: 1.05rem;
}
@media (max-width: 1100px) {
  .path-steps { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
@media (max-width: 900px) {
  .path-steps { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 560px) {
  .path-steps { grid-template-columns: 1fr; }
}

/* Studio roles, quality, pay, proof */
.studio-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.85rem;
  margin-top: 1.5rem;
  align-items: stretch;
}
.studio-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 1.1rem 1.15rem;
  display: flex;
  flex-direction: column;
  height: 100%;
  min-width: 0;
}
.studio-card h3 {
  font-family: var(--font);
  font-size: 1.02rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 0 0 0.35rem;
}
.studio-card p {
  margin: 0;
  font-size: 0.92rem;
  color: var(--muted);
  flex: 1 1 auto;
}
.studio-card .cta-row,
.studio-card > .btn {
  margin-top: auto;
  padding-top: 0.85rem;
}
.studio-card .svc-visual {
  margin: 0 0 0.85rem;
  flex-shrink: 0;
}
.quality-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.85rem;
  margin-top: 2.25rem;
}
.quality-strip article {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 1rem 1.05rem;
}
.quality-strip h3 {
  font-family: var(--font);
  font-size: 0.95rem;
  font-weight: 700;
  margin: 0 0 0.3rem;
}
.quality-strip p {
  margin: 0;
  font-size: 0.88rem;
  color: var(--muted);
}
.pay-methods {
  margin-top: 2.25rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 1.35rem 1.45rem;
}
.pay-methods .pay-marks { margin: 0.85rem 0 0.75rem; }
.pay-methods .pay-marks img {
  height: 56px;
  padding: 0;
}
.pay-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.85rem;
  margin-top: 1.15rem;
}
.pay-row article {
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}
.pay-row h3 {
  font-family: var(--font);
  font-size: 1rem;
  font-weight: 700;
  margin: 0;
}
.pay-row p { margin: 0; font-size: 0.88rem; color: var(--muted); }
.proof-block {
  max-width: 40rem;
}
.proof-block .lead { max-width: none; }
@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .studio-grid, .quality-strip, .pay-row { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .footer-grid, .studio-grid, .quality-strip, .pay-row { grid-template-columns: 1fr; }
}

/* Capability strip + service card mock visuals */
.capability-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.75rem;
  align-items: stretch;
}
.capability-card {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  padding: 0.85rem 0.85rem 1rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
  text-decoration: none;
  color: inherit;
  height: 100%;
  min-width: 0;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}
.capability-card:hover {
  border-color: #b7cfc3;
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}
.capability-card strong {
  font-size: 1rem;
  color: var(--ink);
  margin-top: 0.35rem;
}
.capability-card > span {
  font-size: 0.86rem;
  color: var(--muted);
  line-height: 1.4;
  margin-top: auto;
}
.capability-visual {
  height: 7rem;
  border-radius: 10px;
  background: linear-gradient(160deg, var(--mist) 0%, #eef2f0 100%);
  border: 1px solid #d5e3db;
  display: grid;
  place-items: center;
  overflow: hidden;
  padding: 0.65rem;
  flex-shrink: 0;
}
.capability-note {
  margin: 1.15rem 0 0;
  font-size: 0.92rem;
  color: var(--muted);
  max-width: 40rem;
}
.svc-visual {
  height: 5.25rem;
  margin: 0 0 0.85rem;
  border-radius: 10px;
  background: linear-gradient(160deg, var(--mist) 0%, #eef2f0 100%);
  border: 1px solid #d5e3db;
  display: grid;
  place-items: center;
  overflow: hidden;
  padding: 0.5rem;
}

/* Mock: browser */
.mock-browser {
  width: 100%;
  max-width: 11rem;
  background: #fff;
  border-radius: 8px;
  border: 1px solid #cfd8d3;
  padding: 0.4rem 0.45rem 0.55rem;
  box-shadow: 0 6px 16px rgba(18, 20, 26, 0.08);
}
.mock-browser-bar {
  display: flex;
  gap: 0.22rem;
  margin-bottom: 0.4rem;
}
.mock-browser-bar i {
  width: 0.38rem;
  height: 0.38rem;
  border-radius: 50%;
  background: #d0d7e0;
}
.mock-browser-bar i:nth-child(1) { background: #f0a8a8; }
.mock-browser-bar i:nth-child(2) { background: #f0d48a; }
.mock-browser-bar i:nth-child(3) { background: #9fd4bd; }
.mock-browser-title {
  display: block;
  height: 0.45rem;
  width: 70%;
  border-radius: 3px;
  background: #2a2f3a;
  margin-bottom: 0.45rem;
}
.mock-browser-cta {
  display: block;
  height: 1.05rem;
  width: 48%;
  border-radius: 5px;
  background: var(--forest);
}

/* Mock: brand */
.mock-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.55rem;
}
.mock-brand-mark {
  width: 2.6rem;
  height: 2.6rem;
  border-radius: 10px;
  background: var(--forest);
  color: #fff;
  font-weight: 700;
  font-size: 0.85rem;
  display: grid;
  place-items: center;
  letter-spacing: 0.02em;
}
.mock-brand-chips {
  display: flex;
  gap: 0.35rem;
}
.mock-brand-chips i {
  width: 0.85rem;
  height: 0.85rem;
  border-radius: 50%;
  background: #1a5c45;
}
.mock-brand-chips i:nth-child(2) { background: #134536; }
.mock-brand-chips i:nth-child(3) { background: #9fd4bd; }

/* Mock: social post grid */
.mock-post {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.35rem;
  width: 100%;
  max-width: 8.5rem;
}
.mock-post span {
  aspect-ratio: 1;
  border-radius: 6px;
  background: #fff;
  border: 1px solid #d5ddd8;
}
.mock-post-a { background: linear-gradient(135deg, #e7f0eb, #c5d9cf) !important; }
.mock-post-b { background: linear-gradient(135deg, #d8e4f5, #b8c9e0) !important; }
.mock-post-c { background: linear-gradient(135deg, #f3e6d8, #e0cbb4) !important; }
.mock-post-d { background: linear-gradient(135deg, #e8dde8, #d0c0d4) !important; }

/* Mock: LinkedIn-style card */
.mock-linkedin {
  width: 100%;
  max-width: 10.5rem;
  background: #fff;
  border-radius: 8px;
  border: 1px solid #cfd8d3;
  padding: 0.55rem 0.6rem;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.5rem;
  align-items: start;
}
.mock-li-avatar {
  width: 1.55rem;
  height: 1.55rem;
  border-radius: 50%;
  background: #0a66c2;
}
.mock-li-lines {
  display: flex;
  flex-direction: column;
  gap: 0.28rem;
  padding-top: 0.15rem;
}
.mock-li-lines i {
  display: block;
  height: 0.32rem;
  border-radius: 2px;
  background: #d0d7e0;
}
.mock-li-lines i:nth-child(1) { width: 88%; background: #2a2f3a; }
.mock-li-lines i:nth-child(2) { width: 100%; }
.mock-li-lines i:nth-child(3) { width: 62%; }

/* Mock: ads dashboard */
.mock-ads {
  display: flex;
  gap: 0.4rem;
  width: 100%;
  max-width: 11rem;
}
.mock-ad-card {
  flex: 1;
  background: #fff;
  border: 1px solid #cfd8d3;
  border-radius: 7px;
  padding: 0.4rem 0.4rem 0.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.28rem;
}
.mock-ad-card em {
  font-style: normal;
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--muted);
}
.mock-ad-card b {
  display: block;
  height: 0.35rem;
  border-radius: 2px;
  background: #d8dde6;
}
.mock-ad-card b:first-of-type { width: 80%; background: var(--forest); }
.mock-ad-meta em { color: #5b7bb5; }
.mock-ad-meta b:first-of-type { background: #3b5bdb; }

/* Mock: phone / orders */
.mock-phone {
  width: 3.4rem;
  height: 5.6rem;
  background: #12141a;
  border-radius: 10px;
  border: 2px solid #2a2f3a;
  padding: 0.45rem 0.35rem 0.4rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  align-items: center;
}
.mock-phone-notch {
  width: 1.1rem;
  height: 0.22rem;
  border-radius: 2px;
  background: #3a4050;
}
.mock-phone-row {
  width: 100%;
  height: 1.6rem;
  border-radius: 4px;
  background: #e7f0eb;
}
.mock-phone-cart {
  width: 70%;
  height: 0.85rem;
  border-radius: 4px;
  background: #ffe08a;
  margin-top: auto;
}

.mock-browser-sm,
.mock-brand-sm,
.mock-post-sm,
.mock-linkedin-sm,
.mock-ads-sm,
.mock-phone-sm {
  transform: scale(0.88);
  transform-origin: center center;
}
.mock-phone-sm {
  height: 4.6rem;
  width: 2.85rem;
}

@media (max-width: 900px) {
  .capability-strip { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .capability-strip { grid-template-columns: 1fr; }
  .capability-visual { height: 6.5rem; }
}

