/* ============================================================================
   CSS Custom Properties
   ============================================================================ */ :root {
  --header-h: 77px;
  --marquee-pad-top: 55px;
  --marquee-pad-bottom: 55px;
  --scroll-offset: -7px;
  --grid-gap: 5px;
}
@media (min-width: 900px) {
  :root {
    --header-h-desktop: 80px;
    --marquee-pad-top-desktop: clamp(32px, 8vh, 80px);
    --marquee-pad-bottom-desktop: clamp(28px, 7vh, 84px);
    --scroll-offset: -7px;
  }
}
@media (min-width: 1200px) {
  :root {
    --header-h-desktop: 63px;
    --marquee-pad-top-desktop: clamp(32px, 8vh, 80px);
    --marquee-pad-bottom-desktop: clamp(28px, 7vh, 84px);
    --scroll-offset: -7px;
  }
}
/* ============================================================================
   Global reset + base typography
   ============================================================================ */
*, *::before, *::after {
  box-sizing: border-box;
}
* {
  margin: 0;
  padding: 0;
  outline: none;
  border: none;
}
html {
  font-size: 100%;
}
body {
  font-family: "Inter", ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  font-size: 1rem;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  letter-spacing: -0.02em;
  color: #1F1F1E;
  background-color: #F5F4F2;
}
/* ============================================================================
   Global h1 width control
   ============================================================================ */
/*body:not(#home) h1 {
  max-width: 75%;
}
@media (min-width: 900px) {
  body:not(#home) .intro.container h1 {
    grid-column: 1 / 4;
  }
}*/

@media (min-width: 1200px) {
  body:not(#home) .intro.container h1 {
    max-width: 90%;
  }
}
/* ============================================================================
   Layout primitives
   ============================================================================ */
.container {
  position: relative;
  max-width: 1520px;
  margin: 0 auto;
  padding: 50px 20px 0;
  top: -1px;
}
.container.first {
  padding-top: 40px;
}
/* ============================================================================
   Type helpers
   ============================================================================ */
.eyebrow {
  font-size: 16px;
  color: #1F1F1E !important;
  padding-bottom: 20px;
}
h1 {
  font-size: 55px;
  line-height: 0.98;
  letter-spacing: -0.02em;
  padding-bottom: 30px;
}
h2 {
  font-size: 62px;
  line-height: 0.98;
  letter-spacing: -0.02em;
  padding-bottom: 10px;
}
.callout {
  border-left: 2px solid #6B6258;
  padding-left: clamp(16px, 2vw, 30px);
  margin: 1.25em 0;
  padding-bottom: 0px !important;
  font-size: clamp(1.15rem, 1rem + 0.6vw, 1.6rem);
  line-height: 1.25;
  color: #6B6258;
}
/* ============================================================================
   Buttons
   ============================================================================ */
.btn, .btn:visited, button.btn, button.btn:visited {
  font-family: "Inter", ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  text-align: left;
  text-decoration: none;
  background-color: #3C5A86;
  border-radius: 30px;
  padding: 15px 44px 15px 20px;
  position: relative;
  display: block;
}
.btn:hover, button.btn:hover {
  background-color: #4A6DA3;
}
.btn:active, button.btn:active {
  background-color: #304A70;
}
.btn::after {
  content: '›';
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-58%);
  font-size: 34px;
  line-height: 1;
  color: currentColor;
  pointer-events: none;
}
a.btn.reverse, a.btn.reverse:visited {
  color: #3C5A86;
  background-color: #fff !important;
}
a.btn.reverse:hover, a.btn.reverse:active {
  background-color: #C6D3E1 !important;
}
@media (hover: hover) and (pointer: fine) {
  .btn, .btn:visited {
    transition: background-color .22s ease-in-out;
  }
}
@media (prefers-reduced-motion: reduce) {
  .btn, .btn:visited {
    transition: none;
  }
}
/* ============================================================================
   Site header + navigation
   ============================================================================ */
.site-header, .site-header * {
  box-sizing: border-box;
}
.site-header {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .75rem;
  padding: 20px;
}
.site-logo {
  color: #1F1F1E;
  display: inline-block;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.2;
  text-decoration: none;
}
.site-logo strong {
  color: #3C5A86;
  font-weight: 700;
}
.nav-toggle {
  position: absolute;
  inline-size: 1px;
  block-size: 1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
  clip: rect(0 0 0 0);
}
.nav-toggle-btn {
  position: relative;
  inline-size: 32px;
  block-size: 32px;
  cursor: pointer;
  border-radius: 6px;
  background: linear-gradient(#111 0 0) left 6px top 13px / calc(100% - 12px) 2px no-repeat;
}
.nav-toggle-btn::before, .nav-toggle-btn::after {
  content: "";
  position: absolute;
  left: 6px;
  right: 6px;
  height: 2px;
  background: #111;
  transition: transform .2s ease, top .2s ease, opacity .2s ease;
}
.nav-toggle-btn::before {
  top: 9px;
}
.nav-toggle-btn::after {
  top: 17px;
}
.nav-toggle:checked + .nav-toggle-btn {
  background: none;
}
.nav-toggle:checked + .nav-toggle-btn::before {
  top: 13px;
  transform: rotate(45deg);
}
.nav-toggle:checked + .nav-toggle-btn::after {
  top: 13px;
  transform: rotate(-45deg);
}
.site-nav {
  list-style: none;
  margin: 0;
  padding: 20px 8px 30px;
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: #F5F4F2;
  border-bottom: 1px solid #e5e7eb;
  z-index: 3;
}
.nav-toggle:checked ~ .site-nav {
  display: block;
}
.site-nav li + li {
  margin-top: 4px;
}
.site-nav a {
  font-size: 32px;
  font-weight: 600;
  color: #1F1F1E;
  text-align: center;
  display: block;
  text-decoration: none;
  border-radius: 6px;
}
.site-nav a:hover, .site-nav a:focus-visible {
  background: #fff;
  outline: none;
}
#home .subnav-home, #services .nav-services, #services .subnav-services, #work .nav-work, #work .subnav-work, #about .nav-about, #about .subnav-about, #contact .nav-contact, #contact .subnav-contact {
  text-decoration: underline;
}
/* ============================================================================
   Buckets / Work grid cards
   ============================================================================ */
