:root {
  --ink: #07111f;
  --muted: #53606e;
  --line: #e2e7ec;
  --soft: #f5f9fc;
  --pink: #ff078a;
  --blue: #08a7ef;
  --yellow: #ffd400;
  --green: #08bf5b;
  --shadow: 0 10px 28px rgba(7, 17, 31, .08)
}

* {
  box-sizing: border-box
}

html {
  scroll-behavior: smooth
}

body {
  margin: 0;
  color: var(--ink);
  font-family: Montserrat, Arial, sans-serif;
  background: #fff
}

a {
  text-decoration: none;
  transition: color .2s ease, background-color .2s ease, border-color .2s ease
}

a:hover {
  color: var(--pink)
}

.btn:hover,
.btn-brand:hover,
.btn-outline-brand:hover,
.quote-link:hover {
  color: #fff !important;
  background-color: var(--pink) !important;
  border-color: var(--pink) !important
}

.btn.btn-sm.btn-outline-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .4rem;
  min-height: 36px;
  border-color: #aeb9c4;
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  font-size: .7rem;
  font-weight: 800;
  line-height: 1;
  box-shadow: 0 3px 10px rgba(7, 17, 31, .05)
}

.btn.btn-sm.btn-outline-secondary .icon-inline {
  width: 14px;
  height: 14px;
  margin: 0 !important
}

.page-width {
  max-width: 1380px;
  width: 100%
}

.container.page-width {
  max-width: 1380px;
  width: 100%
}

.eyebrow {
  color: var(--pink);
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase
}

.section-title {
  font-size: clamp(1.45rem, 2.6vw, 2.2rem);
  font-weight: 800;
  letter-spacing: -.04em
}

.section-copy {
  color: var(--muted);
  font-size: .82rem;
  line-height: 1.6
}

#intro .section-copy {
  max-width: 640px
}

