:root {
  --black: #0b0b0d;
  --charcoal: #1b1d21;
  --red: #c8102e;
  --copper: #b8782c;
  --paper: #f6f3ee;
  --white: #ffffff;
  --muted: #666b73;
  --line: #ded8cf;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--black);
  background: var(--paper);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.55;
}

img {
  display: block;
  width: 100%;
  height: auto;
}

a {
  color: inherit;
}

.skip-link {
  left: 16px;
  position: absolute;
  top: -48px;
  z-index: 99;
  background: var(--red);
  color: var(--white);
  padding: 10px 14px;
}

.skip-link:focus {
  top: 12px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(11, 11, 13, 0.95);
  color: var(--white);
}

.topbar {
  background: var(--red);
  color: var(--white);
  font-size: 0.9rem;
}

.topbar-inner,
.nav-inner,
.section-inner,
.footer-inner {
  width: min(var(--max), calc(100% - 32px));
  margin-inline: auto;
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 7px 0;
}

.topbar a {
  text-decoration: none;
  font-weight: 700;
  white-space: nowrap;
}

.topbar span {
  white-space: nowrap;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  min-width: 170px;
}

.brand img {
  display: block;
  width: min(188px, 42vw);
  max-height: 66px;
  object-fit: contain;
  filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.28));
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 22px;
}

.nav-menu a {
  color: var(--white);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 700;
}

.nav-menu a:hover,
.nav-menu a[aria-current="page"] {
  color: #ffb8c2;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  background: transparent;
  color: var(--white);
  position: relative;
}

.nav-toggle::before,
.nav-toggle::after {
  content: "";
  position: absolute;
  left: 10px;
  right: 10px;
  height: 2px;
  background: currentColor;
}

.nav-toggle::before {
  top: 14px;
  box-shadow: 0 6px 0 currentColor;
}

.nav-toggle::after {
  top: 26px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  border: 2px solid transparent;
  border-radius: 6px;
  background: var(--red);
  color: var(--white);
  text-decoration: none;
  font-weight: 900;
  cursor: pointer;
}

.button:hover {
  background: #a90d27;
}

.button:focus-visible,
.nav-menu a:focus-visible,
.topbar a:focus-visible,
.card-link:focus-visible,
.mobile-call:focus-visible {
  outline: 3px solid rgba(255, 255, 255, 0.86);
  outline-offset: 3px;
}

.button-outline {
  background: transparent;
  border-color: currentColor;
  color: var(--white);
}

.button-outline:hover {
  background: var(--white);
  color: var(--black);
}

.hero {
  min-height: 74vh;
  display: grid;
  align-items: end;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.78), rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.18)),
    url("../images/shopfront-illuminated/shopfront-illuminated-03.jpg") center / cover;
}

.hero-inner {
  width: min(var(--max), calc(100% - 32px));
  margin-inline: auto;
  padding: 72px 0 64px;
}

.eyebrow {
  margin: 0 0 12px;
  color: #ffd1d8;
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  max-width: 860px;
  margin: 0;
  font-size: clamp(2.45rem, 6vw, 4.55rem);
  line-height: 0.98;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 680px;
  margin: 20px 0 0;
  font-size: clamp(1.1rem, 2.5vw, 1.45rem);
  font-weight: 700;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.trust-strip {
  background: var(--black);
  color: var(--white);
  border-top: 4px solid var(--copper);
}

.trust-list {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
}

.trust-list span {
  padding: 18px 12px;
  text-align: center;
  font-weight: 900;
  background: var(--charcoal);
}

.section {
  padding: 76px 0;
}

.section-white {
  background: var(--white);
}

.section-dark {
  background: var(--black);
  color: var(--white);
}

.section-head {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: end;
  margin-bottom: 34px;
}

.section-head h2,
.page-head h1 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.25rem);
  line-height: 1.02;
}

.section-head p,
.page-head p {
  max-width: 660px;
  margin: 12px 0 0;
  color: var(--muted);
}

.section-dark .section-head p,
.section-dark .muted,
.page-hero .muted {
  color: #c9c9c9;
}