.buckets {
  display: grid;
  grid-template-columns: 1fr;
  gap: 5px;
  list-style: none;
}
.bucket-card {
  display: block;
  background: #fff;
  border-radius: 15px;
  padding: 5px;
  text-decoration: none;
  color: inherit;
}
h2.bucket-title, h3.bucket-title {
  font-size: 18px;
  font-weight: 600;
  color: #1F1F1E;
  margin: 5px 0 10px;
  padding: 0 10px !important;
}
.bucket-media {
  position: relative;
  width: 100%;
  aspect-ratio: var(--ratio, 4/3);
  border-radius: 10px;
  overflow: hidden;
  background: #d9d9d9;
  border: 1px solid #E9E5DF;
  box-shadow: none;
  box-sizing: border-box;
}
.bucket-media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: var(--pos, 50% 50%);
  transform: scale(1);
  transition: transform .35s ease;
  will-change: transform;
}
.bucket-card:hover .bucket-media img, .bucket-card:focus-visible .bucket-media img {
  transform: scale(1.06);
}
.bucket-media video.work-video {
  position: absolute;
  top: -1px;
  left: -1px;
  width: calc(100% + 2px);
  height: calc(100% + 2px);
  object-fit: cover;
  z-index: 2;
}
.bucket-media img.work-video-fallback {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: var(--pos, 50% 50%);
  z-index: 1;
  display: none;
}
.work-video-manual .bucket-media {
  position: relative;
  cursor: pointer;
}
.video-play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 10;
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translate(-50%, -50%);
  border-radius: 999px;
  border: 0;
  background: rgba(0, 0, 0, .65);
  color: #fff;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  appearance: none;
  pointer-events: auto;
  padding-left: 7px;
  padding-top: 5px;
}
.work-video-manual.is-playing .video-play-button {
  opacity: 0;
}
@media (max-width: 900px) {
  .work-video-autoplay .bucket-media video.work-video {
    display: none;
  }
  .work-video-autoplay .bucket-media img.work-video-fallback {
    display: block;
  }
}
/* ============================================================================
   Shared video background pattern
   ============================================================================ */
.video-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
  pointer-events: none;
}
.video-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(60, 90, 134, 0.8);
}
.overlay-content {
  position: relative;
  z-index: 2;
}
/* ============================================================================
   CTA banner
   ============================================================================ */
#cta-banner {
  color: #fff;
  background-color: #3C5A86;
  margin-top: 50px;
  padding: 55px 20px;
  border-radius: 30px;
  position: relative;
  overflow: hidden;
}
#cta-banner h2 {
  padding-bottom: 30px;
}
#cta-banner p {
  font-size: 24px;
  font-weight: 500;
  color: #C6D3E1;
  padding-bottom: 25px;
}
#cta-banner p strong {
  font-weight: inherit;
  color: #fff;
}
/* ============================================================================
   Footer
   ============================================================================ */
