/* ==========================================================================
   CogentPro Communications
   One stylesheet. No framework, no build step.

   Sections
   01  Tokens
   02  Reset & base
   03  Typography
   04  Layout primitives
   05  Header & navigation
   06  Footer
   07  Buttons, chips & links
   08  Page furniture
   09  Components
   10  Coverage & media
   11  Forms
   12  Motion
   13  Artwork
   ========================================================================== */


/* 01  Tokens
   -------------------------------------------------------------------------- */

:root {
  /* Paper and ink */
  --paper:        #FBFAF7;   /* page — warm near-white */
  --paper-deep:   #F4F2EC;   /* alternating bands */
  --paper-raised: #FFFFFF;   /* plates and anything sitting on top */
  --card:         #F0EDE7;   /* card fill */
  --ink:          #14120F;
  --ink-soft:     #55524C;
  --ink-faint:    #7C7871;

  /* Four hues. Only indigo is ever allowed to carry text — the other three are
     decorative (bars, dots, badges, gradients, artwork fills). Coral on paper
     is 2.6:1, which is why it never sets a word anywhere on this site. */
  --indigo:       #2E2A6B;
  --indigo-deep:  #211E52;
  --coral:        #E8836A;
  --amber:        #DFA45F;
  --lavender:     #B9AEE8;
  --lavender-ink: #8B7BD8;   /* deep enough to sit under white text */

  /* Aliases, so component rules read by role rather than by hue. */
  --accent:       var(--coral);
  --accent-2:     var(--indigo);

  --rule:         rgba(20, 18, 15, 0.11);
  --rule-soft:    rgba(20, 18, 15, 0.06);

  /* Type */
  --serif: "Playfair Display", "Iowan Old Style", Palatino, Georgia, serif;
  --sans:  "DM Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
           Helvetica, Arial, sans-serif;

  --measure: 68ch;

  /* Rhythm */
  --gutter: clamp(1.25rem, 5vw, 3.5rem);
  --max: 1220px;
  --band: clamp(4.5rem, 10vw, 8rem);
  --radius: 20px;
  --radius-sm: 12px;

  /* Motion — one curve, one duration family. */
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --dur: 820ms;
  --dur-fast: 300ms;
}


/* 02  Reset & base
   -------------------------------------------------------------------------- */

*, *::before, *::after { box-sizing: border-box; }

/* scroll-padding keeps an in-page jump from parking its target underneath the
   sticky header — without it, #impressions lands with its heading hidden and the
   click reads as though nothing happened. */
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: 6.5rem; }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: clamp(1rem, 0.3vw + 0.95rem, 1.0625rem);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; height: auto; display: block; }

/* Browsers give figure and blockquote a 40px inline margin. Left in place it
   knocks pull-quotes out of alignment with everything around them. */
figure, blockquote { margin: 0; }

::selection { background: rgba(46, 42, 107, 0.14); }

:focus-visible {
  outline: 2px solid var(--indigo);
  outline-offset: 3px;
  border-radius: 4px;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--ink);
  color: var(--paper);
  padding: 0.75rem 1.25rem;
  font-size: 0.875rem;
  z-index: 100;
}
.skip-link:focus { left: 0; }

.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}


/* 03  Typography
   -------------------------------------------------------------------------- */

h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -0.015em;
  line-height: 1.08;
  margin: 0;
  text-wrap: balance;
}

h1 { font-size: clamp(2.6rem, 6.4vw, 4.75rem); letter-spacing: -0.025em; }
h2 { font-size: clamp(2rem, 3.9vw, 3.1rem); letter-spacing: -0.02em; }
h3 { font-size: clamp(1.25rem, 1.5vw, 1.4rem); line-height: 1.25; }
h4 { font-size: 1.0625rem; line-height: 1.35; }

p { margin: 0 0 1.1em; max-width: var(--measure); }
p:last-child { margin-bottom: 0; }

.lede {
  font-size: clamp(1.0625rem, 0.7vw + 0.9rem, 1.25rem);
  line-height: 1.55;
  color: var(--ink-soft);
  max-width: 46ch;
}

/* Uppercase label. Indigo by default — it reads as a system marker. */
.eyebrow {
  font-family: var(--sans);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--indigo);
  margin: 0 0 1.25rem;
  display: block;
}

.eyebrow--quiet { color: var(--ink-faint); }

em, .em { font-style: italic; }

/* The emphasised word in a headline: indigo, with a coral-to-lavender bar
   ruled beneath it. */
.hl {
  position: relative;
  font-style: italic;
  color: var(--indigo);
  white-space: nowrap;
}

.hl::after {
  content: "";
  position: absolute;
  left: -0.02em;
  right: -0.2em;
  bottom: 0.035em;
  height: 0.12em;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--coral), var(--lavender));
}

/* One marked phrase per page, always the clause carrying the argument. */
.mark { color: var(--indigo); font-style: italic; }
.band--ink .mark { color: var(--lavender); }


