:root {
  --ink: #17182e;
  --ink-soft: #292b48;
  --paper: #f7f3e9;
  --paper-deep: #ece6d8;
  --white: #fffefd;
  --pink: #e8578a;
  --pink-dark: #a71e58;
  --cyan: #52d6dc;
  --cyan-dark: #006b72;
  --yellow: #ffd447;
  --green: #badb79;
  --line: rgba(23, 24, 46, 0.16);
  --shadow: 0 20px 60px rgba(23, 24, 46, 0.12);
  --font-display: "Arial Black", "Arial Narrow", Arial, sans-serif;
  --font-body: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --radius-sm: 0.75rem;
  --radius: 1.25rem;
  --radius-lg: 2rem;
  --section-space: clamp(4.5rem, 9vw, 8.5rem);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 6rem;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-underline-offset: 0.2em;
}

a:hover {
  color: inherit;
}

img,
svg {
  display: block;
  max-width: 100%;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  text-wrap: balance;
}

:focus-visible {
  outline: 0.2rem solid var(--yellow);
  outline-offset: 0.22rem;
}

.skip-link {
  position: fixed;
  z-index: 9999;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.8rem 1rem;
  transform: translateY(-180%);
  color: var(--white);
  background: var(--ink);
  border-radius: 0.5rem;
  font-weight: 800;
}

.skip-link:focus {
  transform: translateY(0);
}