footer {
  padding-bottom: 20px !important;
  margin-top: 80px;
}
footer p {
  font-size: 16px !important;
}
.footer-links {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 0;
  align-items: start;
  padding-bottom: 30px;
}
.footer-links > ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
footer ul {
  list-style: none;
}
footer a {
  color: #1F1F1E;
  text-decoration: none;
}
footer a:hover, footer a:focus-visible {
  text-decoration: underline;
}
.social-links {
  margin-left: 5px;
}
.social-links li {
  display: none;
}
.social-links li:first-child {
  display: list-item;
}
.social-links a {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
}
.social-links a::after {
  content: "";
  display: inline-block;
  width: 10px;
  height: 10px;
  background-image: url("/img/icon-arrow-up-right-bold.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100% 100%;
  flex: 0 0 10px;
}
.social-links a:hover::after, .social-links a:focus-visible::after {
  transform: translate(1px, -1px);
  transition: transform .15s ease;
}
@media (prefers-reduced-motion: reduce) {
  .social-links a:hover::after, .social-links a:focus-visible::after {
    transition: none;
    transform: none;
  }
}
.copyright {
  font-size: 14px;
}
.copyright p {
  padding: 16px 0 5px;
}
.copyright ul {
  display: flex;
  align-items: center;
  gap: 0;
}
.copyright ul li {
  display: inline-flex;
  align-items: center;
}
.copyright ul li + li {
  border-left: 1px solid #D2CEC8;
  margin-left: 12px;
  padding-left: 12px;
}
/* ============================================================================
   Home: marquee hero
   ============================================================================ */
#marquee {
  position: relative;
  overflow: hidden;
  color: #fff;
  background-color: #3C5A86;
  border-radius: 30px;
  padding: 0;
  min-height: calc(100dvh - var(--header-h));
  z-index: 2;
}
#marquee .overlay-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: calc(100dvh - var(--header-h));
  padding: var(--marquee-pad-top) 20px var(--marquee-pad-bottom);
}
#marquee h1 {
  font-size: 62px;
  line-height: 0.98;
  letter-spacing: -0.02em;
  margin: 0;
  padding-bottom: 0;
}
#marquee .overlay-content ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
#marquee .overlay-content li, #marquee li {
  list-style: none;
  font-size: 16px;
  font-weight: 500;
  text-align: right;
  padding: 0 0 .5em;
}
#marquee .overlay-content p, #marquee p {
  font-size: 20px;
  line-height: 1.2;
  text-indent: 3em;
  color: #C6D3E1;
  margin: 0;
  padding: 0;
}
#marquee p strong {
  color: #fff;
  font-weight: 500;
  font-style: normal;
}
#marquee a {
  color: #fff;
  text-decoration: none;
}
#marquee .overlay-content ul a {
  color: #fff;
  text-decoration: none;
  transition: color .18s ease;
}
@media (hover: hover) and (pointer: fine) {
  #marquee .overlay-content ul:hover a {
    color: #C6D3E1;
  }
  #marquee .overlay-content ul a:hover {
    color: #fff;
  }
}
#marquee .overlay-content ul a:focus-visible {
  color: #fff;
  outline: 2px solid currentColor;
  outline-offset: 2px;
}
@media (max-width: 899.98px) {
  #marquee h1 {
    font-size: max(62px, 16vw);
    line-height: .98;
    letter-spacing: -0.02em;
    text-wrap: balance;
    margin: 0;
    padding-bottom: 0;
  }
}
@media (prefers-reduced-motion: reduce) {
  #marquee .overlay-content ul a {
    transition: none;
  }
}
/* ============================================================================
   Home: brands grid
   ============================================================================ */
#brands {
  position: relative;
  z-index: 1;
  transform: translateY(var(--brands-y, -140px));
  opacity: var(--brands-o, 0);
  will-change: transform, opacity;
}
ul.brand-grid {
  display: grid;
  grid-template-columns: repeat(3, calc((100% - (2 * 5px)) / 3));
  gap: 5px;
  list-style: none;
}
.brand-grid li {
  padding: 0;
  margin: 0;
  background-color: #fff;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 55% auto;
  border-radius: 15px;
  aspect-ratio: 1 / 1;
  min-height: 90px;
  text-indent: -999em;
}
.brand-grid li.adobe {
  background-image: url("/img/adobe-logo.svg");
  background-size: 50% auto;
}
.brand-grid li.apple {
  background-image: url("/img/apple-logo.svg");
  background-size: 25% auto;
}
.brand-grid li.autodesk {
  background-image: url("/img/autodesk-logo.png");
  background-size: 80% auto;
}
.brand-grid li.bell {
  background-image: url("/img/bell-helmets-logo.svg");
}
.brand-grid li.camelbak {
  background-image: url("/img/camelbak-logo.png");
}
.brand-grid li.cisco {
  background-image: url("/img/cisco-logo.svg");
  background-size: 50% auto;
}
.brand-grid li.disney {
  background-image: url("/img/disney-logo.png");
}
.brand-grid li.docusign {
  background-image: url("/img/docusign-logo.svg");
  background-size: 75% auto;
}
.brand-grid li.ebay {
  background-image: url("/img/ebay-logo.svg");
  background-size: 50% auto;
}
.brand-grid li.google {
  background-image: url("/img/google-logo.svg");
}
.brand-grid li.hyatt {
  background-image: url("/img/hyatt-logo.svg");
}
.brand-grid li.intuit {
  background-image: url("/img/intuit-logo.svg");
  background-size: 50% auto;
}
.brand-grid li.verisign {
  background-image: url("/img/verisign-logo.svg");
  background-size: 60% auto;
}
@media (prefers-reduced-motion: reduce) {
  #brands {
    transform: none;
    opacity: 1;
  }
}
/* ============================================================================
   Home: section text defaults
   ============================================================================ */
#services-home p, #work-home p, #case-studies p {
  color: #6B6258;
  padding-bottom: 25px;
}
#services-home ul, #work-home ul {
  list-style: none;
}
#services-home li {
  padding-bottom: 5px;
}
#case-studies h2, .case-study-section h2 {
  font-size: 32px;
}
#case-studies h2 strong, .case-study-section h2 strong {
  color: #6B6258;
  font-weight: inherit;
}
/* ============================================================================
   Subpage global
   ============================================================================ */
.subpage p {
  font-size: 18px;
  color: #6B6258;
  padding-bottom: .75em;
}
.subpage .container > p:last-of-type {
  padding-bottom: 0;
}
.subpage .intro {
  padding-bottom: 40px;
}
.intro p {
  font-size: 24px;
  font-weight: 400;
  line-height: 1.2;
  text-indent: 2em;
  padding-bottom: 0;
}
.intro p.eyebrow {
  font-size: 16px !important;
  font-weight: 400;
  color: #1F1F1E;
  text-indent: 0;
  padding-bottom: 20px;
}
.intro p strong {
  color: #1F1F1E;
  font-weight: 500;
}
.pull-quote {
  font-size: 24px;
  color: #C6D3E1;
  background-color: #3C5A86;
  padding: 115px 20px 55px !important;
  border-radius: 30px;
  position: relative;
  overflow: hidden;
}
blockquote p {
  font-size: 32px !important;
  line-height: 1;
  font-weight: 600;
  color: #fff !important;
  padding-bottom: 30px;
}
.pull-quote blockquote::before {
  content: "“";
  position: absolute;
  left: 20px;
  top: .3em;
  font-size: 144px;
  font-weight: 700;
  line-height: 1;
  color: #C6D3E1;
  font-family: "Inter", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}
