:root {
  --ink: #0f437b;
  --ink-soft: #2d4758;
  --blue: #4cacfa;
  --blue-deep: #0f437b;
  --blue-sky: #3db8f5;
  --blue-wash: #def3fd;
  --blue-card: #e8f4ff;
  --page: #e0efff;
  --paper: #e0efff;
  --cream: #fafbf3;
  --line: #c5d9ef;
  --shadow: 0 18px 50px rgba(15, 67, 123, 0.08);
  --radius: 22px;
  --serif: "Raleway", sans-serif;
  --sans: "Work Sans", sans-serif;
  --script: "Work Sans", sans-serif;
  --max: 1140px;
  --gutter: 40px;
  --space-section: clamp(52px, 6vw, 80px);
}

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

html {
  scroll-behavior: smooth;
}

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

body {
  margin: 0;
  font-family: var(--sans);
  color: var(--ink);
  background: var(--page);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

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

a {
  color: inherit;
  text-decoration: none;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 3px;
}

button,
input,
textarea {
  font: inherit;
}

.page-shell {
  width: 100%;
  margin: 0;
  background: var(--paper);
}

.wrap {
  width: min(var(--max), 100%);
  margin: 0 auto;
  padding-inline: var(--gutter);
  box-sizing: border-box;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding-block: 22px 8px;
}

.brand {
  display: flex;
  flex-direction: column;
  gap: 3px;
  min-width: 0;
  max-width: 28rem;
  color: var(--ink);
}

.brand:hover {
  color: var(--blue-deep);
}

.brand-name {
  font-family: var(--serif);
  font-weight: 800;
  font-size: 20px;
  letter-spacing: -0.03em;
  line-height: 1.1;
}

.brand-name strong {
  font-weight: 800;
}

.brand-tagline {
  font-size: 13px;
  font-weight: 500;
  line-height: 1.35;
  color: var(--ink-soft);
}

.brand:hover .brand-tagline {
  color: var(--ink-soft);
}

.nav-wrap {
  margin-left: auto;
  flex-shrink: 0;
}

.nav {
  display: flex;
  align-items: center;
  gap: 28px;
  font-family: var(--serif);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.03em;
  color: var(--ink);
}

.nav a {
  position: relative;
  padding: 4px 0;
  line-height: 1.2;
  transition: color 0.2s ease, opacity 0.2s ease;
}

.nav a:hover {
  color: var(--blue-deep);
}

.nav a[aria-current="page"] {
  color: var(--ink);
}

.nav a[aria-current="page"]::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -2px;
  height: 1px;
  background: currentColor;
}

