/* ==========================================================================
   CSS Custom Properties
   ========================================================================== */ :root {
  /* header height and marquee paddings — mobile defaults */
  --header-h: 80px;
  --marquee-pad-top: 55px;
  --marquee-pad-bottom: 55px;
}
/* ==========================================================================
   Global reset + base typography
   ========================================================================== */
* {
  margin: 0px;
  padding: 0px;
  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;
}
/* ==========================================================================
   Layout primitives
   ========================================================================== */
.container {
  position: relative;
  max-width: 1520px;
  margin: 0px auto;
  padding: 50px 20px 0px;
  top: -1px;
}
/* ==========================================================================
   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;
}
h3 {
  font-size: 20px;
  line-height: 1.2;
  letter-spacing: -0.02em;
  font-weight: 600;
  margin: 0;
  padding: 20px 0 5px;
}
/* ==========================================================================
   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 20px;
  padding-right: 44px;
  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;
}
/* Reverse button */
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;
}
/* Button hover transitions (mouse only) */
@media (hover: hover) and (pointer: fine) {
  .btn, .btn:visited {
    transition: background-color .22s ease-in-out;
  }
}
/* Motion-safe fallback */
@media (prefers-reduced-motion: reduce) {
  .btn, .btn:visited {
    transition: none;
  }
}
/* ==========================================================================
   Site header + navigation
   ========================================================================== */
/* Contain box sizing to header/nav */
.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;
}
/* Logo */
.site-logo {
  color: #3c5a86;
  text-indent: -999em;
  display: inline-block;
  width: 252px;
  height: 26px;
  background-image: url("../img/scott-design-logo.svg");
  background-repeat: no-repeat;
  background-size: contain;
}
/* Toggle (checkbox is visually hidden) */
.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;
}
/* Hamburger icon using CSS bars */
.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;
}
/* Middle bar via background gradient */
.nav-toggle-btn {
  background:
    linear-gradient(#111 0 0) left 6px top 13px / calc(100% - 12px) 2px no-repeat;
}
/* Turn into an “X” when checked */
.nav-toggle:checked + .nav-toggle-btn {
  background: none; /* hide middle bar */
}
.nav-toggle:checked + .nav-toggle-btn::before {
  top: 13px;
  transform: rotate(45deg);
}
.nav-toggle:checked + .nav-toggle-btn::after {
  top: 13px;
  transform: rotate(-45deg);
}
/* Nav list (mobile dropdown) */
.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;
  /*padding: 10px 12px;*/
  text-decoration: none;
  border-radius: 6px;
}
.site-nav a:hover, .site-nav a:focus-visible {
  background: #fff;
  outline: none;
}
/* Active nav states (body id based) */
#home .subnav-home, #services .nav-services, #services .subnav-services, #insights .nav-insights, #insights .subnav-insights, #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: repeat(1, calc((100% - (0 * 8px)) / 1));
  gap: 5px;
  list-style: none;
}
.bucket-card {
  display: block;
  background: #fff;
  border-radius: 15px;
  padding: 5px;
  text-decoration: none;
  color: inherit;
}
.subpage main li a.bucket-card, .subpage main li a.bucket-card:visited, .subpage main li a.bucket-card:hover, .subpage main li a.bucket-card:focus-visible {
  color: inherit;
  text-decoration: none;
}
h2.bucket-title, h3.bucket-title {
  font-size: 18px;
  font-weight: 600;
  color: #1f1f1e;
  margin: 5px 0 10px 0;
  padding: 0 10px !important;
}
.bucket-media {
  position: relative;
  width: 100%;
  aspect-ratio: var(--ratio, 4/3); /* tweak per item if needed */
  border-radius: 10px;
  overflow: hidden; /* clip corners on zoom */
  background: #d9d9d9; /* placeholder */
  border: 1px solid #E9E5DF;
  box-shadow: none;
  box-sizing: border-box;
}
.bucket-media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover; /* same effect as background-size: 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);
}
/* Make video behave like your images (cover + obey --pos) */
.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;
}
/* Fallback image sits underneath by default */
.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; /* hidden on desktop */
}
/* <=900px: hide video, show image */
@media (max-width: 900px) {
  .bucket-media video.work-video {
    display: none;
  }
  .bucket-media img.work-video-fallback {
    display: block;
  }
}
/* ==========================================================================
   Shared video background pattern (marquee + CTA)
   ========================================================================== */