.service-bar {
  padding: 0.55rem 0;
  color: var(--ink);
  background: var(--yellow);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.service-bar a {
  text-decoration-thickness: 0.08em;
}

.site-header {
  position: sticky;
  z-index: 1000;
  top: 0;
  color: var(--white);
  background: rgba(23, 24, 46, 0.98);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.site-header__inner {
  position: relative;
  display: flex;
  min-height: 5.3rem;
  align-items: center;
  gap: 1.4rem;
}

.brand {
  display: inline-flex;
  min-width: max-content;
  align-items: center;
  gap: 0.75rem;
  color: var(--white);
  text-decoration: none;
}

.brand__logo {
  display: grid;
  width: 11rem;
  min-height: 3rem;
  place-items: center;
  padding: 0.42rem 0.65rem;
  background: var(--white);
  border-radius: 0.65rem;
}

.brand__logo img {
  width: 100%;
  height: auto;
}

.desktop-nav {
  margin-left: auto;
}

.desktop-nav ul {
  gap: clamp(0.7rem, 1.45vw, 1.55rem);
}

.desktop-nav a {
  display: inline-flex;
  min-height: 2.75rem;
  align-items: center;
  padding: 0.4rem 0.15rem;
  border-bottom: 0.16rem solid transparent;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.86rem;
  font-weight: 750;
  text-decoration: none;
}

.desktop-nav a:hover,
.desktop-nav a:focus-visible {
  border-color: var(--yellow);
  color: var(--white);
}

.button {
  display: inline-flex;
  min-height: 3.25rem;
  align-items: center;
  justify-content: center;
  gap: 1.1rem;
  padding: 0.75rem 1.25rem;
  border: 0.125rem solid transparent;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 850;
  line-height: 1.1;
  text-align: center;
  text-decoration: none;
  transition: transform 160ms ease, background-color 160ms ease, color 160ms ease;
}

.button:hover {
  transform: translateY(-0.14rem);
}

.button--primary {
  color: var(--ink);
  background: var(--yellow);
  border-color: var(--yellow);
}

.button--primary:hover {
  color: var(--ink);
  background: #ffe071;
  border-color: #ffe071;
}

.button--secondary {
  color: var(--ink);
  background: transparent;
  border-color: var(--ink);
}

.button--secondary:hover {
  color: var(--white);
  background: var(--ink);
}

.button--light {
  color: var(--ink);
  background: var(--white);
  border-color: var(--white);
}

.button--light:hover {
  color: var(--ink);
  background: var(--yellow);
  border-color: var(--yellow);
}

.mobile-menu {
  margin-left: auto;
}

.mobile-menu summary {
  display: inline-flex;
  min-width: 5.9rem;
  min-height: 2.9rem;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  padding: 0.55rem 0.85rem;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  cursor: pointer;
  font-size: 0.86rem;
  font-weight: 800;
  list-style: none;
}

.mobile-menu summary::-webkit-details-marker {
  display: none;
}

.menu-icon,
.menu-icon::before,
.menu-icon::after {
  display: block;
  width: 1rem;
  height: 0.12rem;
  content: "";
  background: currentColor;
  transition: transform 160ms ease;
}

.menu-icon {
  position: relative;
}

.menu-icon::before {
  position: absolute;
  top: -0.34rem;
}

.menu-icon::after {
  position: absolute;
  top: 0.34rem;
}

.mobile-menu[open] .menu-icon {
  background: transparent;
}

.mobile-menu[open] .menu-icon::before {
  top: 0;
  transform: rotate(45deg);
}

.mobile-menu[open] .menu-icon::after {
  top: 0;
  transform: rotate(-45deg);
}

.mobile-menu nav {
  position: absolute;
  top: 100%;
  right: 0.75rem;
  left: 0.75rem;
  padding: 0.65rem;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 0 0 var(--radius) var(--radius);
  box-shadow: var(--shadow);
}

.mobile-menu nav a {
  display: flex;
  min-height: 3.2rem;
  align-items: center;
  justify-content: space-between;
  padding: 0.65rem 0.85rem;
  border-bottom: 1px solid var(--line);
  font-weight: 750;
  text-decoration: none;
}

.mobile-menu nav li:last-child a {
  margin-top: 0.5rem;
  color: var(--ink);
  background: var(--yellow);
  border: 0;
  border-radius: 0.65rem;
}

.hero {
  position: relative;
  padding: clamp(4.25rem, 9vw, 8rem) 0 clamp(4rem, 8vw, 7rem);
  overflow: hidden;
  background:
    radial-gradient(circle at 1px 1px, rgba(23, 24, 46, 0.14) 1px, transparent 0) 0 0 / 24px 24px,
    var(--paper);
}

.hero::before {
  position: absolute;
  top: -8rem;
  right: -8rem;
  width: 25rem;
  height: 25rem;
  content: "";
  background: var(--cyan);
  border-radius: 50%;
  opacity: 0.16;
}

.eyebrow {
  margin-bottom: 1rem;
  color: var(--pink-dark);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 11ch;
  margin-bottom: 1.5rem;
  font-family: var(--font-display);
  font-size: clamp(3.15rem, 7vw, 6.5rem);
  font-weight: 900;
  letter-spacing: -0.075em;
  line-height: 0.94;
  text-transform: uppercase;
}

.hero h1 span {
  display: block;
  color: var(--pink-dark);
}

.hero__lead {
  max-width: 39rem;
  margin-bottom: 2rem;
  color: var(--ink-soft);
  font-size: clamp(1.08rem, 2vw, 1.32rem);
  line-height: 1.55;
}

.hero__reassurance {
  gap: 0.65rem 1.5rem;
  margin-top: 1.7rem;
  color: var(--ink-soft);
  font-size: 0.82rem;
  font-weight: 750;
}

.hero__reassurance li {
  position: relative;
  padding-left: 1rem;
}

.hero__reassurance li::before {
  position: absolute;
  top: 0.62em;
  left: 0;
  width: 0.42rem;
  height: 0.42rem;
  content: "";
  background: var(--pink-dark);
  border-radius: 50%;
}

.print-stage {
  position: relative;
  width: min(100%, 36rem);
  padding: 0 0 2.6rem 1rem;
  margin-right: auto;
  margin-left: auto;
  isolation: isolate;
}

.print-stage::before {
  position: absolute;
  z-index: -1;
  inset: 1.5rem -0.8rem 1rem 2.3rem;
  content: "";
  background: var(--pink);
  border-radius: 1.65rem;
  transform: rotate(2.5deg);
}

.print-stage__image-wrap {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--ink);
  border: 0.2rem solid var(--ink);
  border-radius: 1.5rem;
  box-shadow: 0 1.4rem 3rem rgba(23, 24, 46, 0.2);
}

.print-stage__image-wrap img {
  display: block;
  width: 100%;
  height: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

.print-stage__image-wrap::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(12, 14, 30, 0.46));
  content: "";
  pointer-events: none;
}