/* 04  Layout primitives
   -------------------------------------------------------------------------- */

.wrap {
  width: 100%;
  max-width: var(--max);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.wrap--narrow { max-width: 880px; }

.band { padding-block: var(--band); }
.band--tight { padding-block: clamp(3rem, 6vw, 5rem); }
.band--deep { background: var(--paper-deep); }
.band--ink { background: var(--ink); color: var(--paper); }

.band--ink h1, .band--ink h2, .band--ink h3 { color: var(--paper-raised); }
.band--ink p { color: rgba(251, 250, 247, 0.74); }
.band--ink .eyebrow { color: var(--lavender); }

.rule { border: 0; border-top: 1px solid var(--rule); margin: 0; }

.split {
  display: grid;
  gap: clamp(2rem, 5vw, 5rem);
  grid-template-columns: 1fr;
  align-items: start;
}
@media (min-width: 62rem) {
  .split { grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr); }
  .split--even { grid-template-columns: 1fr 1fr; }
}

/* Soft gradient mesh — coral top left, amber through the middle, lavender
   bottom right, fading out before the section ends so the bands below stay
   clean. */
.mesh { position: relative; isolation: isolate; }

.mesh::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(46% 58% at -2% 10%, rgba(232, 131, 106, 0.46), transparent 72%),
    radial-gradient(42% 52% at 63% 44%, rgba(223, 164,  95, 0.40), transparent 68%),
    radial-gradient(52% 62% at 99% 88%, rgba(185, 174, 232, 0.55), transparent 72%),
    radial-gradient(34% 40% at 92% 2%,  rgba(185, 174, 232, 0.28), transparent 70%);
  mask-image: linear-gradient(to bottom, #000 60%, transparent 100%);
  -webkit-mask-image: linear-gradient(to bottom, #000 60%, transparent 100%);
}


.mesh--soft::before {
  background:
    radial-gradient(40% 60% at 0% 4%,   rgba(232, 131, 106, 0.30), transparent 70%),
    radial-gradient(38% 54% at 78% 32%, rgba(223, 164,  95, 0.24), transparent 68%),
    radial-gradient(44% 62% at 99% 92%, rgba(185, 174, 232, 0.34), transparent 72%);
  mask-image: linear-gradient(to bottom, #000 45%, transparent 100%);
  -webkit-mask-image: linear-gradient(to bottom, #000 45%, transparent 100%);
}


/* 05  Header & navigation
   -------------------------------------------------------------------------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(251, 250, 247, 0.82);
  backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid transparent;
  transform: translateY(0);
  transition: transform 420ms var(--ease), border-color 200ms ease;
  will-change: transform;
}

.site-header[data-scrolled="true"] { border-bottom-color: var(--rule-soft); }
.site-header[data-hidden="true"] { transform: translateY(-100%); }
/* Never slide away while someone is tabbing through the nav. */
.site-header:focus-within { transform: none; }

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  min-height: 4.5rem;
}

.wordmark {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  text-decoration: none;
  color: var(--ink);
  line-height: 1;
}

/* The coral dot that opens the wordmark. */
.wordmark::before {
  content: "";
  width: 0.5rem; height: 0.5rem;
  border-radius: 50%;
  background: var(--coral);
  flex: none;
}

.wordmark__name {
  font-family: var(--serif);
  font-size: 1.4rem;
  letter-spacing: -0.01em;
}

.wordmark__suffix {
  font-size: 0.6875rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ink-faint);
}

@media (max-width: 30rem) { .wordmark__suffix { display: none; } }

.nav { display: none; }
@media (min-width: 58rem) {
  .nav { display: flex; align-items: center; gap: clamp(1.5rem, 2.4vw, 2.4rem); }
}

.nav a {
  font-size: 0.9375rem;
  color: var(--ink-soft);
  text-decoration: none;
  padding-block: 0.35rem;
  position: relative;
  transition: color 160ms ease;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--coral), var(--lavender));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 260ms var(--ease);
}

.nav a:hover { color: var(--ink); }
.nav a:hover::after, .nav a[aria-current="page"]::after { transform: scaleX(1); }
.nav a[aria-current="page"] { color: var(--ink); }

.nav__cta {
  border: 1px solid var(--lavender);
  border-radius: 999px;
  padding: 0.5rem 1.15rem !important;
  color: var(--ink) !important;
  transition: background 200ms var(--ease), border-color 200ms var(--ease);
}
.nav__cta::after { display: none; }
.nav__cta:hover { background: var(--lavender); border-color: var(--lavender); }

.nav-toggle {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 2.5rem; height: 2.5rem;
  padding: 0; background: none; border: 0; cursor: pointer;
  margin-right: -0.5rem;
}
@media (min-width: 58rem) { .nav-toggle { display: none; } }

