@font-face {
  font-family: "Bebas Neue";
  src: url("/assets/fonts/bebas-neue/BebasNeue-Regular.ttf?v=20260807-3") format("truetype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

:root {
  --black: #070707;
  --charcoal: #11100e;
  --charcoal-2: #191714;
  --charcoal-3: #211e1a;
  --cream: #f1ece4;
  --paper: #d7cfc4;
  --muted: #b7aea3;
  --bronze: #b87538;
  --bronze-bright: #df9d55;
  --bronze-dark: #6c4527;
  --line: rgba(218, 156, 89, 0.28);
  --white-line: rgba(255, 255, 255, 0.11);
  --max: 1200px;
  --display-font: Impact, Haettenschweiler, "Liberation Sans Narrow",
    "Nimbus Sans Narrow", "Arial Narrow", sans-serif;
  --heading-font: "Bebas Neue", Impact, Haettenschweiler,
    "Liberation Sans Narrow", "Nimbus Sans Narrow", "Arial Narrow", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 76px;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}

body {
  margin: 0;
  background: var(--black);
  color: var(--cream);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.55;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.2;
  background-image:
    radial-gradient(circle at 15% 20%, rgba(255, 255, 255, 0.07) 0 1px, transparent 1.5px),
    radial-gradient(circle at 78% 67%, rgba(184, 117, 56, 0.08) 0 1px, transparent 1.5px);
  background-size: 27px 31px, 39px 43px;
}

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

a:focus-visible,
button:focus-visible {
  outline: 3px solid var(--bronze-bright);
  outline-offset: 4px;
}

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

.wrap {
  width: min(calc(100% - 40px), var(--max));
  margin: auto;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  padding: 10px 14px;
  background: var(--cream);
  color: #211c17;
  font-size: 14px;
  font-weight: 900;
  transform: translateY(calc(-100% - 20px));
}

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

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


/* HEADER */

.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(7, 7, 7, 0.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(10px);
}

.nav {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  flex: 0 0 auto;
  line-height: 0.85;
}

.brand span {
  font-family: var(--display-font);
  font-size: 22px;
  letter-spacing: 0.045em;
  white-space: nowrap;
}

.brand small {
  display: block;
  margin-top: 8px;
  color: var(--bronze-bright);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.24em;
}

.header nav {
  display: flex;
  gap: 22px;
  align-items: center;
  text-transform: uppercase;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.1em;
}

.header nav a {
  transition: color 160ms ease;
}

.header nav a:hover {
  color: var(--bronze-bright);
}

.nav-disabled {
  display: inline;
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  opacity: 0.5;
  white-space: nowrap;
  cursor: default;
}

.nav-disabled:focus-visible {
  outline: 2px solid var(--bronze-bright);
  outline-offset: 4px;
}

.nav-cta {
  padding: 11px 15px;
  border: 1px solid rgba(223, 157, 85, 0.62);
  color: var(--bronze-bright);
}

.menu {
  display: none;
  color: white;
  background: none;
  border: 0;
  font-size: 26px;
}


/* HERO — preserved */

.hero {
  background: var(--black);
}

.hero-bg {
  width: 100%;
  height: auto;
}

.mobile-hero-wrap {
  position: relative;
}

.mobile-hero-call-hotspot {
  display: none;
}

@media (max-width: 700px) {
  .mobile-hero-call-hotspot {
    position: absolute;
    z-index: 10;
    left: 17%;
    right: 16.5%;
    bottom: 1.7%;
    height: 5.6%;
    display: block;
    border: 0;
    background: transparent;
    cursor: pointer;
    pointer-events: auto;
  }

  .mobile-hero-call-hotspot:focus-visible {
    outline: 2px solid var(--bronze-bright);
    outline-offset: 1px;
  }
}


/* SHARED SECTION SYSTEM */

.section {
  position: relative;
  padding: 92px 0;
  overflow: hidden;
  border-top: 1px solid var(--bronze-dark);
  box-shadow:
    inset 0 2px 0 rgba(0, 0, 0, 0.68),
    inset 0 3px 0 rgba(223, 157, 85, 0.08);
}

.section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.24;
  background-image:
    url("/assets/images/worn-metal.svg"),
    linear-gradient(112deg, transparent 0 43%, rgba(255, 255, 255, 0.025) 43.2%, transparent 43.5%),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.012) 0 1px, transparent 1px 7px);
  background-size: 240px 240px, auto, auto;
}