.about-page-hero {
  padding: clamp(3rem, 6vw, 6rem) 0;
  background: linear-gradient(115deg, #fff 0%, #f7fbfd 100%)
}

.about-page-copy h1 {
  margin: .8rem 0 1.2rem;
  font-size: clamp(2.15rem, 4vw, 3.65rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -.055em
}

.about-page-copy>p {
  max-width: 590px;
  margin-bottom: 2rem;
  color: var(--muted);
  font-size: .92rem;
  line-height: 1.75
}

.about-value {
  display: flex;
  align-items: center;
  gap: .7rem;
  min-height: 68px;
  padding: .65rem;
  border-radius: 9px;
  background: #fff;
  box-shadow: 0 5px 16px rgba(7, 17, 31, .05)
}

.about-value img {
  width: 36px;
  height: 36px;
  flex: 0 0 36px;
  object-fit: contain
}

.about-value strong {
  font-size: .7rem;
  line-height: 1.45
}

.about-production-collage {
  overflow: hidden;
  border-radius: 14px;
  box-shadow: 0 14px 32px rgba(7, 17, 31, .12)
}

.about-production-collage img {
  display: block;
  width: 100%;
  height: auto
}

.page-banner {
  padding: clamp(3rem, 6vw, 5.6rem) 1rem;
  background: linear-gradient(115deg, #f7fbfd 0%, #eaf7fd 100%)
}

.page-banner h1 {
  margin: .65rem 0 .75rem;
  font-size: clamp(2rem, 4.2vw, 3.6rem);
  font-weight: 800;
  letter-spacing: -.055em
}

.page-banner p {
  max-width: 620px;
  margin: 0 auto;
  color: var(--muted);
  font-size: .88rem;
  line-height: 1.6
}

.product-page-grid .product-card {
  min-height: 260px
}

.product-page-grid .product-card img {
  height: 190px
}

.industries-icon-grid .business-card {
  min-height: 135px
}

.gallery-page-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem
}

.gallery-page-grid img {
  width: 100%;
  aspect-ratio: 1 / .8;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: var(--shadow)
}

.contact-details,
.contact-form {
  height: 100%;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border-radius: 12px;
  background: #fff;
  box-shadow: var(--shadow)
}

.contact-details a {
  display: block;
  margin-top: 1rem;
  color: var(--ink);
  font-size: .78rem;
  font-weight: 700
}

.contact-details a:hover {
  color: var(--pink)
}

.contact-form .form-control,
.contact-form .form-select {
  min-height: 46px;
  border-color: #d6dde4;
  font-size: .78rem
}

.contact-form textarea.form-control {
  min-height: 140px
}

.accent-line {
  display: flex;
  justify-content: center;
  gap: 3px;
  margin-top: .65rem
}

.accent-line i {
  display: block;
  width: 42px;
  height: 3px;
  border-radius: 10px;
  background: var(--blue)
}

.accent-line i:nth-child(2) {
  width: 24px;
  background: var(--pink)
}

.accent-line i:nth-child(3) {
  width: 24px;
  background: var(--yellow)
}

.site-header {
  background: #fff;
  border-radius: 0 0 9px 9px;
  box-shadow: var(--shadow);
  position: relative;
  z-index: 4;
  overflow: hidden
}

.topbar {
  min-height: 42px;
  display: flex;
  align-items: center;
  font-size: .78rem;
  color: #414b56;
  border-bottom: 1px solid var(--line)
}

.topbar i {
  color: #69747f
}

.icon-inline {
  display: inline-block;
  width: 1rem;
  height: 1rem;
  object-fit: contain;
  vertical-align: -0.2rem
}

.metric-icon,
.step-svg,
.business-svg,
.benefit-svg,
.footer-social-icon {
  display: inline-block;
  object-fit: contain
}

.metric-icon {
  width: 2rem;
  height: 2rem
}

.step-svg {
  width: auto;
  height: 2.35rem;
  max-width: 3.5rem
}

.business-svg {
  width: 2.45rem;
  height: 2.45rem
}

.benefit-svg {
  width: 1.25rem;
  height: 1.25rem;
  flex: 0 0 1.25rem;
  padding: .5rem
}

.site-footer .footer-main li .icon-inline {
  filter: invert(1)
}

.quote-link .icon-inline,
.btn-brand .icon-inline,
.footer-cta .icon-inline {
  filter: invert(1)
}

.btn:hover .icon-inline,
.btn-outline-brand:hover .icon-inline {
  filter: invert(1)
}

.topbar-social-link {
  display: inline-block;
  line-height: 1;
  vertical-align: -.1em
}

.topbar-social-link img {
  display: block;
  width: 1rem;
  height: 1rem;
  object-fit: contain;
  filter: invert(27%) sepia(13%) saturate(687%) hue-rotate(169deg) brightness(92%) contrast(89%);
  transition: filter .2s ease
}

.topbar-social-link:hover img {
  filter: invert(16%) sepia(98%) saturate(5526%) hue-rotate(321deg) brightness(102%) contrast(102%)
}

.topbar .bi-facebook,
.topbar .bi-instagram,
.topbar .bi-linkedin {
  font-size: 1.35em;
  vertical-align: -.08em
}

.topbar span+span {
  border-left: 1px solid #dfe4e8;
  margin-left: .9rem;
  padding-left: .9rem
}

.brand-logo {
  width: 190px;
  height: 68px;
  object-fit: contain;
  object-position: left center
}

.navbar {
  min-height: 82px
}

.navbar .brand-logo {
  width: 225px;
  height: 78px
}

.navbar .nav-link {
  position: relative;
  font-size: .82rem;
  font-weight: 700;
  color: var(--ink);
  padding: 1.05rem .62rem
}

.navbar .nav-link:hover {
  color: var(--pink)
}

.navbar .nav-link.active:after {
  content: "";
  position: absolute;
  left: .62rem;
  right: .62rem;
  bottom: .45rem;
  height: 3px;
  border-radius: 99px;
  background: var(--blue)
}

.quote-link {
  background: var(--ink);
  color: #fff;
  border-radius: 6px;
  padding: .82rem 1.05rem;
  font-size: .78rem;
  font-weight: 800
}

.quote-link:hover {
  color: #fff;
  background: var(--pink)
}

.hero {
  /* background: linear-gradient(110deg, #f6fbfe 0%, #eef7fb 53%, #eaf1f6 100%); */
  overflow: hidden
}

.hero-copy {
  padding: clamp(2rem, 5vw, 4.5rem) clamp(1.25rem, 4vw, 4rem)
}

.hero-chip {
  display: inline-block;
  border: 1px solid #5fc3ee;
  background: #ebf9ff;
  color: #287798;
  border-radius: 999px;
  padding: .38rem .65rem;
  font-size: .63rem;
  font-weight: 700
}

.hero h1 {
  font-size: clamp(2.25rem, 4vw, 3.5rem);
  line-height: .98;
  letter-spacing: -.055em;
  font-weight: 800;
  margin: 1rem 0
}

.hero h1 span {
  font-size: .75em
}

.hero p {
  color: #394652;
  font-size: .8rem;
  line-height: 1.55;
  max-width: 510px
}

.btn-brand {
  background: var(--green);
  border: 0;
  color: #fff;
  font-size: .7rem;
  font-weight: 800;
  padding: .75rem 1rem;
  border-radius: 6px
}

.btn-outline-brand {
  border: 1px solid var(--ink);
  color: var(--ink);
  font-size: .7rem;
  font-weight: 800;
  padding: .72rem 1rem;
  border-radius: 6px;
  background: #fff
}

.hero-media {
  min-height: 390px;
  position: relative
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block
}

/* Use the slide image across the full hero, with the existing copy overlaid on the left. */
#heroCarousel .carousel-item .row {
  position: relative;
  min-height: clamp(440px, 38vw, 530px)
}

#heroCarousel .hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  flex: 0 0 100%;
  width: 100%;
  max-width: 100%;
  height: 100%;
  min-height: 0;
  padding: 0
}

/* 
#heroCarousel .hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(246, 251, 254, .96) 0%, rgba(238, 247, 251, .86) 42%, rgba(234, 241, 246, .12) 70%, transparent 100%)
} */

#heroCarousel .hero-copy {
  position: relative;
  z-index: 1;
  flex: 0 0 50%;
  max-width: 50%
}

@media (min-width: 992px) {
  #heroCarousel .carousel-item .row {
    height: clamp(440px, 38vw, 530px)
  }

  #heroCarousel .hero-copy,
  #heroCarousel .hero-media {
    height: 100%;
    min-height: 0
  }
}

.section-pad {
  padding: 3.2rem 0
}

.photo-card {
  height: clamp(280px, 19vw, 360px);
  border-radius: 9px;
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow)
}

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

.photo-card:after {
  content: "";
  position: absolute;
  inset: 42% 0 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, .8))
}

.photo-card figcaption {
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: .8rem;
  color: #fff;
  font-size: .9rem;
  font-weight: 800;
  z-index: 1;
  display: flex;
  justify-content: space-between
}

.round-arrow {
  width: 40px;
  height: 40px;
  flex: 0 0 40px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: #fff;
  color: var(--ink);
  display: grid;
  place-items: center
}

.round-arrow img {
  width: 25px;
  height: 18px;
}

.product-panel {
  border: 0;
  border-radius: 0;
  overflow: visible;
  background: transparent
}

.product-card {
  min-height: 175px;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #f0f0f2;
  box-shadow: 0 4px 14px rgba(7, 17, 31, .035);
  display: flex;
  flex-direction: column;
  justify-content: space-between
}

.product-card img {
  /* height: 100%; */
  width: 100%;
  object-fit: contain
}

.product-card strong {
  font-size: .76rem
}

