Hawkeye Home Inspections is a Tiny Mammoth template for a residential home inspector. These are the notes on why it looks and behaves the way it does: the paper-and-stamp report aesthetic, the INSPECTED reveal, and the choices engineered to turn a nervous buyer into a booked inspection.
Most home-inspector marketing sells a face: a friendly headshot, a folksy tagline, a stock photo of a house with a checklist emoji. But the buyer landing on this page isn't shopping for a personality — they're about to sign the largest check of their life based substantially on one document they haven't seen yet. What they're actually buying is confidence in the rigor of that document, before it exists.
So this template doesn't sell warmth. It sells method. The whole site is typeset like the inspection report itself: numbered sections instead of a marketing nav, a file number and report type in the hero instead of a slogan, margin notes in italic the way a real inspector annotates a finding, hairline rules instead of drop shadows. Paper #F7F4ED and ink #1C2530 read as a printed page, not a screen. Stamp green #1F6E5C and a warm manila #E4D6B8 read as an official record — a folder you'd trust with a $900,000 decision.
The message underneath every pixel is: this is what my actual report looks like — methodical, numbered, documented, and impartial. That's the confidence a scared buyer is shopping for, three weeks before closing.
Every interaction points at the same outcome — demonstrate thoroughness fast, then make booking effortless. Here's how each piece is built.
Each numbered section heading carries a small circular rubber-stamp SVG — a checkmark ringed by "INSPECTED" in mono type. It sits scaled up and rotated off-axis, invisible, until an IntersectionObserver sees the section cross into view; then a single class toggle drives a CSS keyframe that overshoots past its resting rotation and settles, like a stamp actually landing on paper. It's a literal picture of the site's promise: this section has been checked.
Only the class changes in JavaScript; every visual beat is a CSS keyframe with an easing curve tuned for a small punch of overshoot, not a bounce.
/* rests scaled up and rotated, off until it enters view */
.stamp{opacity:0;transform:rotate(-9deg) scale(2.4)}
.stamp.stamped{animation:stampIn .6s cubic-bezier(.19,1.32,.4,1) forwards}
@keyframes stampIn{ 55%{ transform:rotate(-5deg) scale(.9) } 100%{ transform:rotate(-9deg) scale(1) } }
The hero carries a small badge, styled like a stamped exhibit tag, that counts up from zero to 247 on page load — an eased requestAnimationFrame tween, not a linear tick, so it decelerates into its final number the way a real gauge would settle. It's a small, honest flex: the exact scope of the inspection, quantified, before the visitor reads a word of copy.
function tick(ts){
const eased = 1 - Math.pow(1 - progress, 3);
counterEl.textContent = Math.round(eased * target);
}
Instead of a marketing nav, the header reads like a table of contents — 01 Scope, 02 Process, 03 Field Notes, 04 Coverage, 05 Contact — because a report's structure is the trust signal. Margin-note asides run alongside the process section in italic serif, the way a real inspector annotates a callout in the margin of a printed report, and the process photo is captioned like a report exhibit ("Exhibit A") rather than a hero glamour shot.
On phones — where a buyer standing in an escrow office is most likely to be looking this up — a fixed bar pins "Call Now" and "Free Quote" to the bottom of the screen. The body reserves matching bottom padding so it never covers content, and it stays out of the way entirely above 768px, where the header's phone button already does that job.
Set against our other service templates, this one stakes out ground none of the others touch:
This site was hand-coded — plain HTML, CSS, and JavaScript, written line by line. No page builders, no drag-and-drop themes, no off-the-shelf frameworks. Every detail, from the stamp-reveal animation to the same-day report copy, was engineered specifically to move a nervous buyer toward one action: booking the inspection.
That's the Tiny Mammoth approach to a client website: a template built to convert, not just to look good.