.section > .wrap {
  position: relative;
  z-index: 2;
}

.section h2,
.contact h2 {
  margin: 0;
  font-family: var(--heading-font);
  font-weight: 400;
  letter-spacing: 0.055em;
  line-height: 0.92;
  text-transform: uppercase;
}

.distressed-heading {
  position: relative;
  display: inline-block;
  max-width: 100%;
}

@supports ((-webkit-background-clip: text) or (background-clip: text)) {
  .distressed-heading::after {
    content: attr(data-text);
    position: absolute;
    inset: 0;
    z-index: 1;
    max-width: 100%;
    pointer-events: none;
    user-select: none;
    color: transparent;
    background-image: url("/assets/fonts/bebas-neue/heading-distress-dark.png?v=20260808-1");
    background-repeat: repeat;
    background-size: 180px 72px;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
  }

  .contact .distressed-heading::after {
    background-image: url("/assets/fonts/bebas-neue/heading-distress-bronze.png?v=20260808-1");
  }
}

.section h2 {
  font-size: clamp(44px, 6vw, 78px);
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--bronze-bright);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.19em;
  text-transform: uppercase;
}

.eyebrow.ruled {
  display: inline-flex;
  align-items: center;
  gap: 15px;
}

.eyebrow.ruled::before,
.eyebrow.ruled::after {
  content: "";
  width: 54px;
  height: 1px;
  background: var(--bronze);
}

.bodycopy {
  font-size: 18px;
}

.note {
  font-size: 13px;
  opacity: 0.62;
  font-style: italic;
}

.centered {
  margin-inline: auto;
  text-align: center;
}

.btn {
  display: inline-block;
  padding: 14px 21px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-align: center;
  text-transform: uppercase;
}

.outline {
  border: 1px solid rgba(223, 157, 85, 0.7);
  color: var(--bronze-bright);
}


/* SERVICES */

.services {
  padding: 0;
  background: var(--charcoal);
  border-top: 2px solid rgba(184, 117, 56, 0.72);
}

.services::before,
.services::after {
  display: none;
}

.services-picture {
  display: block;
}

.services-artwork {
  width: 100%;
  height: auto;
}


/* ABOUT / PHILOSOPHY */

.section.philosophy {
  padding: 0;
  background:
    linear-gradient(90deg, rgba(184, 117, 56, 0.06), transparent 35%),
    #0a0a09;
  border-top-style: dashed;
}

.about-picture {
  display: block;
}

.about-artwork {
  width: 100%;
  height: auto;
}


/* SHOP / WORK */

.shop-work {
  background:
    radial-gradient(circle at 88% 12%, rgba(223, 157, 85, 0.07), transparent 32%),
    var(--charcoal-2);
  border-top: 2px solid rgba(108, 69, 39, 0.9);
}

.shop-work::after {
  content: "";
  position: absolute;
  top: -1px;
  left: 50%;
  z-index: 1;
  width: min(94vw, 1200px);
  height: 40px;
  pointer-events: none;
  background: url("/assets/images/technical-divider.svg") center / 100% 40px no-repeat;
  opacity: 0.46;
  transform: translateX(-50%);
}

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

