:root {
  --charcoal: #22201d;
  --charcoal-2: #302d28;
  --orange: #d65a1f;
  --off-white: #f5f2ec;
  --paper: #fffdfa;
  --concrete: #d9d7d2;
  --line: #c9c6bf;
  --text: #353330;
  --muted: #68645f;
  --steel: #54615c;
  --green: #6b7767;
  --white: #ffffff;
  --shadow: 0 14px 30px rgba(34, 32, 29, 0.08);
  --radius: 6px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  background: var(--off-white);
  color: var(--text);
  font-family: Inter, Manrope, "Source Sans 3", "IBM Plex Sans", "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0;
  overflow-x: hidden;
}

img,
svg {
  display: block;
}

a {
  color: inherit;
}

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

.skip-link {
  position: absolute;
  top: 8px;
  left: 8px;
  z-index: 100;
  transform: translateY(-140%);
  background: var(--orange);
  color: var(--white);
  padding: 10px 14px;
  text-decoration: none;
  border-radius: var(--radius);
}

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

.container {
  width: min(1140px, calc(100% - 32px));
  margin: 0 auto;
}

.container.narrow {
  width: min(880px, calc(100% - 32px));
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--charcoal);
  color: var(--white);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.08);
}

.utility-bar {
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  color: #dedbd5;
  font-size: 13px;
}

.utility-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 38px;
}

.utility-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.utility-links a {
  text-decoration: none;
}

.main-header {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto auto;
  align-items: center;
  gap: 14px;
  min-height: 78px;
}

.brand {
  display: inline-grid;
  grid-template-columns: 44px auto;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  min-width: 202px;
}

.brand-image {
  display: inline-flex;
  min-width: 250px;
  width: 250px;
  align-items: center;
}

.brand-logo-wrap {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  height: 50px;
  padding: 0;
  background: transparent;
  border: 0;
}

.brand-logo-wrap img {
  width: 100%;
  max-height: 38px;
  object-fit: contain;
}

.brand-mark {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  background: #161512;
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.brand-mark svg {
  width: 30px;
  height: 30px;
}

.brand-text {
  display: grid;
  line-height: 1;
  text-transform: uppercase;
}

.brand-text strong {
  font-size: 17px;
  letter-spacing: 0;
}

.brand-text span {
  margin-top: 4px;
  font-size: 12px;
  color: #d9d7d2;
  letter-spacing: 0;
}

.site-nav {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 3px;
}

.site-nav a {
  text-decoration: none;
  padding: 10px 7px;
  border-bottom: 3px solid transparent;
  color: #efede8;
  font-size: 13px;
  font-weight: 700;
}

.site-nav a:hover,
.site-nav a:focus,
.site-nav a[aria-current="page"] {
  color: var(--white);
  border-color: var(--orange);
}

.header-phone {
  color: var(--white);
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap;
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: transparent;
  color: var(--white);
  border-radius: var(--radius);
  align-items: center;
  justify-content: center;
}

.menu-button span,
.menu-button span::before,
.menu-button span::after {
  display: block;
  width: 20px;
  height: 2px;
  background: currentColor;
  content: "";
}

.menu-button span::before {
  transform: translateY(-7px);
}

.menu-button span::after {
  transform: translateY(5px);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 11px 16px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 800;
  text-decoration: none;
  line-height: 1.2;
  transition: background 150ms ease, border-color 150ms ease, transform 150ms ease;
}

.btn:hover,
.btn:focus {
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--orange);
  color: var(--white);
}

.btn-primary:hover,
.btn-primary:focus {
  background: #bd4d19;
}

.btn-secondary {
  background: transparent;
  color: var(--charcoal);
  border-color: var(--charcoal);
}

.btn-secondary:hover,
.btn-secondary:focus {
  background: var(--charcoal);
  color: var(--white);
}

.btn-on-dark {
  border-color: rgba(255, 255, 255, 0.42);
  color: var(--white);
}

.btn-on-dark:hover,
.btn-on-dark:focus {
  background: rgba(255, 255, 255, 0.1);
}