.nav-icons {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-mail,
.nav-linkedin {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  color: var(--ink);
}

.nav-mail:hover,
.nav-linkedin:hover {
  color: var(--blue-deep);
}

.nav-mail::after,
.nav-linkedin::after {
  display: none;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 999px;
  padding: 12px 22px;
  font-weight: 600;
  font-size: 15px;
  line-height: 1.2;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.btn-primary {
  background: var(--blue);
  color: #fff;
}

.btn-primary:hover {
  background: var(--blue-deep);
}

.btn-dark {
  background: var(--ink);
  color: #fff;
}

.btn-dark:hover {
  background: #0e2240;
}

.btn-ghost {
  background: #fff;
  color: var(--ink);
  border-color: #c9d8ea;
}

.btn-ghost:hover {
  border-color: var(--blue);
  color: var(--blue);
}

.menu-toggle {
  display: none;
  margin-left: auto;
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  color: var(--ink);
  font-size: 0;
  line-height: 1;
  flex-shrink: 0;
}

.menu-toggle::before {
  content: "";
  width: 18px;
  height: 2px;
  background: currentColor;
  box-shadow: 0 -6px 0 currentColor, 0 6px 0 currentColor;
}

.hero {
  display: grid;
  grid-template-columns: minmax(220px, 340px) minmax(0, 1fr);
  gap: clamp(36px, 5vw, 64px);
  align-items: center;
  justify-content: start;
  padding-block: clamp(16px, 2.8vw, 36px) clamp(40px, 5vw, 64px);
}

.hero-copy {
  max-width: min(40rem, 100%);
  min-width: 0;
  justify-self: start;
}

.hero-visual {
  width: min(100%, 340px);
  display: block;
  justify-self: start;
}

.hero-logo {
  width: 100%;
  height: auto;
  aspect-ratio: 1;
  object-fit: contain;
  display: block;
}

.kicker {
  margin: 0 0 8px;
  font-size: 12px;
  letter-spacing: 0.16em;
  font-weight: 800;
  color: var(--blue);
  text-transform: uppercase;
}

h1,
h2,
.section-title {
  font-family: var(--serif);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.12;
}

h2,
.section-title {
  margin: 0;
  font-size: clamp(32px, 3.5vw, 42px);
  text-wrap: balance;
}

h3 {
  margin: 0;
  font-weight: 700;
}

h1 {
  margin: 0;
  font-size: clamp(42px, 4.6vw, 64px);
  max-width: none;
}

h1 .accent,
.accent {
  color: var(--blue);
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
  margin-top: 26px;
}

.text-link {
  font-size: 15px;
  font-weight: 500;
  line-height: 1.2;
  color: var(--ink-soft);
  padding-bottom: 3px;
  border-bottom: 1px solid #b7c9dc;
}

.text-link:hover {
  color: var(--ink);
  border-bottom-color: currentColor;
}

.icon-bubble {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--blue-wash);
  color: var(--blue-deep);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  font-size: 15px;
  line-height: 1;
}

.icon-bubble svg {
  width: 16px;
  height: 16px;
  display: block;
}

.note {
  position: absolute;
  font-family: var(--script);
  color: #6a87ab;
  font-size: 22px;
  line-height: 1.05;
  z-index: 3;
  pointer-events: none;
}

.note-tl {
  top: 6%;
  right: 10%;
  left: auto;
  transform: rotate(8deg);
}

.note-br {
  right: 2%;
  bottom: 14%;
  transform: rotate(8deg);
  text-align: right;
}

.card-photo {
  position: absolute;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 16px 40px rgba(22, 48, 86, 0.16);
  overflow: hidden;
}

.card-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.photo-main {
  width: 270px;
  height: 250px;
  left: 18px;
  top: 78px;
  transform: rotate(-8deg);
  z-index: 2;
}

.photo-cam {
  width: 210px;
  height: 200px;
  right: 18px;
  top: 28px;
  transform: rotate(7deg);
  z-index: 3;
}

.photo-edit {
  width: 250px;
  height: 170px;
  right: 8px;
  bottom: 54px;
  transform: rotate(6deg);
  z-index: 1;
}

.overlay-copy {
  position: absolute;
  inset: 0;
  padding: 22px;
  color: #fff;
  display: flex;
  align-items: flex-end;
  background: linear-gradient(180deg, transparent 30%, rgba(10, 30, 60, 0.55));
  font-family: var(--serif);
  font-size: 28px;
  line-height: 1.05;
}

.overlay-copy.dark {
  background: linear-gradient(180deg, transparent, rgba(8, 16, 32, 0.7));
  font-size: 22px;
  font-family: var(--sans);
  font-weight: 800;
  letter-spacing: -0.03em;
}

.play {
  position: absolute;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #fff;
  display: grid;
  place-items: center;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  z-index: 4;
}

.play::after {
  content: "";
  width: 0;
  height: 0;
  border-left: 12px solid var(--ink);
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  margin-left: 3px;
}

.play-main {
  left: 46%;
  top: 46%;
}

.section {
  padding: var(--space-section) 0;
  background: var(--page);
  scroll-margin-top: 24px;
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 48px;
  margin-bottom: 28px;
}

.section-intro {
  margin: 10px 0 0;
  max-width: 46rem;
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.65;
  text-wrap: pretty;
}

.section-intro strong,
.about-copy strong {
  font-weight: 700;
  color: inherit;
}

.section-copy {
  max-width: min(380px, 100%);
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.65;
  margin: 0;
}

.section.alt {
  background: var(--cream);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  align-items: stretch;
}

.service-card {
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 26px 24px 24px;
  background: #fff;
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.service-card:hover {
  border-color: #b7d3ee;
  box-shadow: var(--shadow);
}

.service-card h3 {
  margin: 16px 0 8px;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.3;
}

.service-card p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.55;
  text-wrap: pretty;
}

.services-support {
  margin-top: 36px;
  padding: 28px 32px 26px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 24px;
}

.services-support-title {
  margin: 0 0 22px;
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.3;
  color: var(--ink);
}

.services-extras {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px 28px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.services-extras li {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.3;
  color: var(--ink);
}

.work-head {
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 0;
}

.work-scroller-wrap {
  --arrow-size: 42px;
  --arrow-gap: 14px;
  display: grid;
  grid-template-columns: var(--arrow-size) minmax(0, 1fr) var(--arrow-size);
  column-gap: var(--arrow-gap);
  align-items: start;
  container-type: inline-size;
}

.work-scroller {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  overflow-anchor: none;
  scroll-snap-type: x mandatory;
  scroll-behavior: auto;
  scroll-padding-inline: 0;
  padding: 0;
  scrollbar-width: none;
  min-width: 0;
}

.work-scroller.is-rewinding {
  scroll-snap-type: none;
  scroll-behavior: auto;
}

.work-scroller::-webkit-scrollbar {
  display: none;
}

.work-scroller:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 4px;
  border-radius: 16px;
}

.work-card {
  flex: 0 0 calc((100% - 36px) / 3);
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.work-card h3 {
  margin: 14px 0 6px;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.3;
}

.work-card p,
.muted {
  color: var(--ink-soft);
  margin: 0;
  font-size: 14px;
}

.work-card p {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 3em;
  line-height: 1.5;
  text-wrap: pretty;
}

.work-arrow {
  width: var(--arrow-size);
  height: var(--arrow-size);
  margin-top: calc((((100cqi - var(--arrow-size) * 2 - var(--arrow-gap) * 2 - 36px) / 3) * 10 / 16 - var(--arrow-size)) / 2);
  border: 0;
  border-radius: 50%;
  background: #fff;
  color: var(--ink);
  box-shadow: 0 8px 24px rgba(22, 48, 86, 0.18);
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
  display: grid;
  place-items: center;
  padding: 0;
  flex-shrink: 0;
}

.work-arrow:hover {
  background: var(--ink);
  color: #fff;
}

.work-arrow:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 3px;
}

.thumb {
  position: relative;
}

.thumb .play,
.video-poster .play {
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.video-embed {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  background: #0b1c33;
  aspect-ratio: 16 / 10;
  width: 100%;
}

.video-embed iframe,
.video-poster,
.video-poster img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.video-poster {
  padding: 0;
  cursor: pointer;
  background: #0b1c33;
}

.video-poster img {
  object-fit: cover;
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(240px, 360px) minmax(0, 1fr);
  gap: 56px;
  align-items: start;
}

.about-photo {
  border-radius: 22px;
  width: 100%;
  height: auto;
  aspect-ratio: 1;
  max-height: none;
  object-fit: cover;
  object-position: 50% 18%;
  display: block;
}

.about-copy {
  padding-top: 6px;
  max-width: 38rem;
}

.about-copy p {
  margin: 0 0 16px;
  color: var(--ink);
  font-size: 16px;
  line-height: 1.7;
  text-wrap: pretty;
}

.about-copy p.about-lead {
  color: var(--ink);
  font-size: 17px;
  line-height: 1.7;
  margin-bottom: 16px;
}

.about-copy .about-cta {
  color: var(--ink);
  margin: 10px 0 0;
}

.trusted {
  margin-top: 48px;
  padding: 28px 40px 24px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 24px;
}

.trusted .kicker {
  margin-bottom: 20px;
  text-align: center;
}

.trusted-logos {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  column-gap: 28px;
  row-gap: 16px;
  list-style: none;
  margin: 0;
  padding: 0 8px;
}

.trusted-logos li {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  min-width: 0;
  height: 40px;
}

.trusted-logo {
  display: block;
  width: auto;
  max-width: 140px;
  height: 28px;
  object-fit: contain;
}

.trusted-logo--tr {
  height: 22px;
  max-width: 148px;
}

.trusted-lockup {
  display: flex;
  align-items: center;
  gap: 7px;
  padding-inline: 6px;
}

.trusted-logo--unilever-u {
  height: 32px;
  max-width: 30px;
}

.trusted-logo--unilever-word {
  height: 15px;
  max-width: 110px;
}

.trusted-logo--google {
  height: 26px;
  max-width: 90px;
}

.trusted-logo--meta {
  height: 24px;
  max-width: 118px;
}

.trusted-logo--disney {
  height: 32px;
  max-width: 96px;
}

.trusted-logo--pfizer {
  height: 32px;
  max-width: 108px;
}

.trusted-logo--f1 {
  height: 26px;
  max-width: 108px;
}

.trusted-note {
  margin: 20px 0 0;
  color: var(--ink-soft);
  font-size: 12px;
  line-height: 1.55;
  text-align: center;
  max-width: 52rem;
  margin-inline: auto;
}

.pricing-band {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 36px 44px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px 36px;
  align-items: center;
}

.pricing-band h2 {
  margin: 0;
  font-size: clamp(32px, 3.6vw, 42px);
}

.pricing-band .muted {
  font-size: 15px;
  line-height: 1.6;
}

.testimonials {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 0;
}

.testimonial {
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 28px 28px 24px;
  background: #fff;
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.testimonial q {
  display: block;
  quotes: none;
  font-size: 15px;
  line-height: 1.7;
  color: var(--ink-soft);
  margin: 0 0 24px;
  flex: 1;
  text-wrap: pretty;
}

.person {
  display: flex;
  align-items: center;
  gap: 12px;
}

.person img,
.person-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.person-avatar {
  display: grid;
  place-items: center;
  background: linear-gradient(160deg, var(--blue-sky), var(--blue));
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.person strong {
  display: block;
  font-size: 14px;
  line-height: 1.3;
}

.person .muted {
  display: block;
  margin-top: 3px;
  font-size: 13px;
  line-height: 1.35;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
  gap: 28px 56px;
  align-items: start;
}

.contact-grid h2,
.contact-cta h2 {
  margin: 0 0 12px;
}

.contact-grid > div:first-child .muted,
.contact-cta .muted {
  font-size: 15px;
  line-height: 1.65;
  max-width: 28em;
  text-wrap: pretty;
}

.contact-cta .contact-email {
  color: inherit;
  font-weight: 700;
  text-decoration: none;
}

.contact-cta .contact-email:hover {
  text-decoration: underline;
  text-underline-offset: 2px;
}

.contact-cta {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 44px 48px;
  display: grid;
  grid-template-columns: minmax(240px, 0.85fr) minmax(0, 1.15fr);
  gap: 32px 56px;
  align-items: center;
}

.contact-copy .kicker {
  margin-bottom: 10px;
}

.form {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  align-items: start;
}

.form textarea {
  grid-column: 1 / -1;
  min-height: 128px;
  resize: vertical;
}

.form input,
.form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 12px 14px;
  outline: none;
  background: #fff;
  line-height: 1.4;
}

.form input {
  height: 48px;
}

.form input:focus,
.form textarea:focus {
  border-color: var(--blue);
}

.form .btn {
  grid-column: 1 / -1;
  justify-self: start;
  margin-top: 4px;
}

.form .btn:disabled {
  opacity: 0.6;
  cursor: wait;
}

.form-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}

.contact-page {
  grid-template-columns: 0.9fr 1.4fr;
}

.contact-meta {
  display: grid;
  gap: 16px;
  align-content: start;
  padding-top: 4px;
}

.contact-meta a {
  color: var(--blue);
  font-weight: 700;
}

.contact-meta .muted {
  margin-top: 6px;
  line-height: 1.55;
}

.socials {
  display: flex;
  gap: 10px;
}

.socials a {
  width: 36px;
  height: 36px;
  border: 1px solid var(--line);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-weight: 800;
  line-height: 1;
}

.site-footer {
  background: var(--page);
  border-top: 0;
  padding-block: 22px 28px;
  color: var(--ink);
}

.site-footer.alt {
  background: var(--cream);
}

.site-footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px 32px;
  flex-wrap: wrap;
}

.site-footer-actions {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-left: auto;
  flex-shrink: 0;
  flex-wrap: wrap;
}

.site-footer .nav {
  margin-left: 0;
  flex-shrink: 0;
  flex-wrap: wrap;
}

.back-to-top {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--serif);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.03em;
  color: var(--ink);
  padding: 4px 0;
  white-space: nowrap;
  transition: color 0.2s ease;
}