.subpage #cta-banner {
  margin: 50px auto 0;
}
.work-shot {
  padding-bottom: 5px;
}
.work-shot .bucket-media {
  aspect-ratio: var(--ratio, 4/3);
  overflow: hidden;
  border-radius: var(--radius, 16px);
  border: 1px solid #E9E5DF;
  box-shadow: none;
  box-sizing: border-box;
}
.work-shot img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: var(--pos, 50% 50%);
}
.work-shot-caption {
  margin: 5px 0 10px;
  padding: 0 .5em;
  font-size: 14px;
  line-height: 1.3;
  color: #6B6258;
}
.work-shot-caption:empty {
  display: none;
  margin-top: 0;
}
/* ============================================================================
   Services page
   ============================================================================ */
.services .svc > summary {
  list-style: none;
}
.services .svc > summary::-webkit-details-marker {
  display: none;
}
.services .svc > summary::marker {
  content: "";
}
.services .svc > summary, .services .svc-head {
  position: relative;
  z-index: 5;
}
.services .svc-body {
  position: relative;
  z-index: 1;
}
.services .svc-head {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
}
.services .svc-ico {
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
  border-radius: 8px;
  background-color: #3C5A86;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 60%;
}
.services .svc-title {
  margin: 0;
  padding: 0;
  font-size: 18px;
  line-height: 1.2;
  font-weight: 600;
  min-width: 0;
  flex: 1 1 auto;
  pointer-events: none;
}
.services .svc-toggle {
  margin-left: auto;
  display: grid;
  place-items: center;
  justify-self: end;
  padding: 0;
}
.services .svc-toggle::before {
  content: "+";
  font-size: 44px;
  line-height: 0.9;
  color: #3C5A86;
  transform: translateY(-4px);
}
.services .svc[open] .svc-toggle::before {
  content: "−";
}
.services .svc-body {
  padding-left: 60px;
}
.services .svc {
  border-bottom: 1px solid #D2CEC8;
  padding: 7px 0;
  position: relative;
}
.services .svc:first-of-type {
  border-top: 1px solid #D2CEC8;
}
.services .svc-body p {
  font-size: 16px;
}
.services .svc-body ul {
  list-style: none;
  padding: 10px 0;
  margin: 0;
}
.services .svc-body li {
  font-size: 14px;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 30px;
  padding: 0 15px;
  background: #fff;
  border-radius: 15px;
  text-align: center;
  white-space: nowrap;
  margin: 0 0 5px;
}
/* ============================================================================
   Work page
   ============================================================================ */
#work .intro p {
  font-size: 16px;
  padding-bottom: 0;
  text-indent: 0;
}
/* ============================================================================
   Case studies
   ============================================================================ */
#case-study .intro {
  padding-bottom: 0;
}
#case-study .intro p {
  font-size: 20px;
  color: #1F1F1E;
}
.case-study.container p:first-of-type {
  font-size: 24px;
  color: #1F1F1E;
  padding-bottom: 20px;
}
.case-study.container p:first-of-type strong {
  color: #6B6258;
  font-weight: 400;
}
.work-shot.work-video .bucket-media {
  position: relative;
  aspect-ratio: var(--ratio, 16/9);
  overflow: hidden;
}
.work-shot.work-video .video-thumb {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  padding: 0;
  border: 0;
  background: none;
  cursor: pointer;
}
.work-shot.work-video .video-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.work-shot.work-video .video-play {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  pointer-events: none;
}
.work-shot.work-video .video-play::before {
  content: '';
  width: 64px;
  height: 64px;
  background-color: #3C5A86;
  border-radius: 50%;
  display: block;
}
.work-shot.work-video .video-play::after {
  content: '›';
  position: absolute;
  font-family: "Inter", ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  font-size: 34px;
  font-weight: 600;
  line-height: 1;
  color: #fff;
  transform: translateX(2px) translateY(-2px);
}
.work-shot.work-video iframe {
  position: absolute;
  top: -1px;
  left: -1px;
  width: calc(100% + 2px);
  height: calc(100% + 2px);
  border: 0;
}
/* ============================================================================
     Case study: Custom layout
   ============================================================================ */
body#case-study.case-study .intro.container p:not(.eyebrow) + p:not(.eyebrow) {
  padding-top: 20px;
  text-indent: 0;
}
.case-study .case-study-section p {
  padding-bottom: 0.75em;
}
@media (min-width: 900px) {
  body#case-study.case-study .intro.container p:not(.eyebrow) {
    grid-column: 3 / 5;
  }
}
/* ============================================================================
   About page
   ============================================================================ */
