/* ============================================
   Centre Rd Locksmiths — Creative Layout
   ============================================ */

:root {
  --cream: #f3ede3;
  --cream-dark: #e8dfd0;
  --ink: #1c2230;
  --ink-soft: #2d3548;
  --copper: #c45c26;
  --copper-light: #e07840;
  --sage: #5a6b5e;
  --muted: #6b7280;
  --white: #ffffff;
  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'Plus Jakarta Sans', system-ui, sans-serif;
  --radius: 16px;
  --radius-sm: 10px;
  --header-h: 76px;
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-h);
}

body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--ink);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul { list-style: none; }

.grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9rem 1.6rem;
  border-radius: 100px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.92rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: 0.3s var(--ease);
  white-space: nowrap;
}

.btn-copper {
  background: var(--copper);
  color: var(--white);
  box-shadow: 0 6px 24px rgba(196, 92, 38, 0.35);
}

.btn-copper:hover {
  background: var(--copper-light);
  transform: translateY(-2px);
}

.btn-ghost {
  background: transparent;
  border-color: var(--ink);
  color: var(--ink);
}

.btn-ghost:hover {
  background: var(--ink);
  color: var(--cream);
}

.btn-ink {
  background: var(--ink);
  color: var(--cream);
}

.btn-ink:hover {
  background: var(--copper);
}

/* ---- Section shared ---- */
.section-tag {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--copper);
  margin-bottom: 0.5rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  font-variation-settings: 'SOFT' 50, 'WONK' 0;
}

.section-num {
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 5rem);
  font-weight: 800;
  color: var(--cream-dark);
  line-height: 1;
  -webkit-text-stroke: 1px rgba(28, 34, 48, 0.12);
}