.nav-toggle span {
  display: block; height: 1.5px; width: 22px;
  background: var(--ink); margin-inline: auto; border-radius: 2px;
  transition: transform 260ms var(--ease), opacity 160ms ease;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.nav-mobile { display: none; border-top: 1px solid var(--rule-soft); background: var(--paper); }
.nav-mobile[data-open="true"] { display: block; }
@media (min-width: 58rem) { .nav-mobile { display: none !important; } }

.nav-mobile ol { list-style: none; margin: 0; padding: 0.5rem 0 1.5rem; }

.nav-mobile a {
  display: block;
  font-family: var(--serif);
  font-size: 1.5rem;
  color: var(--ink);
  text-decoration: none;
  padding: 0.6rem 0;
  border-bottom: 1px solid var(--rule-soft);
}
.nav-mobile li:last-child a { border-bottom: 0; }
.nav-mobile a[aria-current="page"] { color: var(--indigo); }


/* 06  Footer
   -------------------------------------------------------------------------- */

.site-footer {
  background: var(--ink);
  color: rgba(251, 250, 247, 0.7);
  font-size: 0.9375rem;
  padding-block: clamp(3.5rem, 7vw, 5.5rem) 2rem;
}

.site-footer a { color: rgba(251, 250, 247, 0.7); text-decoration: none; }
.site-footer a:hover { color: var(--paper-raised); }

.footer-grid { display: grid; gap: clamp(2.25rem, 5vw, 4rem); grid-template-columns: 1fr; }
@media (min-width: 46rem) { .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; } }

.site-footer .wordmark__name { color: var(--paper-raised); font-size: 1.5rem; }
.site-footer .wordmark__suffix { color: rgba(251, 250, 247, 0.45); }

.footer-heading {
  font-size: 0.6875rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--lavender);
  margin: 0 0 1rem;
}

.footer-list { list-style: none; margin: 0; padding: 0; }
.footer-list li + li { margin-top: 0.6rem; }

.footer-bottom {
  display: flex; flex-wrap: wrap; gap: 1rem 2rem;
  justify-content: space-between; align-items: baseline;
  margin-top: clamp(3rem, 6vw, 4.5rem);
  padding-top: 1.75rem;
  border-top: 1px solid rgba(251, 250, 247, 0.14);
  font-size: 0.8125rem;
  color: rgba(251, 250, 247, 0.45);
}

.cities { font-size: 0.8125rem; letter-spacing: 0.12em; text-transform: uppercase; }


/* 07  Buttons, chips & links
   -------------------------------------------------------------------------- */

.actions { display: flex; flex-wrap: wrap; align-items: center; gap: 0.875rem 1rem; }

.btn {
  display: inline-flex; align-items: center; gap: 0.6rem;
  font-family: var(--sans);
  font-size: 0.9375rem; font-weight: 500;
  text-decoration: none;
  padding: 0.95rem 1.6rem;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background 220ms var(--ease), color 220ms var(--ease),
              border-color 220ms var(--ease), transform 220ms var(--ease);
}

.btn .arrow { transition: transform 260ms var(--ease); }
.btn:hover .arrow { transform: translateX(3px); }
.btn:active { transform: translateY(1px); }

.btn--primary { background: var(--ink); color: var(--paper); }
.btn--primary:hover { background: var(--indigo); }

.btn--ghost { border-color: var(--rule); color: var(--ink); background: transparent; }
.btn--ghost:hover { border-color: var(--ink); background: rgba(20, 18, 15, 0.04); }

.band--ink .btn--primary { background: var(--paper-raised); color: var(--ink); }
.band--ink .btn--primary:hover { background: var(--lavender); }
.band--ink .btn--ghost { border-color: rgba(251, 250, 247, 0.3); color: var(--paper-raised); }
.band--ink .btn--ghost:hover { border-color: var(--paper-raised); background: rgba(251, 250, 247, 0.07); }

/* Status chips */
.chips { display: flex; flex-wrap: wrap; gap: 0.6rem; }

.chip {
  display: inline-flex; align-items: center; gap: 0.55rem;
  padding: 0.5rem 1rem;
  border-radius: 999px;
  background: var(--card);
  font-size: 0.875rem;
  color: var(--ink-soft);
}

.chip::before {
  content: "";
  width: 0.5rem; height: 0.5rem;
  border-radius: 50%;
  background: var(--dot, var(--coral));
  flex: none;
}

.chip--coral    { --dot: var(--coral); }
.chip--lavender { --dot: var(--lavender-ink); }
.chip--amber    { --dot: var(--amber); }
.chip--plain::before { display: none; }

.link {
  font-size: 0.9375rem; font-weight: 500;
  color: var(--ink);
  text-decoration: none;
  display: inline-flex; align-items: center; gap: 0.5rem;
  border-bottom: 1px solid var(--rule);
  padding-bottom: 0.2rem;
  transition: border-color 220ms var(--ease), color 220ms var(--ease), gap 220ms var(--ease);
}
.link:hover { color: var(--indigo); border-bottom-color: var(--indigo); gap: 0.7rem; }
.link .arrow { transition: transform 240ms var(--ease); }
.link:hover .arrow { transform: translateX(2px); }