/* Video fills the container like background-size: cover */
.video-bg {
  position: absolute;
  inset: 0; /* top:0 right:0 bottom:0 left:0 */
  width: 100%;
  height: 100%;
  object-fit: cover; /* maintain aspect, cover the box */
  object-position: center;
  z-index: 0;
  pointer-events: none; /* clicks go to content */
}
/* Optional overlay to lighten/darken the footage */
.video-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  /* tweak opacity/color as needed */
  background: rgba(60, 90, 134, 0.8); /* lightens; use rgba(0,0,0,.3) to darken */
}
.overlay-content {
  position: relative;
  z-index: 2;
}
/* ==========================================================================
   CTA banner
   ========================================================================== */
#cta-banner {
  color: #fff;
  background-color: #3C5A86;
  margin-top: 50px;
  padding: 55px 20px;
  -webkit-border-radius: 30px;
  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;
}
footer p {
  font-size: 16px !important;
}
.footer-links {
  display: grid;
  grid-template-columns: repeat(2, calc(100% / 2));
  column-gap: 0;
  align-items: start;
  padding-bottom: 30px;
}
.footer-links > ul {
  display: flex;
  flex-direction: column;
  gap: 10px; /* space between items */
}
footer ul {
  list-style: none;
}
footer a {
  color: #1F1F1E;
  text-decoration: none;
}
footer a:hover, footer a:focus-visible {
  text-decoration: underline;
}
/* Social link arrow */
.social-links {
  margin-left: 5px;
}
.social-links li {
  display: none; /* Hiding some until further notice */
}
.social-links li:first-child {
  display: list-item;
}
.social-links a {
  position: relative; /* anchor for the pseudo */
  display: inline-flex;
  align-items: center;
  gap: 6px; /* space between text and icon */
  text-decoration: none; /* keep your existing link styles */
}
.social-links a::after {
  content: "";
  display: inline-block;
  width: 10px;
  height: 10px;
  background-image: url("../img/icon-arrow-up-right-bold.svg"); /* pre-colored */
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100% 100%; /* crisp at 10x10 */
  flex: 0 0 10px;
}
/* Optional: tiny hover nudge (no color change) */
.social-links a:hover::after, .social-links a:focus-visible::after {
  transform: translate(1px, -1px);
  transition: transform .15s ease;
}
/* Motion-safe */
@media (prefers-reduced-motion: reduce) {
  .social-links a:hover::after, .social-links a:focus-visible::after {
    transition: none;
    transform: none;
  }
}
/* Copyright block */
.copyright {
  font-size: 14px;
}
.copyright p {
  padding: 16px 0px 5px;
}
.copyright ul {
  display: flex;
  align-items: center;
  gap: 0; /* no extra gap; divider handles spacing */
}
.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; /* padding handled by overlay-content so top/bottom are consistent */
  min-height: calc(100dvh - var(--header-h)); /* ← key line */
}
#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;
  /* no extra bottom margin—flex spacing controls layout */
  margin: 0;
  padding-bottom: 0;
}
@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;
  }
}
#marquee .overlay-content ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
#marquee .overlay-content li {
  list-style: none;
  font-size: 16px;
  font-weight: 500;
  text-align: right;
  padding: 0 0 .5em;
}
#marquee .overlay-content p {
  font-size: 20px;
  line-height: 1.2;
  text-indent: 3em;
  color: #C6D3E1;
  margin: 0; /* anchored by bottom padding */
  padding: 0;
}
#marquee a {
  color: #fff;
  text-decoration: none;
}
/* List hover/focus behavior */
#marquee .overlay-content ul a {
  color: #fff;
  text-decoration: none;
  transition: color .18s ease;
}
@media (hover: hover) and (pointer: fine) {
  /* On list hover, dim all links */
  #marquee .overlay-content ul:hover a {
    color: #C6D3E1;
  }
  /* …except the one actually hovered */
  #marquee .overlay-content ul a:hover {
    color: #fff;
  }
}
/* Keyboard focus: treat focused link like "hovered" (stays white) */
#marquee .overlay-content ul a:focus-visible {
  color: #fff;
  outline: 2px solid currentColor;
  outline-offset: 2px;
}
/* Motion-safe */
@media (prefers-reduced-motion: reduce) {
  #marquee .overlay-content ul a {
    transition: none;
  }
}
/* Duplicate marquee text styles (kept as-is; these are in your original) */
#marquee li {
  font-size: 16px;
  font-weight: 500;
  text-align: right;
  padding: 0px 0px .5em;
  list-style-type: none;
}
#marquee p {
  font-size: 20px;
  line-height: 1.2;
  text-indent: 3em;
  color: #C6D3E1;
}
#marquee p strong {
  color: #fff;
  font-weight: 500;
  font-style: normal;
}
/* ==========================================================================
   Home: brands grid
   ========================================================================== */