#about .intro.container {
  display: block;
}
#about .intro.container h1 {
  margin: 0;
}
#about .about-lede {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}
#about .about-lede > p {
  font-size: 24px;
  font-weight: 400;
  line-height: 1.2;
  color: #1F1F1E;
  text-indent: 2em;
  margin: 0;
  padding-bottom: 0;
}
#about .about-lede > p strong {
  color: #1F1F1E;
  font-weight: 500;
}
#about .about-copy {
  padding-top: 40px;
}
#about .about-copy p {
  font-size: 18px;
  line-height: 1.3;
  color: #6B6258;
  text-indent: 0;
  margin: 0;
  padding-bottom: .75em;
}
#about .about-copy p:last-child {
  padding-bottom: 0;
}
#about p a, #about p a:visited {
  color: #3C5A86;
  text-decoration: underline;
  white-space: nowrap;
}
#about p a:hover, #about p a:active {
  text-decoration: none;
}
#about .about-photo {
  margin: 0;
  padding-bottom: 0;
}
#about .about-photo .bucket-media {
  border: 1px solid #E9E5DF;
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
}
#about .about-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
#about .skills-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  padding-top: 40px;
}
#about .skills-group h2 {
  font-size: 18px;
  line-height: 1.2;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: #1F1F1E;
  margin: 0;
  padding: 0 0 14px;
}
#about .skills-group ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
#about .skills-group li {
  font-size: 16px;
  line-height: 1.25;
  color: #6B6258;
  padding: 8px 0;
  border-top: 1px solid #D2CEC8;
}
#about .skills-group li:last-child {
  border-bottom: 1px solid #D2CEC8;
}
/* ============================================================================
   Business pages
   ============================================================================ */
.business h2 {
  font-size: 20px;
  font-weight: 500;
}
.business h2:not(:first-of-type) {
  padding-top: 20px;
}
.business ul {
  padding-left: 1.5em;
  padding-bottom: .75em;
}
.business li {
  font-size: 18px;
  color: #6B6258;
  padding-bottom: .25em;
}
.business p:has(+ ul) {
  padding-bottom: .25em;
}
.business a, .business a:visited {
  color: #3C5A86;
}
.business a:hover, .business a:active {
  text-decoration: none;
}
/* ============================================================================
   404
   ============================================================================ */
#redirect .intro .btn {
  margin-top: 2rem;
  display: block;
  text-indent: 0;
}
/* ============================================================================
   Contact form status
   ============================================================================ */
#message-status.success {
  padding-top: 25px;
}
#message-status.success h2 {
  font-size: 25px;
  line-height: 30px;
}
/* ============================================================================
   Breakpoints: 600px+
   ============================================================================ */
@media (min-width: 600px) {
  .site-nav {
    padding: 30px 8px 50px;
  }
  .site-nav a {
    font-size: 42px;
  }
  h1 {
    font-size: 62px;
  }
  #marquee .overlay-content p {
    max-width: 75%;
  }
  ul.brand-grid {
    grid-template-columns: repeat(6, calc((100% - (5 * 5px)) / 6));
  }
  #case-studies .btn, #cta-banner .btn, #about button.btn {
    width: 300px;
  }
  #about .about-lede {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 5px;
    align-items: start;
  }
  #about .about-photo {
    margin-left: 20px;
    width: calc(100% - 20px);
  }
  #about .about-copy {
    padding-top: 40px;
  }
  #about .skills-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 5px;
  }
}
/* ============================================================================
   Breakpoints: 900px+
   ============================================================================ */