.page-hero .eyebrow {
  color: #a7adb5;
}

.grid-2,
.grid-3,
.grid-4 {
  display: grid;
  gap: 22px;
}

.grid-2 {
  grid-template-columns: repeat(2, 1fr);
}

.grid-3 {
  grid-template-columns: repeat(3, 1fr);
}

.grid-4 {
  grid-template-columns: repeat(4, 1fr);
}

.media-card,
.service-card,
.stat-card,
.contact-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.media-card img,
.service-card img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.media-card figcaption,
.service-card-content,
.stat-card,
.contact-card {
  padding: 18px;
}

.media-card {
  margin: 0;
}

.media-card figcaption {
  color: var(--charcoal);
  font-weight: 800;
}

.service-card h3,
.contact-card h3,
.stat-card strong {
  margin: 0 0 10px;
  font-size: 1.25rem;
}

.service-card p,
.contact-card p,
.stat-card p {
  margin: 0;
  color: var(--muted);
}

.card-link {
  display: inline-flex;
  margin-top: 14px;
  color: var(--red);
  font-weight: 900;
  text-decoration: none;
}

.card-link:hover {
  color: #a90d27;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.service-card ul {
  margin: 14px 0 0;
  padding-left: 18px;
}

.service-card li {
  margin: 4px 0;
}

.feature-band {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 34px;
  align-items: center;
}

.feature-band img {
  border-radius: 8px;
  aspect-ratio: 5 / 4;
  object-fit: cover;
}

.feature-band h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.04;
}

.feature-band p {
  color: var(--muted);
  font-size: 1.08rem;
}

.mid-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 26px;
  border: 1px solid rgba(184, 120, 44, 0.3);
  border-radius: 8px;
  padding: 18px;
  background: var(--white);
}

.mid-cta p {
  margin: 0;
  color: var(--charcoal);
  font-weight: 800;
}

.mid-cta a {
  color: var(--red);
  font-weight: 900;
  text-decoration: none;
  white-space: nowrap;
}

.mid-cta a:hover {
  color: #a90d27;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.page-hero {
  background: var(--black);
  color: var(--white);
}

.page-head {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
  padding: 74px 0 54px;
}

.portfolio-controls {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 24px;
}

.filter-button {
  min-height: 40px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--white);
  color: var(--black);
  padding: 9px 12px;
  font-weight: 800;
  cursor: pointer;
}

.filter-button.is-active {
  border-color: var(--red);
  background: var(--red);
  color: var(--white);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.portfolio-gallery-inner {
  opacity: 1;
  transform: none;
}

.gallery-item {
  margin: 0;
  border-radius: 8px;
  overflow: hidden;
  background: #f0ebe3;
  border: 1px solid var(--line);
  cursor: zoom-in;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.gallery-item:hover,
.gallery-item:focus-visible {
  border-color: rgba(200, 16, 46, 0.45);
  box-shadow: 0 14px 28px rgba(11, 11, 13, 0.12);
  transform: translateY(-3px);
  outline: none;
}

.gallery-item img {
  aspect-ratio: 1 / 1;
  background: #f0ebe3;
  object-fit: cover;
}

.gallery-item figcaption {
  padding: 12px;
  color: var(--charcoal);
  font-size: 0.92rem;
  font-weight: 800;
}

.reviews-layout {
  display: grid;
  gap: 26px;
}

.reviews-embed {
  min-height: 260px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  overflow: hidden;
}

.reviews-embed iframe {
  display: block;
  width: 100%;
  min-height: 360px;
  border: 0;
}

.reviews-embed-placeholder {
  min-height: 260px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 8px;
  padding: 28px;
  color: var(--muted);
  text-align: center;
}

.reviews-embed-placeholder strong {
  color: var(--charcoal);
  font-size: 1.2rem;
}

.reviews-embed-placeholder p {
  max-width: 540px;
  margin: 0;
}

.testimonial-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  padding: 22px;
  box-shadow: 0 10px 24px rgba(11, 11, 13, 0.06);
}

.testimonial-card blockquote {
  margin: 0;
  color: var(--charcoal);
  font-size: 1.08rem;
  font-weight: 800;
  line-height: 1.45;
}

.testimonial-card p {
  margin: 18px 0 0;
  color: var(--muted);
  font-weight: 800;
}

.testimonial-card a {
  display: inline-flex;
  margin-top: 16px;
  color: var(--red);
  font-weight: 900;
  text-decoration: none;
}

.testimonial-card a:hover,
.testimonial-card a:focus-visible {
  color: #a90d27;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.guarantee-section {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 28px;
  align-items: center;
}

.guarantee-section h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.04;
}