.product-card span {
  width: 24px;
  height: 24px;
  border: 1px solid #aab4bd;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: .75rem
}

#products {
  background: #f8fbfd !important
}

#products .section-title {
  font-size: clamp(1.35rem, 2.2vw, 1.9rem)
}

#products .eyebrow {
  font-size: .72rem
}

#products .btn {
  border: 2px solid #aab4bd;
  border-radius: 7px;
  font-weight: 700;
  padding: .55rem .9rem
}

.story {
  background: #fff;
  box-shadow: var(--shadow)
}

.story-copy {
  padding: clamp(1.8rem, 4vw, 3.5rem);
  position: relative;
  overflow: hidden;
  background: #fff
}

.story-copy:before {
  content: "";
  position: absolute;
  inset: 0;
  background: url('https://placehold.co/800x600/f7fbfd/eaf4f8?text=ADZIGN') center/cover no-repeat;
  opacity: .1;
  pointer-events: none
}

.story-copy>* {
  position: relative;
  z-index: 1
}

.story-media {
  min-height: 380px
}

.story-media img {
  width: 100%;
  height: 100%;
  object-fit: cover
}

.metric {
  border-right: 1px solid var(--line)
}

.metric:last-child {
  border-right: 0
}

.metric i,
.metric .metric-icon {
  font-size: 1.55rem;
  color: var(--blue)
}

.metric:nth-child(2) i {
  color: var(--pink)
}

.metric:nth-child(3) i {
  color: #d8b900
}

.metric strong {
  display: block;
  font-size: 1.15rem
}

.metric small {
  font-size: .62rem;
  color: var(--muted)
}

#about {
  background: #f4faff !important
}

#about .story {
  min-height: 510px
}

#about .story>.story-copy {
  flex: 0 0 55%;
  max-width: 55%;
  min-height: 510px
}

#about .story>.story-media {
  flex: 0 0 45%;
  max-width: 45%;
  min-height: 510px
}

#about .story {
  border-radius: 9px;
  overflow: hidden
}

#about .section-title {
  font-size: clamp(1.7rem, 3vw, 2.65rem)
}

#about .section-copy {
  font-size: .9rem;
  max-width: 650px
}

#about .metric i,
#about .metric .metric-icon {
  font-size: 2rem
}

#about .metric>i,
#about .metric>.metric-icon {
  display: block;
  width: auto;
  height: 2rem;
  max-width: 2.5rem;
  margin: 0 auto;
  line-height: 2rem
}

#about .metric strong {
  font-size: 1.35rem
}

.quality-card {
  position: absolute;
  bottom: 1rem;
  right: 0;
  background: #fff;
  padding: .9rem 1rem;
  box-shadow: 0 8px 25px rgba(0, 0, 0, .16);
  width: 64%;
  font-size: .65rem;
  border-radius: 9px 0px 0px 9px;
}

.quality-card img {
  max-height: 50px;
  max-width: 46px;
  background: #087bff;
  padding: .7rem;
  float: left;
  margin-right: .65rem;
  border-radius: 9px;
}

.quality-card p {
  font-size: .55rem;
  color: var(--muted);
  margin: .3rem 0
}

.quality-card a {
  color: #087bff;
  font-weight: 800
}

.process-section {
  background: #f4faff;
  padding-top: 4rem;
  padding-bottom: 4rem
}

.step-icon {
  width: 82px;
  height: 82px;
  border: 2px solid #73cbee;
  border-radius: 9px;
  background: #eaf9ff;
  display: grid;
  place-items: center;
  margin: auto;
  position: relative;
  font-size: 2.35rem
}

.step-no {
  position: absolute;
  right: -5px;
  top: -8px;
  width: 21px;
  height: 21px;
  border-radius: 50%;
  background: var(--pink);
  color: #fff;
  font-size: .65rem;
  display: grid;
  place-items: center;
  font-weight: 800
}

.step h3 {
  font-size: .8rem;
  line-height: 1.2;
  margin: .7rem 0 .3rem
}

.step p {
  font-size: .66rem;
  color: var(--muted);
  line-height: 1.4
}

#process .section-title {
  font-size: clamp(1.6rem, 2.8vw, 2.35rem)
}

#process .step {
  position: relative
}

#process .step:not(:last-child):after {
  content: "→";
  position: absolute;
  right: -.55rem;
  top: 2.2rem;
  color: #7d8994;
  font-size: 1.65rem;
  font-weight: 400
}

.business-card,
.benefit-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 5px 18px rgba(7, 17, 31, .04)
}

.business-card {
  min-height: 112px;
  padding: .8rem .4rem;
  text-align: center
}

.business-card i,
.business-card .business-svg {
  font-size: 1.5rem
}

.business-card p {
  font-size: .58rem;
  font-weight: 800;
  line-height: 1.25;
  margin: .45rem 0 0
}

.benefit-card {
  padding: .75rem;
  display: flex;
  align-items: center;
  gap: .6rem;
  min-height: 70px;
  font-size: .63rem;
  font-weight: 800
}

.benefit-card i,
.benefit-card .benefit-svg {
  width: 35px;
  height: 35px;
  display: grid;
  place-items: center;
  /* border: 2px solid var(--blue); */
  /* border-radius: 10px; */
  /* color: var(--blue); */
  /* font-size: 1.05rem */
}

.benefit-card:nth-child(1) i,
.benefit-card:nth-child(1) .benefit-svg {
  /* color: #c7a900;
  border-color: #e7c800 */
}

.benefit-card:nth-child(2) i,
.benefit-card:nth-child(2) .benefit-svg {
  /* color: var(--pink);
  border-color: var(--pink) */
}

#why {
  padding-top: 3.5rem;
  padding-bottom: 3.5rem;
  background: #f3f9fd !important
}

#why .section-title {
  font-size: clamp(1.65rem, 2.8vw, 2.45rem)
}