.shop-gallery {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 845fr) minmax(0, 660fr);
  grid-template-rows: repeat(2, minmax(0, 1fr));
  gap: 12px;
  aspect-ratio: 1505 / 993;
  padding: 12px;
  border: 1px solid var(--line);
  background: rgba(0, 0, 0, 0.3);
  box-shadow:
    inset 0 0 40px rgba(0, 0, 0, 0.7),
    0 18px 40px rgba(0, 0, 0, 0.24),
    -7px 7px 0 rgba(108, 69, 39, 0.2),
    7px -7px 0 rgba(255, 255, 255, 0.018);
}

.shop-gallery::before {
  content: "";
  position: absolute;
  top: -10px;
  left: 4%;
  right: 4%;
  height: 7px;
  background: repeating-linear-gradient(
    90deg,
    var(--bronze) 0 1px,
    transparent 1px 12px,
    rgba(223, 157, 85, 0.5) 12px 13px,
    transparent 13px 48px
  );
  opacity: 0.62;
}

.shop-gallery::after {
  content: "";
  position: absolute;
  inset: 5px;
  z-index: 3;
  border: 1px dashed rgba(223, 157, 85, 0.12);
  pointer-events: none;
}

.gallery-image {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: #0b0a09;
}

.gallery-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.photo-wide {
  grid-row: 1 / 3;
}


/* CUSTOMER INTAKE */

.intake {
  background:
    linear-gradient(120deg, rgba(184, 117, 56, 0.08), transparent 40%),
    #0c0b0a;
  border-top: 1px dashed rgba(223, 157, 85, 0.58);
}

.intake::after {
  content: "";
  position: absolute;
  right: -45px;
  top: 50%;
  z-index: 0;
  width: min(38vw, 500px);
  aspect-ratio: 560 / 720;
  pointer-events: none;
  background: url("/assets/images/work-order-schematic.svg") center / contain no-repeat;
  opacity: 0.29;
  transform: translateY(-50%) rotate(5deg);
}

.intake-grid {
  display: grid;
  grid-template-columns: minmax(300px, 0.85fr) 1.15fr;
  gap: 72px;
  align-items: center;
}

.intake-photo {
  position: relative;
  width: 100%;
  max-width: 440px;
  height: clamp(320px, 28vw, 390px);
  overflow: hidden;
  padding: 5px;
  border: 1px solid rgba(239, 226, 201, 0.68);
  background: #171411;
  clip-path: polygon(0.3% 0.5%, 26% 0.1%, 53% 0.4%, 78% 0.15%, 99.6% 0.45%, 99.8% 76%, 99.5% 99.4%, 71% 99.8%, 44% 99.55%, 19% 99.85%, 0.25% 99.4%, 0.1% 25%);
}

.intake-photo::before,
.intake-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}

.intake-photo::before {
  inset: 2px;
  border: 1px solid rgba(196, 121, 53, 0.46);
  clip-path: polygon(0 0, 34% 0, 34% 1px, 61% 1px, 61% 0, 100% 0, 100% 42%, calc(100% - 1px) 42%, calc(100% - 1px) 78%, 100% 78%, 100% 100%, 67% 100%, 67% calc(100% - 1px), 39% calc(100% - 1px), 39% 100%, 0 100%, 0 63%, 1px 63%, 1px 29%, 0 29%);
}

.intake-photo::after {
  inset: auto 0 0 auto;
  width: 54px;
  height: 28px;
  border-right: 2px solid rgba(196, 121, 53, 0.78);
  border-bottom: 2px solid rgba(196, 121, 53, 0.78);
  transform: translate(-2px, -2px);
}

.intake-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  filter: saturate(0.88) contrast(1.04);
}

.intake-copy {
  position: relative;
  max-width: 650px;
  padding: 28px 30px 28px 0;
  border-top: 1px solid rgba(223, 157, 85, 0.38);
  border-bottom: 1px solid rgba(223, 157, 85, 0.22);
}