ul.brand-grid {
  display: grid;
  grid-template-columns: repeat(3, calc((100% - (2 * 5px)) / 3));
  grid-column-gap: 5px;
  grid-row-gap: 5px;
  list-style: none;
}
.brand-grid li {
  padding: 0px;
  margin: 0px;
  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;
}
/* ==========================================================================
   Home: section text defaults
   ========================================================================== */
#services-home p, #work-home p, #about-home p {
  color: #6B6258;
  padding-bottom: 25px;
}
#services-home ul, #work-home ul {
  list-style: none;
}
#services-home li {
  padding-bottom: 5px;
}
#about-home h2 {
  font-size: 32px;
}
#about-home h2 strong {
  color: #6B6258;
  font-weight: inherit;
  display: block;
}
/* ==========================================================================
   Subpage global
   ========================================================================== */
.container.first {
  padding-top: 40px;
}
.subpage p {
  font-size: 18px;
  line-height: 1.4;
  color: #6B6258;
  padding-bottom: .75em;
}
.subpage main p a, .subpage main li a {
  color: #3C5A86;
  text-decoration: underline;
}
.subpage main p a:hover, .subpage main li a:hover {
  text-decoration: none;
}
.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: 55px 20px !important;
  padding-top: 115px !important;
  -webkit-border-radius: 30px;
  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; /* same left edge as the p */
  top: .3em; /* tweak until it sits nicely above */
  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 0px;
}
.work-shot {
  padding-bottom: 5px;
}
.work-shot .bucket-media {
  /* reuse your existing bucket-media rules if you have them */
  aspect-ratio: var(--ratio, 4/3);
  overflow: hidden;
  border-radius: var(--radius, 16px); /* match your bucket corner radius */
  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;
  font-size: 14px;
  line-height: 1.3;
  color: #6B6258;
}
.work-shot-caption:empty {
  display: none;
  margin-top: 0;
}
/* ==========================================================================
   Services page
   ========================================================================== */ :root {
  --scroll-offset: -7px; /* mobile nudge */
}
@media (min-width: 900px) {
  :root {
    --scroll-offset: -7px; /* adjust later for desktop */
  }
}
@media (min-width: 1200px) {
  :root {
    --scroll-offset: -7px; /* adjust later for desktop */
  }
}
/* 1) Kill the default <summary> marker (chevron) */
.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; /* higher than .svc-body / ul */
}
/* keep the body (and the pills) underneath */
.services .svc-body {
  position: relative;
  z-index: 1;
}
/* 2) Header layout: icon | title | toggle */
.services .svc-head {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
}
/* 3) Icon box (48x48, blue, 8px radius, SVG as background-image) */
.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%; /* tweak if your icons want bigger */
}
/* 4) Title: don’t inherit your global giant h2 styling */
.services .svc-title {
  margin: 0;
  padding: 0;
  font-size: 18px; /* adjust later */
  line-height: 1.2;
  font-weight: 600;
  min-width: 0;
  flex: 1 1 auto;
  pointer-events: none; /* keep summary as the click target */
}
/* 5) Toggle: + when closed, − when open */
.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; /* tightens vertical footprint */
  color: #3C5A86;
  transform: translateY(-4px);
}
.services .svc[open] .svc-toggle::before {
  content: "−";
}
.services .svc-body {
  padding-left: 60px; /* 48px icon + 12px gap */
}
.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 0px 10px;
  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;
}
.services .svc-body li {
  margin: 0 0px 5px 0;
}
/* ==========================================================================
   Insights page
   ========================================================================== */ :root {
  --scroll-offset: -7px; /* mobile nudge */
}
@media (min-width: 900px) {
  :root {
    --scroll-offset: -7px; /* adjust later for desktop */
  }
}
@media (min-width: 1200px) {
  :root {
    --scroll-offset: -7px; /* adjust later for desktop */
  }
}
/* 1) Kill the default <summary> marker (chevron) */
.insights .svc > summary {
  list-style: none;
}
.insights .svc > summary::-webkit-details-marker {
  display: none;
}
.insights .svc > summary::marker {
  content: "";
}
.insights .svc > summary, .insights .svc-head {
  position: relative;
  z-index: 5; /* higher than .svc-body / ul */
}
/* keep the body (and the pills) underneath */
.insights .svc-body {
  position: relative;
  z-index: 1;
}
/* 2) Header layout: icon | title | toggle */
.insights .svc-head {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
}
/* 3) Icon box (48x48, blue, 8px radius, SVG as background-image) */
.insights .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%; /* tweak if your icons want bigger */
}
/* 4) Title: don’t inherit your global giant h2 styling */
.insights .svc-title {
  margin: 0;
  padding: 0;
  font-size: 18px; /* adjust later */
  line-height: 1.2;
  font-weight: 600;
  min-width: 0;
  flex: 1 1 auto;
  pointer-events: none; /* keep summary as the click target */
}
/* 5) Toggle: + when closed, − when open */
.insights .svc-toggle {
  margin-left: auto;
  display: grid;
  place-items: center;
  justify-self: end;
  padding: 0;
}
.insights .svc-toggle::before {
  content: "+";
  font-size: 44px;
  line-height: 0.9; /* tightens vertical footprint */
  color: #3C5A86;
  transform: translateY(-4px);
}
.insights .svc[open] .svc-toggle::before {
  content: "−";
}
.insights .svc-body {
  padding-left: 60px; /* 48px icon + 12px gap */
}
/* Insights: remove container spacing from inline article images inside drawers */
.insights .svc-body .container, .insights .svc-body .container.first {
  padding: 0;
}
.insights .svc {
  border-bottom: 1px solid #D2CEC8;
  padding: 14px 0 21px;
  position: relative;
}
.insights .svc:first-of-type {
  border-top: 1px solid #D2CEC8;
}
.insights .svc-body h3 {
  font-size: 18px;
  padding: 20px 0 5px;
  color: #1f1f1e;
}
/* tighten if it follows a paragraph */
.insights .svc-body p + h3 {
  padding-top: 15px;
}
/* spacing before list after a subhead */
.insights .svc-body h3 + ul, .insights .svc-body h3 + ol {
  padding-top: 5px;
}
.insights .svc-body p {
  font-size: 18px;
  line-height: 1.4;
}
.insights .svc-body ul, .insights .svc-body ol {
  list-style: revert;
  padding: 10px 0 10px 1.25em;
  margin: 0;
}
.insights .svc-body li {
  display: list-item;
  height: auto;
  padding: 0 0 12px;
  background: none;
  border-radius: 0;
  text-align: left;
  white-space: normal;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.4;
  color: #6B6258;
}
/* tighten last item spacing */
.insights .svc-body li:last-child {
  padding-bottom: 0;
}
/* optional: make the bold lead-in pop like your paragraphs */
.insights .svc-body li strong {
  color: #1f1f1e;
  font-weight: 600;
}
/* Insights: correct/incorrect screenshot indicators */
.insights .work-shot.is-correct .bucket-media, .insights .work-shot.is-wrong .bucket-media {
  position: relative;
}
.insights .work-shot.is-correct .bucket-media::after, .insights .work-shot.is-wrong .bucket-media::after {
  content: "";
  position: absolute;
  top: 10px;
  left: -10px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 55%;
  z-index: 3;
}
.insights .work-shot.is-correct .bucket-media::after {
  background-color: #2E7D32;
  background-image: url("/img/icon-check.svg");
}
.insights .work-shot.is-wrong .bucket-media::after {
  background-color: #B3261E;
  background-image: url("/img/icon-x.svg");
}
.insights .work-shot .bucket-media {
  overflow: visible;
}
.insights .work-shot .bucket-media img {
  border-radius: inherit;
}
/* Insights: figure */
.insights-figure {
  margin: 0 0 12px;
}
/* Insights: media container */
.insights-media {
  border: 1px solid #D2CEC8;
  border-radius: 12px;
  overflow: hidden;
  background: #F5F4F2;
}
/* Insights: image */
.insights-media img {
  display: block;
  width: 100%;
  height: auto;
}
/* Insights: space between title and top image */
.insights .svc-body > .insights-figure {
  margin-top: 10px;
}
/* ==========================================================================
   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;
  line-height: 1.2;
  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;
}
/* Circle */
.work-shot.work-video .video-play::before {
  content: '';
  width: 64px;
  height: 64px;
  background-color: #3c5a86;
  border-radius: 50%;
  display: block;
}
/* Caret (same character + sizing logic as .btn::after) */
.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;
}
/* ==========================================================================
   About page
   ========================================================================== */