.guarantee-section .muted {
  max-width: 720px;
  margin: 16px 0 0;
}

.guarantee-grid {
  display: grid;
  gap: 14px;
}

.guarantee-item {
  display: flex;
  align-items: center;
  gap: 14px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.06);
}

.guarantee-item svg {
  width: 38px;
  height: 38px;
  flex: 0 0 auto;
  color: #ffd1d8;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.guarantee-item strong {
  color: var(--white);
  font-size: 1.04rem;
}

.lightbox[hidden] {
  display: none;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(5, 5, 6, 0.88);
}

.lightbox-panel {
  position: relative;
  width: min(1100px, 100%);
  max-height: min(86vh, 900px);
  display: grid;
  gap: 14px;
}

.lightbox-panel img {
  width: 100%;
  max-height: calc(86vh - 86px);
  object-fit: contain;
  border-radius: 8px;
  background: #050505;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.5);
}

.lightbox-panel p {
  margin: 0;
  color: var(--white);
  font-weight: 850;
  text-align: center;
}

.lightbox-close {
  justify-self: end;
  min-height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 8px;
  background: var(--white);
  color: var(--black);
  padding: 10px 14px;
  font: inherit;
  font-weight: 900;
  cursor: pointer;
}

.lightbox-close:hover,
.lightbox-close:focus-visible {
  background: var(--red);
  color: var(--white);
  outline: none;
}

body.lightbox-open {
  overflow: hidden;
}

.contact-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 26px;
  align-items: start;
}

.contact-list {
  display: grid;
  gap: 14px;
}

.contact-list a {
  color: var(--red);
  font-weight: 900;
  text-decoration: none;
}

.contact-primary {
  display: grid;
  gap: 6px;
  margin: 0 0 16px;
}

.contact-primary span,
.contact-secondary span {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.contact-primary a {
  font-size: clamp(1.28rem, 3vw, 1.72rem);
  line-height: 1.15;
}

.contact-secondary {
  display: grid;
  gap: 6px;
  margin: 0 0 14px;
}

.contact-secondary a {
  color: var(--charcoal);
  font-size: 1rem;
}

.contact-address {
  margin-top: 16px;
}

.brand-panel {
  display: grid;
  min-height: 260px;
  place-items: center;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    radial-gradient(circle at 30% 20%, rgba(200, 16, 46, 0.16), transparent 35%),
    linear-gradient(135deg, #050505 0%, #111216 62%, #050505 100%);
  padding: 38px 26px;
}

.brand-panel img {
  width: min(280px, 72vw);
  height: auto;
  filter: drop-shadow(0 16px 30px rgba(0, 0, 0, 0.4));
}

.map-panel {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.map-panel iframe {
  display: block;
  width: 100%;
  min-height: 320px;
  border: 0;
}

.map-panel a {
  display: block;
  padding: 14px 16px;
  border-top: 1px solid var(--line);
  background: var(--white);
  color: var(--red);
  font-weight: 900;
  text-decoration: none;
}

.map-panel a:hover,
.map-panel a:focus-visible {
  color: #a90d27;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.menu-signage-card {
  display: grid;
  gap: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  padding: 24px;
}

.menu-signage-card h2 {
  margin: 0;
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  line-height: 1.05;
}

.menu-signage-card p {
  margin: 0;
  color: var(--muted);
  font-size: 1.04rem;
}

.menu-signage-list {
  display: grid;
  gap: 8px;
  margin: 0;
  padding-left: 18px;
}

.quote-form {
  display: grid;
  gap: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 22px;
  background: var(--white);
}

.quote-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: 44px;
  align-items: start;
}

.quote-copy h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.05;
}

.quote-copy > p {
  color: var(--muted);
  font-size: 1.06rem;
}

.quote-copy a {
  color: var(--red);
  font-weight: 900;
}

.quote-points {
  display: grid;
  gap: 9px;
  padding-left: 20px;
}

.section:target > .section-inner {
  opacity: 1;
  transform: none;
}

label {
  display: grid;
  gap: 6px;
  font-weight: 900;
}

input,
select,
textarea {
  width: 100%;
  min-height: 46px;
  border: 1px solid #bbb5aa;
  border-radius: 6px;
  padding: 11px 12px;
  background: #fffdf9;
  color: var(--black);
  font: inherit;
}

textarea {
  min-height: 132px;
  resize: vertical;
}

.form-honeypot {
  display: none;
}

.form-status {
  min-height: 22px;
  margin: 0;
  color: var(--muted);
  font-weight: 800;
}

.form-status[data-state="error"] {
  color: #a90d27;
}

.button[disabled] {
  opacity: 0.68;
  cursor: progress;
}

.cta {
  text-align: center;
}

.cta h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.2rem);
}