.band--ink .link { color: var(--paper-raised); border-bottom-color: rgba(251, 250, 247, 0.3); }
.band--ink .link:hover { color: var(--lavender); border-bottom-color: var(--lavender); }

.prose a { color: var(--ink); text-decoration: none; border-bottom: 1px solid var(--indigo); }
.prose a:hover { color: var(--indigo); }


/* 08  Page furniture
   -------------------------------------------------------------------------- */

.hero { padding-block: clamp(3.5rem, 9vw, 7rem) clamp(3rem, 7vw, 5.5rem); }
.hero h1 { max-width: 16ch; }
.hero__body { margin-top: clamp(1.75rem, 3vw, 2.25rem); }
.hero__body .lede { max-width: 44ch; }
.hero__body .actions { margin-top: clamp(1.75rem, 3.5vw, 2.5rem); }
.hero__body .chips { margin-top: clamp(1.5rem, 3vw, 2.25rem); }

.page-head { padding-block: clamp(3rem, 8vw, 6rem) clamp(2.5rem, 5vw, 3.5rem); }
.page-head h1 { max-width: 17ch; }
.page-head .lede { margin-top: clamp(1.5rem, 3vw, 2rem); max-width: 52ch; }

.section-head { display: grid; gap: 1.25rem; margin-bottom: clamp(2.5rem, 5vw, 3.5rem); }
@media (min-width: 62rem) {
  .section-head {
    grid-template-columns: minmax(0, 1fr) minmax(0, 0.9fr);
    gap: clamp(2rem, 5vw, 5rem);
    align-items: end;
  }
}
.section-head p { color: var(--ink-soft); max-width: 46ch; }


/* 09  Components
   -------------------------------------------------------------------------- */

/* --- Credibility ticker --------------------------------------------------- */

.credibility {
  padding-block: clamp(2.25rem, 4.5vw, 3rem);
  border-top: 1px solid var(--rule-soft);
  border-bottom: 1px solid var(--rule-soft);
}

/* The element selector is deliberate: the label is the only child of its
   wrapper, so bare `.credibility__label` loses to `p:last-child` above. */
p.credibility__label {
  font-size: 0.6875rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin: 0 0 2rem;
}

.marquee {
  position: relative;
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent, #000 6%, #000 94%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, #000 6%, #000 94%, transparent);
}

.marquee__track { display: flex; width: max-content; animation: wire 58s linear infinite; }
.marquee:hover .marquee__track,
.marquee:focus-within .marquee__track { animation-play-state: paused; }

.marquee__group { display: flex; align-items: center; flex-shrink: 0; margin: 0; padding: 0; }

/* Uniform rendered height, width follows — the thing that stops a logo strip
   looking hurried. */
.marquee__group li {
  white-space: nowrap;
  padding-inline: clamp(1.1rem, 2.2vw, 2rem);
  list-style: none;
  display: flex; align-items: center;
  gap: clamp(1.1rem, 2.2vw, 2rem);
}

/* These are the publications' own logo files, so they run in their own colours.
   A uniform rendered height with width left to follow is what keeps a strip of
   thirteen different wordmarks from looking like a pile of assets. */
.marquee__group img {
  height: clamp(1.25rem, 1.9vw, 1.6rem);
  width: auto;
  opacity: 0.88;
  transition: opacity var(--dur-fast) var(--ease);
}
.marquee:hover .marquee__group img { opacity: 1; }