@media (min-width: 900px) {
  .container {
    position: relative;
    max-width: 1520px;
    margin: 0 auto;
    padding: 120px 30px 0;
  }
  #brands.container, footer.container {
    padding: 60px 30px 0;
    margin-top: 120px;
  }
  .site-header {
    padding: 20px 30px;
  }
  #marquee {
    margin: 0 5px;
  }
  #marquee .overlay-content {
    padding: var(--marquee-pad-top) 30px var(--marquee-pad-bottom);
  }
  #marquee h1 {
    font-size: max(144px, 10vw);
    line-height: .98;
    letter-spacing: -0.02em;
    margin: 0;
    padding: 0;
    text-wrap: balance;
  }
  #marquee .overlay-content p {
    max-width: 60%;
  }
  .buckets {
    grid-template-columns: repeat(2, calc((100% - (1 * 8px)) / 2));
  }
  .eyebrow {
    float: left;
    margin-left: 0 !important;
    max-width: auto !important;
    padding-bottom: 0 !important;
  }
  #brands .eyebrow {
    float: none;
    padding-bottom: 40px !important;
  }
  h2 {
    font-size: 100px;
    font-weight: 600;
    margin-left: calc((100% - (3 * var(--grid-gap))) / 4 + var(--grid-gap));
    text-wrap: balance;
  }
  #services-home {
    --col: calc((100% - (3 * var(--grid-gap))) / 4);
  }
  #services-home p {
    margin-left: calc((100% - (3 * var(--grid-gap))) / 4 + var(--grid-gap));
    max-width: calc(2 * ((100% - (3 * var(--grid-gap))) / 4) + var(--grid-gap));
    padding-bottom: 40px;
  }
  #services-home ul {
    margin: 0;
    padding: 0;
  }
  #services-home .btn {
    box-sizing: border-box;
    width: 100%;
    text-align: left;
    padding-left: calc(var(--col) + var(--grid-gap));
    padding-right: 44px;
  }
  #services-home .btn::after {
    right: 15px;
  }
  #work-home {
    display: grid;
    grid-template-columns: repeat(4, calc((100% - (3 * var(--grid-gap))) / 4));
    column-gap: var(--grid-gap);
    align-items: start;
  }
  #work-home .eyebrow {
    grid-column: 1;
    float: none !important;
    margin: 0 0 10px;
    padding-top: 0;
    padding-bottom: 0;
  }
  #work-home h2 {
    grid-column: 2 / span 2;
    margin: 0;
    line-height: 0.9;
    text-wrap: balance;
  }
  #work-home > p {
    grid-column: 4;
    margin: 0;
    max-width: 100%;
  }
  #work-home p {
    padding-top: 25px;
    padding-bottom: 0;
  }
  #work-home .buckets {
    grid-column: 1 / -1;
    margin-top: 40px;
  }
  #case-studies, .case-study-section, #cta-banner {
    --col: calc((100% - (3 * var(--grid-gap))) / 4);
  }
  #case-studies h2, .case-study-section h2 {
    font-size: 50px;
    padding-bottom: 30px;
    margin-left: calc((100% - (3 * var(--grid-gap))) / 4 + var(--grid-gap));
    max-width: calc(2 * ((100% - (3 * var(--grid-gap))) / 4) + var(--grid-gap));
  }
  #case-studies p, .case-study-section p {
    margin-left: calc((100% - (3 * var(--grid-gap))) / 4 + var(--grid-gap));
    max-width: calc(2 * ((100% - (3 * var(--grid-gap))) / 4) + var(--grid-gap));
    padding-bottom: 30px;
  }
  #case-studies .btn, #cta-banner .btn, .case-study-section .btn {
    box-sizing: border-box;
    display: block;
    margin-left: calc(var(--col) + var(--grid-gap));
    text-align: left;
    padding-left: 20px;
    padding-right: 44px;
  }
  #case-studies .btn::after, #cta-banner .btn::after, .case-study-section .btn::after {
    right: 15px;
  }
  #cta-banner {
    padding: 55px 30px;
    margin: 120px auto 0;
  }
  #cta-banner h2 {
    padding-bottom: 40px;
  }
  #cta-banner p {
    margin-left: calc((100% - (3 * var(--grid-gap))) / 4 + var(--grid-gap));
    max-width: 50%;
    padding-bottom: 40px;
  }
  footer.container {
    display: grid;
    grid-template-columns: repeat(4, calc((100% - (3 * var(--grid-gap))) / 4));
    column-gap: var(--grid-gap);
    row-gap: 0;
    padding-top: 60px;
    align-items: start;
    align-content: start;
  }
  footer.container .copyright {
    grid-column: 1 / span 2;
    grid-row: 1;
    align-self: start;
    display: grid;
    grid-auto-rows: min-content;
    row-gap: 10px;
    margin: 0;
    padding: 0;
  }
  footer.container .copyright .site-logo, footer.container .copyright p, footer.container .copyright ul {
    margin: 0;
    padding: 0;
  }
  footer.container .copyright ul {
    display: flex;
    gap: 0;
    flex-wrap: wrap;
  }
  footer.container .footer-links {
    grid-column: 3 / span 2;
    grid-row: 1;
    align-self: start;
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 20px;
    margin: 0;
    padding: 0 0 30px;
  }
  footer.container .footer-links > ul {
    margin: 0;
    padding: 0;
  }
  .subpage h1 {
    font-size: 118px;
    padding-bottom: 50px;
  }
  .subpage .intro {
    padding-bottom: 80px;
  }
  .intro p {
    font-size: 28px;
  }
  .subpage .intro.container {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    column-gap: 1.5rem;
    align-items: start;
  }
  .subpage .intro.container h1 {
    grid-column: 1 / 5;
    margin: 0;
  }
  .subpage .intro.container .eyebrow {
    grid-column: 1 / 2;
    margin: 0;
  }
  .subpage .intro.container p:not(.eyebrow) {
    grid-column: 2 / 4;
    margin: 0;
  }
  .pull-quote {
    font-size: 28px;
    padding-top: 135px !important;
  }
  figure.pull-quote.container {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    column-gap: 1.5rem;
    align-items: start;
  }
  .subpage #cta-banner {
    margin: 100px auto 0;
  }
  blockquote p {
    font-size: 50px !important;
    padding-right: 50px;
  }
  figure.pull-quote.container > blockquote {
    grid-column: 2 / 5;
    margin: 0;
    position: relative;
  }
  figure.pull-quote.container > figcaption {
    grid-column: 2 / 5;
    justify-self: start;
    text-align: left;
    margin: 0;
  }
  .pull-quote.container blockquote::before {
    position: absolute;
    left: 0;
    top: -0.55em;
  }
  .services.container {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    column-gap: var(--grid-gap);
  }
  .services .svc {
    grid-column: 1 / -1;
    padding: 10px 0;
  }
  .services .svc-head {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    column-gap: var(--grid-gap);
    align-items: center;
  }
  .services .svc-ico {
    grid-column: 1;
    justify-self: start;
  }
  .services .svc-title {
    font-size: 20px;
    grid-column: 2 / 4;
    margin: 0;
    pointer-events: none;
    max-width: none;
  }
  .services .svc-toggle {
    grid-column: 4;
    justify-self: end;
  }
  .services .svc-body {
    padding-left: 0;
    margin-top: 0;
    display: grid;
    grid-template-columns: 1fr 1fr 0.5fr 0.5fr 1fr;
    column-gap: var(--grid-gap);
    align-items: start;
  }
  .services .svc-body p {
    grid-column: 2 / 4;
    margin: 0;
  }
  .services .svc-body ul {
    grid-column: 4 / 6;
    margin: -37px 0 0;
    padding: 0 35px 10px 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    align-content: start;
    justify-self: start;
    position: relative;
    z-index: 1;
  }
  .services .svc-body li {
    margin: 0;
  }
  #work.subpage h1 {
    padding-bottom: 30px;
  }
  #work .intro.container {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    column-gap: 1.5rem;
    align-items: start;
  }
  #work .intro.container h1 {
    grid-column: 1 / 3;
  }
  #work .intro.container p {
    padding-top: 35px;
    grid-column: 3 / 4;
    justify-self: start;
    margin: 0;
  }
  #case-study .intro p {
    font-size: 22px;
  }
  #case-study .intro.container .eyebrow + p {
    grid-column: 3 / 5;
    margin: 0;
    justify-self: start;
    text-align: left;
  }
  .case-study.container {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    column-gap: 5px;
    align-items: start;
  }
  .case-study.container > p {
    grid-column: 3 / 5;
    margin: 0;
    justify-self: start;
    text-align: left;
  }
  .featured.side-by-side.container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5px;
    align-items: start;
  }
  .featured.side-by-side.container > figure {
    margin: 0;
    width: 100%;
  }
  #about .intro.container {
    display: block;
    position: relative;
  }
  #about .intro.container h1 {
    margin: 0;
  }
  #about .about-lede {
    display: block;
  }
  #about .about-lede > p, #about .about-copy, #about .skills-grid {
    width: calc(50% - 2.5px);
    padding-right: 40px;
  }
  #about .about-lede > p {
    font-size: 28px;
  }
  #about .about-photo {
    position: absolute;
    top: 290px;
    right: 0;
    width: calc(50% - 22.5px);
    margin: 0 0 0 20px;
  }
  #about .about-copy {
    padding-top: 40px;
  }
  #about .skills-grid {
    grid-template-columns: 1fr;
    gap: 30px;
    padding-top: 40px;
  }
  .business {
    --col: calc((100% - (3 * var(--grid-gap))) / 4);
  }
  .business p, .business ul {
    margin-left: calc(var(--col) + var(--grid-gap));
    max-width: calc(2 * var(--col) + var(--grid-gap));
  }
}
/* ============================================================================
   Breakpoints: 1200px+
   ============================================================================ */