#why .section-copy {
  font-size: .85rem;
  max-width: 360px
}

#why .row.g-2 {
  --bs-gutter-x: 1rem;
  --bs-gutter-y: 1rem
}

#why .benefit-card {
  min-height: 88px;
  border-radius: 9px;
  padding: 1rem;
  gap: .8rem;
  font-size: .72rem
}

#why .benefit-card i,
#why .benefit-card .benefit-svg {
  box-sizing: border-box;
  width: 100%;
  height: 100%;
  flex: 0 0 65px;
  /* border-radius: 11px; */
  /* font-size: 1.25rem */
}

#why .benefit-card .benefit-svg {
  /* padding: .7rem; */
  object-fit: contain
}

.benefit-card:nth-child(6) i,
.benefit-card:nth-child(6) .benefit-svg {
  color: #ff6a3d;
  border-color: #ff6a3d
}

.quote-box {
  border: 1px solid #ced7df;
  border-radius: 25px 9px 9px 25px;
  overflow: hidden;
  box-shadow: var(--shadow)
}

.quote-copy {
  background: linear-gradient(145deg, #07111f, #0c1b2c);
  color: #fff;
  padding: 2rem;
  position: relative;
  overflow: hidden
}

/* .quote-copy:after {
  content: "";
  position: absolute;
  right: -3rem;
  top: -3rem;
  width: 9rem;
  height: 24rem;
  transform: rotate(28deg);
  background: linear-gradient(90deg, var(--blue) 0 25%, var(--pink) 25% 50%, var(--yellow) 50% 75%, #fff 75%)
} */

.quote-copy>* {
  position: relative;
  z-index: 1
}

.quote-copy h2 {
  font-size: clamp(1.8rem, 3vw, 2.7rem);
  line-height: 1
}

.quote-copy h2 span {
  color: var(--yellow)
}

#quote {
  padding-top: .5rem !important;
  padding-bottom: .5rem
}

#quote .quote-copy {
  flex: 0 0 48%;
  max-width: 48%;
  min-height: 300px;
  padding: 2.4rem 2.8rem;
  background-image: url(../img/cta-image.webp);
  background-repeat: no-repeat;
}

#quote .quote-form {
  flex: 0 0 52%;
  max-width: 52%;
  padding: 1.4rem
}

#quote .quote-copy h2 {
  font-size: clamp(2rem, 3.5vw, 3rem);
  letter-spacing: -.04em
}

#quote .quote-copy p {
  font-size: .85rem;
  max-width: 410px;
  line-height: 1.55
}

#quote .form-control,
#quote .form-select {
  min-height: 42px;
  border-color: #d6dde4;
  border-radius: 7px;
  font-size: .72rem
}

#quote textarea.form-control {
  min-height: 72px
}

#quote .btn-brand,
#quote .btn-outline-brand {
  /* min-height: 46px; */
  display: inline-flex;
  align-items: center
}

.quote-form {
  padding: 1.2rem
}

.quote-form .form-control,
.quote-form .form-select {
  font-size: .7rem;
  padding: .65rem
}

.work-img {
  /* height: 205px; */
  /* width: 100%; */
  /* object-fit: cover; */
  border-radius: 9px;
  box-shadow: var(--shadow)
}

#gallery {
  padding-top: 1.5rem;
  padding-bottom: 3.5rem;
  background: #fff !important
}

#gallery .section-title {
  font-size: clamp(1.55rem, 2.8vw, 2.35rem)
}

#gallery .eyebrow {
  font-size: .74rem
}

#gallery .row.g-2 {
  --bs-gutter-x: 1rem;
  --bs-gutter-y: 1rem
}

.site-footer {
  background: #07131f;
  color: #d8e0e6;
  border-radius: 9px 9px 0 0;
  padding-top: .7rem;
  box-shadow: 0 -8px 28px rgba(7, 17, 31, .12)
}

.footer-cta {
  border: 2px solid transparent;
  border-radius: 7px;
  padding: 1.25rem 1.5rem;
  background: linear-gradient(#07131f, #07131f) padding-box, linear-gradient(90deg, #078cff, #ff078a, #ffd400, #078cff) border-box;
  position: relative;
  /* min-height: 150px; */
  align-items: center
}

.footer-cta h2 {
  font-size: 1.15rem
}

.footer-cta p,
.site-footer a,
.site-footer li {
  font-size: .72rem;
  color: #d8e0e6
}

.site-footer h3 {
  font-size: .78rem;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: .08em
}

.site-footer ul {
  list-style: none;
  padding: 0;
  margin: 0
}

.site-footer li {
  margin-bottom: .7rem
}

.social {
  width: 42px;
  height: 42px;
  border: 1px solid currentColor;
  border-radius: 5px;
  display: grid;
  place-items: center
}

.site-footer .brand-logo {
  width: 300px;
  height: 98px
}

.site-footer .footer-main p,
.site-footer .footer-main li,
.site-footer .footer-main a {
  font-size: .82rem
}

.site-footer .footer-main h3 {
  font-size: .9rem
}

.site-footer .social {
  width: 32px;
  height: 32px;
  border: 0;
  font-size: 1.25rem
}

.footer-social-list {
  display: grid;
  grid-template-columns: repeat(4, 32px);
  gap: .5rem
}

.site-footer .social,
.site-footer .social:hover {
  color: inherit
}

.site-footer a:hover {
  color: var(--pink)
}

.footer-social-icon {
  width: 100%;
  height: 100%;
  max-width: 32px;
  max-height: 32px;
  object-fit: contain
}

.footer-cta .btn-danger {
  background: var(--pink);
  border-color: var(--pink);
  font-weight: 800
}

.footer-cta .btn {
  /* min-height: 44px; */
  padding: .65rem 1.2rem;
  font-size: .72rem
}

.site-footer .contact-list i {
  font-size: 1rem
}

.footer-cta:before {
  content: "\f618";
  font-family: "bootstrap-icons";
  position: absolute;
  left: 1.35rem;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border: 2px solid #16d86b;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #16d86b;
  font-size: 1.65rem
}

.footer-cta>div:first-child {
  padding-left: 4.3rem
}

.footer-main>div+div {
  border-left: 1px solid rgba(255, 255, 255, .16);
  padding-left: 1.5rem
}

.footer-main {
  padding: 1rem 0 .5rem
}

.footer-main>div {
  min-height: 225px
}

.site-footer .footer-main>div:first-child p {
  max-width: 290px;
  line-height: 1.55
}

.site-footer .footer-bottom {
  font-size: .68rem;
  min-height: 42px;
  align-items: center
}

.footer-bottom .copyright {
  text-align: center;
}

.footer-bottom .status {
  position: relative;
  text-align: center
}

.footer-bottom .text-center:before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-right: .65rem;
  vertical-align: middle;
  border-radius: 50%;
  background: var(--blue)
}