.about.container p:first-of-type {
  font-size: 24px;
  color: #1F1F1E;
  padding-bottom: 20px;
}
.about.container p:first-of-type strong {
  color: #6B6258;
  font-weight: 400;
}
/* ==========================================================================
   Contact page
   ========================================================================== */
#contact .intro.container > p:nth-of-type(2) {
  font-size: 18px;
  color: #6B6258;
  padding-top: 20px; /* adjust to taste */
  text-indent: 0; /* kill the intro indent */
}
#contact .intro.container > p:nth-of-type(2) {
  line-height: 1.3;
}
#contact p a, #contact p a:visited {
  color: #3c5a86;
  text-decoration: underline;
  white-space: nowrap;
}
#contact p a:hover, #contact p a:active {
  text-decoration: none;
}
.contact-form {
  display: grid;
  gap: 20px;
}
.field {
  display: grid;
  gap: 6px;
}
label {
  line-height: 1.2;
}
input, textarea {
  width: 100%;
  padding: 20px 14px;
  border-radius: 13px;
  background: #fff;
  font: inherit;
  color: #000 !important;
}
input:focus, textarea:focus {
  outline: none;
  border-color: #3C5A86;
}
/* Fix overflow from padding/border on 100%-wide elements */
*, *::before, *::after {
  box-sizing: border-box;
}
/* If the form sits in a grid/flex column, this prevents blowout */
.contact-form, .contact-form .field {
  min-width: 0;
}
#contact button.btn {
  margin-top: 10px;
}
/* Optional: makes textareas not cause sideways overflow and behave nicely */
textarea {
  max-width: 100%;
  resize: vertical;
}
/* Honeypot hidden, but still in DOM for bots */
.hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
/* ==========================================================================
   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: 0px;
}
/* ==========================================================================
   Breakpoints: 600px+
   ========================================================================== */