@media (min-width: 1200px) {
  :root {
    --marquee-list-right: 13%;
  }
  .nav-toggle, .nav-toggle-btn {
    display: none;
  }
  .site-header {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 30px;
    gap: 0;
  }
  .site-nav {
    display: contents;
    padding: 0;
    border: 0;
    box-shadow: none;
    background: transparent;
    list-style: none;
    margin: 0;
  }
  .site-nav li {
    margin: 0;
  }
  .site-nav li:first-child {
    position: absolute;
    right: calc(var(--marquee-list-right) + 100px);
  }
  .site-nav li:last-child {
    position: absolute;
    right: 30px;
  }
  .site-nav a {
    font-size: 16px;
    padding: 10px 12px;
    border-radius: 4px;
    display: inline-block;
    text-decoration: none;
    color: #1F1F1E;
  }
  .site-nav a:hover, .site-nav a:focus-visible {
    background: none;
    text-decoration: underline;
  }
  .site-logo {
    margin-right: 0;
  }
  h2 {
    font-size: 144px;
    font-weight: 600;
  }
  #marquee {
    height: calc(100svh - var(--header-h-desktop));
    padding: 0;
    overflow: hidden;
  }
  #marquee .overlay-content {
    box-sizing: border-box;
    height: 100%;
    min-height: 0;
    padding: var(--marquee-pad-top-desktop) 35px var(--marquee-pad-bottom-desktop);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
    gap: 0;
  }
  #marquee h1 {
    max-width: 75%;
  }
  #marquee .overlay-content ul {
    position: absolute;
    right: var(--marquee-list-right);
    top: clamp(115px, 12vh, 220px);
    margin: 0;
    padding: 0;
  }
  #marquee .overlay-content li {
    font-size: 18px;
    text-align: left;
    padding: 0 0 .75em;
  }
  #marquee .overlay-content p {
    font-size: 22px;
    line-height: 1.2;
    max-width: 45%;
    margin: 0;
    padding: 0;
    text-indent: 2em;
    overflow-wrap: anywhere;
  }
  #services-home .btn {
    font-size: 22px;
    font-weight: 500;
  }
  #work .intro.container p {
    font-size: 18px;
  }
  #work-home p {
    padding-top: 35px;
  }
  #work-home .buckets {
    margin-top: 40px;
  }
  .case-study.container p:first-of-type {
    font-size: 30px;
  }
  #case-studies h2, .case-study-section h2 {
    font-size: 60px;
    padding-bottom: 30px;
  }
  #case-studies .btn, #cta-banner .btn, .case-study-section .btn {
    font-size: 22px;
    font-weight: 500;
    width: var(--col);
    max-width: var(--col);
  }
  #cta-banner h2 {
    padding-bottom: 60px;
  }
  #cta-banner p {
    max-width: 39%;
    padding-bottom: 40px;
  }
  .subpage h1 {
    font-size: 144px;
    padding-bottom: 120px;
  }
  .subpage .intro {
    padding-bottom: 100px;
  }
  .intro p {
    font-size: 30px;
  }
  .pull-quote {
    font-size: 30px;
  }
  blockquote p {
    font-size: 60px !important;
    padding-right: 200px;
  }
  #work.subpage h1 {
    padding-bottom: 30px;
  }
  .services .svc-title {
    font-size: 22px;
  }
  #about .about-photo {
    top: 385px;
  }
  #about .about-lede > p {
    font-size: 30px;
  }
  #about .skills-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 5px;
  }
}
/* ============================================================================
   Ultra-wide tweaks
   ============================================================================ */