@keyframes wire {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* --- Practice cards ------------------------------------------------------- */

.cards { display: grid; gap: clamp(1rem, 1.8vw, 1.5rem); grid-template-columns: 1fr; }
@media (min-width: 44rem) { .cards { grid-template-columns: 1fr 1fr; } }
@media (min-width: 68rem) { .cards--4 { grid-template-columns: repeat(4, 1fr); } }

.card {
  background: var(--card);
  border-radius: var(--radius);
  padding: clamp(1.5rem, 2.6vw, 2rem);
  display: flex;
  flex-direction: column;
}

.card h3 { margin-bottom: 0.6rem; }
.card > p { color: var(--ink-soft); font-size: 0.9375rem; line-height: 1.55; }

/* Rounded letter badge, one per card. */
.badge {
  width: 2.5rem; height: 2.5rem;
  border-radius: var(--radius-sm);
  display: grid; place-items: center;
  font-family: var(--serif);
  font-size: 1.2rem;
  color: #fff;
  margin-bottom: clamp(1.75rem, 3.5vw, 2.75rem);
  flex: none;
}

.badge--ink      { background: var(--ink); }
.badge--lavender { background: var(--lavender-ink); }
.badge--coral    { background: var(--coral); }
.badge--amber    { background: var(--amber); }
.badge--indigo   { background: var(--indigo); }

/* Service list. Set as small tiles rather than a dash-led run: at four cards
   side by side the dashes read as filler, and a tile makes each service a thing
   you can scan for. */
.svc {
  list-style: none;
  margin: 1.25rem 0 0;
  padding: 0;
  font-size: 0.875rem;
  color: var(--ink-soft);
  display: flex; flex-wrap: wrap;
  gap: 0.4rem;
}

.svc li {
  background: var(--paper);
  border-radius: 999px;
  padding: 0.3rem 0.7rem;
  line-height: 1.3;
}

/* Two-column service list on the What we do page. */
.svc-list {
  list-style: none; margin: 0; padding: 0;
  display: grid; grid-template-columns: 1fr;
  column-gap: clamp(2rem, 5vw, 4rem);
  border-top: 1px solid var(--rule-soft);
}
@media (min-width: 46rem) { .svc-list { grid-template-columns: 1fr 1fr; } }

.svc-list li {
  font-size: 0.9375rem;
  padding-block: 0.8rem;
  border-bottom: 1px solid var(--rule-soft);
}

/* --- Practice sections (What we do) --------------------------------------- */

.practice { padding-block: clamp(2.5rem, 5vw, 4rem); border-top: 1px solid var(--rule); }
.practice__head { margin-bottom: clamp(1.5rem, 3vw, 2rem); }
.practice h2 { font-size: clamp(1.75rem, 2.6vw, 2.3rem); margin-bottom: 0.85rem; }
.practice__head p { color: var(--ink-soft); max-width: 54ch; }

.practice__num {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: var(--indigo);
  margin: 0 0 0.85rem;
}

/* --- Sector cards --------------------------------------------------------- */

.sector-cards { display: grid; gap: clamp(1rem, 1.8vw, 1.5rem); grid-template-columns: 1fr; }
@media (min-width: 40rem) { .sector-cards { grid-template-columns: 1fr 1fr; } }
@media (min-width: 68rem) { .sector-cards { grid-template-columns: repeat(4, 1fr); } }
@media (min-width: 68rem) { .sector-cards--two { grid-template-columns: 1fr 1fr; } }
.sector-cards--two p { font-size: 1rem; max-width: 46ch; }

.sector-card {
  display: flex; flex-direction: column; gap: 1rem;
  text-decoration: none; color: inherit;
  background: var(--card);
  border-radius: var(--radius);
  padding: clamp(1.1rem, 2vw, 1.4rem);
  transition: transform var(--dur-fast) var(--ease);
}

.sector-card .art { aspect-ratio: 4 / 3; border-radius: var(--radius-sm); }
.sector-card h3 { font-size: clamp(1.125rem, 1.3vw, 1.25rem); transition: color var(--dur-fast) var(--ease); }
.sector-card p { color: var(--ink-soft); font-size: 0.9375rem; line-height: 1.55; }

.sector-card .link-cue {
  font-size: 0.8125rem; font-weight: 500;
  color: var(--indigo);
  opacity: 0;
  transform: translateY(4px);
  transition: opacity var(--dur-fast) var(--ease), transform var(--dur-fast) var(--ease);
  margin-top: auto;
  padding-top: 0.35rem;
}

a.sector-card:hover, a.sector-card:focus-visible { transform: translateY(-3px); }
.sector-card:hover h3, .sector-card:focus-visible h3 { color: var(--indigo); }
.sector-card:hover .link-cue, .sector-card:focus-visible .link-cue { opacity: 1; transform: none; }

/* Plain rows, for the secondary sectors. */
.sectors { display: grid; grid-template-columns: 1fr; border-top: 1px solid var(--rule); }
@media (min-width: 52rem) {
  .sectors { grid-template-columns: 1fr 1fr; column-gap: clamp(2rem, 5vw, 4.5rem); }
}

.sector { padding-block: clamp(1.5rem, 3vw, 2rem); border-bottom: 1px solid var(--rule); }
.sector h3 { margin-bottom: 0.5rem; }
.sector p { color: var(--ink-soft); font-size: 0.9375rem; line-height: 1.55; max-width: 46ch; }
.sector--compact h3 { font-size: 1.125rem; }

/* --- Reasons -------------------------------------------------------------- */

.reasons { display: grid; gap: clamp(1rem, 1.8vw, 1.5rem); grid-template-columns: 1fr; }
@media (min-width: 48rem) { .reasons { grid-template-columns: 1fr 1fr; } }

.reason {
  background: var(--card);
  border-radius: var(--radius);
  padding: clamp(1.5rem, 2.6vw, 2rem);
}
.reason h3 { font-size: clamp(1.2rem, 1.4vw, 1.375rem); margin-bottom: 0.6rem; }
.reason p { color: var(--ink-soft); font-size: 0.9375rem; line-height: 1.58; max-width: 44ch; }

/* --- Testimonials — both visible, never a carousel ------------------------ */

.quotes { position: relative; display: grid; gap: clamp(1rem, 1.8vw, 1.5rem); grid-template-columns: 1fr; }
@media (min-width: 52rem) { .quotes { grid-template-columns: 1fr 1fr; } }

.quote { position: relative; display: flex; flex-direction: column; gap: 1.5rem; }

.quotes .quote {
  background: var(--paper-raised);
  border-radius: var(--radius);
  padding: clamp(1.75rem, 3vw, 2.25rem);
}

.quote blockquote {
  font-family: var(--serif);
  font-size: clamp(1.1875rem, 1.4vw, 1.4rem);
  line-height: 1.42;
  letter-spacing: -0.01em;
}

.quote figcaption {
  font-size: 0.875rem; line-height: 1.5;
  color: var(--ink-faint);
  padding-top: 1.25rem;
  border-top: 1px solid var(--rule);
  margin-top: auto;
}

.quote figcaption strong {
  display: block; font-weight: 500;
  color: var(--indigo);
  margin-bottom: 0.15rem;
}

/* --- Founder -------------------------------------------------------------- */

.founder { display: grid; gap: clamp(2rem, 5vw, 4rem); grid-template-columns: 1fr; align-items: start; }
@media (min-width: 56rem) { .founder { grid-template-columns: minmax(0, 0.75fr) minmax(0, 1.25fr); } }

/* --- Definition list ------------------------------------------------------ */

.deflist { margin: 0; }

.deflist > div {
  display: grid; gap: 0.35rem clamp(1.5rem, 4vw, 3rem);
  grid-template-columns: 1fr;
  padding-block: 1.3rem;
  border-bottom: 1px solid var(--rule-soft);
}
@media (min-width: 44rem) {
  .deflist > div { grid-template-columns: minmax(0, 0.7fr) minmax(0, 1.3fr); }
}
.deflist > div:first-child { border-top: 1px solid var(--rule-soft); }

.deflist dt { font-size: 0.9375rem; font-weight: 500; color: var(--indigo); }
.deflist dd { margin: 0; color: var(--ink-soft); font-size: 0.9375rem; line-height: 1.58; max-width: 52ch; }

/* --- Facts strip ---------------------------------------------------------
   Four figures instead of four sentences. Every number is one the content
   document supplies — there are no invented metrics on this site. */

.facts {
  display: grid;
  grid-template-columns: 1fr;
  column-gap: clamp(1.5rem, 4vw, 3.5rem);
  border-top: 1px solid var(--rule);
  margin-top: clamp(2.5rem, 5vw, 3.5rem);
}
@media (min-width: 34rem) { .facts { grid-template-columns: 1fr 1fr; } }
@media (min-width: 62rem) { .facts { grid-template-columns: repeat(4, 1fr); } }

.fact { padding-block: clamp(1.35rem, 2.5vw, 1.9rem); border-bottom: 1px solid var(--rule); }

.fact__num {
  display: block;
  font-family: var(--serif);
  font-size: clamp(2.5rem, 4.5vw, 3.4rem);
  line-height: 0.95;
  letter-spacing: -0.03em;
  color: var(--ink);
}

.fact__num span {
  color: var(--indigo);
  font-size: 0.4em;
  letter-spacing: 0.01em;
  vertical-align: 0.85em;
  margin-left: 0.12em;
}

.fact__label {
  display: block;          /* it is a span, so margin and measure need this */
  font-size: 0.8125rem;
  line-height: 1.45;
  color: var(--ink-faint);
  margin-top: 0.7rem;
  max-width: 22ch;
}

/* --- Display statement ---------------------------------------------------- */

.statement {
  font-family: var(--serif);
  font-size: clamp(1.75rem, 2.9vw, 2.4rem);
  line-height: 1.14;
  letter-spacing: -0.02em;
  color: var(--ink);
  max-width: 20ch;
  margin: 0 0 1.4rem;
}

/* --- Callout & contact details -------------------------------------------- */

.callout {
  background: var(--card);
  border-radius: var(--radius);
  padding: clamp(1.75rem, 4vw, 2.5rem);
}
.callout h3 { margin-bottom: 0.85rem; }
.callout p { color: var(--ink-soft); font-size: 0.9375rem; line-height: 1.6; }

.details { font-style: normal; font-size: 1.0625rem; line-height: 1.75; color: var(--ink-soft); }
.details a { color: var(--ink); text-decoration: none; border-bottom: 1px solid var(--rule); }
.details a:hover { border-bottom-color: var(--indigo); color: var(--indigo); }
.details strong { font-weight: 500; color: var(--ink); }


/* 10  Coverage & media
   -------------------------------------------------------------------------- */

.coverage { display: grid; gap: clamp(1rem, 1.8vw, 1.5rem); grid-template-columns: 1fr; }
@media (min-width: 46rem) { .coverage { grid-template-columns: 1fr 1fr; } }

.piece {
  background: var(--paper-raised);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--rule-soft);
  transition: transform var(--dur-fast) var(--ease);
}