.section {
  padding: 70px 0;
}

.section-tight {
  padding: 48px 0;
}

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

.section-grey {
  background: #ebe8e1;
}

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

.section-label {
  margin: 0 0 12px;
  color: var(--orange);
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 900;
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--charcoal);
  line-height: 1.12;
  letter-spacing: 0;
}

.section-dark h1,
.section-dark h2,
.section-dark h3 {
  color: var(--white);
}

h1 {
  font-size: 42px;
  max-width: 780px;
}

h2 {
  font-size: 30px;
  max-width: 720px;
}

h3 {
  font-size: 20px;
}

p {
  margin: 0;
}

.lead {
  margin-top: 18px;
  color: var(--muted);
  font-size: 19px;
  max-width: 740px;
}

.section-dark .lead,
.section-dark .muted {
  color: #dedbd5;
}

.muted {
  color: var(--muted);
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: clamp(500px, 58svh, 590px);
  display: flex;
  align-items: center;
  background: var(--charcoal);
  color: var(--white);
  padding: 58px 0 66px;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(20, 19, 17, 0.92) 0%, rgba(20, 19, 17, 0.74) 43%, rgba(20, 19, 17, 0.22) 100%),
    linear-gradient(0deg, rgba(20, 19, 17, 0.88) 0%, rgba(20, 19, 17, 0.12) 48%, rgba(20, 19, 17, 0.42) 100%);
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero .container {
  position: relative;
  z-index: 2;
}

.hero-content {
  max-width: 760px;
}

.hero h1 {
  color: var(--white);
}

.hero .lead {
  color: #efede8;
}

.hero-actions,
.cta-actions,
.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-top: 26px;
}

.hero-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 18px;
  color: #dedbd5;
  font-weight: 700;
}

.hero-contact a {
  color: var(--white);
  text-decoration-color: rgba(214, 90, 31, 0.75);
  text-underline-offset: 4px;
}

.photo-slot {
  min-height: 260px;
  aspect-ratio: 4 / 3;
  margin: 0;
  border: 1px solid rgba(34, 32, 29, 0.22);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.18) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255, 255, 255, 0.18) 1px, transparent 1px),
    linear-gradient(135deg, #7b817b, #444944);
  background-size: 34px 34px, 34px 34px, auto;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.photo-slot::before {
  content: "";
  position: absolute;
  inset: 18px;
  border: 2px solid rgba(245, 242, 236, 0.52);
}

.photo-slot::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 46%;
  background:
    linear-gradient(145deg, transparent 0 28%, rgba(34, 32, 29, 0.42) 28% 31%, transparent 31% 100%),
    linear-gradient(0deg, rgba(34, 32, 29, 0.72), rgba(34, 32, 29, 0.28));
}

.photo-slot-inner {
  position: absolute;
  inset: auto 22px 22px 22px;
  z-index: 1;
  display: grid;
  gap: 7px;
  color: var(--white);
}

.photo-slot strong {
  display: inline-block;
  width: fit-content;
  background: var(--orange);
  padding: 6px 9px;
  font-size: 12px;
  text-transform: uppercase;
}

.photo-slot small {
  max-width: 310px;
  color: #f5f2ec;
  font-weight: 700;
}

.photo-slot.hero-photo {
  min-height: 350px;
  border-color: rgba(255, 255, 255, 0.25);
}

.image-slot {
  min-height: 260px;
  aspect-ratio: 4 / 3;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(34, 32, 29, 0.16);
  background: var(--concrete);
  box-shadow: var(--shadow);
}

.image-slot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

.section-head p {
  max-width: 440px;
  color: var(--muted);
}

.service-stack {
  display: grid;
  gap: 28px;
}

.service-feature {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) 1fr;
  gap: 28px;
  align-items: stretch;
  padding: 0 0 28px;
  border-bottom: 1px solid var(--line);
}

.service-feature:nth-child(even) {
  grid-template-columns: 1fr minmax(280px, 0.82fr);
}