.print-stage__quality-mark {
  position: absolute;
  z-index: 1;
  right: 1rem;
  bottom: 1rem;
  display: flex;
  gap: 0.38rem;
}

.print-stage__quality-mark span {
  padding: 0.38rem 0.55rem;
  color: var(--white);
  background: rgba(10, 12, 28, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 999px;
  font-size: 0.55rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  backdrop-filter: blur(0.4rem);
}

.print-stage figcaption {
  position: relative;
  z-index: 2;
  width: min(86%, 25rem);
  margin: -1.6rem 0 0 auto;
  padding: 1rem 1.2rem;
  color: rgba(255, 255, 255, 0.76);
  background: var(--ink);
  border-left: 0.28rem solid var(--cyan);
  border-radius: 0.35rem 0 0.9rem 0.35rem;
  box-shadow: 0 0.8rem 1.8rem rgba(23, 24, 46, 0.18);
  font-size: 0.72rem;
  line-height: 1.45;
}

.print-stage figcaption strong {
  display: block;
  margin-bottom: 0.18rem;
  color: var(--white);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.brand-process {
  background: var(--white);
  border-bottom: 0.45rem solid var(--yellow);
}

.brand-process ul {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.brand-process li {
  display: flex;
  min-height: 7.6rem;
  align-items: center;
  gap: 0.9rem;
  padding: 0.75rem clamp(0.7rem, 2vw, 1.35rem);
  border-right: 1px solid var(--line);
}

.brand-process li:first-child {
  border-left: 1px solid var(--line);
}

.brand-process img {
  width: 4.25rem;
  height: auto;
  flex: 0 0 auto;
}

.brand-process span {
  display: flex;
  min-width: 0;
  flex-direction: column;
  line-height: 1.2;
}

.brand-process strong {
  font-family: var(--font-display);
  font-size: 0.88rem;
  letter-spacing: -0.025em;
  text-transform: uppercase;
}

.brand-process small {
  margin-top: 0.3rem;
  color: var(--ink-soft);
  font-size: 0.72rem;
}

.section {
  padding: var(--section-space) 0;
}

.section-heading {
  margin-bottom: 2.5rem;
}

.section-heading h2,
.audience-section h2,
.process-section h2,
.area-section h2,
.about-section h2,
.faq-section h2,
.contact-section h2 {
  margin-bottom: 0;
  font-family: var(--font-display);
  font-size: clamp(2.35rem, 5vw, 4.7rem);
  letter-spacing: -0.065em;
  line-height: 0.98;
  text-transform: uppercase;
}

.section-heading__intro {
  color: var(--ink-soft);
  font-size: 1.02rem;
}

.services {
  background: var(--white);
}

.service-card {
  --card-accent: var(--pink);
  --card-pad: clamp(1.5rem, 4vw, 2rem);
  position: relative;
  display: flex;
  min-height: 34rem;
  flex-direction: column;
  padding: 0 var(--card-pad) var(--card-pad);
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.service-card:hover {
  transform: translateY(-0.35rem);
  box-shadow: var(--shadow);
}

.service-card__number {
  position: absolute;
  z-index: 2;
  top: 1rem;
  left: 1rem;
  display: grid;
  min-width: 2.4rem;
  min-height: 2.4rem;
  padding: 0.35rem;
  place-items: center;
  color: var(--ink);
  background: var(--white);
  border: 1px solid rgba(23, 24, 46, 0.16);
  border-radius: 999px;
  box-shadow: 0 0.4rem 1rem rgba(23, 24, 46, 0.16);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.68rem;
  font-weight: 800;
}

.service-card__media {
  position: relative;
  height: 13.2rem;
  flex: 0 0 auto;
  margin: 0 calc(var(--card-pad) * -1) 1.75rem;
  overflow: hidden;
  background: var(--ink);
  border-bottom: 0.28rem solid var(--card-accent);
}

.service-card__media::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 52%, rgba(10, 12, 28, 0.56));
  content: "";
  pointer-events: none;
}

.service-card__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.service-card:hover .service-card__media img {
  transform: scale(1.035);
}

.service-card__media span {
  position: absolute;
  z-index: 1;
  right: 0.85rem;
  bottom: 0.75rem;
  padding: 0.35rem 0.55rem;
  color: var(--white);
  background: rgba(10, 12, 28, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  font-size: 0.55rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  backdrop-filter: blur(0.35rem);
}

.service-card h3 {
  margin-bottom: 0.85rem;
  font-family: var(--font-display);
  font-size: 1.55rem;
  letter-spacing: -0.045em;
  line-height: 1;
  text-transform: uppercase;
}

.service-card p {
  color: var(--ink-soft);
  font-size: 0.95rem;
}

.service-card ul {
  margin: 0 0 1.8rem;
  padding-left: 1.15rem;
  color: var(--ink-soft);
  font-size: 0.85rem;
}

.service-card > a:not(.button) {
  display: inline-flex;
  min-height: 2.75rem;
  align-items: center;
  gap: 0.6rem;
  margin-top: auto;
  font-size: 0.86rem;
  font-weight: 850;
  text-decoration-thickness: 0.1em;
}

.service-card--pink {
  --card-accent: var(--pink);
}

.service-card--cyan {
  --card-accent: var(--cyan);
}

.service-card--yellow {
  --card-accent: var(--yellow);
}

.service-card--navy {
  --card-accent: var(--pink);
  color: var(--white);
  background: var(--ink);
  border-color: var(--ink);
}

.service-card--navy p,
.service-card--navy ul {
  color: rgba(255, 255, 255, 0.78);
}

.service-card--paper {
  --card-accent: var(--green);
  background: var(--paper);
}

.service-card--help {
  justify-content: flex-end;
  padding: var(--card-pad);
  color: var(--white);
  background:
    linear-gradient(180deg, rgba(15, 17, 36, 0.28), rgba(15, 17, 36, 0.96) 68%),
    url("../img/generated/hero-print-fidelity-v2.webp") center / cover no-repeat;
  border-color: var(--ink);
}

.service-card--help::before {
  position: absolute;
  top: 1rem;
  right: 1rem;
  bottom: 1rem;
  left: 1rem;
  content: "";
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: calc(var(--radius) - 0.4rem);
  pointer-events: none;
}

.service-card--help .eyebrow,
.service-card--help p {
  color: var(--white);
}

.audience-section {
  color: var(--white);
  background: var(--ink);
}

.audience-section .eyebrow,
.process-section .eyebrow,
.area-section .eyebrow,
.contact-section .eyebrow {
  color: var(--yellow);
}

.audience-section h2 span {
  color: var(--cyan);
}

.audience-section__intro > p:not(.eyebrow) {
  max-width: 32rem;
  margin: 1.7rem 0;
  color: rgba(255, 255, 255, 0.72);
}

.text-link {
  display: inline-flex;
  min-height: 2.75rem;
  align-items: center;
  gap: 0.65rem;
  font-weight: 850;
  text-decoration-thickness: 0.1em;
}

.audience-list {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.audience-list article {
  display: grid;
  min-height: 8.4rem;
  grid-template-columns: 2.4rem minmax(0, 1fr) 2rem;
  align-items: center;
  gap: 1.2rem;
  padding: 1.45rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.audience-list__index {
  color: var(--yellow);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.7rem;
}

.audience-list h3 {
  margin-bottom: 0.35rem;
  font-family: var(--font-display);
  font-size: 1.45rem;
  letter-spacing: -0.04em;
  text-transform: uppercase;
}

.audience-list p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
}

.audience-list__mark {
  color: var(--pink);
  font-size: 1.4rem;
  text-align: center;
}

.audience-list article:nth-child(2) .audience-list__mark {
  color: var(--cyan);
}

.audience-list article:nth-child(3) .audience-list__mark {
  color: var(--yellow);
}

.audience-list article:nth-child(4) .audience-list__mark {
  color: var(--green);
}

.work-section {
  background: var(--paper-deep);
}

.work-card {
  height: 100%;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.work-card__art {
  position: relative;
  min-height: 19rem;
  overflow: hidden;
  background: var(--ink);
}

.work-card__art img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.work-card__art--team {
  min-height: 33rem;
}

.work-card__art--team img {
  transform: scale(1.08);
}

.work-card__art--team::after,
.work-card__art--banner::after,
.work-card__art--workwear::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, transparent 58%, rgba(23, 24, 46, 0.58));
  pointer-events: none;
}

.work-card__stamp,
.work-card__art--banner span,
.work-card__art--workwear span {
  position: absolute;
  z-index: 2;
  right: 1.25rem;
  bottom: 1.25rem;
  display: grid;
  width: 6.5rem;
  height: 6.5rem;
  place-items: center;
  color: var(--ink);
  background: var(--yellow);
  border: 0.18rem solid var(--ink);
  border-radius: 50%;
  box-shadow: 0.3rem 0.3rem 0 var(--pink);
  font-family: var(--font-display);
  font-size: 0.75rem;
  letter-spacing: -0.035em;
  line-height: 0.94;
  text-align: center;
  transform: rotate(-7deg);
}

.work-card__art--banner img {
  object-position: center;
}

.work-card__art--banner span {
  right: auto;
  left: 1rem;
  width: 5.2rem;
  height: 5.2rem;
  color: var(--white);
  background: var(--pink-dark);
  border-color: var(--white);
  box-shadow: 0.25rem 0.25rem 0 var(--cyan);
}

.work-card__art--workwear img {
  object-position: 50% 62%;
}

.work-card__art--workwear span {
  width: 5.2rem;
  height: 5.2rem;
  background: var(--cyan);
}

.work-card__body {
  padding: 1.6rem;
}

.work-card__type {
  margin-bottom: 0.7rem;
  color: var(--pink-dark);
  font-size: 0.7rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.work-card h3 {
  margin-bottom: 0.75rem;
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  letter-spacing: -0.045em;
  line-height: 1;
  text-transform: uppercase;
}

.work-card__body > p:last-child {
  margin-bottom: 0;
  color: var(--ink-soft);
}

.work-card--compact .work-card__art {
  min-height: 14rem;
}

.work-card--compact h3 {
  font-size: 1.4rem;
}

.process-section {
  color: var(--white);
  background: var(--pink-dark);
}

.process-section h2 {
  max-width: 8ch;
}

.process-section .col-lg-4 > p:last-child {
  max-width: 26rem;
  margin-top: 1.5rem;
  color: rgba(255, 255, 255, 0.75);
}

.process-list {
  counter-reset: process;
}

.process-list li {
  display: grid;
  grid-template-columns: 4rem minmax(0, 1fr);
  gap: 1.2rem;
  padding: 1.5rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.28);
}

.process-list li:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.28);
}

.process-list li > span {
  display: grid;
  width: 3rem;
  height: 3rem;
  place-items: center;
  color: var(--ink);
  background: var(--yellow);
  border-radius: 50%;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.68rem;
  font-weight: 800;
}

.process-list h3 {
  margin-bottom: 0.35rem;
  font-family: var(--font-display);
  font-size: 1.3rem;
  letter-spacing: -0.035em;
  text-transform: uppercase;
}

.process-list p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.74);
}

