@font-face {
  font-family: "Bricolage";
  src: url("/assets/fonts/bricolage-grotesque-latin.woff2") format("woff2");
  font-weight: 200 800;
  font-stretch: 75% 100%;
  font-display: swap;
}
@font-face {
  font-family: "Space Mono";
  src: url("/assets/fonts/space-mono-700-latin.woff2") format("woff2");
  font-weight: 700;
  font-display: swap;
}

:root {
  color-scheme: light;
  --ink: #1c1310;
  --cream: #fff6ec;
  --paper: #ffffff;
  --red: #c2331d;
  --red-dark: #9f2816;
  --orange: #ff8a3d;
  --amber: #ffc247;
  --dusk: #2b1727;
  --muted: #5b4a44;
  --soft: #e9d9cc;

  --bw: 3px;
  --r: 14px;
  --r-lg: 20px;
  --lift: 6px;

  --font: "Bricolage", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --mono: "Space Mono", ui-monospace, Consolas, monospace;
  --wrap: 1160px;
  --gutter: clamp(1.1rem, 4vw, 2.5rem);
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-padding-top: 6rem; }
body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--font);
  font-size: 1.0625rem;
  line-height: 1.6;
}
img, svg { display: block; max-width: 100%; height: auto; }
h1, h2, h3, p, ul, ol, figure, dl, dd { margin: 0; }
a { color: inherit; text-decoration-thickness: 2px; text-underline-offset: .18em; }
a:hover { text-decoration-color: var(--orange); }
:focus-visible { outline: 3px solid var(--ink); outline-offset: 3px; border-radius: 4px; }

.skip {
  position: absolute; left: 1rem; top: -4rem; z-index: 100;
  background: var(--ink); color: var(--cream);
  padding: .6rem 1rem; border-radius: 8px; font-weight: 700;
}
.skip:focus { top: 1rem; }
.wrap { width: min(100% - 2 * var(--gutter), var(--wrap)); margin-inline: auto; }
.narrow { max-width: 48rem; }

/* Header ------------------------------------------------------------------ */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: var(--cream);
  border-bottom: var(--bw) solid var(--ink);
}
.head-row { display: flex; align-items: center; gap: 1.25rem; min-height: 4.6rem; }
.logo { display: inline-flex; align-items: center; gap: .7rem; text-decoration: none; flex: none; }
.logo img {
  width: 44px; height: 44px;
  border: var(--bw) solid var(--ink); border-radius: 27%;
  box-shadow: 3px 3px 0 var(--ink);
}
.logo-word { font-weight: 800; font-size: 1.4rem; letter-spacing: -.02em; line-height: 1; }
.logo-word span { color: var(--red); }
.logo-word small {
  display: block; margin-top: .25rem;
  font-family: var(--mono); font-weight: 700; font-size: .6rem;
  letter-spacing: .26em; text-transform: uppercase; color: var(--muted);
}

.nav-desktop { margin-left: auto; }
.nav-desktop ul { display: flex; gap: .15rem; list-style: none; padding: 0; margin: 0; }
.nav-desktop a {
  display: block; padding: .5rem .7rem; border-radius: 8px;
  font-weight: 600; text-decoration: none;
}
.nav-desktop a:hover { background: var(--paper); }
.nav-desktop a[aria-current="page"],
.menu-panel a[aria-current="page"] {
  text-decoration: underline; text-decoration-color: var(--red);
  text-decoration-thickness: 3px; text-underline-offset: .35em;
}
.head-cta { flex: none; }