@media (min-width: 600px) {
  .site-nav {
    padding: 30px 8px 50px;
  }
  .site-nav a {
    font-size: 42px;
  }
  #marquee .overlay-content p {
    max-width: 75%;
  }
  ul.brand-grid {
    display: grid;
    grid-template-columns: repeat(6, calc((100% - (5 * 5px)) / 6));
    grid-column-gap: 5px;
    grid-row-gap: 5px;
    list-style: none;
  }
  #about-home .btn, #cta-banner .btn, #contact button.btn {
    width: 300px;
  }
  h1 {
    font-size: 62px;
  }
}
/* ==========================================================================
   Breakpoints: 900px+
   ========================================================================== */
@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);
    --grid-gap: 5px;
  }
  .container {
    position: relative;
    max-width: 1520px;
    margin: 0px auto;
    padding: 120px 30px 0px;
  }
  #brands.container, footer.container {
    padding: 60px 30px 0px;
  }
  .site-header {
    padding: 20px 30px;
  }
  #marquee .overlay-content {
    padding: var(--marquee-pad-top) 30px var(--marquee-pad-bottom);
  }
  #marquee {
    margin: 0px 5px;
  }
  #marquee h1 {
    font-size: max(144px, 10vw); /* starts at 144, scales up with viewport */
    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: 0px !important;
    max-width: auto !important;
    padding-bottom: 0px !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 --- */
  #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; /* kill default ul indent */
  }
  #services-home .btn {
    box-sizing: border-box; /* prevent bleed */
    width: 100%;
    text-align: left;
    /* align text to start of column 2 (no extra +20px) */
    padding-left: calc(var(--col) + var(--grid-gap));
    padding-right: 44px; /* keep arrow spacing */
  }
  #services-home .btn::after {
    right: 15px;
  }
  /* --- Work --- */
  #work-home {
    display: grid;
    grid-template-columns: repeat(4, calc((100% - (3 * var(--grid-gap))) / 4));
    column-gap: var(--grid-gap);
    align-items: start; /* top-align eyebrow, h2, p */
  }
  #work-home .eyebrow {
    grid-column: 1;
    float: none !important;
    margin: 0 0 10px 0;
    padding-top: 0;
    padding-bottom: 0;
  }
  #work-home h2 {
    grid-column: 2 / span 2;
    margin: 0;
    line-height: 0.9; /* keeps 144px type tight */
    text-wrap: balance;
  }
  #work-home > p {
    grid-column: 4;
    margin: 0;
    max-width: 100%; /* contained to col 4 */
  }
  #work-home p {
    padding-top: 25px;
    padding-bottom: 0;
  }
  #work-home .buckets {
    grid-column: 1 / -1;
    margin-top: 40px;
  }
  /* --- About + CTA (shared column vars) --- */
  #about-home, #cta-banner {
    --grid-gap: 5px;
    --col: calc((100% - (3 * var(--grid-gap))) / 4);
  }
  #about-home h2 {
    font-size: 50px;
    padding-bottom: 30px;
  }
  #about-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: 30px;
  }
  #about-home .btn {
    box-sizing: border-box; /* keep padding inside the column */
    display: block;
    margin-left: calc(var(--col) + var(--grid-gap)); /* start at column 2 */
    text-align: left;
    padding-left: 20px; /* keep your normal inner padding */
    padding-right: 44px; /* keeps arrow position */
  }
  #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;
  }
  #cta-banner .btn {
    box-sizing: border-box; /* keep padding inside the column */
    display: block;
    margin-left: calc(var(--col) + var(--grid-gap)); /* start at column 2 */
    text-align: left;
    padding-left: 20px; /* keep your normal inner padding */
    padding-right: 44px;
  }
  #about-home .btn::after, #cta-banner .btn::after {
    right: 15px; /* unchanged arrow offset */
  }
  #cta-banner {
    padding: 55px 30px;
    margin: 120px auto 0px;
  }
  footer.container {
    --grid-gap: 5px;
    display: grid;
    grid-template-columns: repeat(4, calc((100% - (3 * var(--grid-gap))) / 4));
    column-gap: var(--grid-gap);
    row-gap: 0; /* ensure no vertical gap */
    padding-top: 60px;
    align-items: start; /* align grid items to top */
    align-content: start; /* pack tracks to top */
  }
  footer.container .copyright {
    grid-column: 1 / span 2;
    grid-row: 1; /* ← force same row as links */
    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; /* ← force same row as copyright */
    align-self: start;
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 20px;
    margin: 0;
    padding: 0 0 30px 0;
  }
  footer.container .footer-links > ul {
    margin: 0;
    padding: 0;
  }
  /* Temp styling until social links get activated 
  footer.container .footer-links {
    display: contents; /* critical 
  }
  footer.container .footer-nav {
    grid-column: 3 / 5; /* spans columns 3 + 4 
    display: grid;
    grid-template-columns: 1fr 1fr; /* col 3 | col 4 
    column-gap: var(--grid-gap);
    row-gap: 10px;
  }
  /* Force the break at About 
  footer.container .footer-nav li:nth-child(4) {
    grid-column: 2;
    grid-row: 1;
  }
  footer.container .footer-nav li:nth-child(5) {
    grid-column: 2;
    grid-row: 2;
  }*/
  /* Subpage shared */
  .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; /* top-align everything */
  }
  .subpage .intro.container h1 {
    grid-column: 1 / 5; /* or whatever you want for the H1 */
    margin: 0;
  }
  .subpage .intro.container .eyebrow {
    grid-column: 1 / 2;
    margin: 0;
  }
  .subpage .intro.container p:not(.eyebrow) {
    grid-column: 2 / 4; /* spans col 2–3 only */
    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 0px;
  }
  blockquote p {
    font-size: 50px !important;
    padding-right: 50px;
  }
  /* make sure BOTH are grid items and placed */
  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;
  }
  /* big quote mark aligned to col 2 (same left edge as blockquote) */
  .pull-quote.container blockquote::before {
    position: absolute;
    left: 0; /* aligns with col 2 */
    top: -0.55em; /* tweak */
  }
  /* Services page */
  .services.container {
    --grid-gap: 5px;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    column-gap: var(--grid-gap);
  }
  /* each drawer spans full width, but inner content uses the same 4-col grid */
  .services .svc {
    grid-column: 1 / -1;
    padding: 10px 0; /* keep your 7px vibe but a bit roomier on desktop */
  }
  .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; /* keep title living in the text zone */
    margin: 0;
    pointer-events: none;
    max-width: none;
  }
  .services .svc-toggle {
    grid-column: 4;
    justify-self: end;
  }
  /* BODY ROW: text in cols 2–3, list in col 4 */
  .services .svc-body {
    padding-left: 0;
    margin-top: 0;
    display: grid;
    grid-template-columns:
      1fr /* col 1 (empty spacer) */
      1fr /* col 2 */
      0.5fr /* first half of col 3 */
      0.5fr /* second half of col 3 */
      1fr; /* col 4 */
    column-gap: var(--grid-gap);
    align-items: start;
  }
  /* Put paragraph in col2 + first half of col3 */
  .services .svc-body p {
    grid-column: 2 / 4; /* spans col2 + col3a */
    margin: 0;
  }
  /* Start pills at halfway through col3 (col3b) and span through col4 */
  .services .svc-body ul {
    grid-column: 4 / 6; /* col3b + col4 */
    margin: 0;
    margin-top: -37px;
    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;
  }
  /* Insights page */
  .insights.container {
    --grid-gap: 5px;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    column-gap: var(--grid-gap);
  }
  .insights .svc {
    grid-column: 1 / -1;
    padding: 14px 0 21px;
  }
  .insights .svc-head {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    column-gap: var(--grid-gap);
    align-items: center;
  }
  .insights .svc-ico {
    grid-column: 1;
    justify-self: start;
  }
  .insights .svc-title {
    font-size: 20px;
    grid-column: 2 / 4;
    margin: 0;
    pointer-events: none;
    max-width: none;
  }
  .insights .svc-toggle {
    grid-column: 4;
    justify-self: end;
  }
  .insights .svc-body {
    padding-left: 0;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    column-gap: var(--grid-gap);
  }
  .insights .svc-body > * {
    grid-column: 2 / 4;
  }
  /* Insights: centered 3-column image section on desktop */
  .insights .svc-body > .featured.side-by-side {
    grid-column: 1 / -1;
    width: 100%;
    margin: 10px 0 20px;
  }
  /* Insights: keep inline image sections flush inside drawers on desktop */
  .insights .svc-body .container, .insights .svc-body .container.first {
    padding: 0;
  }
  /* Insights: larger screenshot indicators on desktop */
  .insights .work-shot.is-correct .bucket-media::after, .insights .work-shot.is-wrong .bucket-media::after {
    top: -10px;
    left: 15px;
    width: 42px;
    height: 42px;
  }
  /* Insights: figure spans full width at tablet */
  .insights .svc-body > .insights-figure {
    grid-column: 1 / -1;
    width: 100%;
    margin: 10px 0 20px;
  }
  .insights .svc-body > .insights-figure {
  margin-top: 12px;
}
  /* Work page */
  #work.subpage h1 {
    padding-bottom: 30px;
  }
  #work .intro.container {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    column-gap: 1.5rem; /* adjust */
    align-items: start;
  }
  #work .intro.container h1 {
    grid-column: 1 / 3; /* columns 1–2 */
  }
  #work .intro.container p {
    padding-top: 35px;
    grid-column: 3 / 4; /* columns 3–4 */
    justify-self: start; /* left-align within its grid area */
    margin: 0;
  }
  /* Case Studies */
  #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; /* match your system */
    align-items: start;
  }
  .case-study.container > p {
    grid-column: 3 / 5; /* cols 3–4 */
    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 page */
  .about.container {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    column-gap: 5px;
    align-items: start;
    padding-top: 100px;
    /* set this to whatever your container width is */
    --container-width: 1200px;
    --col-gap: 5px;
  }
  .about.container > p {
    grid-column: 2 / 5;
    margin: 0;
    text-align: left;
    /* half of one grid column (accounting for 3 gaps across 4 cols) */
    padding-right: calc((var(--container-width) - (3 * var(--col-gap))) / 8);
  }
  .about.container p:first-of-type {
    font-size: 28px;
  }
  /* Contact */
  /* CONTACT @ 900px+: one shared gutter, not two padded grid items */
  #contact main {
    max-width: 1520px;
    margin: 0 auto;
    padding-left: 30px; /* keep the container gutter */
    padding-right: 30px; /* keep the container gutter */
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    column-gap: 5px;
    row-gap: 40px;
    align-items: start;
  }
  /* Let these sections participate in the main grid */
  #contact .intro.container, #contact .contact.container {
    max-width: none;
    margin: 0;
    width: 100%;
    /* kill ONLY the horizontal padding here, since main now provides it */
    padding-left: 0;
    padding-right: 0;
  }
  /* H1 spans full width and sits above both */
  #contact .intro.container {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    column-gap: 5px;
    padding-top: 120px; /* keep your desktop rhythm */
  }
  #contact .intro.container h1 {
    grid-column: 1 / -1;
    margin: 0;
  }
  #contact .intro.container > p {
    grid-column: 1 / span 2;
    margin: 0;
    max-width: none;
    padding-right: 40px;
  }
  /* Form sits next to the intro paragraph */
  #contact .contact.container {
    grid-column: 3 / span 2;
    padding-top: 0;
  }
  /* Make sure the form itself can fully use the space */
  #contact .contact-form {
    width: 100%;
  }
  /* Force intro paragraph and form onto the same grid row */
  #contact .intro.container {
    grid-row: 1;
  }
  #contact .contact.container {
    grid-row: 1;
    align-self: start;
  }
  #contact .contact.container.first {
    padding-top: 290px; /* match .container at this breakpoint */
  }
  /* Business */
  .business {
    --col: calc((100% - (3 * var(--grid-gap))) / 4);
  }
  .business p, .business ul {
    margin-left: calc(var(--col) + var(--grid-gap));
  }
  /* Optional: keep text contained (usually cols 2–3 like your other sections) */
  .business p, .business ul {
    max-width: calc(2 * var(--col) + var(--grid-gap));
  }
}
/* ==========================================================================
   Breakpoints: 1200px+ (desktop layout system)
   ========================================================================== */