.area-section {
  background: var(--paper);
}

.area-panel {
  display: grid;
  min-height: 38rem;
  grid-template-columns: 1.15fr 0.85fr;
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
  border-radius: var(--radius-lg);
}

.area-panel__map {
  position: relative;
  min-height: 31rem;
  overflow: hidden;
  background: #e9edf0 url("../img/areas/bristol-bath-somerset-os-map.webp") center / 100% 100% no-repeat;
  isolation: isolate;
}

.area-panel__map::after {
  position: absolute;
  z-index: 1;
  inset: 0;
  background:
    radial-gradient(circle at 57% 79%, rgba(0, 170, 225, 0.12), transparent 22%),
    linear-gradient(90deg, rgba(247, 245, 238, 0.08), transparent 28% 72%, rgba(247, 245, 238, 0.06));
  content: "";
  pointer-events: none;
}

.map-place {
  position: absolute;
  z-index: 3;
  width: 0;
  height: 0;
}

.map-place__dot {
  position: absolute;
  width: 0.85rem;
  height: 0.85rem;
  background: var(--pink);
  border: 0.18rem solid var(--white);
  border-radius: 50%;
  box-shadow: 0 0 0 0.32rem rgba(232, 0, 126, 0.18);
  transform: translate(-50%, -50%);
}

