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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Montserrat", "Segoe UI", sans-serif;
  color: #1a1a1a;
  background: #f5f4f6;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

ul {
  list-style: none;
}

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

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

.container {
  width: min(100% - 48px, 1180px);
  margin-inline: auto;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 0;
  border-radius: 40px;
  font-family: "Montserrat", "Segoe UI", sans-serif;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
  white-space: nowrap;
}
.btn:hover {
  transform: translateY(-1px);
}
.btn:active {
  transform: translateY(0);
}
.btn {
  padding: 14px 26px;
  font-size: 0.78rem;
}
.btn--purple {
  background: #5b2e91;
  color: #ffffff;
}
.btn--purple:hover {
  background: #4a2478;
  box-shadow: 0 8px 20px rgba(91, 46, 145, 0.28);
}
.btn--white {
  background: #ffffff;
  color: #5b2e91;
}
.btn--white:hover {
  background: #f7f3fb;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}
.btn--gold {
  background: #fdb913;
  color: #000000;
}
.btn--gold:hover {
  background: #e5a70f;
  box-shadow: 0 8px 20px rgba(253, 185, 19, 0.35);
}
.btn svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}
.btn--lg {
  padding: 16px 32px;
  font-size: 0.82rem;
}

.icon-btn {
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #ffffff;
  transition: background 0.2s ease, border-color 0.2s ease;
}
.icon-btn:hover {
  background: #ffffff;
  color: #5b2e91;
  border-color: #ffffff;
}
.icon-btn svg {
  width: 18px;
  height: 18px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: #ffffff;
  height: 84px;
  display: flex;
  align-items: center;
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.04);
}
.site-header.is-scrolled {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}
.site-header .container {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  width: min(100% - 40px, 1280px);
}
.site-header__logo {
  justify-self: start;
  display: flex;
  align-items: center;
  min-width: 0;
}
.site-header__logo img {
  height: 52px;
  width: auto;
  filter: brightness(0);
}
.site-header__nav {
  display: flex;
  gap: 36px;
  justify-content: center;
}
.site-header__link {
  color: #5b2e91;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  position: relative;
  padding: 6px 0;
}
.site-header__link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: #5b2e91;
  transition: width 0.2s ease;
}
.site-header__link:hover::after, .site-header__link.is-active::after {
  width: 100%;
}
.site-header__cta {
  justify-self: end;
}
.site-header__toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  cursor: pointer;
  justify-self: end;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
}
.site-header__toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: #5b2e91;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

body.nav-open .site-header__toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

body.nav-open .site-header__toggle span:nth-child(2) {
  opacity: 0;
}

body.nav-open .site-header__toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

@media (max-width: 1100px) {
  .site-header .container {
    grid-template-columns: auto 1fr auto;
  }
  .site-header__nav {
    gap: 22px;
  }
  .site-header__logo img {
    height: 44px;
  }
}
@media (max-width: 860px) {
  .site-header .container {
    grid-template-columns: auto auto;
  }
  .site-header__toggle {
    display: flex;
  }
  .site-header__cta {
    display: none;
  }
  .site-header__logo img {
    height: 40px;
  }
  .site-header__nav {
    position: absolute;
    top: 84px;
    left: 0;
    right: 0;
    background: #ffffff;
    flex-direction: column;
    gap: 0;
    padding: 12px 24px 24px;
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.08);
    display: none;
  }
  body.nav-open .site-header__nav {
    display: flex;
  }
  body.nav-open .site-header__nav .site-header__link {
    padding: 14px 0;
    width: 100%;
    border-bottom: 1px solid #eeeeee;
  }
  body.nav-open .site-header__nav .site-header__link::after {
    max-width: 72px;
  }
  body.nav-open .site-header__cta-mobile {
    display: flex;
    margin-top: 16px;
  }
}
.site-header__cta-mobile {
  display: none;
}

.cta-banner {
  background: #5b2e91;
  color: #ffffff;
  padding: 36px 0;
}
.cta-banner .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.cta-banner__copy {
  display: flex;
  align-items: center;
  gap: 22px;
  min-width: 0;
}
.cta-banner__icon {
  width: 56px;
  height: 56px;
  flex-shrink: 0;
  color: #ffffff;
}
.cta-banner h3 {
  font-size: 1.15rem;
  font-weight: 700;
  line-height: 1.35;
}
.cta-banner p {
  font-size: 0.95rem;
  opacity: 0.92;
  margin-top: 2px;
}
@media (max-width: 860px) {
  .cta-banner {
    padding: 28px 0;
  }
  .cta-banner .container {
    flex-direction: column;
    text-align: center;
  }
  .cta-banner__copy {
    flex-direction: column;
  }
}