.menu { display: none; margin-left: auto; position: relative; }
.menu summary {
  list-style: none; cursor: pointer;
  padding: .55rem .95rem; font-weight: 700;
  background: var(--paper); border: var(--bw) solid var(--ink); border-radius: 10px;
  box-shadow: 3px 3px 0 var(--ink);
}
.menu summary::-webkit-details-marker { display: none; }
.menu[open] summary { background: var(--amber); }
.menu-panel {
  position: absolute; right: 0; top: calc(100% + .75rem);
  width: min(84vw, 18rem); padding: .5rem;
  background: var(--paper); border: var(--bw) solid var(--ink); border-radius: var(--r);
  box-shadow: var(--lift) var(--lift) 0 var(--ink);
}
.menu-panel ul { list-style: none; padding: 0; margin: 0; }
.menu-panel a { display: block; padding: .7rem .8rem; border-radius: 8px; font-weight: 600; text-decoration: none; }
.menu-panel a:hover { background: var(--cream); }
.menu-panel .btn { display: flex; margin: .5rem .3rem .3rem; }

@media (max-width: 1079px) {
  .head-row .nav-desktop, .head-row .head-cta { display: none; }
  .head-row .menu { display: block; }
}

/* Buttons ----------------------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  padding: .85rem 1.3rem;
  font: inherit; font-weight: 700; line-height: 1.2; text-decoration: none;
  color: var(--paper); background: var(--red);
  border: var(--bw) solid var(--ink); border-radius: 12px;
  box-shadow: 4px 4px 0 var(--ink);
  transition: transform .15s ease, box-shadow .15s ease, background-color .15s ease;
}
.btn:hover { background: var(--red-dark); transform: translate(2px, 2px); box-shadow: 2px 2px 0 var(--ink); }
.btn:active { transform: translate(4px, 4px); box-shadow: 0 0 0 var(--ink); }
.btn-light { background: var(--paper); color: var(--ink); }
.btn-light:hover { background: var(--amber); }
.btn-sm { padding: .6rem 1rem; font-size: .95rem; }

/* Type -------------------------------------------------------------------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: .55rem; margin-bottom: 1rem;
  font-family: var(--mono); font-weight: 700; font-size: .78rem;
  letter-spacing: .12em; text-transform: uppercase;
}
.eyebrow::before {
  content: ""; flex: none; width: .7rem; height: .7rem;
  background: var(--red); border: 2px solid var(--ink); border-radius: 2px;
}
h1 {
  font-weight: 800; font-size: clamp(2.5rem, 1.5rem + 4.2vw, 4.5rem);
  line-height: 1.02; letter-spacing: -.03em; text-wrap: balance;
}
h2 {
  font-weight: 800; font-size: clamp(2rem, 1.3rem + 2.6vw, 3.1rem);
  line-height: 1.06; letter-spacing: -.025em; text-wrap: balance;
}
h3, .h3-size { font-weight: 800; font-size: 1.35rem; line-height: 1.2; letter-spacing: -.01em; }
.hl {
  background: linear-gradient(transparent 60%, var(--amber) 60%, var(--amber) 92%, transparent 92%);
  padding-inline: .06em;
  -webkit-box-decoration-break: clone; box-decoration-break: clone;
}
.lead { margin-top: 1.25rem; max-width: 40rem; font-size: clamp(1.12rem, 1rem + .5vw, 1.3rem); line-height: 1.55; }
.actions { display: flex; flex-wrap: wrap; gap: .9rem; margin-top: 1.8rem; }

/* Home hero --------------------------------------------------------------- */
.hero { padding-block: clamp(2.5rem, 6vw, 5.5rem) clamp(3rem, 7vw, 6rem); }
.hero-grid { display: grid; grid-template-columns: 1.12fr .88fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.hero-mark { display: grid; justify-items: center; gap: 1.6rem; }
.hero-mark img {
  width: min(100%, 22rem); height: auto; aspect-ratio: 1;
  border: 5px solid var(--ink); border-radius: 27%;
  box-shadow: 14px 14px 0 var(--ink);
}
.hero-mark figcaption {
  font-family: var(--mono); font-weight: 700; font-size: .74rem;
  letter-spacing: .1em; text-transform: uppercase; text-align: center;
}
@media (max-width: 859px) { .hero-grid { grid-template-columns: 1fr; } }

/* Sections ---------------------------------------------------------------- */
.section { padding-block: clamp(3.5rem, 8vw, 6.5rem); }
.section-alt { background: var(--paper); border-block: var(--bw) solid var(--ink); }
.section-head { max-width: 46rem; margin-bottom: clamp(2rem, 4vw, 3rem); }
.section-head p:not(.eyebrow) { margin-top: 1rem; font-size: 1.15rem; color: var(--muted); }

.cards { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 1.4rem; }
.card {
  position: relative; display: flex; flex-direction: column; overflow: hidden;
  background: var(--paper); border: var(--bw) solid var(--ink); border-radius: var(--r);
  box-shadow: var(--lift) var(--lift) 0 var(--ink);
  transition: transform .15s ease, box-shadow .15s ease;
}
.card:hover { transform: translate(-2px, -2px); box-shadow: calc(var(--lift) + 2px) calc(var(--lift) + 2px) 0 var(--ink); }
.card:has(.card-link:focus-visible) { outline: 3px solid var(--ink); outline-offset: 4px; }
.card-top { height: .9rem; background: var(--c, var(--amber)); border-bottom: var(--bw) solid var(--ink); }
.card-body { display: flex; flex-direction: column; gap: .7rem; flex: 1; padding: 1.3rem 1.3rem 1.4rem; }
.card-num { font-family: var(--mono); font-weight: 700; font-size: .78rem; letter-spacing: .1em; }
.card p { color: var(--muted); }
.card-link { margin-top: auto; font-weight: 700; text-decoration: none; }
.card-link span { color: var(--red); }
.card-link::after { content: ""; position: absolute; inset: 0; }
.card-link:focus-visible { outline: none; }
@media (max-width: 1079px) { .cards { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 599px) { .cards { grid-template-columns: 1fr; } }

.steps { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1.4rem; list-style: none; padding: 0; }
.step { background: var(--cream); border: var(--bw) solid var(--ink); border-radius: var(--r); padding: 1.5rem; }
.step-num {
  display: grid; place-items: center; width: 2.8rem; height: 2.8rem; margin-bottom: 1rem;
  background: var(--amber); border: var(--bw) solid var(--ink); border-radius: 50%;
  box-shadow: 3px 3px 0 var(--ink);
  font-family: var(--mono); font-weight: 700;
}
.step:nth-child(2) .step-num { background: var(--orange); }
.step:nth-child(3) .step-num { background: var(--red); color: var(--paper); }
.step p { margin-top: .5rem; color: var(--muted); }
@media (max-width: 859px) { .steps { grid-template-columns: 1fr; } }

.team { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1.6rem; }
.person {
  display: grid; grid-template-columns: auto 1fr; gap: 1.1rem 1.2rem; align-items: center; align-content: start;
  padding: 1.6rem;
  background: var(--paper); border: var(--bw) solid var(--ink); border-radius: var(--r);
  box-shadow: var(--lift) var(--lift) 0 var(--ink);
}
.avatar {
  display: grid; place-items: center; width: 4.2rem; height: 4.2rem;
  background: var(--amber); border: var(--bw) solid var(--ink); border-radius: 50%;
  font-weight: 800; font-size: 1.3rem; letter-spacing: -.02em;
}
.person:nth-child(2) .avatar { background: var(--orange); }
.person h3 { margin-bottom: .2rem; }
.role { font-family: var(--mono); font-weight: 700; font-size: .72rem; letter-spacing: .1em; text-transform: uppercase; color: var(--red); }
.person-text { grid-column: 1 / -1; }
.person-text p { color: var(--muted); }
.person-text p + p { margin-top: .8rem; }
@media (max-width: 759px) { .team { grid-template-columns: 1fr; } }

.band-dark { background: var(--dusk); color: var(--cream); border-block: var(--bw) solid var(--ink); }
.band-dark .eyebrow::before { background: var(--orange); border-color: var(--cream); }
.band-dark :focus-visible { outline-color: var(--amber); }
.story { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.name-split { font-weight: 800; font-size: clamp(3rem, 1.8rem + 5vw, 5.6rem); line-height: .95; letter-spacing: -.035em; }
.name-split span { color: var(--orange); }
.name-split img {
  display: block; width: clamp(5rem, 3rem + 5vw, 7.5rem); height: auto; margin-bottom: 1.6rem;
  border: var(--bw) solid var(--cream); border-radius: 27%; box-shadow: 6px 6px 0 var(--orange);
}
.name-split small {
  display: block; margin-top: 1rem;
  font-family: var(--mono); font-size: .8rem; letter-spacing: .14em; text-transform: uppercase; color: var(--amber);
}
.story p:not(.eyebrow, .name-split) { font-size: 1.15rem; }
.story p:not(.eyebrow) + p { margin-top: 1rem; }
@media (max-width: 859px) { .story { grid-template-columns: 1fr; } }

.cta-band { background: linear-gradient(100deg, var(--amber), var(--orange)); border-top: var(--bw) solid var(--ink); }
.cta-inner { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 1.5rem 2rem; padding-block: clamp(2.5rem, 6vw, 4rem); }
.cta-inner h2 { max-width: 36rem; }
.cta-inner p { margin-top: .7rem; max-width: 38rem; font-size: 1.1rem; }

/* Inner pages ------------------------------------------------------------- */
.page-hero { position: relative; overflow: hidden; padding-block: clamp(2.5rem, 6vw, 4.5rem); border-bottom: var(--bw) solid var(--ink); }
.page-hero .wrap { position: relative; z-index: 1; }
.page-hero h1 { max-width: 14em; }
.page-hero .lead { max-width: 44rem; }
@media (min-width: 1180px) {
  .page-hero .wrap { padding-right: 16rem; }
  .page-hero .wrap::after {
    content: ""; position: absolute; right: 0; top: 50%; translate: 0 -50%;
    width: 11rem; height: 11rem;
    background: url("/assets/mark.svg") center / cover no-repeat;
    border: 4px solid var(--ink); border-radius: 27%; box-shadow: 10px 10px 0 var(--ink);
  }
}

.crumbs { margin-bottom: 1.2rem; font-family: var(--mono); font-weight: 700; font-size: .72rem; letter-spacing: .08em; text-transform: uppercase; }
.crumbs ol { display: flex; flex-wrap: wrap; gap: .5rem; list-style: none; padding: 0; margin: 0; }
.crumbs li + li::before { content: "/"; margin-right: .5rem; color: var(--red); }
.crumbs a { text-decoration: none; }
.crumbs a:hover { text-decoration: underline; }

.content { display: grid; grid-template-columns: minmax(0, 1fr) 19rem; gap: clamp(2rem, 5vw, 4.5rem); align-items: start; }
@media (max-width: 959px) { .content { grid-template-columns: 1fr; } }

.prose { max-width: 44rem; }
.prose h2 { margin-top: 3rem; font-size: clamp(1.7rem, 1.2rem + 1.8vw, 2.3rem); }
.prose > h2:first-child { margin-top: 0; }
.prose p { margin-top: 1rem; }
.prose ul { margin-top: 1rem; padding: 0; list-style: none; }
.prose ul li { position: relative; margin-top: .6rem; padding-left: 1.7rem; }
.prose ul li::before {
  content: ""; position: absolute; left: 0; top: .45em;
  width: .72rem; height: .72rem;
  background: var(--orange); border: 2px solid var(--ink); border-radius: 2px;
}
.prose strong { font-weight: 700; }

.process { display: grid; gap: .9rem; margin-top: 1.3rem; padding: 0; list-style: none; counter-reset: p; }
.process li {
  position: relative; counter-increment: p;
  padding: 1rem 1.1rem 1rem 3.9rem;
  background: var(--paper); border: var(--bw) solid var(--ink); border-radius: 12px;
}
.process li::before {
  content: counter(p); position: absolute; left: 1rem; top: 1rem;
  display: grid; place-items: center; width: 2.1rem; height: 2.1rem;
  background: var(--amber); border: 2px solid var(--ink); border-radius: 50%;
  font-family: var(--mono); font-weight: 700; font-size: .85rem;
}
.process strong { display: block; }
.process p { margin-top: .25rem; color: var(--muted); }

.aside {
  position: sticky; top: 6.5rem; overflow: hidden;
  background: var(--paper); border: var(--bw) solid var(--ink); border-radius: var(--r);
  box-shadow: var(--lift) var(--lift) 0 var(--ink);
}
.panel-top {
  padding: .7rem 1.1rem;
  background: var(--amber); border-bottom: var(--bw) solid var(--ink);
  font-family: var(--mono); font-weight: 700; font-size: .72rem; letter-spacing: .1em; text-transform: uppercase;
}
.aside-body { padding: 1.2rem 1.1rem 1.3rem; }
.aside-body h2 { font-size: 1.45rem; }
.aside-body p { margin: .6rem 0 1.1rem; color: var(--muted); }
.aside-body .btn { width: 100%; }
.aside-links { margin: 1.2rem 0 0; padding: .9rem 0 0; list-style: none; border-top: 2px solid var(--ink); }
.aside-links a { display: block; padding: .3rem 0; font-weight: 600; }
@media (max-width: 959px) { .aside { position: static; } }

.faq-list { display: grid; gap: .9rem; }
.faq-item { background: var(--paper); border: var(--bw) solid var(--ink); border-radius: 12px; box-shadow: 4px 4px 0 var(--ink); }
.faq-item summary {
  position: relative; cursor: pointer; list-style: none;
  padding: 1rem 3.4rem 1rem 1.2rem; font-weight: 700; font-size: 1.1rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+"; position: absolute; right: 1rem; top: 50%; translate: 0 -50%;
  display: grid; place-items: center; width: 1.8rem; height: 1.8rem;
  background: var(--amber); border: 2px solid var(--ink); border-radius: 50%;
  font-family: var(--mono); font-weight: 700; line-height: 1;
}
.faq-item[open] summary::after { content: "\2212"; background: var(--orange); }
.faq-item p { padding: 0 1.2rem 1.2rem; color: var(--muted); }

.values { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1.6rem; }
.value { padding-top: 1rem; border-top: var(--bw) solid var(--ink); }
.value p { margin-top: .5rem; color: var(--muted); }
@media (max-width: 859px) { .values { grid-template-columns: 1fr; } }

.contact-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(2rem, 5vw, 3.5rem); align-items: start; }
.email-card {
  overflow: hidden;
  background: var(--paper); border: var(--bw) solid var(--ink); border-radius: var(--r-lg);
  box-shadow: 10px 10px 0 var(--ink);
}
.email-card .card-inner { padding: 1.4rem 1.4rem 1.6rem; }
.email-big {
  display: block; margin: .3rem 0 1.3rem;
  font-weight: 800; font-size: clamp(1.35rem, 1rem + 1.6vw, 2rem); letter-spacing: -.02em;
  overflow-wrap: anywhere;
}
.email-card h2 { font-size: 1.3rem; margin-top: 1.8rem; }
@media (max-width: 859px) { .contact-grid { grid-template-columns: 1fr; } }

/* Footer ------------------------------------------------------------------ */
.site-footer { padding-block: clamp(3rem, 6vw, 4.5rem) 1.5rem; background: var(--dusk); color: var(--cream); }
.site-footer :focus-visible { outline-color: var(--amber); }
.foot-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.3fr; gap: 2rem; }
.site-footer .logo img { border-color: var(--cream); box-shadow: 3px 3px 0 var(--orange); }
.site-footer .logo-word span { color: var(--orange); }
.site-footer .logo-word small { color: var(--soft); }
.foot-brand p { margin-top: 1rem; max-width: 22rem; color: var(--soft); }
.foot-h {
  margin-bottom: .8rem;
  font-family: var(--mono); font-weight: 700; font-size: .72rem; letter-spacing: .12em; text-transform: uppercase;
  color: var(--amber);
}
.site-footer ul { display: grid; gap: .45rem; list-style: none; padding: 0; margin: 0; }
.site-footer p { color: var(--soft); }
.site-footer a { color: var(--cream); text-decoration-color: rgba(255, 246, 236, .35); }
.site-footer a:hover { text-decoration-color: var(--orange); }
.foot-base {
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: .5rem 1rem;
  margin-top: 2.5rem; padding-top: 1.2rem;
  border-top: 2px solid rgba(255, 246, 236, .2);
  font-size: .9rem;
}
@media (max-width: 859px) { .foot-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 499px) { .foot-grid { grid-template-columns: 1fr; } }

/* Core services, add-ons, strip ------------------------------------------ */
.cards-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.cards-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
@media (max-width: 1079px) { .cards.cards-3 { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 599px) { .cards.cards-3 { grid-template-columns: 1fr; } }
@media (max-width: 699px) { .cards.cards-2 { grid-template-columns: 1fr; } }
.card-feature .card-body { gap: .9rem; padding: 1.6rem 1.6rem 1.8rem; }
.card-feature h3 { font-size: clamp(1.6rem, 1.2rem + 1.2vw, 2.1rem); }
.card ul { display: grid; gap: .45rem; margin: 0; padding: 0; list-style: none; }
.card li { position: relative; padding-left: 1.5rem; font-weight: 600; }
.card li::before {
  content: ""; position: absolute; left: 0; top: .5em;
  width: .65rem; height: .65rem;
  background: var(--orange); border: 2px solid var(--ink); border-radius: 2px;
}

.also { margin-top: clamp(2.5rem, 5vw, 3.5rem); }
.also-title {
  margin-bottom: 1rem;
  font-family: var(--mono); font-weight: 700; font-size: .78rem; letter-spacing: .12em; text-transform: uppercase;
}
.also-list { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1rem; margin: 0; padding: 0; list-style: none; }
.also-list a {
  display: flex; flex-direction: column; gap: .2rem; height: 100%;
  padding: 1rem 1.1rem;
  background: var(--cream); border: var(--bw) solid var(--ink); border-radius: 12px;
  box-shadow: 4px 4px 0 var(--ink); text-decoration: none;
  transition: transform .15s ease, box-shadow .15s ease;
}
.also-list a:hover { transform: translate(-2px, -2px); box-shadow: 6px 6px 0 var(--ink); }
.also-list strong { font-weight: 800; }
.also-list span { color: var(--muted); font-size: .95rem; }
.also-more { margin-top: 1.4rem; font-weight: 700; }
@media (max-width: 1079px) { .also-list { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 599px) { .also-list { grid-template-columns: 1fr; } }

.strip {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 1rem 2rem;
  padding: 1.5rem 1.6rem;
  background: var(--dusk); color: var(--cream);
  border: var(--bw) solid var(--ink); border-radius: var(--r);
  box-shadow: var(--lift) var(--lift) 0 var(--ink); text-decoration: none;
  transition: transform .15s ease, box-shadow .15s ease;
}
.strip:hover { transform: translate(-2px, -2px); box-shadow: calc(var(--lift) + 2px) calc(var(--lift) + 2px) 0 var(--ink); }
.strip-text { display: grid; gap: .3rem; max-width: 44rem; }
.strip-text strong { font-size: 1.35rem; font-weight: 800; }
.strip-text span { color: var(--soft); }
.strip-go { font-weight: 700; color: var(--amber); }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { transition: none !important; scroll-behavior: auto !important; }
}