.map-place__label {
  position: absolute;
  display: block;
  min-width: max-content;
  padding: 0.45rem 0.68rem;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.96);
  border: 0.12rem solid var(--ink);
  border-radius: 999px;
  box-shadow: 0.2rem 0.2rem 0 var(--ink);
  font-size: 0.72rem;
  font-weight: 850;
  line-height: 1.1;
}

.map-place--bristol {
  top: 37.8%;
  left: 36.4%;
}

.map-place--bristol .map-place__label {
  transform: translate(-50%, -175%);
}

.map-place--bath {
  top: 55.8%;
  left: 73.5%;
}

.map-place--bath .map-place__label {
  transform: translate(0.65rem, -50%);
}

.map-place--msn {
  top: 79.9%;
  left: 54.8%;
}

.map-place--msn .map-place__dot {
  background: var(--cyan-dark);
  box-shadow: 0 0 0 0.38rem rgba(0, 170, 225, 0.2);
}

.map-place--msn .map-place__label {
  background: var(--yellow);
  transform: translate(calc(-100% - 0.75rem), -35%);
}

.map-place--radstock {
  top: 78.6%;
  left: 59.9%;
}

.map-place--radstock .map-place__label {
  transform: translate(0.8rem, 0.7rem);
}

.area-panel__map-credit {
  position: absolute;
  z-index: 4;
  right: 0.65rem;
  bottom: 0.55rem;
  padding: 0.18rem 0.35rem;
  color: #566468;
  background: rgba(255, 255, 255, 0.82);
  border-radius: 0.25rem;
  max-width: calc(100% - 1.3rem);
  font-size: 0.55rem;
  line-height: 1.25;
  text-align: right;
  white-space: nowrap;
  font-weight: 700;
  text-decoration-thickness: 0.08em;
}