.footer-bottom .status:before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--pink);
  margin-right: .65rem;
  vertical-align: middle
}

.footer-bottom .status.yellow:before {
  background: var(--yellow)
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .12);
  font-size: .6rem
}

.hero .carousel-indicators {
  z-index: 3;
  bottom: .55rem;
  margin-bottom: 0;
  gap: .15rem
}

.hero .carousel-indicators [data-bs-target] {
  width: 11px;
  height: 11px;
  border: 0;
  border-radius: 50%;
  background: #aeb8c2;
  opacity: 1
}

.hero .carousel-indicators .active {
  background: var(--pink)
}

.hero .carousel-indicators [data-bs-target]:hover {
  background: var(--pink)
}

.hero-control {
  width: 42px;
  height: 42px;
  top: 50%;
  bottom: auto;
  transform: translateY(-50%);
  margin: 0 .6rem;
  border: 0;
  border-radius: 50%;
  background: #fff;
  opacity: .95;
  box-shadow: 0 5px 16px rgba(7, 17, 31, .14)
}

.hero-control .carousel-control-prev-icon,
.hero-control .carousel-control-next-icon {
  filter: invert(1);
  background-color: var(--ink);
  border-radius: 50%;
  width: 26px;
  height: 26px;
  background-size: 55%
}

.hero-control:hover {
  opacity: 1
}

@media(max-width:991.98px) {
  #heroCarousel .carousel-item .row {
    min-height: 0;
    flex-wrap: wrap
  }

  #heroCarousel .hero-copy {
    flex: 0 0 100%;
    max-width: 100%
  }

  #heroCarousel .hero-media {
    position: relative;
    inset: auto;
    flex: 0 0 100%;
    width: 100%;
    max-width: 100%;
    height: 322px;
    min-height: 322px;
    order: -1;
    overflow: hidden
  }

  #heroCarousel .hero-media img {
    height: 100%;
    object-fit: cover;
    object-position: right center
  }

  #about .story>.story-copy,
  #about .story>.story-media {
    flex: 0 0 100%;
    max-width: 100%;
    min-height: 0
  }

  #process .step:not(:last-child):after {
    display: none
  }

  #quote .quote-copy,
  #quote .quote-form {
    flex: 0 0 100%;
    max-width: 100%
  }

  .navbar .nav-link {
    padding: .95rem 0;
    font-size: .85rem;
    font-weight: 800
  }

  .navbar-toggler {
    border: 3px solid #5d5d5d;
    border-radius: 10px
  }

  .navbar-toggler:focus {
    box-shadow: none
  }

  .navbar-collapse {
    padding: .35rem 0 .75rem
  }

  .navbar-nav {
    align-items: stretch !important;
    margin-top: .3rem
  }

  .navbar .nav-link.active:after {
    left: 0;
    right: 0;
    bottom: 0
  }

  .navbar .quote-link {
    display: inline-flex;
    align-items: center;
    align-self: flex-start;
    margin-top: .55rem;
    padding: .7rem .9rem;
    font-size: .75rem
  }

  .hero h1 {
    font-size: clamp(2rem, 5vw, 3.1rem)
  }

  .hero p {
    font-size: .72rem
  }

  .hero-media {
    min-height: 330px
  }

  .story-media {
    min-height: 320px
  }
}