/* ---- Header ---- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-h);
  transition: 0.3s var(--ease);
}

.header.scrolled {
  background: rgba(243, 237, 227, 0.9);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(28, 34, 48, 0.08);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  padding: 0 clamp(1.25rem, 4vw, 3rem);
  max-width: 1440px;
  margin-inline: auto;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  background: var(--ink);
  color: var(--cream);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.85rem;
  border-radius: 12px;
  transform: rotate(-4deg);
  transition: transform 0.3s var(--ease);
}

.logo:hover .logo-mark {
  transform: rotate(0deg);
}

.logo-copy {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
  font-size: 0.8rem;
  color: var(--muted);
}

.logo-copy strong {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--ink);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-links a {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--muted);
  transition: color 0.3s var(--ease);
}

.nav-links a span {
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--copper);
  opacity: 0.7;
}

.nav-links a:hover {
  color: var(--ink);
}

.nav-cta {
  background: var(--ink) !important;
  color: var(--cream) !important;
  padding: 0.6rem 1.2rem !important;
  border-radius: 100px;
  font-weight: 600 !important;
}

.nav-cta:hover {
  background: var(--copper) !important;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 40px;
  height: 40px;
  background: var(--ink);
  border: none;
  border-radius: 10px;
  cursor: pointer;
  padding: 10px;
}

.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--cream);
  border-radius: 2px;
  transition: 0.3s var(--ease);
}

.nav-toggle.active span:first-child {
  transform: translateY(4px) rotate(45deg);
}

.nav-toggle.active span:last-child {
  transform: translateY(-4px) rotate(-45deg);
}

/* ---- Hero ---- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: var(--header-h);
}

.hero-panel {
  position: absolute;
  inset: 0;
  width: 58%;
  background: var(--cream);
  clip-path: polygon(0 0, 100% 0, 78% 100%, 0 100%);
  z-index: 1;
}

.hero-images {
  position: absolute;
  top: var(--header-h);
  right: 0;
  bottom: 72px;
  width: 62%;
  z-index: 0;
}

.hero-img-main {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-img-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    100deg,
    rgba(243, 237, 227, 0.85) 0%,
    rgba(243, 237, 227, 0.15) 28%,
    rgba(28, 34, 48, 0.1) 100%
  );
}

.hero-img-inset {
  position: absolute;
  bottom: 2.5rem;
  left: -3.5rem;
  z-index: 3;
  width: clamp(160px, 22vw, 240px);
  background: var(--white);
  padding: 0.5rem;
  border-radius: var(--radius-sm);
  box-shadow: 0 16px 48px rgba(28, 34, 48, 0.25);
  transform: rotate(-4deg);
  transition: transform 0.4s var(--ease);
}

.hero-img-inset:hover {
  transform: rotate(0deg) scale(1.03);
}

.hero-img-inset img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: 6px;
}

.hero-img-inset figcaption {
  text-align: center;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--copper);
  margin-top: 0.5rem;
}

.hero-badge-float {
  position: absolute;
  top: 2rem;
  right: 2rem;
  z-index: 3;
  background: var(--ink);
  color: var(--cream);
  padding: 1rem 1.25rem;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  border: 2px solid var(--copper);
  box-shadow: 0 8px 28px rgba(28, 34, 48, 0.35);
}

.badge-num {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--copper-light);
  line-height: 1;
}

.badge-text {
  font-size: 0.72rem;
  line-height: 1.3;
  opacity: 0.85;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1440px;
  margin-inline: auto;
  padding: 3rem clamp(1.5rem, 5vw, 4rem) 6rem;
}

.hero-inner {
  max-width: 480px;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--sage);
  margin-bottom: 1.5rem;
  padding: 0.4rem 0.9rem;
  background: rgba(90, 107, 94, 0.1);
  border-radius: 100px;
}

.live-dot {
  width: 7px;
  height: 7px;
  background: #22c55e;
  border-radius: 50%;
  animation: blink 2s infinite;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 6.5vw, 4.5rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
  color: var(--ink);
  font-variation-settings: 'SOFT' 50, 'WONK' 0;
}

.title-highlight {
  color: var(--copper);
  display: inline-block;
  position: relative;
}

.title-highlight::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0.08em;
  height: 0.12em;
  background: var(--copper);
  opacity: 0.25;
  border-radius: 2px;
}

.hero-desc {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 400px;
  margin-bottom: 2rem;
  line-height: 1.7;
}

.hero-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 2.5rem;
}

.hero-trust {
  display: flex;
  gap: 2rem;
  padding-top: 2rem;
  border-top: 1.5px solid var(--cream-dark);
}

.trust-item strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--copper);
  line-height: 1;
  margin-bottom: 0.25rem;
}

.trust-item span {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--muted);
}

.hero-strip {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 4;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  border-top: 1.5px solid var(--ink);
  background: var(--cream);
  min-height: 72px;
}

.hero-location {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0 1.5rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--ink);
  white-space: nowrap;
  border-right: 1.5px solid var(--ink);
  height: 100%;
}

.hero-location svg {
  color: var(--copper);
  flex-shrink: 0;
}

.hero-marquee {
  overflow: hidden;
  padding: 0.85rem 0;
}

.marquee-track {
  display: flex;
  gap: 2rem;
  animation: marquee 22s linear infinite;
  white-space: nowrap;
}

.marquee-track span {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ink);
}

.marquee-dot {
  color: var(--copper) !important;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ---- About ---- */
.about {
  padding: clamp(4rem, 10vw, 8rem) clamp(1.25rem, 4vw, 3rem);
  background: var(--white);
  position: relative;
}

.about::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: repeating-linear-gradient(
    90deg,
    var(--copper) 0px,
    var(--copper) 20px,
    var(--ink) 20px,
    var(--ink) 40px
  );
}

.about-shell {
  max-width: 1200px;
  margin-inline: auto;
}

.about-header {
  display: flex;
  align-items: flex-end;
  gap: 2rem;
  margin-bottom: 4rem;
}

.about-body {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 3rem;
  align-items: start;
}

.about-timeline {
  position: sticky;
  top: calc(var(--header-h) + 2rem);
  display: flex;
  flex-direction: column;
  gap: 0;
  border-left: 2px solid var(--cream-dark);
  padding-left: 1.5rem;
}

.timeline-item {
  position: relative;
  padding-bottom: 2rem;
}

.timeline-item:last-child {
  padding-bottom: 0;
}

.timeline-dot {
  position: absolute;
  left: -1.5rem;
  top: 0.35rem;
  width: 12px;
  height: 12px;
  background: var(--copper);
  border-radius: 50%;
  transform: translateX(-50%);
  box-shadow: 0 0 0 4px var(--white);
}

.timeline-item strong {
  display: block;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 0.3rem;
}

.timeline-item p {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.5;
}

.about-main {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 3rem;
  align-items: center;
}