.area-panel__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(2rem, 6vw, 4.5rem);
}

.area-panel__content p:not(.eyebrow) {
  margin: 1.5rem 0 2rem;
  color: rgba(255, 255, 255, 0.74);
}

.area-panel__content .button {
  align-self: flex-start;
}

.about-section {
  background: var(--white);
}

.about-section h2 {
  font-size: clamp(1.8rem, 3.2vw, 3.35rem);
}

.about-title__nowrap {
  white-space: nowrap;
}

.about-brand-board {
  position: relative;
  display: flex;
  width: min(100%, 31rem);
  aspect-ratio: 1;
  margin: 0 auto;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 1px 1px, rgba(23, 24, 46, 0.13) 1px, transparent 0) 0 0 / 20px 20px,
    var(--paper);
  border: 0.2rem solid var(--ink);
  border-radius: 50%;
  box-shadow: 0.8rem 0.8rem 0 var(--cyan), -0.65rem -0.65rem 0 var(--pink);
}

.about-brand-board__wordmark {
  width: 66%;
  height: auto;
  padding: 0.7rem;
  background: var(--white);
  border: 0.14rem solid var(--ink);
  border-radius: 0.6rem;
  box-shadow: 0.35rem 0.35rem 0 var(--yellow);
  transform: rotate(-3deg);
}