.cta p {
  max-width: 680px;
  margin: 12px auto 24px;
  color: #555555;
}

.site-footer {
  background: var(--charcoal);
  color: var(--white);
  border-top: 4px solid var(--copper);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.15fr 1.15fr 0.9fr 1fr;
  gap: 24px;
  padding: 42px 0;
}

.footer-inner h2,
.footer-inner h3,
.footer-inner p {
  margin-top: 0;
}

.footer-inner a {
  color: #ffd1d8;
  text-decoration: none;
  font-weight: 800;
}

.social-links {
  display: flex;
  gap: 12px;
  margin-top: 16px;
}

.social-links a {
  display: inline-grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  color: var(--white);
  transition:
    color 150ms ease,
    border-color 150ms ease,
    background-color 150ms ease;
}

.social-links a:hover,
.social-links a:focus-visible {
  color: var(--red);
  border-color: rgba(200, 16, 46, 0.7);
  background: rgba(255, 255, 255, 0.06);
}

.social-links svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.social-links .facebook-icon {
  fill: currentColor;
  stroke: none;
}

.footer-links {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.mobile-call {
  display: none;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding: 16px 0;
  color: #c9c9c9;
  font-size: 0.9rem;
}

@media (max-width: 920px) {
  .nav-toggle {
    display: inline-grid;
    place-items: center;
  }

  .nav-menu {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--black);
    border-top: 1px solid rgba(255, 255, 255, 0.14);
  }

  .nav-menu.is-open {
    display: flex;
  }

  .nav-menu a {
    padding: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  .nav-inner {
    position: relative;
  }

  .trust-list,
  .grid-4,
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .grid-3,
  .feature-band,
  .contact-layout,
  .quote-layout,
  .guarantee-section,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .section-head {
    display: block;
  }
}

@media (max-width: 620px) {
  .topbar-inner {
    display: grid;
    gap: 8px;
    font-size: 0.76rem;
  }

  .topbar span,
  .topbar a {
    white-space: normal;
  }

  .hero {
    min-height: 68vh;
  }

  h1 {
    font-size: clamp(2rem, 9vw, 2.35rem);
    line-height: 0.98;
  }

  .hero-inner,
  .page-head {
    padding-top: 48px;
  }

  .trust-list,
  .grid-2,
  .grid-3,
  .grid-4,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .brand {
    min-width: 0;
  }

  .brand img {
    width: min(168px, 48vw);
    max-height: 58px;
  }

  .section {
    padding: 54px 0;
  }

  .mid-cta {
    align-items: flex-start;
    flex-direction: column;
  }

  .mid-cta a {
    white-space: normal;
  }

  .mobile-call {
    position: fixed;
    left: 16px;
    right: 16px;
    bottom: 14px;
    z-index: 60;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    border-radius: 8px;
    background: var(--red);
    color: var(--white);
    text-decoration: none;
    font-weight: 900;
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.25);
  }

  body {
    padding-bottom: 76px;
  }
}