@media(max-width:575.98px) {
  .topbar {
    display: none
  }

  .brand-logo {
    width: 135px
  }

  .navbar .brand-logo {
    width: 135px;
    height: 48px
  }

  .navbar {
    min-height: 58px
  }

  .navbar-toggler {
    padding: .25rem .45rem;
    font-size: .9rem
  }

  .site-footer .brand-logo {
    width: 190px;
    height: 65px
  }

  #heroCarousel .hero-copy {
    flex-basis: 100%;
    max-width: 100%;
    padding: 1.25rem .75rem 2rem
  }

  .hero h1 {
    font-size: clamp(1.35rem, 6.8vw, 1.8rem);
    margin: .7rem 0
  }

  .hero-chip {
    padding: .3rem .5rem;
    font-size: .62rem
  }

  .hero p {
    margin-bottom: .8rem;
    font-size: .74rem;
    line-height: 1.45
  }

  .hero .btn-brand,
  .hero .btn-outline-brand {
    padding: .58rem .82rem;
    font-size: .7rem
  }

  .hero-control {
    width: 30px;
    height: 30px;
    margin: 0 .2rem
  }

  .hero-control .carousel-control-prev-icon,
  .hero-control .carousel-control-next-icon {
    width: 19px;
    height: 19px
  }

  .hero-copy {
    padding: 2rem 1.25rem
  }

  #heroCarousel .hero-media {
    height: 322px
  }

  .section-pad {
    padding: 2.4rem 0
  }

  .about-page-hero {
    padding: 2.5rem 0
  }

  .about-page-copy h1 {
    font-size: 2rem
  }

  .about-page-copy>p {
    margin-bottom: 1.5rem;
    font-size: .78rem
  }

  .about-value {
    min-height: 60px;
    padding: .55rem;
    gap: .5rem
  }

  .about-value img {
    width: 30px;
    height: 30px;
    flex-basis: 30px
  }

  .about-value strong {
    font-size: .61rem
  }

  .page-banner {
    padding: 2.5rem 1rem
  }

  .page-banner h1 {
    font-size: 2rem
  }

  .page-banner p {
    font-size: .76rem
  }

  .product-page-grid .product-card {
    min-height: 145px
  }

  .product-page-grid .product-card img {
    height: 85px
  }

  .gallery-page-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: .7rem
  }

  .contact-details,
  .contact-form {
    padding: 1.25rem
  }

  .photo-card {
    height: clamp(145px, 48vw, 190px)
  }

  .round-arrow {
    width: 32px;
    height: 32px;
    flex-basis: 32px
  }

  .round-arrow img {
    width: 16px;
    height: 11px
  }

  .product-card {
    min-height: 145px;
    padding: .65rem
  }

  .product-card img {
    height: 85px
  }

  .story-media {
    min-height: 270px
  }

  #about .section-copy {
    font-size: .78rem
  }

  #about .metric {
    padding: .6rem .3rem
  }

  #about .metric:nth-child(2) {
    border-right: 0
  }

  #about .metric:nth-child(-n+2) {
    border-bottom: 1px solid var(--line)
  }

  #about .metric strong {
    font-size: 1.05rem
  }

  #about .metric small {
    font-size: .56rem
  }

  .quality-card {
    width: 90%
  }

  .quote-copy {
    padding: 1.5rem
  }

  /* #quote .quote-copy {
    background: #07111f
  } */

  /* #quote .quote-copy:before {
    content: "";
    position: absolute;
    inset: -50%;
    z-index: 0;
    background: url(../img/cta-image.webp) bottom center / cover no-repeat;
    transform: rotate(-90deg)
  } */

  .quote-box {
    border-radius: 25px
  }

  #quote .quote-copy h2 {
    font-size: 1.8rem
  }

  #quote .quote-copy .btn-brand,
  #quote .quote-copy .btn-outline-brand {
    width: 100%;
    justify-content: center;
    margin: 0 0 .6rem !important
  }

  /* .work-img {
    height: 120px
  } */

  .footer-cta .btn {
    width: 100%
  }

  .footer-cta {
    padding-left: 1.25rem
  }

  .footer-cta:before {
    display: none
  }

  .footer-cta>div:first-child {
    padding-left: 0
  }

  .footer-main>div+div {
    border-left: 0;
    padding-left: 0
  }

  .site-footer .brand-logo {
    width: 135px;
    height: 48px;
    min-height: 120px;
    display: block;
    margin: 0 auto .5rem !important
  }

  .footer-main {
    padding: .5rem 0 0 .75rem;
    --bs-gutter-y: 1.25rem
  }

  .footer-main>div {
    min-height: 0
  }

  .site-footer .footer-main p,
  .site-footer .footer-main li,
  .site-footer .footer-main a {
    font-size: .76rem
  }

  .site-footer .footer-main>div:first-child p {
    margin-left: auto;
    margin-right: auto;
    text-align: center
  }

  .site-footer .footer-main h3 {
    margin-bottom: .65rem;
    font-size: .8rem
  }

  .site-footer li {
    margin-bottom: .45rem
  }

  .footer-social-list {
    grid-template-columns: repeat(4, 27px);
    gap: .35rem
  }

  .site-footer .social,
  .footer-social-icon {
    width: 27px;
    height: 27px
  }

  .site-footer .footer-bottom {
    min-height: 0;
    margin-top: 1.5rem !important;
    padding-top: .75rem !important;
    text-align: center
  }

  .site-footer .footer-bottom>div {
    margin: .2rem 0;
    text-align: center !important;
    font-size: .7rem
  }

  .site-footer .footer-bottom {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    column-gap: .65rem
  }

  .site-footer .footer-bottom>div {
    flex: 0 0 auto;
    width: auto;
    white-space: nowrap
  }

  .site-footer .footer-bottom>div:first-child {
    flex-basis: 100%
  }
}

/* Homepage showcase: carousel and fast quote form share the hero area. */
#slider.hero {
  padding: 1.75rem 0rem 2.2rem;
  /* background: linear-gradient(115deg, #f7fafb 0%, #fff 46%, #fafdfc 100%); */
  overflow: visible;
}

.hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.28fr) minmax(390px, .92fr);
  gap: clamp(1.25rem, 2.5vw, 2.5rem);
  align-items: stretch;
}

.hero-showcase {
  min-width: 0;
  display: flex;
  flex-direction: column;
}

#heroCarousel {
  flex: 1 1 auto;
  min-height: 0;
  overflow: hidden;
  border-radius: 9px;
  background: #fff;
  box-shadow: var(--shadow);
}

#heroCarousel .carousel-item .row {
  min-height: 0;
  height: 100%;
}

#heroCarousel .carousel-inner,
#heroCarousel .carousel-item,
#heroCarousel .carousel-item > .container-fluid {
  height: 100%;
}

#heroCarousel .hero-copy {
  flex-basis: 64%;
  max-width: 64%;
  padding: clamp(2rem, 3.1vw, 2.8rem);
}

#heroCarousel .hero-copy h1 {
  max-width: 510px;
  font-size: clamp(2.2rem, 3.2vw, 3.25rem);
}

#heroCarousel .hero-copy p {
  max-width: 480px;
  font-size: .82rem;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
}

#heroCarousel .hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255,255,255,.98) 0%, rgba(255,255,255,.91) 48%, rgba(255,255,255,.08) 78%, transparent 100%);
}