.about-brand-board__icons {
  display: grid;
  width: 72%;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 1.3rem;
}

.about-brand-board__icons img {
  width: 100%;
  height: auto;
}

.about-brand-board strong {
  position: absolute;
  right: 7%;
  bottom: 10%;
  z-index: 3;
  display: grid;
  width: 6.2rem;
  height: 6.2rem;
  place-items: center;
  color: var(--ink);
  background: var(--yellow);
  border: 0.15rem solid var(--ink);
  border-radius: 50%;
  font-family: var(--font-display);
  font-size: 0.72rem;
  letter-spacing: -0.03em;
  line-height: 0.9;
  text-align: center;
  transform: rotate(-7deg);
}

.about-section__lead {
  margin: 1.6rem 0 1rem;
  color: var(--ink);
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1.5;
}

.about-section .col-lg-5 > p:not(.eyebrow):not(.about-section__lead) {
  color: var(--ink-soft);
}

.faq-section {
  background: var(--paper-deep);
}

.faq-section .col-lg-4 > p:last-child {
  margin-top: 1.5rem;
  color: var(--ink-soft);
}

.faq-list {
  border-top: 1px solid var(--line);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  position: relative;
  display: flex;
  min-height: 5rem;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 3.5rem 1rem 0;
  cursor: pointer;
  font-family: var(--font-display);
  font-size: 1.05rem;
  letter-spacing: -0.025em;
  line-height: 1.25;
  list-style: none;
  text-transform: uppercase;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  position: absolute;
  right: 0.25rem;
  display: grid;
  width: 2.3rem;
  height: 2.3rem;
  content: "+";
  place-items: center;
  background: var(--yellow);
  border-radius: 50%;
  font-family: var(--font-body);
  font-size: 1.5rem;
  font-weight: 600;
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-list details > div {
  max-width: 43rem;
  padding: 0 3.5rem 1.4rem 0;
  color: var(--ink-soft);
}

.faq-list details > div p {
  margin-bottom: 0;
}

.contact-section {
  padding: 0 0 var(--section-space);
  background: var(--paper-deep);
}

.contact-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 3rem;
  padding: clamp(2rem, 7vw, 5rem);
  color: var(--white);
  background:
    radial-gradient(circle at 1px 1px, rgba(255, 255, 255, 0.17) 1px, transparent 0) 0 0 / 20px 20px,
    var(--ink);
  border-radius: var(--radius-lg);
}

.contact-panel h2 {
  max-width: 12ch;
}

.contact-panel > div:first-child > p:last-child {
  max-width: 39rem;
  margin: 1.5rem 0 0;
  color: rgba(255, 255, 255, 0.74);
}