.piece:hover { transform: translateY(-3px); }

/* The scan itself. Held at a fixed ratio and top-anchored, so the masthead and
   headline are what shows whatever the crop of the original. */
.piece__scan {
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--card);
  border-bottom: 1px solid var(--rule-soft);
}

/* Contain, not cover. These run from a 1.6:1 near-full-page down to a 2.2:1
   strip, and cropping any of them would cut the headline — which is the only
   part of a clipping that has to be legible. Letterboxing on the card fill
   reads as a scan on a light table. */
.piece__scan img {
  width: 100%; height: 100%;
  object-fit: contain;
  object-position: center;
  padding: clamp(0.5rem, 1.2vw, 0.9rem);
  transition: transform 900ms var(--ease);
}

.piece:hover .piece__scan img { transform: scale(1.02); }

.piece__body {
  padding: clamp(1.25rem, 2.4vw, 1.75rem);
  display: flex; flex-direction: column; gap: 0.7rem;
  flex: 1;
}

.piece__meta {
  display: flex; flex-wrap: wrap; align-items: center; gap: 0.5rem 0.7rem;
  font-size: 0.6875rem;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: var(--ink-faint);
}

.piece__outlet { color: var(--indigo); font-weight: 500; }
.piece__meta .dot { width: 4px; height: 4px; border-radius: 50%; background: var(--coral); }