.back-to-top:hover {
  color: var(--blue-deep);
}

.back-to-top svg {
  flex-shrink: 0;
}

.page-hero {
  padding: clamp(16px, 3vw, 32px) 0 var(--space-section);
}

.page-hero h1 {
  font-size: clamp(40px, 5vw, 60px);
  max-width: 720px;
}

.rich-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: start;
}

.rich-grid p {
  color: var(--ink-soft);
}

.work-page-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.work-page-grid .media img {
  height: 280px;
}

.pricing-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.pricing-cards + .pricing-band {
  margin-top: 32px;
}

.price-card {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 28px 26px 26px;
  background: #fff;
}

.price-card h3 {
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 0 0 10px;
}

.price-card .muted {
  font-size: 14px;
  line-height: 1.6;
}

.form-status {
  display: none;
  grid-column: 1 / -1;
  color: var(--blue-deep);
  font-weight: 700;
  margin: 0;
  line-height: 1.45;
}

.form-status.show {
  display: block;
}

.form-status.error {
  color: #8a2a2a;
}

@media (max-width: 980px) {
  :root {
    --gutter: 20px;
  }

  .wrap {
    padding-inline: var(--gutter);
  }

  .menu-toggle {
    display: grid;
    place-items: center;
  }

  .nav-wrap {
    display: none;
    position: absolute;
    top: calc(100% - 4px);
    left: var(--gutter);
    right: var(--gutter);
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 18px 20px;
    z-index: 10;
    box-shadow: var(--shadow);
    margin-left: 0;
  }

  .nav-wrap.open {
    display: block;
  }

  .nav-wrap .nav {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }

  .site-header {
    position: relative;
    padding-block: 16px 8px;
    gap: 16px;
  }

  .brand {
    max-width: calc(100% - 60px);
  }

  .brand-name {
    font-size: 18px;
  }

  .brand-tagline {
    font-size: 12px;
  }

  .trusted {
    padding: 26px 22px 22px;
  }

  .trusted-logos {
    justify-content: center;
    gap: 18px 28px;
  }

  .trusted-logos li {
    flex: 0 1 auto;
    height: 36px;
  }

  .hero,
  .about-grid,
  .contact-grid,
  .contact-cta,
  .pricing-band,
  .rich-grid,
  .work-page-grid {
    grid-template-columns: 1fr;
  }

  .testimonials,
  .pricing-cards {
    grid-template-columns: 1fr 1fr;
  }

  .services-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
  }

  .hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-block: 12px var(--space-section);
    gap: 16px;
    text-align: center;
  }

  .hero-visual {
    width: min(58vw, 220px);
    max-width: 220px;
    align-self: center;
  }

  .hero-logo {
    width: 100%;
    height: auto;
  }

  .hero-copy,
  .section-copy {
    min-width: 0;
    max-width: 100%;
    width: 100%;
  }

  .hero-copy {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .hero-actions {
    justify-content: center;
  }

  .section-head {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 24px;
  }

  .services-support {
    margin-top: 28px;
    padding: 24px 22px 20px;
  }

  .services-support-title {
    font-size: 18px;
    margin-bottom: 18px;
  }

  .services-extras {
    grid-template-columns: 1fr 1fr;
    gap: 14px 16px;
  }

  .service-card {
    padding: 22px 20px 20px;
  }

  .service-card h3 {
    min-height: 0;
  }

  .work-card {
    flex: 0 0 100%;
  }

  .work-scroller-wrap {
    --arrow-size: 36px;
    --arrow-gap: 8px;
  }

  .work-arrow {
    margin-top: calc(((100cqi - var(--arrow-size) * 2 - var(--arrow-gap) * 2) * 10 / 16 - var(--arrow-size)) / 2);
    font-size: 22px;
  }

  .about-photo {
    max-height: none;
    max-width: 420px;
    justify-self: center;
  }

  .about-copy {
    padding-top: 0;
    max-width: none;
  }

  .about-grid {
    gap: 24px;
  }

  .contact-cta {
    align-items: start;
  }

  .form,
  .contact-meta {
    grid-column: auto;
    grid-row: auto;
  }

  .pricing-band,
  .contact-cta {
    padding: 28px 24px;
    gap: 18px;
  }

  .site-footer-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .site-footer-actions {
    margin-left: 0;
    width: 100%;
    justify-content: space-between;
    gap: 16px;
  }

  .site-footer .nav {
    margin-left: 0;
  }
}

@media (max-width: 640px) {
  .form {
    grid-template-columns: 1fr;
  }

  .form .btn {
    width: 100%;
  }

  .services-grid,
  .testimonials,
  .pricing-cards {
    grid-template-columns: 1fr;
  }

  h1 {
    font-size: clamp(34px, 9vw, 40px);
    max-width: none;
  }

  .service-card h3 {
    min-height: 0;
  }

  .work-card {
    flex: 0 0 100%;
  }

  .hero-visual {
    width: min(64vw, 220px);
    max-width: 220px;
  }

  .note {
    font-size: 18px;
  }
}