.about-polaroid {
  background: var(--cream);
  padding: 1rem 1rem 3rem;
  border-radius: 4px;
  box-shadow: 0 8px 30px rgba(28, 34, 48, 0.12);
  transform: rotate(-2deg);
  transition: transform 0.4s var(--ease);
}

.about-polaroid:hover {
  transform: rotate(0deg) scale(1.02);
}

.about-polaroid img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: 2px;
}

.polaroid-caption {
  text-align: center;
  margin-top: 1rem;
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--muted);
  font-style: italic;
}

.about-copy p {
  color: var(--muted);
  margin-bottom: 1rem;
  font-size: 0.95rem;
}

.about-lead {
  font-size: 1.15rem !important;
  color: var(--ink) !important;
  font-weight: 500;
  line-height: 1.6 !important;
}

.about-stats-row {
  display: flex;
  gap: 1.5rem;
  margin: 2rem 0;
  padding: 1.5rem 0;
  border-top: 1px solid var(--cream-dark);
  border-bottom: 1px solid var(--cream-dark);
}

.mini-stat span {
  display: block;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--copper);
  line-height: 1;
}

.mini-stat small {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
}

/* ---- Services (Bento) ---- */
.services {
  padding: clamp(4rem, 10vw, 8rem) clamp(1.25rem, 4vw, 3rem);
  background: var(--ink);
  color: var(--cream);
}

.services .section-tag { color: var(--copper-light); }
.services .section-num { color: rgba(243, 237, 227, 0.06); -webkit-text-stroke: 0; }

.services-top {
  max-width: 1200px;
  margin: 0 auto 3.5rem;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 2rem;
  align-items: end;
}

.services-top-text p {
  color: rgba(243, 237, 227, 0.55);
  margin-top: 0.75rem;
  max-width: 360px;
  font-size: 0.95rem;
}

.services-phone {
  text-align: right;
  padding: 1.25rem 1.75rem;
  border: 1.5px solid rgba(243, 237, 227, 0.15);
  border-radius: var(--radius);
  transition: 0.3s var(--ease);
}

.services-phone:hover {
  border-color: var(--copper);
  background: rgba(196, 92, 38, 0.1);
}

.services-phone span {
  display: block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(243, 237, 227, 0.5);
  margin-bottom: 0.25rem;
}

.services-phone strong {
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--copper-light);
}

.bento {
  max-width: 1200px;
  margin-inline: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: minmax(160px, auto);
  gap: 1rem;
}

.bento-card {
  position: relative;
  background: var(--ink-soft);
  border: 1px solid rgba(243, 237, 227, 0.08);
  border-radius: var(--radius);
  padding: 1.75rem;
  overflow: hidden;
  transition: 0.35s var(--ease);
}

.bento-card:hover {
  border-color: rgba(196, 92, 38, 0.4);
  transform: translateY(-3px);
}

.bento-card--hero {
  grid-column: span 2;
  grid-row: span 2;
  padding: 0;
  min-height: 360px;
}

.bento-card--hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}

.bento-card--hero:hover img {
  transform: scale(1.05);
}

.bento-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(28, 34, 48, 0.95) 0%, rgba(28, 34, 48, 0.2) 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2rem;
}

.bento-badge {
  display: inline-block;
  width: fit-content;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--copper-light);
  margin-bottom: 0.5rem;
}

.bento-overlay h3,
.bento-card h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.bento-overlay p,
.bento-card p {
  font-size: 0.88rem;
  color: rgba(243, 237, 227, 0.65);
  line-height: 1.55;
}

.bento-link {
  margin-top: 1rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--copper-light);
}

.bento-link:hover { color: var(--white); }

.bento-card--tall {
  grid-row: span 2;
  display: flex;
  flex-direction: column;
}

.bento-card--dark {
  background: var(--copper);
  border-color: transparent;
}

.bento-card--dark .bento-icon {
  background: rgba(255, 255, 255, 0.15);
  color: var(--white);
}

.bento-card--dark p { color: rgba(255, 255, 255, 0.8); }

.bento-card--wide {
  grid-column: span 2;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  min-height: 200px;
}

.bento-card--wide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.bento-wide-content {
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.bento-index {
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 800;
  color: var(--copper-light);
  opacity: 0.7;
  margin-bottom: 0.75rem;
}

.bento-icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  background: rgba(196, 92, 38, 0.15);
  border-radius: var(--radius-sm);
  color: var(--copper-light);
  margin-bottom: 1rem;
}