.piece h3 {
  font-size: clamp(1.1875rem, 1.5vw, 1.4rem);
  line-height: 1.2;
  letter-spacing: -0.015em;
}

.piece__byline { font-size: 0.875rem; color: var(--ink-soft); margin: 0; }

.piece__tag {
  margin-top: auto;
  padding-top: 0.85rem;
  font-size: 0.8125rem;
  color: var(--ink-faint);
}

/* Full-width pieces: the film, and the podcast that would otherwise leave a
   half-empty row under the clippings. */
.piece--film, .piece--wide { grid-column: 1 / -1; }
.piece--film .piece__scan { position: relative; }

.piece--film video {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  background: var(--ink);
}

@media (min-width: 46rem) {
  .piece--film, .piece--wide { display: grid; grid-template-columns: 1.35fr 1fr; }
  .piece--film .piece__scan,
  .piece--wide .piece__scan { border-bottom: 0; border-right: 1px solid var(--rule-soft); height: 100%; }
  .piece--film .piece__body,
  .piece--wide .piece__body { justify-content: center; }
}

/* Screen pieces: a broadcast segment and a podcast episode. Both are frames
   lifted from the recording rather than clippings, so they fill their tile
   instead of sitting on it like a scan on a light table. */
.piece--screen .piece__scan { background: var(--ink); position: relative; }
.piece--screen .piece__scan img { object-fit: cover; padding: 0; }

/* Play mark. Drawn, not an icon font, and small enough to read as a label
   rather than a promise that the tile itself is a player. */
.piece__play {
  position: absolute;
  left: clamp(0.75rem, 1.6vw, 1rem);
  bottom: clamp(0.75rem, 1.6vw, 1rem);
  width: 2.25rem; height: 2.25rem;
  border-radius: 50%;
  background: rgba(251, 250, 247, 0.92);
  display: grid; place-items: center;
  transition: transform var(--dur-fast) var(--ease);
}

.piece__play::before {
  content: "";
  width: 0; height: 0;
  margin-left: 3px;
  border-left: 9px solid var(--ink);
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
}

.piece:hover .piece__play { transform: scale(1.08); }

.piece__cue {
  margin-top: auto;
  padding-top: 0.85rem;
  font-size: 0.8125rem;
  color: var(--indigo);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  align-self: flex-start;
}

/* In a wide tile the body is vertically centred, so the auto margin would drop
   the cue to the floor with a hole above it. */
@media (min-width: 46rem) {
  .piece--wide .piece__cue { margin-top: 0.4rem; padding-top: 0; }
}

.piece__cue:hover, .piece__cue:focus-visible { border-bottom-color: var(--indigo); }
.piece__cue .arrow { display: inline-block; transition: transform var(--dur-fast) var(--ease); }
.piece__cue:hover .arrow { transform: translateX(3px); }


/* --- Leadership ----------------------------------------------------------- */

.leader { display: grid; gap: clamp(2rem, 5vw, 3.5rem); grid-template-columns: 1fr; align-items: center; }
@media (min-width: 56rem) { .leader { grid-template-columns: minmax(0, 0.62fr) minmax(0, 1.38fr); } }

.leader .portrait { aspect-ratio: 4 / 5; border-radius: var(--radius); overflow: hidden; background: var(--card); }
.leader .portrait img { width: 100%; height: 100%; object-fit: cover; display: block; }

.leader__role {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--indigo);
  margin: 0.75rem 0 1.5rem;
}