.intake-role {
  margin: 20px 0;
  color: var(--bronze-bright);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.intake-copy .bodycopy {
  max-width: 620px;
  color: var(--paper);
}

.intake-note {
  margin: 30px 0 0;
  padding: 18px 0 18px 22px;
  border-left: 2px solid var(--bronze);
  color: var(--cream);
  font-weight: 900;
}

.intake-note a {
  color: var(--bronze-bright);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

.work-order {
  position: absolute;
  right: 3vw;
  top: 50%;
  width: min(22vw, 270px);
  color: rgba(223, 157, 85, 0.06);
  fill: none;
  stroke: currentColor;
  stroke-width: 5;
  transform: translateY(-50%) rotate(7deg);
}


/* FROM THE SHOP */

.journal {
  background:
    repeating-linear-gradient(135deg, transparent 0 10px, rgba(255, 255, 255, 0.012) 10px 11px),
    var(--charcoal-2);
  border-top: 2px solid rgba(184, 117, 56, 0.62);
}

.journal::after {
  content: "";
  position: absolute;
  right: -80px;
  top: 50%;
  z-index: 0;
  width: min(59vw, 760px);
  aspect-ratio: 960 / 500;
  pointer-events: none;
  background: url("/assets/images/repair-project-marks.svg") center / contain no-repeat;
  opacity: 0.2;
  transform: translateY(-50%) rotate(-2deg);
}

.journal-grid {
  display: grid;
  grid-template-columns: 190px 1fr auto;
  gap: 38px;
  align-items: center;
}

.journal-emblem {
  width: 180px;
  height: auto;
}

.journal h2 {
  font-size: clamp(42px, 5vw, 68px);
}

.journal .bodycopy {
  max-width: 620px;
  margin-bottom: 0;
  color: var(--muted);
}

.journal .eyebrow {
  display: inline-block;
  padding: 7px 11px 6px;
  border: 1px solid rgba(223, 157, 85, 0.48);
  background: rgba(0, 0, 0, 0.24);
  box-shadow: inset 0 0 0 2px rgba(0, 0, 0, 0.35);
  transform: rotate(-1deg);
}

.journal-action {
  padding-left: 35px;
  border-left: 1px solid var(--line);
}


/* CONTACT */

.contact {
  position: relative;
  padding: 44px 0 22px;
  overflow: hidden;
  border-top: 1px solid var(--bronze-bright);
  background:
    linear-gradient(105deg, rgba(0, 0, 0, 0.16), transparent 54%),
    linear-gradient(
      to bottom,
      var(--bronze) 0%,
      var(--bronze) 55%,
      #985829 70%,
      #60381e 84%,
      #28170f 94%,
      #050505 100%
    );
  color: #160f0a;
  box-shadow:
    inset 0 6px 0 rgba(54, 33, 16, 0.18),
    inset 0 8px 0 rgba(255, 228, 198, 0.08);
}

.contact::before {
  content: "";
  position: absolute;
  left: -130px;
  top: 32%;
  width: min(58vw, 760px);
  aspect-ratio: 1100 / 720;
  pointer-events: none;
  background:
    url("/assets/images/contact-powertrain.svg") center / contain no-repeat,
    url("/assets/images/worn-metal.svg") center / 240px 240px repeat;
  opacity: 0.22;
  transform: translateY(-50%) rotate(-4deg);
}

.contact::after {
  content: "";
  position: absolute;
  right: -70px;
  top: 30px;
  width: 260px;
  aspect-ratio: 1;
  border: 28px solid rgba(20, 14, 9, 0.045);
  border-radius: 50%;
  box-shadow: inset 0 0 0 28px rgba(20, 14, 9, 0.03);
}

.contact-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 44fr) minmax(0, 31fr) minmax(0, 25fr);
  gap: clamp(24px, 3vw, 42px);
  align-items: start;
}

.contact h2 {
  max-width: 560px;
  font-size: clamp(48px, 5.6vw, 76px);
}

.contact-eye {
  color: #38230f;
}

