/* ==========================================================================
   Sunnyside / Dersingham Veterinary Clinic — theme styles
   Design tokens: Poppins (headings) + Figtree (body), squared 3px radii,
   warm cream neutrals. Colours derive from --primary / --secondary (set
   inline in <head>) via color-mix().
   ========================================================================== */

:root {
	/* Source colours are injected inline: --primary, --secondary. */
	--b:        var(--primary);
	--b2:       color-mix(in srgb, var(--primary) 80%, white);
	--bsoft:    color-mix(in srgb, var(--primary) 10%, white);
	--acc:      var(--secondary);
	--accHover: color-mix(in srgb, var(--secondary) 88%, black);
	--accText:  color-mix(in srgb, var(--secondary) 42%, black);
	--accink:   color-mix(in srgb, var(--secondary) 62%, #201400);
	--secSoft:  color-mix(in srgb, var(--secondary) 15%, white);
	--heroA:    color-mix(in srgb, var(--primary), transparent 10%);
	--heroB:    color-mix(in srgb, var(--primary), transparent 46%);

	/* Neutrals */
	--page:     #faf7f1;
	--surface:  #fff;
	--line:     #efe9dd;
	--line2:    #ece7dd;
	--body:     #5c5d6b;
	--strong:   #3a3b4a;
	--muted:    #8a8577;

	--container: 1240px;
	--pad:       40px;
	--radius:    3px;
	--header-h:  72px;

	--font-head: 'Poppins', system-ui, sans-serif;
	--font-body: 'Figtree', system-ui, sans-serif;

	--paw: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cellipse cx='5.5' cy='11.5' rx='1.9' ry='2.5'/%3E%3Cellipse cx='9.7' cy='7.7' rx='1.9' ry='2.6'/%3E%3Cellipse cx='14.3' cy='7.7' rx='1.9' ry='2.6'/%3E%3Cellipse cx='18.5' cy='11.5' rx='1.9' ry='2.5'/%3E%3Cpath d='M12 12.2c-3 0-5.2 2.1-5.2 4.4 0 1.7 1.4 2.5 3 2.5 1.1 0 1.6-.5 2.2-.5s1.1.5 2.2.5c1.6 0 3-.8 3-2.5 0-2.3-2.2-4.4-5.2-4.4z'/%3E%3C/svg%3E");
}

/* Reset-ish -------------------------------------------------------------- */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
	margin: 0;
	font-family: var(--font-body);
	color: #1b1c28;
	background: var(--page);
	-webkit-font-smoothing: antialiased;
	overflow-x: hidden;
}
body:not(.svc-has-hero) .svc-main { padding-top: var(--header-h); }
img { max-width: 100%; height: auto; }
a { text-decoration: none; color: var(--b); }
a:hover { color: var(--accink); }
h1, h2, h3, h4 { font-family: var(--font-head); }

.svc-container {
	max-width: var(--container);
	margin: 0 auto;
	padding-left: var(--pad);
	padding-right: var(--pad);
	width: 100%;
}

.svc-skip-link {
	position: absolute;
	left: -9999px;
	top: 0;
	z-index: 200;
	background: var(--b);
	color: #fff;
	padding: 10px 16px;
	border-radius: var(--radius);
}
.svc-skip-link:focus { left: 12px; top: 12px; color: #fff; }

.screen-reader-text {
	position: absolute !important;
	clip: rect(1px, 1px, 1px, 1px);
	width: 1px; height: 1px; overflow: hidden;
}

/* Reveal animation ------------------------------------------------------- */
.reveal {
	opacity: 0;
	transform: translateY(26px);
	transition: opacity .7s cubic-bezier(.2,.7,.2,1), transform .7s cubic-bezier(.2,.7,.2,1);
}
.reveal.is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
	.reveal { opacity: 1; transform: none; transition: none; }
	html { scroll-behavior: auto; }
}

@keyframes svc-pulseDot { 0% { box-shadow: 0 0 0 0 color-mix(in srgb, var(--acc) 55%, transparent); } 70% { box-shadow: 0 0 0 12px transparent; } 100% { box-shadow: 0 0 0 0 transparent; } }
@keyframes svc-ovIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes svc-cardIn { from { opacity: 0; transform: translateY(18px) scale(.98); } to { opacity: 1; transform: none; } }

/* ==========================================================================
   Buttons
   ========================================================================== */