.site-footer {
  background: #000000;
  color: #ffffff;
  padding: 72px 0 36px;
}
.site-footer__grid {
  display: grid;
  grid-template-columns: 1.3fr 0.9fr 1fr 0.8fr;
  gap: 40px;
}
.site-footer__brand p {
  margin-top: 16px;
  max-width: 240px;
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.6;
}
.site-footer__logo {
  width: 155px;
  color: #ffffff;
}
.site-footer h4 {
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  margin-bottom: 18px;
  font-weight: 700;
}
.site-footer ul {
  display: grid;
  gap: 10px;
}
.site-footer a,
.site-footer p {
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.86);
}
.site-footer a:hover {
  color: #fdb913;
}
.site-footer__social {
  display: flex;
  gap: 12px;
}
.site-footer__copy {
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
}
@media (max-width: 860px) {
  .site-footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px 24px;
  }
}
@media (max-width: 640px) {
  .site-footer__grid {
    grid-template-columns: 1fr;
  }
}

.page-hero {
  background: #000000;
  color: #ffffff;
  padding: 92px 0 88px;
}
.page-hero__eyebrow {
  display: block;
  color: #fdb913;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.page-hero h1 {
  font-size: clamp(2.1rem, 4.4vw, 3.6rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.02em;
  max-width: 18ch;
}
.page-hero .accent {
  color: #fdb913;
  display: block;
}
.page-hero p {
  margin-top: 22px;
  max-width: 52ch;
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.7;
}
@media (max-width: 640px) {
  .page-hero {
    padding: 64px 0 60px;
  }
}

.home-hero {
  background: #000000;
  color: #ffffff;
  padding: 72px 0 80px;
  overflow: hidden;
}
.home-hero .container {
  display: grid;
  grid-template-columns: 300px 1fr;
  align-items: center;
  gap: 48px;
}
.home-hero__media {
  display: grid;
  place-items: center;
}
.home-hero__orb {
  position: relative;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
}
.home-hero__glow {
  position: absolute;
  inset: -8%;
  border-radius: 50%;
  background: radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.55) 0%, rgba(255, 255, 255, 0.12) 38%, transparent 68%);
  filter: blur(6px);
}
.home-hero__ring {
  position: relative;
  aspect-ratio: 1;
  border-radius: 50%;
  display: grid;
  place-items: center;
  z-index: 1;
}
.home-hero__eyebrow {
  display: block;
  color: #fdb913;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.home-hero h1 {
  font-size: clamp(2rem, 4vw, 3.35rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
}
.home-hero .accent {
  color: #fdb913;
}
.home-hero p {
  margin-top: 22px;
  font-size: 1.02rem;
  color: rgba(255, 255, 255, 0.88);
  max-width: 46ch;
  line-height: 1.75;
}
@media (max-width: 860px) {
  .home-hero .container {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .home-hero__media {
    min-height: 280px;
    order: -1;
  }
  .home-hero p {
    margin-inline: auto;
  }
}

.history {
  padding: 88px 0;
  text-align: center;
}
.history__eyebrow {
  display: block;
  color: #5b2e91;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.history h2 {
  font-size: clamp(1.7rem, 3.4vw, 2.55rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 28px;
}
.history h2 span {
  display: block;
  color: #5b2e91;
}
.history p {
  max-width: 760px;
  margin: 0 auto 16px;
  color: #222222;
  font-size: 1rem;
  line-height: 1.8;
}
.history__close {
  font-weight: 700;
  margin-top: 10px;
}

.move {
  background: #000000;
  color: #ffffff;
  padding: 88px 0;
}
.move .container {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 48px;
  align-items: center;
}
.move__eyebrow {
  display: block;
  color: #fdb913;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.move h2 {
  font-size: clamp(1.7rem, 3.2vw, 2.5rem);
  font-weight: 800;
  line-height: 1.2;
  max-width: 14ch;
}
.move__cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.move article {
  border: 1px solid rgba(255, 255, 255, 0.28);
  padding: 28px 24px;
  min-height: 210px;
}
.move h3 {
  display: block;
  color: #fdb913;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 12px;
  margin-bottom: 14px;
}
.move p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.95rem;
  line-height: 1.7;
}
@media (max-width: 860px) {
  .move .container, .move__cards {
    grid-template-columns: 1fr;
  }
  .move h2 {
    max-width: none;
  }
}

.values {
  padding: 88px 0;
}
.values__eyebrow {
  display: block;
  color: #5b2e91;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.values h2 {
  color: #5b2e91;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 800;
  letter-spacing: 0.02em;
  margin-bottom: 40px;
  max-width: 18ch;
  line-height: 1.2;
}
.values__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.values article {
  background: #eee4f6;
  border-top: 6px solid #5b2e91;
  padding: 28px 26px 32px;
}
.values .num {
  display: block;
  color: #5b2e91;
  font-weight: 800;
  font-size: 1.05rem;
  margin-bottom: 10px;
}
.values h3 {
  color: #5b2e91;
  font-size: 1.2rem;
  margin-bottom: 12px;
}
.values p {
  color: #222222;
  font-size: 0.95rem;
  line-height: 1.7;
}
@media (max-width: 860px) {
  .values__grid {
    grid-template-columns: 1fr;
  }
}

.clients {
  padding: 20px 0 88px;
}
.clients h2 {
  font-size: 1.7rem;
  font-weight: 800;
  margin-bottom: 32px;
}
.clients__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px 24px;
  align-items: center;
}
.clients figure {
  display: grid;
  place-items: center;
  min-height: 88px;
  padding: 12px;
  filter: grayscale(0.15);
  opacity: 0.92;
  transition: opacity 0.2s ease, transform 0.2s ease;
}
.clients figure:hover {
  opacity: 1;
  transform: translateY(-2px);
}
.clients figure img,
.clients figure svg {
  max-height: 52px;
  width: auto;
  max-width: 150px;
}
@media (max-width: 860px) {
  .clients__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 640px) {
  .clients__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.services-intro {
  background: #f5f5f5;
  padding: 80px 0 40px;
}
.services-intro__eyebrow {
  display: block;
  color: #5b2e91;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 12px;
  font-size: 0.72rem;
}
.services-intro h2 {
  color: #5b2e91;
  font-size: clamp(1.9rem, 3.5vw, 2.7rem);
  font-weight: 800;
  margin-bottom: 10px;
}
.services-intro > .container > p {
  color: #5c5c5c;
  max-width: 58ch;
  margin-bottom: 36px;
  font-size: 0.95rem;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  padding-bottom: 28px;
}
.service-grid--wide {
  grid-template-columns: 1fr;
  padding-bottom: 64px;
}
@media (max-width: 980px) {
  .service-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 640px) {
  .service-grid {
    grid-template-columns: 1fr;
  }
}

.service-card {
  background: #ffffff;
  border-radius: 6px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
  padding: 26px 24px 18px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.service-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.1);
}
.service-card h3 {
  color: #5b2e91;
  font-size: 1.05rem;
  font-weight: 800;
  margin-bottom: 8px;
}
.service-card li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 11px 0;
  border-bottom: 1px solid #e4e4e4;
  font-size: 0.92rem;
  color: #222222;
}
.service-card li::before {
  content: "";
  width: 8px;
  height: 8px;
  background: #fdb913;
  flex-shrink: 0;
}
.service-card li:last-child {
  border-bottom: 0;
}
.service-card--wide .service-card__cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 48px;
}
@media (max-width: 640px) {
  .service-card--wide .service-card__cols {
    grid-template-columns: 1fr;
  }
}