.contact-panel__actions {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.contact-panel__phone {
  display: flex;
  min-height: 3.2rem;
  flex-direction: column;
  justify-content: center;
  color: var(--white);
  text-align: center;
  text-decoration: none;
}

.contact-panel__phone span {
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.7rem;
}

.contact-panel__phone strong {
  font-size: 1.15rem;
}

.site-footer {
  padding: 5rem 0 1.5rem;
  color: var(--white);
  background: #101122;
}

.brand--footer {
  margin-bottom: 1.5rem;
}

.site-footer__summary {
  max-width: 21rem;
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.9rem;
}

.site-footer h2 {
  margin-bottom: 1rem;
  color: var(--yellow);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.site-footer li {
  margin-bottom: 0.45rem;
}

.site-footer li a,
.site-footer li span,
.site-footer address {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.86rem;
  font-style: normal;
  text-decoration-thickness: 0.08em;
}

.site-footer li a:hover,
.site-footer address a:hover {
  color: var(--white);
}

.site-footer__bottom {
  margin-top: 4rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.72rem;
}

.site-footer__bottom a {
  color: var(--white);
  font-weight: 800;
}

@media (max-width: 991.98px) {
  .site-header__inner {
    min-height: 4.7rem;
  }

  .hero {
    padding-top: 4.5rem;
  }

  .hero h1 {
    max-width: 12ch;
  }

  .print-stage {
    margin-top: 1.5rem;
  }

  .brand-process ul {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .brand-process li:nth-child(2) {
    border-right: 1px solid var(--line);
  }

  .brand-process li:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .area-panel {
    grid-template-columns: 1fr;
  }

  .area-panel__map {
    min-height: 25rem;
  }

  .contact-panel {
    grid-template-columns: 1fr;
  }

  .contact-panel__actions {
    align-items: flex-start;
  }

  .contact-panel__phone {
    text-align: left;
  }
}

@media (max-width: 575.98px) {
  :root {
    --radius-lg: 1.25rem;
  }

  .service-bar .container {
    justify-content: center !important;
    text-align: center;
  }

  .service-bar p {
    width: 100%;
  }

  .service-bar__links {
    justify-content: center;
  }

  .service-bar__links a:first-child {
    display: none;
  }

  .brand__logo {
    width: 9.8rem;
    min-height: 2.75rem;
  }

  .hero h1 {
    font-size: clamp(2.85rem, 15vw, 4.5rem);
  }

  .hero__actions .button {
    width: 100%;
  }

  .print-stage {
    padding-left: 0.5rem;
  }

  .print-stage figcaption {
    width: 92%;
    margin-top: -1.25rem;
  }

  .section-heading h2,
  .audience-section h2,
  .process-section h2,
  .area-section h2,
  .faq-section h2,
  .contact-section h2 {
    font-size: clamp(2.15rem, 12vw, 3.4rem);
  }

  .about-section h2 {
    font-size: clamp(1.75rem, 9vw, 2.75rem);
  }

  .service-card {
    min-height: 29rem;
  }

  .audience-list article {
    grid-template-columns: 1.8rem minmax(0, 1fr);
  }

  .audience-list__mark {
    display: none;
  }

  .work-card__art--team {
    min-height: 25rem;
  }

  .process-list li {
    grid-template-columns: 3.2rem minmax(0, 1fr);
  }

  .area-panel__map {
    min-height: 21rem;
  }

  .map-place__label {
    font-size: 0.58rem;
  }

  .map-place--msn .map-place__label {
    transform: translate(calc(-100% - 0.55rem), -25%);
  }

  .map-place--radstock .map-place__label {
    transform: translate(0.55rem, 0.65rem);
  }

  .contact-panel__actions,
  .contact-panel__actions .button {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

@media (forced-colors: active) {
  .brand__logo,
  .service-card__media,
  .print-stage__image-wrap,
  .process-list li > span,
  .faq-list summary::after {
    border: 2px solid CanvasText;
  }

  .button {
    border-color: ButtonText;
  }
}

@media print {
  .service-bar,
  .site-header,
  .hero__actions,
  .brand-process,
  .contact-section,
  .site-footer,
  .print-stage {
    display: none !important;
  }

  body,
  .services,
  .audience-section,
  .work-section,
  .process-section,
  .area-section,
  .about-section,
  .faq-section {
    color: #000;
    background: #fff;
  }

  .section {
    padding: 1.5rem 0;
    break-inside: avoid;
  }

  a {
    color: #000;
  }
}