.svc-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 9px;
	border-radius: var(--radius);
	font-weight: 700;
	font-size: 16px;
	padding: 15px 28px;
	border: 1px solid transparent;
	cursor: pointer;
	font-family: inherit;
	line-height: 1;
	transition: background .3s ease, border-color .3s ease, color .3s ease, opacity .2s ease;
	white-space: nowrap;
}
.svc-btn--accent { background: var(--acc); color: var(--accText); box-shadow: 0 14px 34px -12px rgba(0,0,0,.32); }
.svc-btn--accent:hover { background: var(--accHover); color: var(--accText); }
.svc-btn--primary { background: var(--b); color: #fff; }
.svc-btn--primary:hover { background: var(--b2); color: #fff; }
.svc-btn--glass { background: rgba(255,255,255,.12); color: #fff; border-color: rgba(255,255,255,.28); font-weight: 600; backdrop-filter: blur(4px); }
.svc-btn--glass:hover { background: rgba(255,255,255,.2); color: #fff; }
.svc-btn--ghost { background: rgba(255,255,255,.08); color: #fff; border-color: rgba(255,255,255,.2); font-weight: 600; }
.svc-btn--ghost:hover { background: rgba(255,255,255,.16); color: #fff; }
.svc-btn--outline { background: #fff; color: var(--b); border-color: #e2dccf; font-weight: 600; font-size: 14px; padding: 11px 18px; }
.svc-btn--outline:hover { border-color: var(--b); color: var(--b); }
.svc-btn--phone {
	gap: 9px; padding: 12px 20px; font-size: 14.5px; font-weight: 600;
	background: var(--b); color: #fff;
}
.svc-btn--phone:hover { color: #fff; opacity: .9; }
.svc-btn--phone.is-disabled { opacity: .6; cursor: not-allowed; }

/* Playful: a button's icon morphs into a paw print on hover. */
.svc-btn:hover svg > * { display: none; }
.svc-btn:hover svg {
	background-color: currentColor;
	-webkit-mask: var(--paw) center / contain no-repeat;
	mask: var(--paw) center / contain no-repeat;
}

/* ==========================================================================
   Header / nav
   ========================================================================== */
.svc-header {
	position: fixed;
	top: 0; left: 0; right: 0;
	z-index: 60;
	transition: background .3s ease, border-color .3s ease, box-shadow .3s ease;
}
.svc-header__inner {
	max-width: var(--container);
	margin: 0 auto;
	padding: 15px var(--pad);
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
}
.svc-brand { display: flex; align-items: center; gap: 12px; }
.svc-brand img.custom-logo { width: 34px; height: 34px; }
/* Larger over the hero, shrinking once the header goes sticky/solid. */
.svc-brand__logo { display: block; height: 88px; width: auto; max-width: 320px; object-fit: contain; transition: height .3s ease; }
.svc-header.is-solid .svc-brand__logo,
.svc-header:not(.svc-header--overlay) .svc-brand__logo { height: 52px; }
.svc-brand__logo--footer { height: 48px; max-width: 220px; }
@media (max-width: 640px) {
	.svc-brand__logo { height: 60px; max-width: 210px; }
	.svc-header.is-solid .svc-brand__logo,
	.svc-header:not(.svc-header--overlay) .svc-brand__logo { height: 42px; }
	.svc-brand__logo--footer { height: 40px; }
}
.svc-brand__text { display: flex; flex-direction: column; line-height: 1; }
.svc-brand__name { font-family: var(--font-head); font-weight: 800; font-size: 19px; letter-spacing: 2px; transition: color .3s ease; }
.svc-brand__sub { font-family: var(--font-head); font-weight: 600; font-size: 9px; letter-spacing: 4px; margin-top: 3px; transition: color .3s ease; }

.svc-nav__list { display: flex; align-items: center; gap: 30px; list-style: none; margin: 0; padding: 0; }
.svc-nav__list a { font-weight: 600; font-size: 15px; transition: color .3s ease; }
.svc-nav__list a:hover { color: var(--acc); }

.svc-header__actions { display: flex; align-items: center; gap: 12px; }

/* Solid header (default + scrolled) — primary background */
.svc-header.is-solid,
.svc-header:not(.svc-header--overlay) {
	background: var(--b);
	border-bottom: 1px solid color-mix(in srgb, var(--primary) 78%, black);
	box-shadow: 0 8px 26px -20px rgba(15,20,68,.55);
}
.svc-header.is-solid .svc-brand__name,
.svc-header:not(.svc-header--overlay) .svc-brand__name { color: #fff; }
.svc-header.is-solid .svc-brand__sub,
.svc-header:not(.svc-header--overlay) .svc-brand__sub { color: var(--acc); }
.svc-header.is-solid .svc-nav__list a,
.svc-header:not(.svc-header--overlay) .svc-nav__list a { color: rgba(255,255,255,.92); }
.svc-header.is-solid .svc-nav__list a:hover,
.svc-header:not(.svc-header--overlay) .svc-nav__list a:hover { color: var(--acc); }
.svc-header.is-solid .svc-menu-toggle,
.svc-header:not(.svc-header--overlay) .svc-menu-toggle { color: #fff; }
.svc-header.is-solid .svc-btn--phone,
.svc-header:not(.svc-header--overlay) .svc-btn--phone { background: rgba(255,255,255,.14); color: #fff; border-color: rgba(255,255,255,.4); }
.svc-header.is-solid .svc-btn--phone:hover,
.svc-header:not(.svc-header--overlay) .svc-btn--phone:hover { background: rgba(255,255,255,.22); color: #fff; }

/* Transparent header (over hero, not scrolled) */
.svc-header--overlay:not(.is-solid) { background: transparent; border-bottom: 1px solid transparent; }
.svc-header--overlay:not(.is-solid) .svc-brand__name { color: #fff; }
.svc-header--overlay:not(.is-solid) .svc-brand__sub { color: var(--acc); }
.svc-header--overlay:not(.is-solid) .svc-nav__list a { color: rgba(255,255,255,.92); }
.svc-header--overlay:not(.is-solid) .svc-nav__list a:hover { color: var(--acc); }
.svc-header--overlay:not(.is-solid) .svc-menu-toggle { color: #fff; }
.svc-header--overlay:not(.is-solid) .svc-btn--phone { background: rgba(255,255,255,.14); color: #fff; border-color: rgba(255,255,255,.4); }

/* Phone closed + tooltip */
.svc-phone-closed { position: relative; }
.svc-tooltip {
	position: absolute;
	top: calc(100% + 10px); right: 0;
	z-index: 80;
	background: var(--b); color: #fff;
	padding: 11px 14px; border-radius: var(--radius);
	box-shadow: 0 16px 34px -16px rgba(0,0,0,.6);
	white-space: nowrap;
	opacity: 0; visibility: hidden; transform: translateY(-4px);
	transition: opacity .2s ease, transform .2s ease, visibility .2s;
}
.svc-phone-closed:hover .svc-tooltip,
.svc-phone-closed:focus-within .svc-tooltip { opacity: 1; visibility: visible; transform: none; }
.svc-tooltip::after {
	content: ''; position: absolute; bottom: 100%; right: 22px;
	border: 6px solid transparent; border-bottom-color: var(--b);
}
.svc-tooltip__title { font-weight: 700; font-size: 13px; }
.svc-tooltip__meta { font-size: 12.5px; color: var(--acc); margin-top: 2px; }

/* Menu toggle + mobile nav */
.svc-menu-toggle {
	display: none;
	width: 44px; height: 44px;
	align-items: center; justify-content: center;
	background: transparent; border: none; cursor: pointer; color: var(--b);
	border-radius: var(--radius);
}
.svc-mobile-nav {
	position: fixed;
	top: var(--header-h); left: 0; right: 0;
	z-index: 55;
	background: rgba(250,247,241,.98);
	backdrop-filter: blur(12px);
	border-bottom: 1px solid var(--line2);
	box-shadow: 0 20px 40px -24px rgba(15,20,68,.5);
	padding: 12px 20px 20px;
}
.svc-mobile-nav__list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; }
.svc-mobile-nav__list a { display: block; padding: 14px 6px; font-weight: 600; font-size: 16px; color: #33344a; border-bottom: 1px solid var(--line); }

/* ==========================================================================
   Striped placeholders
   ========================================================================== */
.svc-stripe {
	position: relative;
	background: repeating-linear-gradient(45deg, #efe9dd, #efe9dd 14px, #e7e0d1 14px, #e7e0d1 28px);
}
.svc-stripe--dark { background: repeating-linear-gradient(45deg, #c9c3b4, #c9c3b4 18px, #bdb7a8 18px, #bdb7a8 36px); }
.svc-stripe--cool { background: repeating-linear-gradient(45deg, #e9ebf1, #e9ebf1 12px, #dfe2ea 12px, #dfe2ea 24px); }
.svc-stripe--map  { background: repeating-linear-gradient(45deg, #d7d2c4, #d7d2c4 16px, #cbc6b7 16px, #cbc6b7 32px); }
.svc-stripe[data-label]::after {
	content: attr(data-label);
	position: absolute; inset: 0;
	display: flex; align-items: center; justify-content: center;
	text-align: center; padding: 10px;
	font-family: ui-monospace, monospace; font-size: 12px; letter-spacing: 1px;
	color: rgba(0,0,0,.3);
}

/* ==========================================================================
   Sections / headings
   ========================================================================== */
.svc-section { padding-top: clamp(30px, 4.5vw, 56px); padding-bottom: clamp(28px, 5vw, 40px); }
.svc-band { background: var(--surface); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.svc-band > .svc-container { padding-top: clamp(30px, 4.5vw, 56px); padding-bottom: clamp(48px, 8vw, 90px); }

.svc-section__head { text-align: center; max-width: 660px; margin: 0 auto clamp(32px, 5vw, 52px); }
.svc-eyebrow { font-family: var(--font-head); font-weight: 700; font-size: 13px; letter-spacing: 2px; color: var(--accink); text-transform: uppercase; }
.svc-h2 { font-family: var(--font-head); font-weight: 700; font-size: clamp(26px, 4vw, 40px); line-height: 1.13; color: var(--b); margin: 12px 0 0; letter-spacing: -.5px; }
.svc-section__intro { font-size: 17px; line-height: 1.6; color: var(--body); margin: 16px 0 0; }
.svc-section__cta { text-align: center; margin-top: clamp(28px, 4vw, 40px); }

/* Grids */
.svc-grid { display: grid; gap: 22px; }
.svc-grid--3 { grid-template-columns: repeat(3, 1fr); }
.svc-grid--4 { grid-template-columns: repeat(4, 1fr); gap: 24px; }

/* Icon tiles */
.svc-icon-tile {
	width: 54px; height: 54px;
	border-radius: var(--radius);
	background: var(--secSoft);
	display: flex; align-items: center; justify-content: center;
	color: var(--accink);
	flex-shrink: 0;
}
.svc-icon-tile--sm { width: 38px; height: 38px; }
.svc-icon-tile--lg { width: 56px; height: 56px; }

/* ==========================================================================
   Hero
   ========================================================================== */
.svc-hero {
	position: relative;
	min-height: 640px;
	display: flex;
	align-items: center;
	overflow: hidden;
}
.svc-hero__slides { position: absolute; inset: 0; }
.svc-hero__media { position: absolute; inset: 0; background-size: cover; background-position: center; opacity: 0; transition: opacity 1.1s ease; }
.svc-hero__media.is-active { opacity: 1; }
.svc-hero__overlay { position: absolute; inset: 0; background: linear-gradient(100deg, var(--heroA) 0%, var(--heroB) 55%, transparent 100%); }
.svc-hero .svc-container { position: relative; padding-top: 120px; padding-bottom: 70px; }
.svc-hero__content { max-width: 660px; }
.svc-pill {
	display: inline-flex; align-items: center; gap: 8px;
	background: rgba(255,255,255,.14); backdrop-filter: blur(4px);
	color: #fff; font-weight: 600; font-size: 13px;
	padding: 9px 16px; border-radius: var(--radius);
	border: 1px solid rgba(255,255,255,.18);
}
.svc-hero__title {
	font-weight: 800; font-size: clamp(28px, 5.2vw, 52px);
	line-height: 1.03; letter-spacing: -1.5px; color: #fff;
	margin: 24px 0 0; text-wrap: balance;
}
.svc-hero__sub { font-size: clamp(16px, 2.4vw, 20px); line-height: 1.55; color: rgba(255,255,255,.9); margin: 22px 0 0; max-width: 540px; }
.svc-hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }

/* ==========================================================================
   Info strip
   ========================================================================== */
.svc-infostrip { background: var(--acc); }
.svc-infostrip__grid { display: grid; grid-template-columns: repeat(3, 1fr); padding: 0; }
.svc-infostrip__cell {
	padding: 24px var(--pad);
	display: flex; align-items: center; gap: 14px;
	border-right: 1px solid rgba(0,0,0,.12);
}
.svc-infostrip__cell:last-child { border-right: none; }
.svc-infostrip__text { flex: 1; min-width: 0; }
.svc-infostrip__status { display: flex; align-items: center; gap: 8px; }
.svc-dot { width: 8px; height: 8px; border-radius: 50%; display: inline-block; }
.svc-infostrip__badge { font-weight: 700; color: var(--accText); font-size: 15px; }
.svc-infostrip__meta { font-size: 13px; color: var(--accText); opacity: .75; }
.svc-infostrip__btn {
	background: rgba(0,0,0,.1); border: none; color: var(--accText);
	font-weight: 600; font-size: 12.5px; padding: 7px 13px;
	border-radius: var(--radius); cursor: pointer; white-space: nowrap;
	transition: background .2s ease;
}
.svc-infostrip__btn:hover { background: rgba(0,0,0,.2); }

/* ==========================================================================
   Service cards (homepage)
   ========================================================================== */
.svc-card {
	background: var(--surface);
	border: 1px solid var(--line);
	border-radius: var(--radius);
	padding: 32px 28px;
	transition: transform .18s ease, box-shadow .18s ease;
}
.svc-card--service:hover { transform: translateY(-4px); box-shadow: 0 22px 44px -28px rgba(15,20,68,.42); }
.svc-card__title { font-weight: 600; font-size: 19px; color: var(--b); margin: 20px 0 0; }
.svc-card__text { font-size: 15px; line-height: 1.6; color: var(--body); margin: 10px 0 0; }

/* ==========================================================================
   About
   ========================================================================== */
.svc-about { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.svc-about__media { position: relative; }
.svc-about__img { aspect-ratio: 5 / 4; width: 100%; border-radius: var(--radius); box-shadow: 0 24px 50px -30px rgba(15,20,68,.35); background-size: cover; background-position: center; }
.svc-about__badge {
	position: absolute; right: -22px; bottom: -22px;
	background: var(--b); color: #fff; border-radius: var(--radius);
	padding: 20px 24px; box-shadow: 0 20px 40px -18px rgba(15,20,68,.5);
}
/* No About photo set: single column, badge inline instead of floating. */
.svc-about--noimg { grid-template-columns: 1fr; max-width: 780px; }
.svc-about__badge--inline { position: static; display: inline-block; margin-top: 24px; }
.svc-about__stat { font-family: var(--font-head); font-weight: 800; font-size: 30px; color: var(--acc); }
.svc-about__statlabel { font-size: 13.5px; color: rgba(255,255,255,.85); }
.svc-about__lead { font-size: 17px; line-height: 1.65; color: var(--body); margin: 16px 0 0; text-wrap: pretty; }
.svc-about__book { font-size: 15px; line-height: 1.6; color: var(--accink); font-weight: 600; margin: 14px 0 0; }
.svc-highlights { display: flex; flex-direction: column; gap: 16px; margin-top: 26px; }
.svc-highlight { display: flex; gap: 14px; align-items: flex-start; }
.svc-highlight__title { font-family: var(--font-head); font-weight: 600; font-size: 16px; color: var(--b); }
.svc-highlight__text { font-size: 15px; color: var(--body); margin-top: 2px; }

/* ==========================================================================
   Team
   ========================================================================== */
.svc-team__card { text-align: center; }
.svc-team__photo { aspect-ratio: 1; border-radius: var(--radius); background-size: cover; background-position: center; }
.svc-team__photo.svc-stripe { background: repeating-linear-gradient(45deg, #f2ede2, #f2ede2 12px, #eae3d4 12px, #eae3d4 24px); }
/* No photo set → the site icon, contained on a tint rather than cover-cropped. */
.svc-team__photo--fallback,
.svc-team-modal__photo--fallback {
	background-size: 58%;
	background-repeat: no-repeat;
	background-color: color-mix(in srgb, var(--acc) 12%, #fff);
}
.svc-team__name { font-family: var(--font-head); font-weight: 600; font-size: 17px; color: var(--b); margin-top: 16px; }
.svc-team__role { font-size: 14px; color: var(--accink); font-weight: 600; margin-top: 3px; }

/* ==========================================================================
   Testimonials
   ========================================================================== */
.svc-quotes {
	background: var(--b);
	border-radius: var(--radius);
	padding: clamp(32px, 4vw, 48px) clamp(24px, 5vw, 56px);
	position: relative;
	overflow: hidden;
}
.svc-quotes__inner { position: relative; max-width: 720px; margin: 0 auto; text-align: center; }
.svc-quote { display: none; }
.svc-quote.is-active { display: block; animation: svc-ovIn .5s ease; }
.svc-stars { display: flex; justify-content: center; gap: 3px; margin-bottom: 22px; }
/* Sized down from a display quote: long Google reviews made the band very
   tall. Clamp to 8 lines with a fade — the full text stays in the DOM. */
.svc-quote__text {
	font-family: var(--font-head);
	font-weight: 500;
	font-size: clamp(16px, 1.5vw, 19px);
	line-height: 1.55;
	color: #fff;
	margin: 0;
	text-wrap: pretty;
	display: -webkit-box;
	-webkit-line-clamp: 8;
	line-clamp: 8;
	-webkit-box-orient: vertical;
	overflow: hidden;
}
.svc-quote__name { margin-top: 18px; color: var(--acc); font-family: var(--font-head); font-weight: 600; font-size: 16px; }
.svc-quote__meta { color: rgba(255,255,255,.65); font-size: 14px; margin-top: 2px; }
.svc-quote__sep { margin: 0 5px; opacity: .5; }
.svc-quote__source a { color: inherit; text-decoration: underline; text-underline-offset: 2px; text-decoration-color: rgba(255,255,255,.35); transition: color .2s ease, text-decoration-color .2s ease; }
.svc-quote__source a:hover { color: var(--acc); text-decoration-color: var(--acc); }
.svc-quotes__nav { display: flex; align-items: center; justify-content: center; gap: 20px; margin-top: 24px; }
.svc-quotes__arrow { width: 42px; height: 42px; border-radius: 50%; border: 1px solid rgba(255,255,255,.25); background: transparent; color: #fff; display: flex; align-items: center; justify-content: center; cursor: pointer; transition: background .2s ease; }
.svc-quotes__arrow:hover { background: rgba(255,255,255,.1); }
.svc-quotes__arrow--prev svg { transform: scaleX(-1); }
.svc-quotes__arrow:hover svg { color: var(--acc); }
.svc-quotes__arrow--prev:hover svg { transform: scaleX(-1) rotate(-12deg); }
.svc-quotes__arrow--next:hover svg { transform: rotate(12deg); }
.svc-quotes__arrow svg { transition: transform .2s ease, color .2s ease; }
.svc-quotes__dots { display: flex; gap: 9px; }
.svc-dot-btn { width: 9px; height: 9px; border-radius: 50%; border: none; cursor: pointer; padding: 0; background: rgba(255,255,255,.3); transition: background .2s ease; }
.svc-dot-btn.is-active { background: var(--acc); }

/* ==========================================================================
   News & community
   ========================================================================== */
.svc-news__grid { display: grid; grid-template-columns: 1.15fr 1fr; gap: 32px; align-items: start; }
.svc-news__labelrow { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 20px; }
.svc-news__labelrow .svc-news__label { margin-bottom: 0; }
.svc-news__all { display: inline-flex; align-items: center; gap: 6px; font-family: var(--font-head); font-weight: 700; font-size: 13.5px; color: var(--accink); white-space: nowrap; }
.svc-news__all svg { transition: transform .2s ease; }
.svc-news__all:hover { color: var(--accink); }
.svc-news__all:hover svg { transform: translateX(3px); }
.svc-news__label { display: flex; align-items: center; gap: 10px; margin-bottom: 20px; }
.svc-news__label span { font-family: var(--font-head); font-weight: 700; font-size: 16px; color: var(--b); }
.svc-news__list { display: flex; flex-direction: column; gap: 16px; }
.svc-news__card { display: grid; grid-template-columns: 150px 1fr; background: var(--page); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; color: inherit; transition: box-shadow .2s ease; }
.svc-news__card:hover { box-shadow: 0 20px 40px -30px rgba(15,20,68,.42); color: inherit; }
.svc-news__thumb { min-height: 100%; background-size: cover; background-position: center; }
.svc-news__body { padding: 18px 20px; }
.svc-news__tag { font-size: 12px; color: var(--muted); font-weight: 600; }
.svc-news__title { font-weight: 600; font-size: 16px; color: var(--b); margin: 6px 0 0; }
.svc-news__desc { font-size: 13.5px; line-height: 1.5; color: var(--body); margin: 6px 0 0; }
.svc-news__note { margin-top: 18px; font-size: 13.5px; color: var(--muted); font-style: italic; }

/* Facebook panel */
.svc-fb { background: #fff; border: 1px solid #e3e6ef; border-radius: var(--radius); overflow: hidden; box-shadow: 0 18px 44px -34px rgba(15,20,68,.4); }
.svc-fb__head { padding: 18px 20px; display: flex; align-items: center; gap: 12px; border-bottom: 1px solid #eef0f5; }
.svc-fb__avatar { width: 44px; height: 44px; border-radius: 50%; background: #1877f2; display: flex; align-items: center; justify-content: center; color: #fff; flex-shrink: 0; }
.svc-fb__id { flex: 1; min-width: 0; }
.svc-fb__name { font-family: var(--font-head); font-weight: 700; font-size: 15px; color: #1b1c28; }
.svc-fb__meta { font-size: 12.5px; color: #8a8b98; }
.svc-fb__follow { background: #1877f2; color: #fff; font-weight: 600; font-size: 13px; padding: 8px 15px; border-radius: var(--radius); }
.svc-fb__follow:hover { background: #1466d6; color: #fff; }
.svc-fb__feed { max-height: 520px; overflow-y: auto; }
.svc-fb__feed--empty { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 16px; padding: 44px 28px; }
.svc-fb__emptyicon { width: 56px; height: 56px; border-radius: 50%; background: #1877f2; color: #fff; display: flex; align-items: center; justify-content: center; }
.svc-fb__emptyicon svg { width: 28px; height: 28px; }
.svc-fb__emptytext { font-size: 15px; line-height: 1.55; color: var(--body); margin: 0; max-width: 300px; }
.svc-fb__feed--empty .svc-btn { width: auto; }
.svc-fb__post { padding: 16px 20px; border-bottom: 1px solid #f1f2f6; }
.svc-fb__posthead { display: flex; align-items: center; gap: 10px; }
.svc-fb__postavatar { width: 34px; height: 34px; border-radius: 50%; background: #1877f2; display: flex; align-items: center; justify-content: center; color: #fff; flex-shrink: 0; }
.svc-fb__postname { font-weight: 700; font-size: 13.5px; color: #1b1c28; }
.svc-fb__time { font-size: 11.5px; color: #8a8b98; }
.svc-fb__text { font-size: 14px; line-height: 1.5; color: #33344a; margin: 12px 0 0; }
.svc-fb__img { margin-top: 12px; aspect-ratio: 16 / 9; border-radius: var(--radius); }
.svc-fb__actions { display: flex; align-items: center; gap: 18px; margin-top: 12px; color: #8a8b98; font-size: 13px; }
.svc-fb__actions span { display: inline-flex; align-items: center; gap: 6px; }

/* ==========================================================================
   Contact
   ========================================================================== */
.svc-contact { display: grid; grid-template-columns: 1fr 1fr; background: var(--b); border-radius: var(--radius); overflow: hidden; box-shadow: 0 30px 60px -40px rgba(15,20,68,.4); }
.svc-contact__panel { padding: clamp(36px, 5vw, 60px) clamp(28px, 4vw, 52px); }
.svc-contact__title { font-weight: 700; font-size: clamp(26px, 4vw, 34px); line-height: 1.15; color: #fff; margin: 0; letter-spacing: -.5px; }
.svc-contact__lead { font-size: 17px; line-height: 1.6; color: rgba(255,255,255,.8); margin: 16px 0 0; max-width: 420px; }
.svc-contact__actions { display: flex; flex-direction: column; gap: 14px; margin-top: 30px; max-width: 340px; }
.svc-contact__actions .svc-btn { width: 100%; }
.svc-contact__facts { display: flex; gap: 32px; margin-top: 34px; color: rgba(255,255,255,.85); font-size: 14.5px; }
.svc-contact__factlabel { font-weight: 700; color: #fff; margin-bottom: 4px; }
/* Map sizing lives with the .svc-map rules further down. */

/* ==========================================================================
   Footer
   ========================================================================== */
.svc-footer { background: var(--b); color: rgba(255,255,255,.8); }
.svc-footer__grid { max-width: var(--container); margin: 0 auto; padding: 64px var(--pad) 0; display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; }
.svc-brand--footer .svc-brand__name { color: #fff; font-size: 17px; }
.svc-brand--footer .svc-brand__sub { color: var(--acc); font-size: 8.5px; letter-spacing: 3.5px; }
.svc-footer__blurb { font-size: 14.5px; line-height: 1.6; margin: 18px 0 0; max-width: 280px; }
.svc-socials { display: flex; gap: 10px; margin-top: 22px; }
.svc-social { width: 40px; height: 40px; border-radius: var(--radius); background: rgba(255,255,255,.1); display: flex; align-items: center; justify-content: center; color: #fff; transition: background .2s ease, color .2s ease; }
.svc-social:hover { background: var(--acc); color: var(--accText); }
.svc-footer__heading { font-family: var(--font-head); font-weight: 600; font-size: 14px; color: #fff; letter-spacing: .5px; margin: 0; display: flex; align-items: center; gap: 8px; }
.svc-footer__heading svg { color: var(--acc); flex-shrink: 0; }
.svc-footer__links { list-style: none; margin: 16px 0 0; padding: 0; display: flex; flex-direction: column; gap: 10px; font-size: 14.5px; }
.svc-footer__links a { color: rgba(255,255,255,.8); }
.svc-footer__links a:hover { color: var(--acc); }
.svc-footer__lines { display: flex; flex-direction: column; gap: 11px; margin-top: 16px; font-size: 14.5px; line-height: 1.5; }
.svc-footer__lines a { color: rgba(255,255,255,.8); }
.svc-footer__lines a:hover { color: var(--acc); }
.svc-footer__line { display: flex; align-items: flex-start; gap: 10px; }
.svc-footer__line svg { color: var(--acc); flex-shrink: 0; margin-top: 2px; }
.svc-footer__phone { color: rgba(255,255,255,.8); }
.svc-footer__lines .is-today { color: #fff; font-weight: 700; }
.svc-footer__sister { display: inline-flex; align-items: center; gap: 6px; color: rgba(255,255,255,.8); margin-top: 14px; font-size: 14.5px; font-weight: 600; }
.svc-footer__sister:hover { color: var(--acc); }
.svc-footer__sister svg { flex-shrink: 0; }
.svc-footer__bar { max-width: var(--container); margin: 48px auto 0; padding: 22px var(--pad); border-top: 1px solid rgba(255,255,255,.12); display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; font-size: 13.5px; color: rgba(255,255,255,.55); }

/* ==========================================================================
   Modals (hours + service overlay)
   ========================================================================== */
.svc-modal { position: fixed; inset: 0; z-index: 100; display: flex; align-items: center; justify-content: center; padding: 24px; }
.svc-modal[hidden] { display: none; }
.svc-modal__backdrop { position: absolute; inset: 0; background: rgba(9,12,30,.6); backdrop-filter: blur(4px); animation: svc-ovIn .2s ease; }
.svc-modal__card { position: relative; background: #fff; border-radius: var(--radius); width: 100%; overflow: hidden; box-shadow: 0 50px 100px -30px rgba(0,0,0,.6); animation: svc-cardIn .28s cubic-bezier(.2,.7,.2,1); }
.svc-modal__close { background: rgba(255,255,255,.12); border: none; color: #fff; width: 38px; height: 38px; border-radius: var(--radius); cursor: pointer; display: flex; align-items: center; justify-content: center; transition: background .2s ease; }
.svc-modal__close:hover { background: rgba(255,255,255,.22); }

/* Hours modal */
.svc-hours-modal__card { max-width: 430px; }
.svc-hours-modal__head { background: var(--b); padding: 22px 28px; display: flex; align-items: center; justify-content: space-between; }
.svc-hours-modal__title { display: flex; align-items: center; gap: 12px; color: #fff; font-family: var(--font-head); font-weight: 700; font-size: 19px; }
.svc-hours-modal__body { padding: 8px 28px 24px; }
.svc-hours-row { display: flex; justify-content: space-between; padding: 13px 0; border-bottom: 1px solid var(--line); font-size: 15px; color: var(--body); font-weight: 500; }
.svc-hours-row.is-today { color: var(--b); font-weight: 700; }
.svc-hours-modal__note { margin-top: 16px; font-size: 13.5px; line-height: 1.5; color: var(--body); display: flex; gap: 10px; align-items: flex-start; }

/* Service overlay */
.svc-service-modal__card { max-width: 820px; max-height: 88vh; display: flex; flex-direction: column; background: var(--page); }
.svc-service-modal__head { background: var(--b); padding: 34px 40px; position: relative; }
.svc-service-modal__head .svc-modal__close { position: absolute; top: 20px; right: 20px; }
.svc-service-modal__heading { display: flex; align-items: center; gap: 18px; }
.svc-service-modal__icon { width: 64px; height: 64px; border-radius: var(--radius); background: var(--acc); display: flex; align-items: center; justify-content: center; color: var(--accText); flex-shrink: 0; }
.svc-service-modal__tag { font-size: 11.5px; font-weight: 700; letter-spacing: 1px; color: var(--acc); text-transform: uppercase; }
.svc-service-modal__title { font-weight: 700; font-size: clamp(22px, 4vw, 30px); line-height: 1.12; color: #fff; margin: 4px 0 0; letter-spacing: -.4px; }
.svc-service-modal__body { padding: 34px 40px; overflow-y: auto; }
.svc-service-modal__cols { display: grid; grid-template-columns: 1.4fr 1fr; gap: 36px; }
.svc-service-modal__text { font-size: 16.5px; line-height: 1.65; color: var(--strong); margin: 0; text-wrap: pretty; white-space: pre-line; }
.svc-service-modal__subhead { font-family: var(--font-head); font-weight: 700; font-size: 14px; letter-spacing: 1px; color: var(--accink); text-transform: uppercase; margin: 26px 0 0; }
.svc-checklist { display: flex; flex-direction: column; gap: 12px; margin-top: 16px; }
.svc-checklist__item { display: flex; gap: 12px; align-items: flex-start; }
.svc-checklist__item span { font-size: 15.5px; line-height: 1.5; color: var(--strong); }
.svc-service-modal__photo { aspect-ratio: 4 / 3; border-radius: var(--radius); background-size: cover; background-position: center; }
.svc-book { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 20px; margin-top: 16px; }
.svc-book__head { display: flex; align-items: baseline; justify-content: space-between; gap: 10px; }
.svc-book__label { font-family: var(--font-head); font-weight: 600; font-size: 15px; color: var(--b); }
.svc-book__price { font-family: var(--font-head); font-weight: 800; font-size: 20px; color: var(--accink); }
.svc-book__note { font-size: 13.5px; line-height: 1.5; color: var(--body); margin: 6px 0 0; }
.svc-book__cta { margin-top: 14px; width: 100%; font-size: 14.5px; padding: 13px 18px; }
.svc-service-modal__nav { display: flex; align-items: center; justify-content: space-between; margin-top: 32px; padding-top: 22px; border-top: 1px solid #e7e0d1; }
.svc-service-modal__counter { font-size: 13.5px; color: var(--muted); font-weight: 600; }

/* ==========================================================================
   Page hero (inside pages) + breadcrumb
   ========================================================================== */
.svc-pagehero { background: var(--b); position: relative; overflow: hidden; }
.svc-pagehero .svc-container { position: relative; padding-top: 64px; padding-bottom: 72px; }
.svc-pagehero__glow { position: absolute; right: -90px; top: -90px; width: 420px; height: 420px; border-radius: 50%; background: radial-gradient(circle, color-mix(in srgb, var(--acc), transparent 72%), transparent 70%); }
.svc-pagehero--media { background-size: cover; background-position: center; }
.svc-pagehero--media::before { content: ''; position: absolute; inset: 0; background: linear-gradient(120deg, var(--heroA), var(--heroB)); }
.svc-breadcrumb { display: flex; align-items: center; gap: 9px; font-size: 13.5px; color: rgba(255,255,255,.6); font-weight: 600; }
.svc-breadcrumb a { color: rgba(255,255,255,.6); }
.svc-breadcrumb a:hover { color: var(--acc); }
.svc-breadcrumb .is-current { color: var(--acc); }
.svc-pagehero__tag { display: inline-block; margin-top: 16px; font-size: 11.5px; font-weight: 700; letter-spacing: 1px; color: var(--acc); text-transform: uppercase; }
.svc-pagehero__title { font-weight: 800; font-size: clamp(29px, 5vw, 52px); line-height: 1.05; letter-spacing: -1px; color: #fff; margin: 18px 0 0; max-width: 720px; text-wrap: balance; }
.svc-pagehero__intro { font-size: clamp(15px, 2.4vw, 19px); line-height: 1.55; color: rgba(255,255,255,.82); margin: 18px 0 0; max-width: 560px; }

/* Team member profile — photo beside the name, no date/author byline. */
.svc-profile-hero__inner { display: grid; grid-template-columns: 200px 1fr; gap: 36px; align-items: center; }
.svc-profile-hero__photo {
	aspect-ratio: 1;
	width: 200px;
	border-radius: var(--radius);
	background-size: cover;
	background-position: center;
	box-shadow: 0 26px 50px -28px rgba(0,0,0,.75);
}
.svc-profile-hero__photo--fallback {
	background-size: 58%;
	background-repeat: no-repeat;
	background-color: color-mix(in srgb, var(--acc) 12%, #fff);
}
.svc-profile-hero__name { margin: 0; max-width: none; }
.svc-profile-hero__role { font-size: clamp(15px, 2.2vw, 18px); font-weight: 600; color: var(--acc); margin: 12px 0 0; }
.svc-profile-bio__back { margin-top: 40px; padding-top: 28px; border-top: 1px solid var(--line); }
@media (max-width: 700px) {
	.svc-profile-hero__inner { grid-template-columns: 1fr; gap: 22px; justify-items: center; text-align: center; }
	.svc-profile-hero__photo { width: 150px; }
}

/* ==========================================================================
   Service feature cards (archive)
   ========================================================================== */
.svc-feature { display: flex; flex-direction: column; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 30px 28px; color: inherit; transition: transform .16s ease, box-shadow .16s ease, border-color .16s ease; }
.svc-feature:hover { transform: translateY(-4px); box-shadow: 0 22px 44px -28px rgba(15,20,68,.42); border-color: var(--acc); color: inherit; }
.svc-feature__top { display: flex; align-items: center; justify-content: space-between; }
.svc-chip { font-size: 11px; font-weight: 700; letter-spacing: 1px; color: var(--accink); text-transform: uppercase; background: var(--secSoft); padding: 5px 9px; border-radius: var(--radius); }
.svc-feature__title { font-weight: 600; font-size: 20px; color: var(--b); margin: 20px 0 0; }
.svc-feature__summary { font-size: 15px; line-height: 1.55; color: var(--body); margin: 10px 0 0; flex: 1; }
.svc-feature__foot { display: flex; align-items: center; justify-content: space-between; margin-top: 18px; }
.svc-feature__price { font-family: var(--font-head); font-weight: 700; font-size: 16px; color: var(--b); }
.svc-feature__more { display: inline-flex; align-items: center; gap: 7px; font-weight: 700; font-size: 14px; color: var(--accink); }

/* Single service */
.svc-single-service { display: grid; grid-template-columns: 1.4fr 1fr; gap: 40px; align-items: start; }
.svc-single-service__content { font-size: 16.5px; line-height: 1.7; color: var(--strong); }
.svc-single-service__content p { margin: 0 0 1em; }

/* ==========================================================================
   Prose / posts / misc
   ========================================================================== */
.svc-prose { max-width: 760px; font-size: 17px; line-height: 1.7; color: var(--strong); }
.svc-prose h2 { font-size: 28px; color: var(--b); margin: 1.4em 0 .4em; }
.svc-prose h3 { font-size: 21px; color: var(--b); margin: 1.2em 0 .4em; }
.svc-prose a { color: var(--accink); text-decoration: underline; }
.svc-prose img { border-radius: var(--radius); }
.svc-prose blockquote { border-left: 4px solid var(--acc); margin: 1.2em 0; padding: .2em 0 .2em 20px; color: var(--body); }

.svc-postgrid { align-items: stretch; }
.svc-postcard { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; transition: transform .18s ease, box-shadow .18s ease; }
.svc-postcard:hover { transform: translateY(-4px); box-shadow: 0 22px 44px -28px rgba(15,20,68,.42); }
.svc-postcard__link { display: flex; flex-direction: column; height: 100%; color: inherit; }
.svc-postcard__link:hover { color: inherit; }
.svc-postcard__thumb { aspect-ratio: 16 / 10; background-size: cover; background-position: center; }
.svc-postcard__body { padding: 22px 24px; display: flex; flex-direction: column; flex: 1; }
.svc-postcard__tag { font-size: 12px; color: var(--muted); font-weight: 600; }
.svc-postcard__title { font-weight: 600; font-size: 19px; color: var(--b); margin: 8px 0 0; }
.svc-postcard__excerpt { font-size: 14.5px; line-height: 1.55; color: var(--body); margin: 10px 0 0; flex: 1; }
.svc-postcard__more { display: inline-flex; align-items: center; gap: 7px; font-weight: 700; font-size: 14px; color: var(--accink); margin-top: 16px; }

.svc-pagination { margin-top: 48px; text-align: center; }
.svc-pagination .page-numbers { display: inline-flex; align-items: center; justify-content: center; min-width: 40px; height: 40px; padding: 0 12px; margin: 0 3px; border-radius: var(--radius); border: 1px solid var(--line); color: var(--b); font-weight: 600; }
.svc-pagination .page-numbers.current { background: var(--b); color: #fff; border-color: var(--b); }
.svc-pagination a.page-numbers:hover { border-color: var(--acc); }

.svc-post-nav { display: flex; justify-content: space-between; gap: 20px; margin-top: 40px; padding-top: 22px; border-top: 1px solid var(--line); font-weight: 600; }
.svc-empty { text-align: center; color: var(--body); font-size: 17px; padding: 40px 0; }
.svc-404 { display: flex; flex-direction: column; align-items: center; gap: 24px; text-align: center; }

/* "Coming soon" placeholder — shown until the blog has its first post. */
.svc-soon {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	gap: 14px;
	padding: clamp(40px, 7vw, 72px) 28px;
	border: 1px dashed var(--line);
	border-radius: var(--radius);
	background: color-mix(in srgb, var(--acc) 5%, #fff);
}
.svc-soon__icon { width: 62px; height: 62px; border-radius: 50%; display: flex; align-items: center; justify-content: center; background: color-mix(in srgb, var(--acc) 16%, #fff); color: var(--b); }
.svc-soon__title { font-family: var(--font-head); font-weight: 600; font-size: clamp(20px, 3vw, 26px); color: var(--b); margin: 0; }
.svc-soon__text { color: var(--body); font-size: 16px; max-width: 52ch; margin: 0; text-wrap: pretty; }
.svc-soon__actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; margin-top: 8px; }
.svc-soon--inline { padding: 28px 24px; gap: 10px; }
.svc-soon--inline .svc-soon__title { font-size: 17px; }

/* Search form */
.svc-search { display: flex; gap: 8px; max-width: 420px; width: 100%; }
.svc-search__input { flex: 1; border: 1px solid var(--line); border-radius: var(--radius); padding: 12px 16px; font-family: inherit; font-size: 15px; background: #fff; }
.svc-search__input:focus { outline: 2px solid var(--acc); outline-offset: 1px; }
.svc-search__btn { background: var(--b); color: #fff; border: none; border-radius: var(--radius); padding: 0 16px; cursor: pointer; display: flex; align-items: center; }

/* ==========================================================================
   Comments — white card, separated from the post
   ========================================================================== */
.svc-comments {
	max-width: 760px;
	margin: 56px 0 0;
	background: var(--surface);
	border: 1px solid var(--line);
	border-radius: var(--radius);
	padding: clamp(24px, 4vw, 40px);
	box-shadow: 0 22px 50px -38px rgba(15,20,68,.4);
}
.svc-comments__title { font-family: var(--font-head); font-size: 22px; color: var(--b); margin: 0 0 24px; }

.svc-comments__list { list-style: none; padding: 0; margin: 0; }
.svc-comments__list ol.children { list-style: none; margin: 0; padding: 0 0 0 clamp(16px, 4vw, 44px); }
.svc-comments__list li.comment { margin-top: 20px; }
.svc-comments .comment-body { position: relative; padding: 20px 22px; background: var(--page); border: 1px solid var(--line); border-radius: var(--radius); }
.svc-comments .comment-author { display: flex; align-items: center; gap: 12px; }
.svc-comments .comment-author .avatar { border-radius: 50%; width: 44px; height: 44px; }
.svc-comments .comment-author .fn { font-family: var(--font-head); font-weight: 600; font-style: normal; color: var(--b); font-size: 15.5px; }
.svc-comments .comment-author .says { display: none; }
.svc-comments .comment-meta { margin: 2px 0 0; font-size: 12.5px; }
.svc-comments .comment-meta a { color: var(--muted); }
.svc-comments .comment-metadata,
.svc-comments .comment-awaiting-moderation { font-size: 12.5px; color: var(--muted); }
.svc-comments .comment-content { margin-top: 12px; font-size: 15px; line-height: 1.65; color: var(--strong); }
.svc-comments .comment-content p { margin: 0 0 .8em; }
.svc-comments .reply { margin-top: 10px; }
.svc-comments .comment-reply-link,
.svc-comments .comment-edit-link {
	display: inline-flex; align-items: center; font-weight: 700; font-size: 13px;
	color: var(--accink); background: var(--secSoft); padding: 6px 12px; border-radius: var(--radius);
}
.svc-comments .comment-reply-link:hover { background: var(--acc); color: var(--accText); }
.svc-comments .bypostauthor > .comment-body { border-color: color-mix(in srgb, var(--acc) 45%, var(--line)); }

/* Comment form */
.svc-comments .comment-respond { margin-top: 32px; padding-top: 28px; border-top: 1px solid var(--line); }
.svc-comments .comment-reply-title { font-family: var(--font-head); font-size: 20px; color: var(--b); margin: 0 0 8px; }
.svc-comments .comment-notes,
.svc-comments .logged-in-as { font-size: 13.5px; color: var(--body); margin: 0 0 16px; }
.svc-comments .comment-form { display: flex; flex-direction: column; gap: 16px; }
.svc-comments .comment-form-author,
.svc-comments .comment-form-email,
.svc-comments .comment-form-url,
.svc-comments .comment-form-comment { margin: 0; }
.svc-comments .comment-form label { display: block; font-family: var(--font-head); font-weight: 600; font-size: 13.5px; color: var(--b); margin-bottom: 6px; }
.svc-comments input[type="text"],
.svc-comments input[type="email"],
.svc-comments input[type="url"],
.svc-comments textarea {
	width: 100%; border: 1px solid var(--line); border-radius: var(--radius);
	padding: 13px 15px; font-family: inherit; font-size: 15px; background: #fff; color: var(--strong);
	transition: border-color .2s ease, box-shadow .2s ease;
}
.svc-comments input[type="text"]:focus,
.svc-comments input[type="email"]:focus,
.svc-comments input[type="url"]:focus,
.svc-comments textarea:focus { outline: none; border-color: var(--acc); box-shadow: 0 0 0 3px color-mix(in srgb, var(--acc) 22%, transparent); }
.svc-comments textarea { resize: vertical; min-height: 130px; }
.svc-comments .comment-form-cookies-consent { flex-direction: row; align-items: center; gap: 10px; font-size: 13.5px; color: var(--body); }
.svc-comments .comment-form-cookies-consent input { width: auto; }
.svc-comments .form-submit { margin: 0; }
.svc-comments .comment-navigation { margin-top: 20px; display: flex; gap: 12px; justify-content: space-between; font-weight: 600; }

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 1024px) {
	.svc-grid--4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 960px) {
	.svc-nav { display: none; }
	.svc-menu-toggle { display: flex; }
	.svc-about { grid-template-columns: 1fr; gap: 40px; }
	.svc-about__badge { right: 16px; bottom: -18px; }
	.svc-news__grid { grid-template-columns: 1fr; }
	.svc-contact { grid-template-columns: 1fr; }
	.svc-contact__map { min-height: 260px; }
	.svc-single-service { grid-template-columns: 1fr; }
	.svc-service-modal__cols { grid-template-columns: 1fr; gap: 24px; }
	/* Hide the phone / message button on mobile + tablet — the menu covers it. */
	.svc-header__actions .svc-btn--phone { display: none; }
	/* Once the hamburger shows, keep the logo small so the header height stays
	   at --header-h and the dropdown opens flush beneath it. */
	.svc-brand__logo,
	.svc-header.is-solid .svc-brand__logo,
	.svc-header:not(.svc-header--overlay) .svc-brand__logo { height: 42px; max-width: 190px; }
}
@media (max-width: 820px) {
	.svc-grid--3 { grid-template-columns: repeat(2, 1fr); }
	/* Info strip stays 3-across on tablet, just tighter. */
	.svc-infostrip__cell { padding: 18px 22px; gap: 11px; flex-wrap: wrap; }
	.svc-infostrip__btn { flex-basis: 100%; text-align: center; }
	.svc-footer__grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 640px) {
	:root { --pad: 18px; }
	.svc-grid--3 { grid-template-columns: 1fr; }
	.svc-grid--4 { grid-template-columns: 1fr 1fr; }
	.svc-postgrid { grid-template-columns: 1fr; }
	.svc-footer__grid { grid-template-columns: 1fr; }
	.svc-news__card { grid-template-columns: 110px 1fr; }
	.svc-contact__facts { flex-direction: column; gap: 18px; }
	/* Info strip stacks on phones. */
	.svc-infostrip__grid { grid-template-columns: 1fr; }
	.svc-infostrip__cell { border-right: none; border-bottom: 1px solid rgba(0,0,0,.12); flex-wrap: nowrap; }
	.svc-infostrip__cell:last-child { border-bottom: none; }
	.svc-infostrip__btn { flex-basis: auto; }
	.svc-hero { min-height: 520px; }
	.svc-modal { padding: 0; align-items: stretch; }
	.svc-modal__card { max-height: 100vh; border-radius: 0; }
	.svc-service-modal__card { max-height: 100vh; }
	.svc-post-nav { flex-direction: column; gap: 10px; }
}
@media (max-width: 480px) {
	.svc-grid--4 { grid-template-columns: 1fr; }
	/* Team stays 2×2 on phones — portrait cards read fine at half width. */
	.svc-team__row.svc-grid--4 { grid-template-columns: 1fr 1fr; gap: 16px; }
	.svc-team__row .svc-team__name { font-size: 15px; margin-top: 11px; }
	.svc-team__row .svc-team__role { font-size: 12.5px; }
}

/* ==========================================================================
   Team cards → clickable, with hover affordance + bio modal
   ========================================================================== */
.svc-team__card {
	position: relative;
	width: 100%;
	border: none;
	background: transparent;
	font: inherit;
	color: inherit;
	cursor: pointer;
	padding: 0;
	display: block;
}
.svc-team__photo { position: relative; overflow: hidden; transition: transform .25s ease, box-shadow .25s ease; }
.svc-team__cta {
	position: absolute; left: 0; right: 0; bottom: 0;
	padding: 30px 8px 13px;
	text-align: center;
	font-family: var(--font-head); font-weight: 700; font-size: 13px; letter-spacing: .3px;
	color: #fff;
	background: linear-gradient(to top, color-mix(in srgb, var(--primary) 84%, transparent), transparent);
	opacity: 0; transform: translateY(10px);
	transition: opacity .28s ease, transform .28s ease;
	pointer-events: none;
}
.svc-team__card:hover .svc-team__photo,
.svc-team__card:focus-visible .svc-team__photo { transform: translateY(-4px); box-shadow: 0 24px 44px -26px rgba(15,20,68,.5); }
.svc-team__card:hover .svc-team__cta,
.svc-team__card:focus-visible .svc-team__cta { opacity: 1; transform: none; }
.svc-team__card:hover .svc-team__name,
.svc-team__card:focus-visible .svc-team__name { color: var(--accink); }
.svc-team__card:focus-visible { outline: none; }
.svc-team__card:focus-visible .svc-team__photo { box-shadow: 0 0 0 3px var(--acc), 0 24px 44px -26px rgba(15,20,68,.5); }

/* Team bio modal */
.svc-team-modal__card { max-width: 640px; max-height: 88vh; display: flex; flex-direction: column; background: var(--page); }
.svc-team-modal__head { position: relative; display: grid; grid-template-columns: 120px 1fr; gap: 22px; align-items: center; background: var(--b); padding: 30px 34px; }
.svc-team-modal__head .svc-modal__close { position: absolute; top: 16px; right: 16px; }
.svc-team-modal__photo { aspect-ratio: 1; width: 120px; border-radius: var(--radius); background-size: cover; background-position: center; }
.svc-team-modal__name { font-family: var(--font-head); font-weight: 700; font-size: clamp(21px, 4vw, 27px); line-height: 1.12; color: #fff; margin: 0; letter-spacing: -.4px; padding-right: 40px; }
.svc-team-modal__role { font-weight: 600; font-size: 14.5px; color: var(--acc); margin-top: 7px; }
.svc-team-modal__body { padding: 28px 34px; overflow-y: auto; }
.svc-team-modal__bio { font-size: 16px; line-height: 1.7; color: var(--strong); margin: 0; white-space: pre-line; text-wrap: pretty; }
.svc-team-modal__more { margin-top: 22px; }
.svc-team-modal__more[hidden] { display: none; }
@media (max-width: 520px) {
	.svc-team-modal__head { grid-template-columns: 84px 1fr; gap: 16px; padding: 24px; }
	.svc-team-modal__photo { width: 84px; }
	.svc-team-modal__body { padding: 22px 24px; }
}

/* "From our social media" heading icon colour */
.svc-news__label--social svg { color: var(--b); flex-shrink: 0; }

/* ==========================================================================
   Footer credit (right of the bottom bar)
   ========================================================================== */
.svc-credit { display: inline-flex; align-items: center; gap: 10px; color: rgba(255,255,255,.72); }
.svc-credit__mark {
	width: 30px; height: 30px; border-radius: var(--radius);
	border: 1px solid rgba(255,255,255,.28);
	display: flex; align-items: center; justify-content: center;
	font-family: var(--font-head); font-weight: 800; font-size: 12px; letter-spacing: .5px; color: #fff;
	transition: border-color .2s ease, color .2s ease;
}
.svc-credit__text { display: flex; flex-direction: column; line-height: 1.15; }
.svc-credit__by { font-size: 10px; letter-spacing: 1px; text-transform: uppercase; color: rgba(255,255,255,.45); }
.svc-credit__name { font-family: var(--font-head); font-weight: 700; font-size: 13px; color: #fff; transition: color .2s ease; }
a.svc-credit:hover .svc-credit__mark { border-color: var(--acc); color: var(--acc); }
a.svc-credit:hover .svc-credit__name { color: var(--acc); }
.svc-credit__logo { display: block; height: 24px; width: auto; max-width: 220px; object-fit: contain; opacity: .9; transition: opacity .2s ease; }
a.svc-credit--img:hover .svc-credit__logo { opacity: 1; }

/* Centre the footer bar (copyright + credit) on tablet & mobile */
@media (max-width: 768px) {
	.svc-footer__bar { flex-direction: column; text-align: center; justify-content: center; gap: 16px; }
}

/* ==========================================================================
   Admin bar — keep the fixed header clear of the WP toolbar for editors
   ========================================================================== */
.admin-bar .svc-header { top: 32px; }
.admin-bar .svc-mobile-nav { top: calc(var(--header-h) + 32px); }
@media (max-width: 782px) {
	.admin-bar .svc-header { top: 46px; }
	.admin-bar .svc-mobile-nav { top: calc(var(--header-h) + 46px); }
}

/* ==========================================================================
   Mobile menu — primary background, animated links with a paw
   ========================================================================== */
.svc-mobile-nav { background: var(--b); border-bottom: 1px solid color-mix(in srgb, var(--primary) 78%, black); }
.svc-mobile-nav__list a {
	display: flex; align-items: center; gap: 10px;
	color: rgba(255,255,255,.92);
	border-bottom: 1px solid rgba(255,255,255,.12);
	transition: color .2s ease, padding-left .2s ease;
}
.svc-mobile-nav__list a::before {
	--paw: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cellipse cx='5.5' cy='11.5' rx='1.9' ry='2.5'/%3E%3Cellipse cx='9.7' cy='7.7' rx='1.9' ry='2.6'/%3E%3Cellipse cx='14.3' cy='7.7' rx='1.9' ry='2.6'/%3E%3Cellipse cx='18.5' cy='11.5' rx='1.9' ry='2.5'/%3E%3Cpath d='M12 12.2c-3 0-5.2 2.1-5.2 4.4 0 1.7 1.4 2.5 3 2.5 1.1 0 1.6-.5 2.2-.5s1.1.5 2.2.5c1.6 0 3-.8 3-2.5 0-2.3-2.2-4.4-5.2-4.4z'/%3E%3C/svg%3E");
	content: ''; width: 18px; height: 18px; flex-shrink: 0;
	background-color: var(--acc);
	-webkit-mask: var(--paw) center / contain no-repeat;
	mask: var(--paw) center / contain no-repeat;
	opacity: 0; transform: translateX(-8px);
	transition: opacity .2s ease, transform .2s ease;
}
.svc-mobile-nav__list a:hover,
.svc-mobile-nav__list a:focus-visible { color: var(--acc); padding-left: 6px; }
.svc-mobile-nav__list a:hover::before,
.svc-mobile-nav__list a:focus-visible::before { opacity: 1; transform: none; }

/* ==========================================================================
   Contact page template
   ========================================================================== */
.svc-contactpage { display: grid; grid-template-columns: 1.35fr 1fr; gap: 40px; align-items: start; }
.svc-contactpage__lead { font-size: 16px; line-height: 1.6; color: var(--body); margin: 12px 0 26px; }
.svc-contactpage__form .svc-h2 { text-align: left; }

/* Form */
.svc-form { display: flex; flex-direction: column; gap: 18px; }
.svc-form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.svc-field { display: flex; flex-direction: column; gap: 7px; }
.svc-field__label { font-family: var(--font-head); font-weight: 600; font-size: 13.5px; color: var(--b); }
.svc-field__input {
	border: 1px solid var(--line); border-radius: var(--radius);
	padding: 13px 15px; font-family: inherit; font-size: 15px; background: #fff; color: var(--strong);
	transition: border-color .2s ease, box-shadow .2s ease;
	width: 100%;
}
.svc-field__input:focus { outline: none; border-color: var(--acc); box-shadow: 0 0 0 3px color-mix(in srgb, var(--acc) 22%, transparent); }
textarea.svc-field__input { resize: vertical; min-height: 130px; }
.svc-form .svc-btn { align-self: flex-start; }
.svc-hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

/* Notices */
.svc-notice { display: flex; gap: 11px; align-items: flex-start; padding: 15px 18px; border-radius: var(--radius); font-size: 15px; line-height: 1.5; margin-bottom: 22px; }
.svc-notice--ok { background: color-mix(in srgb, #22c55e 14%, white); color: #166534; border: 1px solid color-mix(in srgb, #22c55e 40%, white); }
.svc-notice--err { background: color-mix(in srgb, #e0564d 12%, white); color: #9b2c22; border: 1px solid color-mix(in srgb, #e0564d 38%, white); }

/* Info card + map */
.svc-infocard { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 26px; display: flex; flex-direction: column; gap: 22px; }
.svc-infocard__row { display: flex; gap: 14px; align-items: flex-start; }
.svc-infocard__label { font-family: var(--font-head); font-weight: 600; font-size: 13px; letter-spacing: .5px; color: var(--accink); text-transform: uppercase; }
.svc-infocard__value { font-size: 15.5px; line-height: 1.55; color: var(--strong); margin-top: 3px; }
.svc-infocard__hours { display: flex; flex-direction: column; gap: 5px; margin-top: 5px; font-size: 14.5px; color: var(--body); }
.svc-infocard__hours span { display: flex; justify-content: space-between; gap: 14px; }
.svc-infocard__hours em { font-style: normal; color: var(--strong); }
.svc-infocard__hours .is-today { color: var(--b); font-weight: 700; }
.svc-infocard__hours .is-today em { color: var(--b); }
/* The contact page map now lives in its own "Find us" section below. */
.svc-contactpage__prose { margin: 44px auto 0; }

@media (max-width: 900px) {
	.svc-contactpage { grid-template-columns: 1fr; gap: 32px; }
}
@media (max-width: 560px) {
	.svc-form__row { grid-template-columns: 1fr; }
}

/* ==========================================================================
   Editor blocks (Team / Services / Contact) — page-insertable
   ========================================================================== */
.svc-block { margin: clamp(28px, 5vw, 48px) 0; }
.svc-block__heading { text-align: center; margin: 0 0 clamp(24px, 4vw, 40px); }
a.svc-card { color: inherit; display: block; }
a.svc-card:hover { color: inherit; }
.svc-card__more { display: inline-flex; align-items: center; gap: 7px; font-weight: 700; font-size: 14px; color: var(--accink); margin-top: 16px; }
a.svc-card--service:hover { transform: translateY(-4px); box-shadow: 0 22px 44px -28px rgba(15,20,68,.42); }

/* Live map — homepage, Contact page and the Contact block all share .svc-map */
.svc-map { position: relative; min-height: 340px; overflow: hidden; border-radius: var(--radius); }
.svc-map iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
/* Doubled class so these beat the shared .svc-map height. */
.svc-map.svc-contact__map { min-height: 420px; }
.svc-map.svc-findus__map { min-height: 440px; }
.svc-findus__actions { display: flex; justify-content: center; margin-top: 26px; }
.svc-block--contact { margin: clamp(28px, 5vw, 48px) 0; }
@media (max-width: 640px) { .svc-map, .svc-map.svc-contact__map { min-height: 260px; } }