@media (min-width: 1200px) {
  :root {
    --header-h-desktop: 80px;
    --marquee-pad-top-desktop: clamp(32px, 8vh, 80px);
    --marquee-pad-bottom-desktop: clamp(28px, 7vh, 84px);
    --grid-gap: 5px;
  }
  /* Hide mobile controls */
  .nav-toggle, .nav-toggle-btn {
    display: none;
  }
  /* Header row */
  .site-header {
    display: flex;
    align-items: center;
    justify-content: space-between; /* spreads 5 items edge-to-edge */
    padding: 16px 30px;
    gap: 0;
  }
  /* Make the UL transparent so its LIs become flex items of header */
  .site-nav {
    display: contents; /* critical: LIs join the header’s flex row */
    padding: 0;
    border: 0;
    box-shadow: none;
    background: transparent;
    list-style: none;
    margin: 0;
  }
  .site-nav li {
    margin: 0;
  }
  .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;
  }
  /* Optional: small breathing room so text doesn’t hug the edges */
  .site-logo {
    margin-right: 0;
  }
  h2 {
    font-size: 144px;
    font-weight: 600;
  }
  /* --- Marquee --- */
  #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; /* hard-pin top & bottom */
    flex-direction: column;
    justify-content: space-between; /* H1 at top, P at bottom */
    align-items: flex-start;
    gap: 0;
  }
  #marquee h1 {
    max-width: 75%;
  }
  #marquee .overlay-content ul {
    position: absolute;
    right: 13%;
    top: clamp(115px, 12vh, 220px); /* min 115px, grows with height, caps at 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 --- */
  #services-home .btn {
    font-size: 22px;
    font-weight: 500;
  }
  /* --- Insights --- */
  .insights .svc-body > .featured.side-by-side {
    width: 75%;
    margin: 10px auto 20px;
  }
  /* Insights: match side-by-side width at desktop */
  .insights .svc-body > .insights-figure {
    width: 75%;
    margin: 10px auto 20px;
  }
  /* --- Work --- */
  #work .intro.container p {
    font-size: 18px;
  }
  #work-home p {
    padding-top: 35px;
  }
  #work-home .buckets {
    margin-top: 40px;
  }
  /* Case studies */
  .case-study.container p:first-of-type {
    font-size: 30px;
  }
  /* --- About + CTA (shared column vars) --- */
  #about-home, #cta-banner {
    --grid-gap: 5px;
    --col: calc((100% - (3 * var(--grid-gap))) / 4);
  }
  #about-home h2 {
    font-size: 60px;
    padding-bottom: 30px;
  }
  #about-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: 30px;
  }
  #about-home .btn {
    font-size: 22px;
    font-weight: 500;
    box-sizing: border-box; /* keep padding inside the column */
    display: block;
    width: var(--col); /* span exactly one column */
    max-width: var(--col);
    margin-left: calc(var(--col) + var(--grid-gap)); /* start at column 2 */
    text-align: left;
    padding-left: 20px; /* keep your normal inner padding */
    padding-right: 44px; /* keeps arrow position */
  }
  #cta-banner h2 {
    padding-bottom: 60px;
  }
  #cta-banner p {
    margin-left: calc((100% - (3 * var(--grid-gap))) / 4 + var(--grid-gap));
    max-width: 39%;
    padding-bottom: 40px;
  }
  #cta-banner .btn {
    font-size: 22px;
    font-weight: 500;
    box-sizing: border-box; /* keep padding inside the column */
    display: block;
    width: var(--col); /* span exactly one column */
    max-width: var(--col);
    margin-left: calc(var(--col) + var(--grid-gap)); /* start at column 2 */
    text-align: left;
    padding-left: 20px; /* keep your normal inner padding */
    padding-right: 44px;
  }
  #about-home .btn::after, #cta-banner .btn::after {
    right: 15px; /* unchanged arrow offset */
  }
  /* Subpage shared */
  .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;
  }
  /* Subpage shared */
  #work.subpage h1 {
    padding-bottom: 30px;
  }
  /* About page */
  .about.container p:first-of-type {
    font-size: 30px;
  }
  /* Services */
  .services .svc-title {
    font-size: 22px;
  }
  /* Insights */
  .insights .svc-title {
    font-size: 22px;
  }
  /* Contact */
  #contact .contact.container.first {
    padding-top: 385px; /* match .container at this breakpoint */
  }
  #contact button.btn {
    font-size: 22px;
    font-weight: 500;
  }
}
/* ==========================================================================
   Brands reveal behind marquee (NO layout overlap)
   ========================================================================== */
#marquee {
  position: relative;
  z-index: 2; /* sits above brands while revealing */
  overflow: hidden; /* marquee masks what's behind its rounded box */
}
#brands {
  position: relative;
  z-index: 1;
  /* JS will animate this to 0 */
  transform: translateY(var(--brands-y, -140px));
  opacity: var(--brands-o, 0);
  will-change: transform, opacity;
}
@media (prefers-reduced-motion: reduce) {
  #brands {
    transform: none;
    opacity: 1;
  }
}
/* ==========================================================================
   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;
  }
}
/* contact form  */
#message-status.success {
  padding-top: 25px;
}
#message-status.success h2 {
  font-size: 25px;
  line-height: 30px;
}