/* The client roster, set as marks rather than another sentence. */
.roster {
  list-style: none; margin: 2rem 0 0; padding: 0;
  display: flex; flex-wrap: wrap; gap: 0.45rem;
  font-size: 0.8125rem;
  color: var(--ink-soft);
}

/* A hairline chip rather than a filled one: the roster appears on the paper
   ground of the homepage and the deeper ground of About, and a fill that reads
   on one disappears on the other. */
.roster li {
  border: 1px solid var(--rule);
  border-radius: 999px;
  padding: 0.35rem 0.8rem;
}


/* 11  Forms
   -------------------------------------------------------------------------- */

.form { display: grid; gap: 1.5rem; max-width: 34rem; }

.field { display: grid; gap: 0.5rem; }

.field label {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-faint);
}

.field input, .field select, .field textarea {
  font-family: var(--sans);
  font-size: 1rem;
  color: var(--ink);
  background: var(--paper-raised);
  border: 1px solid var(--rule);
  padding: 0.8rem 1rem;
  border-radius: var(--radius-sm);
  transition: border-color 180ms ease, box-shadow 180ms ease;
  width: 100%;
}

.field select {
  appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, var(--ink-faint) 50%),
                    linear-gradient(135deg, var(--ink-faint) 50%, transparent 50%);
  background-position: right 1.1rem center, right 0.8rem center;
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
  padding-right: 2.25rem;
}

.field textarea { resize: vertical; min-height: 7.5rem; line-height: 1.55; }

.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--indigo);
  box-shadow: 0 0 0 3px rgba(46, 42, 107, 0.1);
}

.field input::placeholder, .field textarea::placeholder { color: var(--ink-faint); opacity: 0.7; }

.form__note { font-size: 0.8125rem; line-height: 1.55; color: var(--ink-faint); max-width: 42ch; }


/* 12  Motion
   -------------------------------------------------------------------------- */

[data-reveal] {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity var(--dur) var(--ease), transform var(--dur) var(--ease);
  transition-delay: var(--d, 0ms);
}
[data-reveal].is-visible { opacity: 1; transform: none; }

/* Headlines wipe upward from behind a mask. The end state insets negatively so
   italic overhangs and descenders are never clipped. */
[data-reveal-mask] {
  clip-path: inset(0 0 102% 0);
  transform: translateY(0.14em);
  transition: clip-path 1s var(--ease), transform 1s var(--ease);
  transition-delay: var(--d, 0ms);
}
[data-reveal-mask].is-visible { clip-path: inset(-25% -8% -16% -8%); transform: none; }

[data-reveal-wipe] {
  clip-path: inset(0 0 100% 0);
  transition: clip-path 1.1s var(--ease);
  transition-delay: var(--d, 0ms);
}
[data-reveal-wipe].is-visible { clip-path: inset(0 0 0 0); }

/* A hairline that draws itself. It needs real height, not just a border:
   a zero-area element never satisfies the observer's threshold. */
.rule--draw { position: relative; border-top: 0; height: 1px; }
.rule--draw::after {
  content: "";
  position: absolute; inset: 0;
  background: var(--rule);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 1.1s var(--ease);
}
.rule--draw.is-visible::after { transform: scaleX(1); }

/* Nothing is ever hidden when the script has not run. */
.no-js [data-reveal],
.no-js [data-reveal-mask],
.no-js [data-reveal-wipe] { opacity: 1; transform: none; clip-path: none; }
.no-js .rule--draw::after { transform: scaleX(1); }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition-duration: 0.01ms !important; }
  [data-reveal], [data-reveal-mask], [data-reveal-wipe] { opacity: 1; transform: none; clip-path: none; }
  .rule--draw::after { transform: scaleX(1); }
  .marquee__track { animation: none !important; transform: none !important; }
  .marquee { overflow-x: auto; }
  .marquee__group[aria-hidden="true"] { display: none; }
}


/* 13  Artwork
   -------------------------------------------------------------------------- */

.art {
  position: relative;
  overflow: hidden;
  background: var(--paper-raised);
  border-radius: var(--radius-sm);
}

.art img { width: 100%; height: 100%; object-fit: cover; transition: transform 900ms var(--ease); }

.art--wide { aspect-ratio: 4 / 3; }
.art--tall { aspect-ratio: 4 / 5; border-radius: var(--radius); }

.art__caption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 0.9rem 1rem;
  font-size: 0.6875rem;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: var(--ink-faint);
  background: linear-gradient(to top, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0));
}


/* Print — a site about earned media should print cleanly.
   -------------------------------------------------------------------------- */

@media print {
  .site-header, .nav-mobile, .actions, .site-footer, .mesh::before { display: none; }
  body { background: #fff; color: #000; font-size: 11pt; }
  .band { padding-block: 1.5rem; }
  .card, .reason, .quotes .quote, .piece { background: #fff; border: 1px solid #ccc; }
}