.service-feature:nth-child(even) .service-copy {
  order: -1;
}

.service-copy {
  align-self: center;
}

.service-copy h3 {
  margin-bottom: 12px;
}

.service-copy p {
  color: var(--muted);
}

.project-examples,
.plain-list,
.tick-list {
  list-style: none;
  padding: 0;
  margin: 18px 0 0;
  display: grid;
  gap: 9px;
}

.project-examples li,
.plain-list li,
.tick-list li {
  position: relative;
  padding-left: 18px;
}

.project-examples li::before,
.plain-list li::before,
.tick-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 12px;
  width: 7px;
  height: 2px;
  background: var(--orange);
}

.scope-layout {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  gap: 34px;
  align-items: start;
}

.scope-panel {
  padding: 30px;
  border-left: 5px solid var(--orange);
  background: var(--paper);
  box-shadow: var(--shadow);
}

.scope-panel p {
  margin-top: 16px;
  color: var(--muted);
}

.point-list {
  display: grid;
  gap: 16px;
}

.point-item {
  padding: 20px 0 20px 24px;
  border-left: 1px solid var(--line);
}

.point-item h3 {
  margin-bottom: 8px;
}

.point-item p {
  color: var(--muted);
}

.accountability-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.accountability-item,
.review-card,
.project-card,
.faq-item,
.contact-panel,
.legal-block {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.accountability-item {
  padding: 20px;
}

.accountability-item h3 {
  font-size: 18px;
  margin-bottom: 9px;
}

.accountability-item p {
  color: var(--muted);
  font-size: 15px;
}

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

.portfolio-notice {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.48fr);
  gap: 28px;
  align-items: start;
  padding: 30px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-left: 5px solid var(--orange);
  border-radius: var(--radius);
}

.portfolio-notice p {
  margin-top: 12px;
  color: var(--muted);
}

.portfolio-notice .plain-list {
  margin-top: 0;
}

.project-card {
  overflow: hidden;
}

.project-card .photo-slot {
  min-height: 210px;
  aspect-ratio: 4 / 3;
  border: 0;
  box-shadow: none;
}

.project-body {
  padding: 18px;
}

.category-label {
  display: inline-block;
  color: var(--orange);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 9px;
}

.project-meta {
  display: grid;
  gap: 8px;
  margin-top: 14px;
  color: var(--muted);
  font-size: 14px;
}

.project-meta strong {
  color: var(--charcoal);
}

.process-list {
  counter-reset: process;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.process-step {
  counter-increment: process;
  background: var(--paper);
  padding: 20px;
  min-height: 128px;
}

.process-step::before {
  content: counter(process, decimal-leading-zero);
  display: block;
  margin-bottom: 14px;
  color: var(--orange);
  font-size: 13px;
  font-weight: 900;
}

.process-note {
  margin-top: 20px;
  color: var(--muted);
}

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

.review-card {
  padding: 24px;
}

.stars {
  color: var(--orange);
  font-size: 18px;
  letter-spacing: 0;
  margin-bottom: 14px;
}

.review-card blockquote {
  margin: 0;
  color: var(--charcoal);
  font-size: 18px;
  line-height: 1.45;
}

.review-card cite {
  display: block;
  margin-top: 16px;
  color: var(--muted);
  font-style: normal;
  font-weight: 700;
}

.content-note {
  margin-top: 18px;
  color: var(--muted);
  font-size: 14px;
}

.split-layout {
  display: grid;
  grid-template-columns: minmax(320px, 0.85fr) 1fr;
  gap: 34px;
  align-items: center;
}

.body-copy {
  display: grid;
  gap: 18px;
}

.body-copy p {
  color: var(--muted);
}

.area-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-top: 26px;
}

.area-grid span {
  border: 1px solid var(--line);
  background: var(--paper);
  padding: 12px 14px;
  font-weight: 800;
}

.cta-band {
  background:
    linear-gradient(90deg, rgba(34, 32, 29, 0.94), rgba(34, 32, 29, 0.88)),
    linear-gradient(135deg, #22201d, #54615c);
  color: var(--white);
}

.cta-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 26px;
  align-items: center;
}

