Vet — General Vet Clinic Landing
A warm general veterinary clinic landing page with a book-now hero, services grid, meet-the-vets preview, compassionate-care badges, client testimonials, hours and location, a new-client offer banner and a booking CTA, all in friendly teal and warm coral.
MCP
Code
:root {
--teal: #179c8e;
--teal-d: #0f7f73;
--coral: #ff8a5c;
--teal-50: #e6f5f2;
--ink: #173a36;
--muted: #6b827e;
--bg: #f2f8f6;
--white: #ffffff;
--radius: 16px;
--radius-lg: 28px;
--radius-pill: 999px;
--shadow-sm: 0 2px 8px rgba(15, 127, 115, 0.08);
--shadow: 0 14px 40px rgba(15, 127, 115, 0.14);
--font: 'Inter', system-ui, -apple-system, sans-serif;
--maxw: 1120px;
}
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; }
body {
font-family: var(--font);
color: var(--ink);
background: var(--bg);
line-height: 1.6;
-webkit-font-smoothing: antialiased;
}
h1, h2, h3 { line-height: 1.15; letter-spacing: -0.02em; }
a { color: inherit; }
img, svg { display: block; max-width: 100%; }
:focus-visible {
outline: 3px solid var(--coral);
outline-offset: 2px;
border-radius: 6px;
}
/* ---------- Buttons ---------- */
.btn {
display: inline-flex;
align-items: center;
justify-content: center;
gap: 0.5rem;
font: inherit;
font-weight: 600;
text-decoration: none;
cursor: pointer;
border: 0;
padding: 0.7rem 1.25rem;
border-radius: var(--radius-pill);
transition: transform 0.15s ease, box-shadow 0.2s ease, background 0.2s ease;
white-space: nowrap;
}
.btn:active { transform: translateY(1px) scale(0.99); }
.btn--lg { padding: 0.95rem 1.7rem; font-size: 1.02rem; }
.btn--block { width: 100%; }
.btn--primary { background: var(--teal); color: #fff; box-shadow: var(--shadow-sm); }
.btn--primary:hover { background: var(--teal-d); box-shadow: var(--shadow); transform: translateY(-1px); }
.btn--coral { background: var(--coral); color: #4a230f; }
.btn--coral:hover { filter: brightness(1.04); transform: translateY(-1px); }
.btn--ghost { background: var(--teal-50); color: var(--teal-d); }
.btn--ghost:hover { background: #d8efea; }
.btn--ghost-light { background: rgba(255,255,255,0.15); color: #fff; border: 1px solid rgba(255,255,255,0.5); }
.btn--ghost-light:hover { background: rgba(255,255,255,0.26); }
.eyebrow {
display: inline-flex;
align-items: center;
gap: 0.45rem;
font-size: 0.82rem;
font-weight: 600;
letter-spacing: 0.04em;
text-transform: uppercase;
color: var(--teal-d);
}
.dot {
width: 8px; height: 8px; border-radius: 50%;
background: var(--coral);
box-shadow: 0 0 0 4px rgba(255,138,92,0.25);
}
.badge {
display: inline-block;
font-size: 0.72rem;
font-weight: 700;
padding: 0.2rem 0.6rem;
border-radius: var(--radius-pill);
}
.badge--coral { background: var(--coral); color: #4a230f; }
/* ---------- Offer banner ---------- */
.offer {
display: flex;
align-items: center;
justify-content: center;
gap: 1rem;
background: linear-gradient(90deg, var(--teal-d), var(--teal));
color: #fff;
padding: 0.55rem 1rem;
font-size: 0.92rem;
position: relative;
}
.offer[hidden] { display: none; }
.offer__text { text-align: center; }
.offer__pill {
background: var(--coral); color: #4a230f;
font-weight: 700; font-size: 0.72rem;
padding: 0.15rem 0.55rem; border-radius: var(--radius-pill);
margin-right: 0.4rem;
}
.offer__close {
position: absolute; right: 0.6rem;
background: rgba(255,255,255,0.18); color: #fff;
border: 0; width: 28px; height: 28px; border-radius: 50%;
font-size: 1.2rem; line-height: 1; cursor: pointer;
}
.offer__close:hover { background: rgba(255,255,255,0.32); }
/* ---------- Header ---------- */
.header {
position: sticky; top: 0; z-index: 50;
display: flex; align-items: center; gap: 1.5rem;
padding: 0.7rem clamp(1rem, 4vw, 2rem);
background: rgba(242,248,246,0.85);
backdrop-filter: blur(10px);
border-bottom: 1px solid transparent;
transition: box-shadow 0.2s ease, border-color 0.2s ease;
}
.header.is-stuck { box-shadow: var(--shadow-sm); border-color: #dcebe7; background: rgba(255,255,255,0.9); }
.brand { display: flex; align-items: center; gap: 0.6rem; text-decoration: none; font-weight: 800; }
.brand__mark {
display: grid; place-items: center;
width: 40px; height: 40px; border-radius: 12px;
background: var(--teal); color: #fff;
box-shadow: var(--shadow-sm);
}
.brand__name { display: flex; flex-direction: column; font-size: 1.05rem; line-height: 1.05; }
.brand__sub { font-size: 0.68rem; font-weight: 600; color: var(--muted); letter-spacing: 0.02em; }
.nav { display: flex; gap: 1.4rem; margin-left: auto; }
.nav a { text-decoration: none; font-weight: 500; color: var(--ink); font-size: 0.95rem; position: relative; }
.nav a::after {
content: ""; position: absolute; left: 0; bottom: -4px;
width: 0; height: 2px; background: var(--coral); transition: width 0.2s ease;
}
.nav a:hover::after { width: 100%; }
.header__cta { padding: 0.55rem 1.1rem; }
.nav__toggle { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 6px; }
.nav__toggle span { width: 24px; height: 2px; background: var(--ink); border-radius: 2px; transition: transform 0.2s; }
/* ---------- Hero ---------- */
.hero {
max-width: var(--maxw); margin: 0 auto;
display: grid; grid-template-columns: 1.1fr 0.9fr; gap: clamp(1.5rem, 4vw, 3.5rem);
align-items: center;
padding: clamp(2.5rem, 6vw, 5rem) clamp(1rem, 4vw, 2rem);
}
.hero h1 { font-size: clamp(2.1rem, 5vw, 3.4rem); font-weight: 800; margin: 0.8rem 0; }
.lede { font-size: 1.12rem; color: var(--muted); max-width: 34ch; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 0.8rem; margin: 1.6rem 0; }
.hero__stats { list-style: none; padding: 0; display: flex; gap: 1.8rem; flex-wrap: wrap; }
.hero__stats li { display: flex; flex-direction: column; }
.hero__stats strong { font-size: 1.4rem; color: var(--teal-d); }
.hero__stats span { font-size: 0.82rem; color: var(--muted); }
.hero__card {
background: var(--white);
border-radius: var(--radius-lg);
padding: clamp(1.4rem, 3vw, 2rem);
box-shadow: var(--shadow);
border: 1px solid #e3efeb;
}
.card-title { font-size: 1.25rem; margin-bottom: 1rem; }
.quick-form { display: flex; flex-direction: column; gap: 0.4rem; }
.quick-form label { font-size: 0.82rem; font-weight: 600; color: var(--ink); margin-top: 0.5rem; }
.quick-form input, .quick-form select {
font: inherit;
padding: 0.7rem 0.85rem;
border: 1.5px solid #d6e8e3;
border-radius: 12px;
background: var(--bg);
color: var(--ink);
transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.quick-form input:focus, .quick-form select:focus {
outline: none; border-color: var(--teal);
box-shadow: 0 0 0 3px rgba(23,156,142,0.18);
}
.quick-form button { margin-top: 0.9rem; }
.quick-form__note { font-size: 0.88rem; color: var(--teal-d); min-height: 1.2em; font-weight: 600; }
.quick-form__note.is-err { color: #c0492a; }
/* ---------- Sections ---------- */
.section { max-width: var(--maxw); margin: 0 auto; padding: clamp(2.5rem, 6vw, 4.5rem) clamp(1rem, 4vw, 2rem); }
.section--soft { max-width: none; background: var(--teal-50); }
.section--soft > * { max-width: var(--maxw); margin-inline: auto; }
.section__head { text-align: center; max-width: 56ch; margin: 0 auto 2.5rem; }
.section__head h2 { font-size: clamp(1.6rem, 3.5vw, 2.3rem); margin: 0.6rem 0; }
.section__head p { color: var(--muted); }
.grid { display: grid; gap: 1.2rem; }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }
/* Service cards */
.svc {
background: var(--white);
border-radius: var(--radius);
padding: 1.6rem;
border: 1px solid #e3efeb;
box-shadow: var(--shadow-sm);
transition: transform 0.18s ease, box-shadow 0.2s ease;
}
.svc:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.svc__icon {
display: grid; place-items: center;
width: 48px; height: 48px; border-radius: 14px;
background: var(--teal-50); font-size: 1.4rem; margin-bottom: 0.9rem;
}
.svc h3 { font-size: 1.12rem; margin-bottom: 0.35rem; }
.svc p { color: var(--muted); font-size: 0.95rem; }
/* Vets */
.vet {
background: var(--white);
border-radius: var(--radius);
padding: 1.8rem 1.4rem;
text-align: center;
border: 1px solid #e3efeb;
box-shadow: var(--shadow-sm);
transition: transform 0.18s ease;
}
.vet:hover { transform: translateY(-4px); }
.vet__avatar {
width: 84px; height: 84px; margin: 0 auto 0.9rem;
border-radius: 50%;
background: var(--teal-50);
display: grid; place-items: center;
box-shadow: 0 0 0 3px #fff, 0 0 0 6px var(--ring, var(--teal));
font-weight: 800; color: var(--teal-d); font-size: 1.5rem;
}
.vet__avatar::before { content: attr(data-initials); }
.vet h3 { font-size: 1.1rem; }
.vet__role { color: var(--teal-d); font-weight: 600; font-size: 0.88rem; margin: 0.2rem 0 0.5rem; }
.vet__bio { color: var(--muted); font-size: 0.92rem; }
/* Badge cards */
.badge-card {
background: var(--white);
border-radius: var(--radius);
padding: 1.5rem 1.3rem;
border: 1px solid #e3efeb;
box-shadow: var(--shadow-sm);
}
.badge-card__ico { font-size: 1.6rem; display: block; margin-bottom: 0.6rem; }
.badge-card h3 { font-size: 1.02rem; margin-bottom: 0.3rem; }
.badge-card p { color: var(--muted); font-size: 0.9rem; }
/* Testimonials */
.quote {
background: var(--white);
border-radius: var(--radius);
padding: 1.6rem;
border: 1px solid #e3efeb;
box-shadow: var(--shadow-sm);
}
.stars { color: var(--coral); letter-spacing: 2px; margin-bottom: 0.7rem; }
.quote blockquote { font-size: 1.02rem; color: var(--ink); }
.quote figcaption { margin-top: 0.9rem; color: var(--muted); font-weight: 600; font-size: 0.9rem; }
/* Visit */
.visit { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 1.5rem; align-items: stretch; }
.visit__hours {
background: var(--white); border-radius: var(--radius-lg);
padding: 2rem; border: 1px solid #e3efeb; box-shadow: var(--shadow-sm);
}
.visit__hours h2 { margin: 0.5rem 0 1.2rem; font-size: 1.7rem; }
.hours { list-style: none; padding: 0; }
.hours li {
display: flex; justify-content: space-between;
padding: 0.7rem 0; border-bottom: 1px dashed #d6e8e3;
font-weight: 500;
}
.hours li:last-child { border-bottom: 0; }
.hours li span:last-child { color: var(--teal-d); font-weight: 600; }
.hours__urgent span:first-child { color: var(--ink); }
.visit__map {
position: relative;
border-radius: var(--radius-lg);
background:
radial-gradient(circle at 30% 20%, rgba(255,138,92,0.14), transparent 40%),
repeating-linear-gradient(0deg, #d8ede8 0 1px, transparent 1px 44px),
repeating-linear-gradient(90deg, #d8ede8 0 1px, transparent 1px 44px),
var(--teal-50);
display: flex; align-items: flex-end;
padding: 1.6rem; overflow: hidden;
border: 1px solid #d6e8e3;
}
.visit__pin { position: absolute; top: 38%; left: 46%; font-size: 2.4rem; filter: drop-shadow(0 4px 6px rgba(0,0,0,0.15)); animation: bob 2.4s ease-in-out infinite; }
.visit__addr {
background: var(--white); border-radius: var(--radius);
padding: 1.2rem 1.3rem; box-shadow: var(--shadow);
}
.visit__addr p { color: var(--muted); font-size: 0.92rem; margin-top: 0.3rem; }
.visit__addr a { color: var(--teal-d); font-weight: 600; text-decoration: none; }
.visit__addr a:hover { text-decoration: underline; }
.visit__parking { font-size: 0.82rem !important; }
@keyframes bob { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }
/* CTA */
.cta { padding: clamp(2rem, 5vw, 3rem) clamp(1rem, 4vw, 2rem); }
.cta__inner {
max-width: var(--maxw); margin: 0 auto;
background: linear-gradient(135deg, var(--teal-d), var(--teal));
color: #fff; text-align: center;
border-radius: var(--radius-lg);
padding: clamp(2.2rem, 5vw, 3.5rem);
box-shadow: var(--shadow);
}
.cta__inner h2 { font-size: clamp(1.7rem, 4vw, 2.5rem); }
.cta__inner p { color: rgba(255,255,255,0.9); margin: 0.6rem 0 1.5rem; }
.cta__actions { display: flex; gap: 0.8rem; justify-content: center; flex-wrap: wrap; }
/* Footer */
.footer { background: var(--ink); color: #cfe2dd; padding: 3rem clamp(1rem, 4vw, 2rem) 2rem; }
.footer__cols {
max-width: var(--maxw); margin: 0 auto;
display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 2rem;
}
.brand--footer { color: #fff; margin-bottom: 0.7rem; }
.brand--footer .brand__mark { background: var(--teal); font-size: 1.1rem; }
.footer__blurb { font-size: 0.92rem; max-width: 32ch; }
.footer h3 { color: #fff; font-size: 0.95rem; margin-bottom: 0.7rem; }
.footer nav { display: flex; flex-direction: column; gap: 0.4rem; }
.footer a { color: #cfe2dd; text-decoration: none; font-size: 0.92rem; }
.footer a:hover { color: #fff; }
.footer__legal {
max-width: var(--maxw); margin: 2rem auto 0;
padding-top: 1.4rem; border-top: 1px solid rgba(255,255,255,0.12);
font-size: 0.82rem; color: #8fb1aa;
}
/* Reveal on scroll */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity 0.5s ease, transform 0.5s ease; }
.reveal.is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
.reveal { opacity: 1; transform: none; transition: none; }
.visit__pin { animation: none; }
html { scroll-behavior: auto; }
}
/* ---------- Responsive ---------- */
@media (max-width: 900px) {
.grid--3, .grid--4 { grid-template-columns: repeat(2, 1fr); }
.hero { grid-template-columns: 1fr; }
.visit { grid-template-columns: 1fr; }
.visit__map { min-height: 280px; }
.footer__cols { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 520px) {
.nav, .header__cta { display: none; }
.nav__toggle { display: flex; }
.nav.is-open {
display: flex; flex-direction: column; gap: 0.9rem;
position: absolute; top: 100%; left: 0; right: 0;
background: var(--white); padding: 1.2rem clamp(1rem, 4vw, 2rem);
box-shadow: var(--shadow); margin: 0;
}
.grid--3, .grid--4 { grid-template-columns: 1fr; }
.hero__stats { gap: 1.2rem; }
.hero__actions .btn { flex: 1 1 100%; }
.offer { font-size: 0.82rem; padding-right: 2.4rem; }
.cta__actions .btn { flex: 1 1 100%; }
}(function () {
'use strict';
/* ---------- Dismissible offer banner ---------- */
var offer = document.getElementById('offer');
var offerClose = document.getElementById('offerClose');
if (offerClose && offer) {
offerClose.addEventListener('click', function () {
offer.setAttribute('hidden', '');
});
}
/* ---------- Sticky header shadow ---------- */
var header = document.getElementById('header');
if (header) {
var onScroll = function () {
header.classList.toggle('is-stuck', window.scrollY > 8);
};
window.addEventListener('scroll', onScroll, { passive: true });
onScroll();
}
/* ---------- Mobile nav toggle ---------- */
var toggle = document.getElementById('navToggle');
var nav = document.querySelector('.nav');
if (toggle && nav) {
toggle.addEventListener('click', function () {
var open = nav.classList.toggle('is-open');
toggle.setAttribute('aria-expanded', open ? 'true' : 'false');
});
nav.addEventListener('click', function (e) {
if (e.target.tagName === 'A') {
nav.classList.remove('is-open');
toggle.setAttribute('aria-expanded', 'false');
}
});
}
/* ---------- "Book" buttons focus the request form ---------- */
document.querySelectorAll('[data-book]').forEach(function (btn) {
btn.addEventListener('click', function () {
var pet = document.getElementById('pet');
if (pet) {
// let the smooth-scroll happen, then place the cursor
setTimeout(function () { pet.focus(); }, 450);
}
});
});
/* ---------- Quick booking form ---------- */
var form = document.getElementById('quickForm');
var note = document.getElementById('formNote');
if (form && note) {
// Default the date picker to tomorrow.
var day = document.getElementById('day');
if (day && !day.value) {
var t = new Date();
t.setDate(t.getDate() + 1);
day.value = t.toISOString().slice(0, 10);
day.min = new Date().toISOString().slice(0, 10);
}
form.addEventListener('submit', function (e) {
e.preventDefault();
var pet = form.pet.value.trim();
var reason = form.reason.value;
var when = form.day.value;
note.classList.remove('is-err');
if (!pet || !reason || !when) {
note.textContent = 'Please fill in every field so we can find a slot.';
note.classList.add('is-err');
return;
}
var date = new Date(when + 'T00:00:00');
var pretty = date.toLocaleDateString(undefined, {
weekday: 'long', month: 'long', day: 'numeric'
});
note.textContent = '🐾 Thanks! We will text you to confirm ' + pet +
'’s ' + reason.toLowerCase() + ' for ' + pretty + '.';
form.reset();
if (day) day.value = '';
});
}
/* ---------- Reveal on scroll ---------- */
var revealEls = document.querySelectorAll('.reveal');
if ('IntersectionObserver' in window) {
var io = new IntersectionObserver(function (entries) {
entries.forEach(function (entry) {
if (entry.isIntersecting) {
entry.target.classList.add('is-in');
io.unobserve(entry.target);
}
});
}, { threshold: 0.12, rootMargin: '0px 0px -40px 0px' });
revealEls.forEach(function (el) { io.observe(el); });
} else {
revealEls.forEach(function (el) { el.classList.add('is-in'); });
}
})();<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Maple Paws Veterinary Clinic — Compassionate care for your pet</title>
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="stylesheet" href="style.css" />
</head>
<body>
<!-- New-client offer banner -->
<div class="offer" id="offer" role="region" aria-label="New client offer">
<p class="offer__text">
<span class="offer__pill">New client</span>
Get a <strong>free first wellness exam</strong> when you book online this month.
</p>
<button class="offer__close" id="offerClose" type="button" aria-label="Dismiss offer">×</button>
</div>
<!-- Header -->
<header class="header" id="header">
<a class="brand" href="#top" aria-label="Maple Paws home">
<span class="brand__mark" aria-hidden="true">
<svg viewBox="0 0 24 24" width="22" height="22" fill="currentColor">
<circle cx="6" cy="9" r="2.1"/><circle cx="10.5" cy="6" r="2.1"/>
<circle cx="15.5" cy="6" r="2.1"/><circle cx="20" cy="9" r="2.1"/>
<path d="M13 11c-2.4 0-4.5 1.4-5.6 3.5-.7 1.3-1.6 2.4-2.9 3-1 .5-1.5 1.6-1.1 2.6.4 1 1.5 1.6 2.6 1.3 1.4-.4 2.8-.6 4.2-.6 1.4 0 2.8.2 4.2.6 1.1.3 2.2-.3 2.6-1.3.4-1-.1-2.1-1.1-2.6-1.3-.6-2.2-1.7-2.9-3C17.5 12.4 15.4 11 13 11z"/>
</svg>
</span>
<span class="brand__name">Maple Paws<span class="brand__sub">Veterinary Clinic</span></span>
</a>
<nav class="nav" aria-label="Primary">
<a href="#services">Services</a>
<a href="#vets">Our vets</a>
<a href="#why">Why us</a>
<a href="#visit">Visit</a>
</nav>
<a href="#book" class="btn btn--primary header__cta">Book now</a>
<button class="nav__toggle" id="navToggle" type="button" aria-expanded="false" aria-label="Toggle menu">
<span></span><span></span><span></span>
</button>
</header>
<main id="top">
<!-- Hero -->
<section class="hero" id="book">
<div class="hero__copy reveal">
<span class="eyebrow"><span class="dot" aria-hidden="true"></span> Accepting new patients</span>
<h1>Gentle, expert care for the pets you love.</h1>
<p class="lede">
From wiggly puppies to wise old cats, our team treats every animal like family. Same-week
appointments, transparent pricing and a calm, fear-free clinic.
</p>
<div class="hero__actions">
<a href="#book-form" class="btn btn--primary btn--lg" data-book>🐾 Book an appointment</a>
<a href="tel:+15551234567" class="btn btn--ghost btn--lg">Call (555) 123-4567</a>
</div>
<ul class="hero__stats" aria-label="Clinic at a glance">
<li><strong>12k+</strong><span>pets cared for</span></li>
<li><strong>4.9★</strong><span>from 860 reviews</span></li>
<li><strong>7 days</strong><span>open every week</span></li>
</ul>
</div>
<div class="hero__card reveal" id="book-form">
<h2 class="card-title">Request a visit</h2>
<form class="quick-form" id="quickForm" novalidate>
<label for="pet">Pet name</label>
<input id="pet" name="pet" type="text" placeholder="e.g. Biscuit" autocomplete="off" required />
<label for="reason">Reason for visit</label>
<select id="reason" name="reason" required>
<option value="">Choose one…</option>
<option>Wellness check-up</option>
<option>Vaccinations</option>
<option>Dental cleaning</option>
<option>Not feeling well</option>
<option>Other</option>
</select>
<label for="day">Preferred day</label>
<input id="day" name="day" type="date" required />
<button type="submit" class="btn btn--primary btn--block">Request booking</button>
<p class="quick-form__note" id="formNote" role="status" aria-live="polite"></p>
</form>
</div>
</section>
<!-- Services -->
<section class="section" id="services">
<header class="section__head reveal">
<span class="eyebrow">What we do</span>
<h2>Full-service care under one roof</h2>
<p>Routine, preventive and urgent — so your pet rarely needs a referral elsewhere.</p>
</header>
<div class="grid grid--3">
<article class="svc reveal">
<span class="svc__icon" aria-hidden="true">🩺</span>
<h3>Wellness & prevention</h3>
<p>Annual exams, vaccines and parasite plans that catch problems early.</p>
</article>
<article class="svc reveal">
<span class="svc__icon" aria-hidden="true">🦷</span>
<h3>Dental care</h3>
<p>Cleanings, polishing and extractions with safe, monitored anesthesia.</p>
</article>
<article class="svc reveal">
<span class="svc__icon" aria-hidden="true">💉</span>
<h3>Surgery</h3>
<p>Spay, neuter and soft-tissue procedures in a fully equipped suite.</p>
</article>
<article class="svc reveal">
<span class="svc__icon" aria-hidden="true">🐾</span>
<h3>Urgent & sick visits</h3>
<p>Same-day slots held daily for pets who aren't quite themselves.</p>
</article>
<article class="svc reveal">
<span class="svc__icon" aria-hidden="true">🔬</span>
<h3>In-house diagnostics</h3>
<p>Bloodwork, digital x-ray and ultrasound with results the same visit.</p>
</article>
<article class="svc reveal">
<span class="svc__icon" aria-hidden="true">❤️</span>
<h3>End-of-life support</h3>
<p>Gentle, unhurried care and guidance for the hardest goodbyes.</p>
</article>
</div>
</section>
<!-- Meet the vets -->
<section class="section section--soft" id="vets">
<header class="section__head reveal">
<span class="eyebrow">Meet the team</span>
<h2>Vets who actually remember your pet</h2>
<p>A small, steady team means a familiar face at every visit.</p>
</header>
<div class="grid grid--3">
<article class="vet reveal">
<div class="vet__avatar" data-initials="EM" style="--ring:var(--teal)"></div>
<h3>Dr. Elena Martínez</h3>
<p class="vet__role">Lead Veterinarian · DVM</p>
<p class="vet__bio">Internal medicine and fear-free handling. Mom to two rescue beagles.</p>
</article>
<article class="vet reveal">
<div class="vet__avatar" data-initials="JO" style="--ring:var(--coral)"></div>
<h3>Dr. James Okafor</h3>
<p class="vet__role">Surgeon · DVM, DACVS</p>
<p class="vet__bio">Soft-tissue surgery and orthopedics. Believes pain control comes first.</p>
</article>
<article class="vet reveal">
<div class="vet__avatar" data-initials="PS" style="--ring:var(--teal-d)"></div>
<h3>Dr. Priya Shah</h3>
<p class="vet__role">Dentistry & Wellness · DVM</p>
<p class="vet__bio">Preventive dentistry and senior-pet care. Foster of far too many kittens.</p>
</article>
</div>
</section>
<!-- Why us -->
<section class="section" id="why">
<header class="section__head reveal">
<span class="eyebrow">Why families choose us</span>
<h2>Compassion you can feel from the door</h2>
</header>
<div class="grid grid--4">
<div class="badge-card reveal"><span class="badge-card__ico" aria-hidden="true">🌿</span><h3>Fear-free certified</h3><p>Calming pheromones, treats and unhurried handling.</p></div>
<div class="badge-card reveal"><span class="badge-card__ico" aria-hidden="true">💬</span><h3>Plain-talk pricing</h3><p>Written estimates before anything happens.</p></div>
<div class="badge-card reveal"><span class="badge-card__ico" aria-hidden="true">⏱️</span><h3>Short wait times</h3><p>We book to keep you moving, not waiting.</p></div>
<div class="badge-card reveal"><span class="badge-card__ico" aria-hidden="true">📋</span><h3>Records that follow you</h3><p>Easy transfers and a tidy online portal.</p></div>
</div>
</section>
<!-- Testimonials -->
<section class="section section--soft" id="reviews">
<header class="section__head reveal">
<span class="eyebrow">Kind words</span>
<h2>Loved by pets & their people</h2>
</header>
<div class="grid grid--3">
<figure class="quote reveal">
<div class="stars" aria-label="5 out of 5 stars">★★★★★</div>
<blockquote>"They squeezed Biscuit in the same morning he stopped eating. Dr. Martínez called me herself that night to check in."</blockquote>
<figcaption>— Hannah R., with Biscuit 🐶</figcaption>
</figure>
<figure class="quote reveal">
<div class="stars" aria-label="5 out of 5 stars">★★★★★</div>
<blockquote>"First clinic where my anxious cat didn't hiss the whole time. The calm room made all the difference."</blockquote>
<figcaption>— Marcus T., with Olive 🐱</figcaption>
</figure>
<figure class="quote reveal">
<div class="stars" aria-label="5 out of 5 stars">★★★★★</div>
<blockquote>"They walked us through Rufus's senior care without ever pushing extras. Honest, warm, and so patient."</blockquote>
<figcaption>— The Delgado family, with Rufus 🐕</figcaption>
</figure>
</div>
</section>
<!-- Visit: hours + location -->
<section class="section" id="visit">
<div class="visit">
<div class="visit__hours reveal">
<span class="eyebrow">Hours</span>
<h2>Open 7 days a week</h2>
<ul class="hours" aria-label="Opening hours">
<li><span>Mon – Fri</span><span>8:00 AM – 7:00 PM</span></li>
<li><span>Saturday</span><span>9:00 AM – 5:00 PM</span></li>
<li><span>Sunday</span><span>10:00 AM – 3:00 PM</span></li>
<li class="hours__urgent"><span>Urgent line</span><span class="badge badge--coral">24/7</span></li>
</ul>
</div>
<div class="visit__map reveal" role="img" aria-label="Stylized map showing clinic location">
<div class="visit__pin" aria-hidden="true">📍</div>
<div class="visit__addr">
<strong>Maple Paws Veterinary Clinic</strong>
<p>248 Maplewood Avenue<br />Riverside, CA 92501</p>
<p><a href="tel:+15551234567">(555) 123-4567</a> · <a href="mailto:[email protected]">[email protected]</a></p>
<p class="visit__parking">Free parking · Wheelchair accessible</p>
</div>
</div>
</div>
</section>
<!-- Booking CTA -->
<section class="cta reveal">
<div class="cta__inner">
<h2>Ready when your pet is</h2>
<p>Book online in under a minute — we'll confirm by text the same day.</p>
<div class="cta__actions">
<a href="#book-form" class="btn btn--coral btn--lg" data-book>🐾 Book an appointment</a>
<a href="tel:+15551234567" class="btn btn--ghost-light btn--lg">Or call (555) 123-4567</a>
</div>
</div>
</section>
</main>
<footer class="footer">
<div class="footer__cols">
<div>
<a class="brand brand--footer" href="#top">
<span class="brand__mark" aria-hidden="true">🐾</span>
<span class="brand__name">Maple Paws</span>
</a>
<p class="footer__blurb">Compassionate veterinary care for the whole neighborhood, since 2009.</p>
</div>
<nav aria-label="Footer">
<h3>Clinic</h3>
<a href="#services">Services</a>
<a href="#vets">Our vets</a>
<a href="#why">Why us</a>
<a href="#visit">Hours & location</a>
</nav>
<div>
<h3>Get in touch</h3>
<p>248 Maplewood Avenue<br />Riverside, CA 92501</p>
<p><a href="tel:+15551234567">(555) 123-4567</a></p>
</div>
</div>
<p class="footer__legal">© 2026 Maple Paws Veterinary Clinic. Illustrative demo — not a real clinic.</p>
</footer>
<script src="script.js"></script>
</body>
</html>General Vet Clinic Landing
A friendly, full marketing landing for a neighborhood veterinary clinic. It opens with a warm hero and a prominent Book now call to action, then walks visitors through services, a meet-the-vets preview, why-us care badges, testimonials, and a clear hours and location block.
The page is built around an approachable teal palette accented with warm coral, soft large radii and gentle paw and heart motifs. A sticky header, smooth in-page navigation, a dismissible new-client offer banner and reveal-on-scroll sections add polish without any libraries.
Everything is plain HTML, CSS custom properties and vanilla JavaScript. The booking buttons demonstrate a lightweight inline confirmation flow you can wire to your real scheduler.
Illustrative UI only — not for real veterinary use.