/* ===== Animations ===== */
@media (prefers-reduced-motion: no-preference) {
  .site-header,
  .brand img {
    transition:
      background-color 200ms ease,
      filter 200ms ease,
      box-shadow 200ms ease,
      transform 200ms ease;
  }

  .site-header.is-scrolled {
    background: rgba(11, 11, 13, 0.98);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.22);
  }

  .site-header.is-scrolled .brand img {
    filter:
      drop-shadow(0 8px 16px rgba(0, 0, 0, 0.34))
      contrast(1.08);
    transform: scale(0.94);
    transform-origin: left center;
  }

  .hero .eyebrow,
  .hero h1,
  .hero-copy,
  .hero-actions {
    animation: hero-enter 560ms cubic-bezier(0.16, 1, 0.3, 1) both;
  }

  .hero .eyebrow {
    animation-delay: 40ms;
  }

  .hero h1 {
    animation-delay: 130ms;
  }

  .hero-copy {
    animation-delay: 220ms;
  }

  .hero-actions {
    animation-delay: 310ms;
  }

  @keyframes hero-enter {
    from {
      opacity: 0;
      transform: translateY(12px);
    }

    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  .js .reveal-section {
    opacity: 0;
    transform: translateY(20px);
    transition:
      opacity 620ms cubic-bezier(0.16, 1, 0.3, 1),
      transform 620ms cubic-bezier(0.16, 1, 0.3, 1);
  }

  .js .reveal-section.is-visible {
    opacity: 1;
    transform: translateY(0);
  }

  .js .reveal-section .service-card {
    opacity: 0;
    transform: translateY(20px);
    transition:
      opacity 560ms cubic-bezier(0.16, 1, 0.3, 1),
      transform 560ms cubic-bezier(0.16, 1, 0.3, 1),
      box-shadow 250ms ease,
      border-color 250ms ease;
  }

  .js .reveal-section.is-visible .service-card {
    opacity: 1;
    transform: translateY(0);
  }

  .js .reveal-section.is-visible .service-card:nth-child(2) {
    transition-delay: 60ms;
  }

  .js .reveal-section.is-visible .service-card:nth-child(3) {
    transition-delay: 120ms;
  }

  .js .reveal-section.is-visible .service-card:nth-child(4) {
    transition-delay: 180ms;
  }

  .button {
    transition:
      background-color 150ms ease,
      color 150ms ease,
      border-color 150ms ease,
      box-shadow 150ms ease,
      transform 150ms ease;
  }

  .button:hover,
  .button:focus-visible {
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.18);
  }

  .button:active {
    transform: translateY(0);
    box-shadow: none;
  }

  @media (hover: hover) and (pointer: fine) {
    .service-card {
      transition:
        transform 250ms ease,
        box-shadow 250ms ease,
        border-color 250ms ease;
    }

    .service-card img {
      transition: transform 250ms ease;
    }

    .service-card:hover {
      transform: translateY(-4px);
      border-color: rgba(184, 120, 44, 0.45);
      box-shadow: 0 14px 28px rgba(0, 0, 0, 0.12);
    }

    .js .reveal-section.is-visible .service-card:hover {
      transform: translateY(-4px);
      transition-delay: 0ms;
    }

    .service-card:hover img {
      transform: scale(1.04);
    }
  }

  @media (max-width: 620px) {
    .mobile-call {
      animation: mobile-call-enter 520ms cubic-bezier(0.16, 1, 0.3, 1) 400ms both;
    }

    @keyframes mobile-call-enter {
      from {
        opacity: 0;
        transform: translateY(100%);
      }

      to {
        opacity: 1;
        transform: translateY(0);
      }
    }
  }
}