.hero .carousel-indicators {
  z-index: 4;
  right: auto;
  left: 1.65rem;
  bottom: .9rem;
  margin-left: 0;
  margin-right: 0;
  justify-content: flex-start;
}

.hero .carousel-indicators [data-bs-target] {
  width: 9px;
  height: 9px;
  background: #cbd2d8;
}

.hero .carousel-indicators .active {
  width: 32px;
  border-radius: 9px;
  background: var(--ink);
}

.hero-control {
  z-index: 5;
  top: auto;
  bottom: .65rem;
  transform: none;
  width: 34px;
  height: 34px;
  margin: 0;
}

.hero-control.carousel-control-prev { left: auto; right: 3.4rem; }
.hero-control.carousel-control-next { right: .85rem; }

.hero-control .carousel-control-prev-icon,
.hero-control .carousel-control-next-icon {
  width: 19px;
  height: 19px;
}

.hero-benefits {
  display: flex;
  justify-content: space-between;
  gap: .75rem;
  min-height: 73px;
  padding: 1.15rem .15rem 0;
}

.hero-benefits div {
  display: grid;
  grid-template-columns: 42px auto;
  column-gap: .8rem;
  align-items: center;
  align-content: center;
  color: var(--ink);
  font-size: .78rem;
  font-weight: 800;
  white-space: nowrap;
}

.hero-benefits img {
  width: 48px;
  height: 48px;
  grid-row: span 2;
}

.hero-benefits small {
  color: #8a96a3;
  font-size: .68rem;
  font-weight: 500;
}

.hero-quote-card {
  border-radius: 9px;
  background: #fff;
  padding: clamp(1.4rem, 2.2vw, 2rem);
  box-shadow: var(--shadow);
}

.hero-quote-heading {
  display: flex;
  justify-content: space-between;
  gap: .75rem;
  align-items: flex-start;
  margin-bottom: 1.45rem;
}

.hero-quote-heading h2 {
  margin: 0 0 .25rem;
  font-size: clamp(1.22rem, 1.65vw, 1.55rem);
  font-weight: 800;
  letter-spacing: -.045em;
}

.hero-quote-heading p {
  margin: 0;
  color: #8a96a3;
  font-size: .67rem;
}

.quote-badges { display: flex; gap: .35rem; flex-wrap: wrap; justify-content: flex-end; }
.quote-badges span { border: 1px solid var(--line); background: #f8fafb; border-radius: 9px; padding: .38rem .55rem; font-size: .65rem; font-weight: 800; white-space: nowrap; }

.hero-quote-form label:not(.hero-upload) {
  display: block;
  margin: 0 0 .35rem;
  color: #78828b;
  font-size: .65rem;
  font-weight: 800;
  letter-spacing: .025em;
  text-transform: uppercase;
}

.hero-quote-form .form-control,
.hero-quote-form .form-select {
  min-height: 40px;
  padding: .55rem .75rem;
  border-color: #dfe4e8;
  border-radius: 9px;
  color: var(--ink);
  font-size: .8rem;
  box-shadow: none;
}

.hero-quote-form textarea.form-control { min-height: 64px; border-radius: 9px; resize: vertical; }
.hero-quote-form .form-control::placeholder { color: #a1abba; opacity: 1; }
.hero-quote-form .form-control:focus, .hero-quote-form .form-select:focus { border-color: var(--blue); }

.hero-upload {
  display: flex;
  align-items: center;
  gap: .6rem;
  min-height: 55px;
  padding: .45rem .7rem;
  border: 1px dashed #cfd7dd;
  border-radius: 9px;
  cursor: pointer;
}
.hero-upload > img { width: 25px; height: 25px; }
.hero-upload span { display: grid; gap: .14rem; font-size: .61rem; line-height: 1.1; }
.hero-upload small { color: #98a2ac; font-size: .53rem; }
.hero-upload b { margin-left: auto; padding: .42rem .7rem; border-radius: 9px; background: var(--ink); color: #fff; font-size: .58rem; }

.hero-quote-submit { width: 100%; min-height: 44px; border: 0; border-radius: 9px; background: var(--pink); color: #fff; font-size: .72rem; font-weight: 800; box-shadow: 0 9px 18px rgba(255, 7, 138, .22); }
.hero-quote-submit:hover { background: var(--ink); }
.hero-form-note { margin: .55rem 0 0; color: #98a2ac; font-size: .55rem; text-align: center; }

@media (max-width: 991.98px) {
  #slider.hero { padding: 1.15rem .9rem 1.8rem; }
  .hero-layout { grid-template-columns: 1fr; max-width: 700px; margin: 0 auto; }
  #heroCarousel { flex: initial; }
  #heroCarousel .carousel-item .row { min-height: 460px; height: auto; }
  #heroCarousel .hero-media { position: absolute; inset: 0; width: 100%; max-width: 100%; height: 100%; min-height: 0; order: initial; }
  #heroCarousel .hero-media img { height: 100%; object-position: right center; }
  #heroCarousel .hero-copy { flex-basis: 67%; max-width: 67%; }
  .hero-benefits { justify-content: center; }
}

@media (max-width: 575.98px) {
  #slider.hero { padding: .75rem .65rem 1.5rem; }
  #heroCarousel { border-radius: 9px; }
  #heroCarousel .carousel-item .row { min-height: 430px; }
  #heroCarousel .hero-copy { flex-basis: 76%; max-width: 76%; padding: 1.75rem 1.35rem 3rem; }
  #heroCarousel .hero-copy h1 { font-size: clamp(1.7rem, 8vw, 2.15rem); }
  #heroCarousel .hero-copy p { font-size: .68rem; }
  #heroCarousel .btn-brand, #heroCarousel .btn-outline-brand { font-size: .61rem; padding: .55rem .65rem; }
  .hero-benefits { display: grid; grid-template-columns: 1fr 1fr; gap: .85rem .4rem; padding: 1rem .15rem 0; }
  .hero-benefits div { font-size: .58rem; white-space: normal; }
  .hero-quote-card { border-radius: 9px; padding: 1.25rem 1rem; }
  .hero-quote-heading { display: block; margin-bottom: 1.15rem; }
  .quote-badges { justify-content: flex-start; margin-top: .7rem; }
}

/* Product catalogue cards on the homepage. */
#products .product-panel { overflow: visible; }

#products .catalog-card {
  height: 100%;
  overflow: hidden;
  border: 1px solid #edf0f2;
  border-radius: 9px;
  background: #fff;
  box-shadow: 0 8px 22px rgba(7, 17, 31, .06);
}

#products .catalog-image {
  position: relative;
  /* height: 292px; */
  /* padding: 1rem; */
  /* background: #f5f6f6; */
}

#products .catalog-image > span {
  position: absolute;
  z-index: 1;
  top: .8rem;
  left: .8rem;
  padding: .38rem .65rem;
  border-radius: 9px;
  background: rgba(255, 255, 255, .92);
  color: var(--ink);
  font-size: .62rem;
  font-weight: 700;
  box-shadow: 0 3px 10px rgba(7, 17, 31, .05);
}

#products .catalog-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  /* mix-blend-mode: multiply; */
}

#products .catalog-info { padding: 1rem; }
#products .catalog-info h3 { margin: 0 0 .35rem; font-size: .95rem; font-weight: 800; }
#products .catalog-info p { min-height: 2.9em; margin: 0 0 .8rem; color: #718091; font-size: .67rem; line-height: 1.48; }

#products .catalog-info a {
  display: flex;
  min-height: 40px;
  align-items: center;
  justify-content: center;
  border-radius: 9px;
  background: var(--ink);
  color: #fff;
  font-size: .67rem;
  font-weight: 800;
}

#products .catalog-info a:hover { background: var(--pink); }

#products #productCarousel { max-width: 440px; margin: 0 auto; padding: 0 1.9rem; }
#products #productCarousel .carousel-item { padding: .25rem 0 .75rem; }

#products .product-carousel-control {
  top: 50%;
  bottom: auto;
  width: 31px;
  height: 31px;
  transform: translateY(-50%);
  border-radius: 50%;
  background: var(--ink);
  opacity: 1;
}