.contact-lead {
  max-width: 520px;
  margin: 14px 0 0;
  font-size: 15px;
  font-weight: 900;
}

.contact-info p {
  margin: 0;
  padding: 0 0 14px;
  border-bottom: 1px solid rgba(67, 38, 15, 0.34);
}

.contact-info p + p {
  padding-top: 14px;
}

.contact-info strong,
.contact-info span,
.contact-value {
  display: block;
}

.contact-info strong {
  font-size: 10px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.contact-info span {
  margin-top: 2px;
}

.contact-value {
  margin-top: 3px;
  font-weight: 800;
  text-decoration: underline;
  text-decoration-color: rgba(22, 15, 10, 0.36);
  text-underline-offset: 3px;
}

.contact-phone {
  font-family: var(--display-font);
  font-size: 33px;
  font-weight: 900;
  letter-spacing: 0.05em;
  line-height: 1.1;
  text-decoration: none;
}

.contact-details p + p .contact-value {
  font-family: var(--display-font);
  font-size: 24px;
  font-weight: 900;
  line-height: 1.12;
  letter-spacing: 0.025em;
}

.location-note {
  max-width: 270px;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.4;
}

.hours-line {
  display: grid;
  grid-template-columns: minmax(96px, 1fr) auto;
  gap: 8px;
  font-size: 18px;
  font-family: var(--display-font);
  line-height: 1.15;
  letter-spacing: 0.02em;
}

.hours-line + .hours-line {
  margin-top: 4px;
}

.hours-line b {
  font-size: 18px;
  font-weight: 900;
  letter-spacing: 0.03em;
}

.contact-social {
  margin-top: 15px;
}

.facebook-cta {
  display: inline-flex;
  max-width: 100%;
  gap: 9px;
  align-items: center;
  padding: 2px 0;
  color: #160f0a;
  transition: color 160ms ease;
}

.facebook-cta-icon {
  display: grid;
  width: 32px;
  height: 32px;
  flex: 0 0 32px;
  place-items: center;
  background: #1877f2;
  color: #fff;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 22px;
  font-weight: 900;
  line-height: 1;
  transition: background-color 160ms ease, transform 160ms ease;
}

.facebook-cta-copy strong,
.facebook-cta-copy small {
  display: block;
}

.facebook-cta-copy strong {
  font-size: 12px;
  letter-spacing: 0.04em;
  line-height: 1.2;
  text-transform: uppercase;
}

.facebook-cta-copy small {
  margin-top: 2px;
  color: #38230f;
  font-size: 10px;
}

.facebook-cta:hover {
  color: #fff4e8;
}

.facebook-cta:hover .facebook-cta-icon {
  background: #145fbd;
  transform: translateY(-1px);
}

.contact-map-panel {
  position: relative;
  z-index: 2;
  width: min(calc(94% - 38px), 1128px);
  margin-top: 30px;
  text-align: center;
}

.map-directions-link {
  display: block;
}

.contact-map {
  display: block;
  width: 100%;
  height: auto;
  border: 3px solid #df8a2f;
  border-radius: 6px;
}

.directions-button {
  display: inline-flex;
  min-width: 190px;
  margin-top: 10px;
  padding: 9px 20px 8px;
  align-items: center;
  flex-direction: column;
  border: 1px solid var(--bronze-bright);
  border-radius: 4px;
  background: #160f0a;
  color: #fff4e8;
  box-shadow: 3px 3px 0 rgba(55, 31, 12, 0.16);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.directions-button strong {
  font-family: var(--heading-font);
  font-size: 17px;
  font-weight: 400;
}

.directions-button small {
  margin-top: 1px;
  color: #c7b6a4;
  font-size: 9px;
  letter-spacing: 0.06em;
}


/* FOOTER */

footer {
  padding: 24px 0;
  border-top: 1px solid var(--white-line);
  background: #050505;
  color: #9d958b;
  font-size: 13px;
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  align-items: flex-start;
}

.footer strong {
  display: block;
  color: white;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.footer span {
  display: block;
  margin-top: 3px;
}

.footer-right {
  text-align: right;
}

.footer .footer-credit {
  margin-top: 5px;
  color: #6f6a63;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 11px;
  letter-spacing: 0.025em;
}

/* TABLET */

@media (max-width: 960px) {
  .menu {
    display: block;
  }

  .header nav {
    display: none;
    position: absolute;
    top: 76px;
    left: 0;
    right: 0;
    padding: 24px;
    border-bottom: 1px solid var(--line);
    background: #090909;
    flex-direction: column;
    align-items: flex-start;
  }

  .header nav.open {
    display: flex;
  }

  .intake-grid {
    gap: 46px;
  }

  .work-order {
    right: -50px;
  }

  .journal-grid {
    grid-template-columns: 140px 1fr;
  }

  .journal-emblem {
    width: 130px;
  }

  .journal-action {
    grid-column: 2;
    padding: 0;
    border: 0;
  }

  .contact-phone {
    font-size: 30px;
  }

  .contact-details p + p .contact-value {
    font-size: 22px;
  }

  .hours-line,
  .hours-line b {
    font-size: 16px;
  }

  .contact-grid {
    gap: 22px;
  }
}

/* MOBILE */

@media (max-width: 680px) {
  .wrap {
    width: min(calc(100% - 28px), var(--max));
  }

  .section {
    padding: 68px 0;
  }

  .section h2 {
    font-size: clamp(40px, 13vw, 58px);
  }

  .eyebrow.ruled::before,
  .eyebrow.ruled::after {
    width: 28px;
  }

  .services {
    padding: 0;
  }

  .section-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .shop-gallery {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    aspect-ratio: auto;
  }

  .photo-wide {
    grid-row: auto;
  }

  .gallery-image img {
    height: auto;
  }

  .intake-grid {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .intake-photo {
    width: min(100%, 420px);
    height: clamp(300px, 80vw, 380px);
    margin: auto;
  }

  .work-order {
    top: auto;
    right: -65px;
    bottom: 15px;
    width: 230px;
    transform: rotate(7deg);
  }

  .intake::after {
    right: -145px;
    top: auto;
    bottom: 20px;
    width: 360px;
    opacity: 0.16;
    transform: rotate(5deg);
  }

  .intake-copy {
    padding-right: 0;
  }

  .journal-grid {
    grid-template-columns: 1fr;
  }

  .journal::after {
    right: -250px;
    width: 580px;
    opacity: 0.12;
  }

  .journal-emblem {
    width: min(46vw, 170px);
    justify-self: start;
  }

  .journal-action {
    grid-column: auto;
  }

  .journal-action .btn {
    width: 100%;
  }

  .contact {
    padding: 40px 0 18px;
  }

  .contact-details p + p .contact-value {
    font-size: 20px;
  }

  .hours-line,
  .hours-line b {
    font-size: 16px;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .contact h2 {
    font-size: clamp(46px, 14vw, 66px);
  }

  .contact-phone {
    font-size: 28px;
  }

  .hours-line {
    grid-template-columns: minmax(110px, 1fr) auto;
    gap: 8px;
  }

  .contact::before {
    left: -270px;
    width: 620px;
    opacity: 0.16;
  }

  .contact-social {
    margin-top: 14px;
  }

  .facebook-cta {
    padding: 2px 0;
  }

  .contact-map-panel {
    width: min(calc(100% - 28px), var(--max));
    margin-top: 28px;
  }


  .contact-map {
    border-width: 2px;
  }

  .directions-button {
    margin-top: 9px;
  }

  .footer {
    flex-direction: column;
    gap: 14px;
  }

  .footer-right {
    text-align: left;
  }
}

@media (max-width: 380px) {
  .brand span {
    font-size: 20px;
    letter-spacing: 0.025em;
  }
}