@media (min-width: 1800px) {
  #marquee .overlay-content ul {
    right: 20%;
  }
  #marquee .overlay-content li {
    font-size: 20px;
  }
  blockquote p {
    padding-right: 150px;
  }
}
/* ============================================================================
   Ultra-wide nav alignment tweak
   ============================================================================ */
@media (min-width: 1800px) {
  .site-nav li:first-child {
    right: calc(20% + 117px);
  }
}
/*@media (min-width: 900px) {
  body:not(#home) .intro.container h1 {
    grid-column: 1 / 4 !important;
    max-width: none;
  }
}*/

/* ============================================================================
   Color system callout â€” Intuit case study
   Add to your stylesheet or a <style> block on the page
   ============================================================================ */

.color-system {
  display: flex;
  gap: 10px;
  padding: 1.5em 0 2.25em;
}

.color-tile {
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: #ffffff;
  border: 1px solid #E9E5DF;
  border-radius: 12px;
  padding: 14px;
  flex: 1;
}

.color-swatch {
  width: 100%;
  aspect-ratio: 3 / 2;
  border-radius: 8px;
}

.color-label {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.color-series {
  font-size: 14px;
  font-weight: 600;
  color: #1F1F1E;
  letter-spacing: -0.02em;
}

.color-hex {
  font-size: 13px;
  color: #6B6258;
  font-variant-numeric: tabular-nums;
  letter-spacing: 0;
}



/* ============================================================================
   Main nav subnav
   ============================================================================ */
/* Mobile: show subnav inline under Work */
.site-nav .has-subnav {
  position: relative;
}
/* No dropdown indicator on mobile */
.site-nav .has-subnav > .nav-work::after {
  display: none;
}
.site-nav .subnav {
  display: block;
  position: static;
  margin: 12px 0 24px;
  padding: 0;
  list-style: none;
  background: transparent;
  border: 0;
}
.site-nav .subnav li {
  margin: 0;
}
.site-nav .subnav a {
  display: block;
  font-size: 48px;
  font-weight: 600;
  line-height: 1;
  color: #6B6258;
  padding: 6px 0;
  text-align: center;
  text-decoration: none;
}
.site-nav .subnav a:hover, .site-nav .subnav a:focus-visible {
  color: #1F1F1E;
  background: none;
}
/* Desktop: dropdown on hover/focus */
@media (min-width: 1200px) {
  .site-nav .has-subnav {
    position: relative;
  }
  .site-nav .has-subnav .subnav {
    top: 100%;
    left: -16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    min-width: 220px;
    padding: 14px 16px;
    background: #fff;
    border: 1px solid #D2CEC8;
    border-radius: 12px;
    z-index: 100;
  }
  .site-nav .has-subnav:hover .subnav, .site-nav .has-subnav:focus-within .subnav {
    display: flex;
  }
  .site-nav .has-subnav .subnav li {
    position: static !important;
    right: auto !important;
    left: auto !important;
    top: auto !important;
    transform: none !important;
    display: block;
    width: 100%;
    margin: 0;
  }
  .site-nav .has-subnav .subnav a {
    display: block;
    width: 100%;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.2;
    text-align: left;
    white-space: nowrap;
    padding: 8px 0;
  }
}
/* Desktop dropdown positioning + indicator fix */
@media (min-width: 1200px) {
  .site-nav .has-subnav > .nav-work::after {
    content: "⌄";
    display: inline-block;
    margin-left: 0.35em;
    font-size: 1.1em;
    line-height: 1;
    transform: translateY(-0.18em); 
  }
  .site-nav .has-subnav .subnav {
    top: calc(100% + 6px);
    left: 0;
    transform: none;
    padding: 14px 16px;
  }
  .site-nav .has-subnav .subnav::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: -8px;
    height: 8px;
  }
}
/* ============================================================================
   Desktop dropdown hard fix
   ============================================================================ */
@media (min-width: 1200px) {
  .site-nav .has-subnav {
    position: absolute !important;
    top: 50%;
    right: calc(var(--marquee-list-right) + 127px);
    transform: translateY(-50%);
  }
  .site-nav .has-subnav > .nav-work::after {
    content: "⌄";
    display: inline-block;
    margin-left: 0.35em;
    font-size: 0.8em;
    line-height: 1;
    transform: translateY(-0.08em);
  }
  .site-nav .has-subnav .subnav {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: auto;
    transform: none;
    display: none;
    flex-direction: column;
    align-items: stretch;
    min-width: 220px;
    margin: 0;
    padding: 14px 16px;
    background: #fff;
    border: 1px solid #D2CEC8;
    border-radius: 12px;
    z-index: 100;
  }
  .site-nav .has-subnav:hover .subnav, .site-nav .has-subnav:focus-within .subnav {
    display: flex;
  }
  .site-nav .has-subnav .subnav li {
    position: static !important;
    transform: none !important;
    margin: 0;
    width: 100%;
  }
}
@media (min-width: 1800px) {
  .site-nav .has-subnav {
    right: calc(20% + 132px);
  }
}
/* Desktop dropdown hover bridge + stacking fix */
@media (min-width: 1200px) {
  .site-header {
    z-index: 200;
  }
  .site-nav .has-subnav {
    z-index: 210;
  }
  .site-nav .has-subnav .subnav {
    z-index: 220;
  }
  .site-nav .has-subnav .subnav::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: -12px;
    height: 12px;
    display: block;
  }
}