#products .product-carousel-control.carousel-control-prev { left: 0; }
#products .product-carousel-control.carousel-control-next { right: 0; }
#products .product-carousel-control .carousel-control-prev-icon,
#products .product-carousel-control .carousel-control-next-icon { width: 15px; height: 15px; background-size: 55%; }

@media (max-width: 575.98px) {
  /* #products .catalog-image { height: 260px; } */
  #products .catalog-info { padding: .85rem; }
}

/* Homepage crew solutions. */
.crew-section { padding: 4.5rem 0; background: #fff; }
/* #crews .container.page-width { max-width: 1180px; } */
.crew-heading { margin-bottom: 2.2rem; }
.crew-heading .eyebrow { font-size: .72rem; }
.crew-heading h2 { margin: .35rem 0 0; font-size: clamp(1.45rem, 2.6vw, 2.2rem); font-weight: 800; letter-spacing: -.04em; }
.crew-list { display: grid; gap: 0rem; }
.crew-row { margin: 0; }

.crew-card { position: relative; display: flex; flex-direction: column; justify-content: flex-end; min-height: 420px; overflow: hidden; padding: 1.35rem; border: 1px solid var(--line); border-radius: 9px; color: #fff; background-color: var(--ink); background-position: top; background-size: cover; }
.crew-card::before { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(7,17,31,.16), rgba(7,17,31,.88)); }
.crew-card > * { position: relative; z-index: 1; }
.crew-card-hospitality { background-image: linear-gradient(135deg, rgba(7,17,31,.12), rgba(255,7,138,.25)), url(../img/resturant-cafe.webp); }
.crew-card-retail { background-image: linear-gradient(135deg, rgba(7,17,31,.08), rgba(8,167,239,.25)), url(../img/warehouse.webp); }
.crew-card-corporate { background-image: linear-gradient(135deg, rgba(255,212,0,.18), rgba(7,17,31,.2)), url(../img/corporate-office.webp); }
.crew-card > img { position: absolute; top: 1rem; left: 1rem; width: 25px; height: 25px; padding: .32rem; border-radius: 6px; background: rgba(7,17,31,.78); }
.crew-card span { display: block; margin-bottom: .45rem; color: rgba(255,255,255,.78); font-size: .58rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.crew-card h3 { margin: 0 0 .35rem; font-size: clamp(.95rem, 1.35vw, 1.12rem); font-weight: 800; letter-spacing: -.03em; }
.crew-card p { margin: 0; font-size: .7rem; line-height: 1.5; }
.crew-copy h3 { margin: 0 0 .8rem; font-family: inherit; font-size: clamp(1.2rem, 1.9vw, 1.55rem); font-weight: 800; letter-spacing: -.035em; }
.crew-copy p { max-width: 465px; margin: 0 0 1.15rem; color: var(--muted); font-size: .84rem; line-height: 1.65; }
.crew-tags { display: flex; flex-wrap: wrap; gap: .45rem; }
.crew-tags span { padding: .48rem .72rem; border: 1px solid #cfd8df; border-radius: 9px; background: #fff; color: #4b5967; font-size: .68rem; font-weight: 600; line-height: 1.15; }

@media (max-width: 767.98px) {
  .crew-section { padding: 2.8rem 0; }
  .crew-list { gap: 2rem; }
  .crew-row { --bs-gutter-y: 1rem; }
  .crew-card { min-height: 290px; }
  .crew-copy { padding: 0 .2rem; }
}