.process {
  background: #f5f5f5;
  padding: 10px 0 80px;
}
.process__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.process article {
  border: 1px solid #000000;
  background: #ffffff;
  padding: 26px 22px 28px;
  min-height: 190px;
}
.process .num {
  color: #5b2e91;
  font-weight: 800;
  font-size: 1.15rem;
  display: block;
  margin-bottom: 8px;
}
.process h3 {
  color: #5b2e91;
  font-size: 1.2rem;
  margin-bottom: 10px;
}
.process p {
  font-size: 0.9rem;
  color: #222222;
  line-height: 1.65;
}
@media (max-width: 860px) {
  .process__grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 640px) {
  .process__grid {
    grid-template-columns: 1fr;
  }
}

.custom-cta {
  background: #f5f5f5;
  padding: 0 0 72px;
}
.custom-cta .container {
  background: #5b2e91;
  color: #ffffff;
  border-radius: 10px;
  padding: 42px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.custom-cta__eyebrow {
  display: block;
  color: #fdb913;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.custom-cta h2 {
  font-size: clamp(1.4rem, 2.6vw, 1.9rem);
  font-weight: 800;
  margin-bottom: 10px;
  max-width: 22ch;
}
.custom-cta p {
  max-width: 58ch;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.9);
}
@media (max-width: 860px) {
  .custom-cta .container {
    flex-direction: column;
    align-items: flex-start;
    padding: 32px 24px;
  }
}