.cta-band h2 {
  color: var(--white);
}

.cta-band p {
  margin-top: 12px;
  color: #dedbd5;
  max-width: 650px;
}

.page-hero {
  padding: 54px 0 42px;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}

.page-hero .lead {
  max-width: 790px;
}

.breadcrumb {
  margin-bottom: 18px;
  font-size: 14px;
  color: var(--muted);
}

.breadcrumb a {
  color: var(--charcoal);
  font-weight: 800;
  text-decoration-color: var(--orange);
  text-underline-offset: 4px;
}

.two-column {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 34px;
  align-items: start;
}

.intro-panel {
  display: grid;
  gap: 18px;
}

.info-band {
  padding: 28px;
  background: var(--charcoal);
  color: var(--white);
  border-radius: var(--radius);
}

.info-band h3 {
  color: var(--white);
}

.info-band p,
.info-band li {
  color: #dedbd5;
}

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

.detail-box {
  border-top: 4px solid var(--orange);
  background: var(--paper);
  padding: 22px;
}

.detail-box p {
  margin-top: 10px;
  color: var(--muted);
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-item {
  padding: 20px 22px;
}

.faq-item h3 {
  font-size: 18px;
  margin-bottom: 8px;
}

.faq-item p {
  color: var(--muted);
}

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

.contact-form {
  display: grid;
  gap: 18px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.field {
  display: grid;
  gap: 7px;
}

.field label,
.radio-label,
.checkbox-field {
  font-weight: 800;
  color: var(--charcoal);
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid #b8b4ac;
  background: var(--white);
  color: var(--text);
  min-height: 44px;
  padding: 10px 11px;
  border-radius: 4px;
}

.field textarea {
  min-height: 132px;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: 3px solid rgba(214, 90, 31, 0.22);
  border-color: var(--orange);
}

.radio-group {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 8px;
}

.radio-group label,
.checkbox-field {
  display: inline-flex;
  gap: 8px;
  align-items: flex-start;
  font-weight: 700;
  color: var(--text);
}

.checkbox-field {
  line-height: 1.45;
}

.honeypot {
  position: absolute;
  left: -9999px;
}

.contact-panel {
  padding: 24px;
  display: grid;
  gap: 18px;
}

.contact-line {
  display: grid;
  gap: 4px;
}

.contact-line strong {
  color: var(--charcoal);
}

.contact-line a {
  color: var(--text);
  text-decoration-color: var(--orange);
  text-underline-offset: 4px;
}

.legal-list {
  display: grid;
  gap: 14px;
}

.legal-block {
  padding: 22px;
}

.legal-block h2 {
  font-size: 22px;
  margin-bottom: 10px;
}

.legal-block p {
  color: var(--muted);
}

.site-footer {
  background: #171613;
  color: #efede8;
  padding: 48px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.7fr 0.8fr 0.9fr;
  gap: 30px;
}

.site-footer .brand {
  margin-bottom: 16px;
}

.site-footer .brand-image {
  width: 260px;
}

.site-footer h3 {
  color: var(--white);
}

.site-footer p,
.site-footer li,
.site-footer a {
  color: #d9d7d2;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 12px 0 0;
  display: grid;
  gap: 8px;
}

.footer-links a {
  text-decoration: none;
}

.footer-links a:hover,
.footer-links a:focus {
  color: var(--white);
  text-decoration: underline;
  text-decoration-color: var(--orange);
  text-underline-offset: 4px;
}

.footer-meta {
  margin-top: 28px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: #bbb7ae;
  font-size: 14px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
}

.mobile-contact-bar {
  display: none;
}

@media (max-width: 1040px) {
  .main-header {
    grid-template-columns: auto 1fr auto;
  }

  .site-nav {
    grid-column: 1 / -1;
    justify-self: start;
    flex-wrap: wrap;
    padding-bottom: 14px;
  }

  .header-phone {
    justify-self: end;
  }

  .hero-grid,
  .scope-layout,
  .split-layout,
  .portfolio-notice,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .accountability-grid,
  .area-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-list {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 760px) {
  .utility-bar {
    display: none;
  }

  .main-header {
    grid-template-columns: minmax(0, 1fr) auto;
    min-height: 68px;
  }

  .brand {
    min-width: 0;
  }

  .brand-image {
    min-width: 0;
    width: min(178px, calc(100vw - 112px));
  }

  .brand-logo-wrap {
    height: 42px;
  }

  .brand-text strong {
    font-size: 15px;
  }

  .brand-text span {
    font-size: 11px;
  }

  .site-nav {
    display: none;
    grid-column: 1 / -1;
    width: 100%;
    padding: 0 0 16px;
  }

  .nav-open .site-nav {
    display: grid;
    gap: 4px;
  }

  .site-nav a {
    border: 1px solid rgba(255, 255, 255, 0.12);
    padding: 12px;
  }

  .header-phone,
  .main-header .btn {
    display: none;
  }

  .menu-button {
    display: inline-flex;
    justify-self: end;
  }

  h1 {
    font-size: 32px;
  }

  h2 {
    font-size: 25px;
  }

  .section {
    padding: 48px 0;
  }

  .hero {
    min-height: auto;
    align-items: flex-start;
    padding: 46px 0 38px;
  }

  .hero::before {
    background:
      linear-gradient(90deg, rgba(20, 19, 17, 0.94) 0%, rgba(20, 19, 17, 0.8) 56%, rgba(20, 19, 17, 0.34) 100%),
      linear-gradient(0deg, rgba(20, 19, 17, 0.82) 0%, rgba(20, 19, 17, 0.2) 52%, rgba(20, 19, 17, 0.56) 100%);
  }

  .hero-bg {
    object-position: 56% center;
  }

  .hero-content {
    max-width: 100%;
  }

  .hero h1 {
    font-size: 33px;
    overflow-wrap: break-word;
  }

  .hero .lead {
    margin-top: 14px;
    font-size: 17px;
    line-height: 1.55;
  }

  .hero-actions {
    display: grid;
    gap: 10px;
    margin-top: 22px;
  }

  .hero-actions .btn {
    width: 100%;
    min-height: 48px;
  }

  .hero-contact {
    display: none;
  }

  .section-head {
    display: grid;
    gap: 12px;
    align-items: start;
    margin-bottom: 24px;
  }

  .section-head p {
    max-width: none;
  }

  .section-head h2 {
    overflow-wrap: break-word;
  }

  .service-stack {
    gap: 22px;
  }

  .service-feature {
    gap: 18px;
    padding-bottom: 24px;
  }

  .hero-grid,
  .service-feature,
  .service-feature:nth-child(even),
  .two-column,
  .form-row,
  .portfolio-notice,
  .cta-grid {
    grid-template-columns: 1fr;
  }

  .service-feature:nth-child(even) .service-copy {
    order: 0;
  }

  .trust-grid,
  .accountability-grid,
  .project-grid,
  .reviews-grid,
  .detail-grid,
  .area-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .photo-slot.hero-photo {
    min-height: 280px;
  }

  .process-list {
    grid-template-columns: 1fr;
  }

  .contact-form {
    padding: 20px;
  }

  .mobile-contact-bar {
    position: sticky;
    top: 68px;
    z-index: 60;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    width: 100%;
    max-width: 100vw;
    background: var(--charcoal);
    border-top: 1px solid rgba(255, 255, 255, 0.12);
  }

  .mobile-contact-bar a {
    min-width: 0;
    color: var(--white);
    text-decoration: none;
    text-align: center;
    padding: 12px 8px 13px;
    font-weight: 900;
    overflow: hidden;
    text-overflow: ellipsis;
    border-right: 1px solid rgba(255, 255, 255, 0.12);
  }

  .mobile-contact-bar a:last-child {
    border-right: 0;
    background: var(--orange);
  }
}