.bento-icon svg {
  width: 22px;
  height: 22px;
}

/* ---- Footer ---- */
.footer {
  background: var(--cream);
  border-top: 1.5px solid var(--ink);
}

.footer-inner {
  max-width: 1200px;
  margin-inline: auto;
  padding: 3.5rem clamp(1.25rem, 4vw, 3rem);
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 3rem;
}

.footer-tagline {
  margin-top: 1rem;
  color: var(--muted);
  font-size: 0.9rem;
}

.footer-details {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.footer-block h4 {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--copper);
  margin-bottom: 0.75rem;
}

.footer-block p {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.7;
}

.footer-block a:hover { color: var(--copper); }

.footer-em {
  color: var(--copper) !important;
  font-weight: 600;
}

.footer-bar {
  border-top: 1px solid var(--cream-dark);
  padding: 1.25rem;
  text-align: center;
}

.footer-bar p {
  font-size: 0.8rem;
  color: var(--muted);
}

/* ---- Reveal animation ---- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---- Responsive ---- */
@media (max-width: 1024px) {
  .hero {
    min-height: auto;
    flex-direction: column;
    align-items: stretch;
    padding-top: var(--header-h);
    padding-bottom: 72px;
  }

  .hero-panel {
    display: none;
  }

  .hero-content {
    background: var(--cream);
    padding: 2.5rem 1.5rem 2rem;
  }

  .hero-inner {
    max-width: 100%;
  }

  .hero-images {
    position: relative;
    top: 0;
    width: 100%;
    height: 50vh;
    min-height: 320px;
    order: -1;
  }

  .hero-img-inset {
    left: 1.5rem;
    bottom: 1.5rem;
    width: 140px;
  }

  .hero-badge-float {
    top: 1rem;
    right: 1rem;
  }

  .about-body {
    grid-template-columns: 1fr;
  }

  .about-timeline {
    position: static;
    flex-direction: row;
    border-left: none;
    border-top: 2px solid var(--cream-dark);
    padding-left: 0;
    padding-top: 1.5rem;
    gap: 1.5rem;
    overflow-x: auto;
  }

  .timeline-item {
    flex: 0 0 200px;
    padding-bottom: 0;
    padding-top: 1rem;
  }

  .timeline-dot {
    left: 0;
    top: -1.5rem;
    transform: none;
  }

  .about-main {
    grid-template-columns: 1fr;
  }

  .bento {
    grid-template-columns: repeat(2, 1fr);
  }

  .bento-card--hero {
    grid-column: span 2;
  }

  .bento-card--wide {
    grid-column: span 2;
  }

  .services-top {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .services-phone { text-align: left; }
}

@media (max-width: 768px) {
  .nav-toggle { display: flex; }

  .nav-links {
    position: fixed;
    top: var(--header-h);
    left: 1rem;
    right: 1rem;
    background: var(--cream);
    border: 1.5px solid var(--ink);
    border-radius: var(--radius);
    flex-direction: column;
    padding: 1.5rem;
    gap: 1rem;
    transform: translateY(-150%);
    opacity: 0;
    transition: 0.3s var(--ease);
    box-shadow: 0 16px 40px rgba(28, 34, 48, 0.15);
  }

  .nav-links.open {
    transform: translateY(0);
    opacity: 1;
  }

  .about-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }

  .bento {
    grid-template-columns: 1fr;
  }

  .bento-card--hero,
  .bento-card--tall,
  .bento-card--wide {
    grid-column: span 1;
    grid-row: span 1;
  }

  .bento-card--wide {
    grid-template-columns: 1fr;
  }

  .bento-card--wide img {
    height: 180px;
  }

  .footer-inner,
  .footer-details {
    grid-template-columns: 1fr;
  }

  .hero-strip {
    grid-template-columns: 1fr;
  }

  .hero-location {
    border-right: none;
    border-bottom: 1.5px solid var(--ink);
    justify-content: center;
    padding: 0.75rem 1rem;
  }
}

@media (max-width: 480px) {
  .hero-cta-row {
    flex-direction: column;
  }

  .hero-cta-row .btn {
    width: 100%;
    justify-content: center;
  }

  .hero-trust {
    gap: 1rem;
    justify-content: space-between;
  }

  .hero-img-inset {
    width: 120px;
  }

  .about-stats-row {
    justify-content: space-between;
  }
}