.works {
  padding: 88px 0;
}
.works__eyebrow {
  display: block;
  color: #5b2e91;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.works h2 {
  color: #5b2e91;
  font-size: clamp(1.8rem, 3.4vw, 2.5rem);
  font-weight: 800;
  margin-bottom: 10px;
}
.works > .container > p {
  color: #5c5c5c;
  margin-bottom: 40px;
  max-width: 58ch;
}
.works__grid {
  display: flex;
  flex-wrap: wrap;
  gap: 28px 22px;
  justify-content: center;
}
.works article {
  background: #ffffff;
}
.works .thumb {
  display: block;
  aspect-ratio: 16/11;
  overflow: hidden;
  background: #eeeeee;
  border-bottom: 3px solid #5b2e91;
}
.works .thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.works .thumb:hover img {
  transform: scale(1.04);
}
.works h3 {
  text-align: center;
  font-size: 0.98rem;
  font-weight: 600;
  padding: 16px 8px 0;
  color: #222222;
}
@media (max-width: 860px) {
  .works__grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 640px) {
  .works__grid {
    grid-template-columns: 1fr;
  }
}

.next-cta {
  padding: 0 0 72px;
  background: #ffffff;
}
.next-cta .container {
  background: #000000;
  color: #ffffff;
  border-radius: 8px;
  padding: 42px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.next-cta__eyebrow {
  display: block;
  color: #fdb913;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.next-cta h2 {
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  font-weight: 700;
}
@media (max-width: 860px) {
  .next-cta .container {
    flex-direction: column;
    align-items: flex-start;
    padding: 32px 24px;
  }
}

.contact-intro {
  padding: 80px 0 36px;
}
.contact-intro__eyebrow {
  display: block;
  color: #5b2e91;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.contact-intro h2 {
  color: #5b2e91;
  font-size: clamp(1.7rem, 3.2vw, 2.45rem);
  font-weight: 800;
  max-width: 18ch;
  line-height: 1.2;
  margin-bottom: 14px;
}
.contact-intro > .container > p {
  color: #5c5c5c;
  max-width: 62ch;
  margin-bottom: 36px;
  font-size: 0.95rem;
}

.contact-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-bottom: 48px;
}
.contact-cards article {
  border: 1px solid #e4e4e4;
  padding: 28px 24px;
  background: #ffffff;
}
.contact-cards h3 {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  font-weight: 800;
  margin-bottom: 10px;
  color: #1a1a1a;
  text-transform: uppercase;
}
.contact-cards a,
.contact-cards p {
  font-size: clamp(0.95rem, 1.6vw, 1.35rem);
  font-weight: 800;
  color: #1a1a1a;
  word-break: break-word;
}
.contact-cards a:hover {
  color: #5b2e91;
}
@media (max-width: 860px) {
  .contact-cards {
    grid-template-columns: 1fr;
  }
}

.quote-form {
  background: #f5f5f5;
  padding: 42px 42px 46px;
  margin-bottom: 80px;
}
.quote-form__eyebrow {
  display: block;
  color: #5b2e91;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.quote-form h2 {
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  margin-bottom: 28px;
  color: #1a1a1a;
  text-transform: uppercase;
}
.quote-form form {
  display: grid;
  gap: 18px;
}
.quote-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.quote-form label {
  display: grid;
  gap: 8px;
  font-size: 0.9rem;
  font-weight: 600;
}
.quote-form input,
.quote-form textarea {
  width: 100%;
  border: 1px solid #ececec;
  background: #ffffff;
  padding: 14px 16px;
  font-size: 0.92rem;
  color: #1a1a1a;
  outline: none;
  border-radius: 2px;
}
.quote-form input::placeholder,
.quote-form textarea::placeholder {
  color: #b5b5b5;
}
.quote-form input:focus,
.quote-form textarea:focus {
  border-color: #5b2e91;
}
.quote-form textarea {
  min-height: 140px;
  resize: vertical;
}
.quote-form .btn {
  justify-self: start;
  margin-top: 8px;
}
.quote-form .form-error {
  color: #b42318;
  font-size: 0.82rem;
  font-weight: 500;
  min-height: 1.1em;
}
.quote-form .form-success {
  display: none;
  background: #eaf8ee;
  color: #0f7b3b;
  padding: 12px 14px;
  font-size: 0.9rem;
  font-weight: 600;
}
.quote-form .form-success.is-visible {
  display: block;
}
@media (max-width: 640px) {
  .quote-form {
    padding: 28px 18px;
  }
  .quote-form__row {
    grid-template-columns: 1fr;
  }
}

.hours {
  background: #000000;
  color: #ffffff;
  padding: 42px 0;
}
.hours .container {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
}
.hours__eyebrow {
  display: block;
  color: #fdb913;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.hours p {
  font-size: 1.35rem;
  font-weight: 700;
}
.hours__city {
  font-size: 1.2rem;
  font-weight: 700;
}
@media (max-width: 640px) {
  .hours .container {
    flex-direction: column;
    align-items: flex-start;
  }
}
