/* =========================================================================
   Premier Dog Walkers — main stylesheet (refactored)
   Mobile-first · consolidated · premium · accessible

   1. Tokens  2. Reset/base  3. Layout  4. Header/nav  5. Buttons & shared
   6. Cards  7. Hero & home sections  8. Content/entry/reviews  9. Footer
   10. Page modules (nd-/v0-/v-)  11. Utilities & motion  12. Responsive
   ========================================================================= */

/* 1. DESIGN TOKENS ------------------------------------------------------- */
:root {
	--bg: #f7fafb;
	--bg-elev: #ffffff;
	--fg: #2b2620;
	--card: #ffffff;
	--primary: #1a82ac;
	--primary-dark: #136684;
	--primary-fg: #ffffff;
	--accent: #67a02b;
	--accent-dark: #557f22;
	--muted: #e7eff3;
	--muted-fg: #5e6a70;
	--secondary: #eaf3f7;
	--border: #d7e3e9;
	--border-soft: #e4edf2;
	--ring: #1a82ac;

	--brand-blue: #4fb6e0;
	--brand-green: #8cc63f;
	--brand-brown: #6e4b2a;
	--w-premier: #5f9220;
	--w-dog: #1f88b8;
	--w-walkers: #6e4b2a;

	--grad-primary: linear-gradient(135deg, #1a82ac 0%, #136684 100%);
	--grad-soft: linear-gradient(180deg, var(--secondary) 0%, var(--bg) 100%);

	--font-sans: 'Inter', system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
	--font-serif: 'Lora', Georgia, "Times New Roman", serif;

	--radius-sm: 8px;
	--radius: 12px;
	--radius-lg: 18px;
	--radius-xl: 24px;
	--radius-pill: 999px;

	--shadow-xs: 0 1px 2px rgba(20, 40, 55, .06);
	--shadow-sm: 0 2px 8px rgba(20, 40, 55, .07);
	--shadow: 0 10px 30px -8px rgba(20, 40, 55, .14);
	--shadow-lg: 0 24px 56px -16px rgba(20, 40, 55, .22);
	--shadow-primary: 0 12px 28px -10px rgba(26, 130, 172, .45);

	--container: 1200px;
	--container-narrow: 760px;
	--space: clamp(3rem, 7vw, 6rem);
	--gutter: clamp(1rem, 4vw, 2rem);
	--header-h: 68px;
	--header-h-scrolled: 58px;
	--ease: cubic-bezier(.4, 0, .2, 1);
}

/* 2. RESET & BASE -------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html {
	-webkit-text-size-adjust: 100%;
	scroll-behavior: smooth;
	scroll-padding-top: calc(var(--header-h) + 1rem);
}
html, body { max-width: 100%; overflow-x: clip; }
body {
	margin: 0;
	font-family: var(--font-sans);
	font-size: 1rem;
	line-height: 1.65;
	color: var(--fg);
	background: var(--bg);
	-webkit-font-smoothing: antialiased;
	text-rendering: optimizeLegibility;
}
h1, h2, h3, h4 {
	font-family: var(--font-serif);
	font-weight: 600;
	line-height: 1.15;
	color: var(--fg);
	margin: 0 0 .5em;
	text-wrap: balance;
}
h1 { font-size: clamp(2.1rem, 5vw, 3.4rem); letter-spacing: -.01em; }
h2 { font-size: clamp(1.65rem, 3.5vw, 2.4rem); letter-spacing: -.01em; }
h3 { font-size: clamp(1.2rem, 2.2vw, 1.5rem); }
p  { margin: 0 0 1rem; text-wrap: pretty; }
a { color: var(--primary); text-decoration: none; transition: color .15s var(--ease); }
a:hover { color: var(--primary-dark); }
img, svg, video { max-width: 100%; height: auto; display: block; }
ul, ol { margin: 0; padding: 0; }
li { list-style: none; }
:focus-visible { outline: 3px solid var(--ring); outline-offset: 2px; border-radius: 4px; }
::selection { background: color-mix(in srgb, var(--primary) 22%, white); color: var(--fg); }

/* 3. LAYOUT PRIMITIVES --------------------------------------------------- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: var(--gutter); }
.container--narrow { max-width: var(--container-narrow); }
.page-shell { padding-block: clamp(2rem, 5vw, 3.5rem); }
.section { padding-block: var(--space); }
.section--services,
.section--testimonials { background: var(--secondary); }
.section--about { background: var(--bg); color: var(--fg); }
.section--about h2 { color: var(--fg); }
.grid { display: grid; gap: clamp(1rem, 2.5vw, 1.75rem); }
.grid--cards { grid-template-columns: 1fr; gap: clamp(1.25rem, 3vw, 2rem); align-items: stretch; }
.grid--locations, .grid--three, .grid--three-cols { grid-template-columns: 1fr; }
.layout-with-sidebar { display: grid; grid-template-columns: 1fr; gap: clamp(1.5rem, 4vw, 3rem); }

/* 4. HEADER & NAVIGATION ------------------------------------------------- */
.site-header {
	position: sticky; top: 0; z-index: 100;
	background: rgba(247, 250, 251, .82);
	backdrop-filter: saturate(160%) blur(12px);
	-webkit-backdrop-filter: saturate(160%) blur(12px);
	border-bottom: 1px solid transparent;
	transition: border-color .25s var(--ease), box-shadow .25s var(--ease), background .25s var(--ease);
}
.site-header.is-scrolled { background: rgba(255,255,255,.92); border-bottom-color: var(--border); box-shadow: var(--shadow-sm); }
.site-header__inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; min-height: var(--header-h); transition: min-height .25s var(--ease); }
.site-header.is-scrolled .site-header__inner { min-height: var(--header-h-scrolled); }

.brand { display: flex; align-items: center; flex-shrink: 0; gap: 10px; }
.brand:hover { text-decoration: none; }
.brand img { display: block; height: clamp(46px, 7vw, 64px); width: auto; max-width: none; object-fit: contain; transition: height .25s var(--ease); }
.site-header.is-scrolled .brand img { height: clamp(42px, 6vw, 52px); }
.brand__mark { width: 40px; height: 40px; display: flex; align-items: center; justify-content: center; flex: none; }
.brand__mark svg { width: 40px; height: 40px; object-fit: contain; display: block; }
.brand__text { display: flex; flex-direction: column; line-height: 1.05; }
.brand__name { font-family: var(--font-serif); font-size: 1rem; font-weight: 600; }
.brand__name .w-premier { color: var(--w-premier); }
.brand__name .w-dog { color: var(--w-dog); }
.brand__name .w-walkers { color: var(--w-walkers); }
.brand__tagline { font-size: .72rem; letter-spacing: .04em; color: var(--muted-fg); }

.primary-nav { display: none; }
.primary-nav__list { display: flex; align-items: center; gap: .35rem; }
.primary-nav__item { position: relative; display: flex; align-items: center; gap: 2px; }
.primary-nav__link { font-size: .92rem; font-weight: 500; color: var(--muted-fg); padding: .5rem .7rem; border-radius: var(--radius-sm); position: relative; transition: color .15s var(--ease), background .15s var(--ease); }
.primary-nav__link::after { content: ""; position: absolute; left: .7rem; right: .7rem; bottom: .28rem; height: 2px; border-radius: 2px; background: var(--primary); transform: scaleX(0); transform-origin: left; transition: transform .2s var(--ease); }
.primary-nav__link:hover { color: var(--fg); text-decoration: none; }
.primary-nav__link:hover::after,
.current-menu-item > .primary-nav__link::after,
.current_page_item > .primary-nav__link::after { transform: scaleX(1); }
.current-menu-item > .primary-nav__link,
.current_page_item > .primary-nav__link { color: var(--primary); }

.dropdown-toggle { display: inline-grid; place-items: center; background: none; border: 0; padding: 4px; color: var(--muted-fg); cursor: pointer; border-radius: 50%; }
.dropdown-toggle svg { width: 16px; height: 16px; transition: transform .2s var(--ease); }
.has-dropdown.is-open .dropdown-toggle svg { transform: rotate(180deg); }
.has-dropdown.is-open .primary-nav__link { color: var(--primary); }
.dropdown { position: absolute; top: 100%; left: 50%; transform: translateX(-50%) translateY(6px); min-width: 260px; background: var(--card); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: .5rem; box-shadow: var(--shadow-lg); opacity: 0; visibility: hidden; pointer-events: none; transition: opacity .18s var(--ease), transform .18s var(--ease); z-index: 50; }
.has-dropdown.is-open .dropdown { opacity: 1; visibility: visible; pointer-events: auto; transform: translateX(-50%) translateY(12px); }
#menu-locations.dropdown { min-width: 380px; }
#menu-locations .dropdown__list { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; }
.dropdown__link { display: flex; flex-direction: column; gap: 1px; padding: .6rem .75rem; border-radius: var(--radius); transition: background .15s var(--ease); }
.dropdown__link:hover { background: var(--muted); text-decoration: none; }
.dropdown__title { font-size: .9rem; font-weight: 600; color: var(--fg); }
.dropdown__desc { font-size: .76rem; color: var(--muted-fg); }

.site-header__actions { display: flex; align-items: center; gap: .75rem; }
.header-phone { display: none; align-items: center; gap: .4rem; font-size: .9rem; font-weight: 600; color: var(--fg); }
.header-phone svg { width: 16px; height: 16px; color: var(--primary); }
.header-cta { display: none; }

.nav-toggle, .nav-close { display: inline-grid; place-items: center; width: 48px; height: 48px; background: none; border: 1px solid transparent; border-radius: var(--radius); color: var(--fg); cursor: pointer; transition: background .15s var(--ease); }
.nav-toggle:hover, .nav-close:hover { background: var(--muted); }
.nav-toggle svg, .nav-close svg { width: 26px; height: 26px; }
.nav-toggle__box { width: 24px; height: 18px; position: relative; display: block; }
.nav-toggle__box span { position: absolute; left: 0; height: 2px; width: 100%; background: currentColor; border-radius: 2px; transition: transform .25s var(--ease), opacity .2s var(--ease), top .25s var(--ease); }
.nav-toggle__box span:nth-child(1) { top: 0; }
.nav-toggle__box span:nth-child(2) { top: 8px; }
.nav-toggle__box span:nth-child(3) { top: 16px; }
.nav-toggle[aria-expanded="true"] .nav-toggle__box span:nth-child(1) { top: 8px; transform: rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle__box span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] .nav-toggle__box span:nth-child(3) { top: 8px; transform: rotate(-45deg); }

.mobile-drawer { position: fixed; inset: 0; z-index: 200; }
.mobile-drawer[hidden] { display: none; }
.mobile-drawer__overlay { position: absolute; inset: 0; background: rgba(20, 25, 30, .5); opacity: 0; transition: opacity .25s var(--ease); }
.mobile-drawer.is-open .mobile-drawer__overlay { opacity: 1; }
.mobile-drawer__panel { position: absolute; top: 0; right: 0; height: 100%; width: min(90vw, 380px); background: var(--bg); box-shadow: var(--shadow-lg); padding: 1.25rem; display: flex; flex-direction: column; gap: 1rem; overflow-y: auto; overscroll-behavior: contain; transform: translateX(100%); transition: transform .28s var(--ease); }
.mobile-drawer.is-open .mobile-drawer__panel { transform: translateX(0); }
.mobile-drawer__head { display: flex; justify-content: flex-end; }
.mobile-nav { display: flex; flex-direction: column; gap: .15rem; }
.mobile-nav__link { display: block; padding: .7rem .25rem; font-size: 1.1rem; font-weight: 600; color: var(--fg); border-radius: var(--radius-sm); min-height: 44px; }
.mobile-nav__link:hover { color: var(--primary); }
.mobile-nav__row { display: flex; align-items: center; justify-content: space-between; }
.mobile-subtoggle { background: none; border: 0; padding: .6rem; color: var(--muted-fg); cursor: pointer; min-width: 44px; min-height: 44px; display: grid; place-items: center; }
.mobile-subtoggle svg { width: 20px; height: 20px; transition: transform .2s var(--ease); }
.mobile-subtoggle.is-open svg { transform: rotate(180deg); }
.mobile-nav__sub { display: flex; flex-direction: column; gap: .1rem; margin: .1rem 0 .5rem; padding-left: 1rem; border-left: 2px solid var(--border); }
.mobile-nav__sub[hidden] { display: none; }
.mobile-nav__sub a { display: block; padding: .55rem 0; color: var(--muted-fg); font-size: 1rem; min-height: 44px; }
.mobile-nav__sub a:hover { color: var(--primary); }
.mobile-drawer__foot { margin-top: auto; display: flex; flex-direction: column; gap: .75rem; border-top: 1px solid var(--border); padding-top: 1.25rem; }
.mobile-drawer__foot .header-phone { display: flex; font-size: 1rem; }
.mobile-drawer__foot .btn { width: 100%; }

/* 5. BUTTONS & SHARED COMPONENTS ---------------------------------------- */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: .5rem; font: inherit; font-weight: 600; font-size: .95rem; line-height: 2; cursor: pointer; padding: .8rem 1.3rem; min-height: 46px; border-radius: var(--radius); border: 1px solid transparent; transition: transform .12s var(--ease), box-shadow .18s var(--ease), background .18s var(--ease), color .18s var(--ease), border-color .18s var(--ease); text-decoration: none; white-space: nowrap; }
.btn:hover { text-decoration: none; }
.btn:active { transform: translateY(1px); }
.btn--lg { padding: .95rem 1.7rem; min-height: 52px; font-size: 1rem; }
.btn--primary { background: var(--grad-primary); color: var(--primary-fg); box-shadow: var(--shadow-primary); }
.btn--primary:hover { color: var(--primary-fg); transform: translateY(-2px); box-shadow: 0 16px 32px -10px rgba(26,130,172,.55); }
.btn--accent { background: var(--accent); color: #fff; box-shadow: 0 12px 28px -10px rgba(103,160,43,.45); }
.btn--accent:hover { background: var(--accent-dark); transform: translateY(-2px); }
.btn--outline { background: var(--bg-elev); color: var(--fg); border-color: var(--border); }
.btn--outline:hover { background: var(--muted); border-color: var(--primary); color: var(--primary-dark); }

.eyebrow { display: inline-block; font-size: .8rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--accent); margin: 0 0 .6rem; }
.section--about .eyebrow { color: var(--accent); }
.section__head { max-width: 640px; margin: 0 auto clamp(2rem, 4vw, 3rem); text-align: center; }
.section__title { margin-bottom: .5rem; }
.section__text { color: var(--muted-fg); font-size: 1rem; margin: 0; }
.section__more { text-align: center; margin-top: 2rem; }

/* 6. CARDS --------------------------------------------------------------- */
.card { background: var(--card); border: 1px solid var(--border-soft); border-radius: var(--radius-xl); overflow: hidden; box-shadow: var(--shadow-sm); transition: box-shadow .22s var(--ease), transform .22s var(--ease), border-color .22s var(--ease); display: flex; flex-direction: column; }
.card:hover { box-shadow: var(--shadow); transform: translateY(-5px); border-color: var(--border); }
.card__media { display: block; aspect-ratio: 3 / 2; overflow: hidden; background: var(--muted); }
.card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s var(--ease); }
.card:hover .card__media img { transform: scale(1.05); }
.card__body { padding: 1.5rem; display: flex; flex-direction: column; gap: .7rem; flex: 1; }
.card__icon { display: inline-grid; place-items: center; width: 46px; height: 46px; border-radius: var(--radius); background: color-mix(in srgb, var(--primary) 12%, white); color: var(--primary); }
.card__icon svg { width: 22px; height: 22px; }
.card__title { margin: 0; font-size: 1.3rem; }
.card__title a { color: var(--fg); }
.card__title a:hover { color: var(--primary); text-decoration: none; }
.card__text { color: var(--muted-fg); margin: 0; font-size: .95rem; line-height: 1.6; }
.card__features { display: flex; flex-direction: column; gap: .45rem; margin: .25rem 0; padding: 0; }
.card__features li { display: flex; align-items: flex-start; gap: .55rem; font-size: .9rem; color: var(--fg); }
.card__tick { flex-shrink: 0; width: 18px; height: 18px; display: inline-grid; place-items: center; border-radius: 50%; background: color-mix(in srgb, var(--accent) 16%, white); color: var(--accent-dark); margin-top: 2px; }
.card__tick svg { width: 12px; height: 12px; }
.card__foot { margin-top: auto; padding-top: .85rem; display: flex; align-items: center; justify-content: space-between; gap: 1rem; flex-wrap: wrap; }
.card__price { font-weight: 700; color: var(--primary); }
.card__cta { display: inline-flex; align-items: center; gap: .35rem; font-weight: 600; font-size: .9rem; }
.card__cta svg { width: 16px; height: 16px; transition: transform .15s var(--ease); }
.card__cta:hover { text-decoration: none; }
.card__cta:hover svg { transform: translateX(3px); }
.card--service { position: relative; }
.card--service.is-featured { border: 2px solid var(--primary); box-shadow: var(--shadow); }
.card__badge { position: absolute; top: 1rem; right: 1rem; z-index: 2; background: var(--grad-primary); color: #fff; font-size: .7rem; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; padding: .3rem .65rem; border-radius: var(--radius-pill); box-shadow: var(--shadow-sm); }
.card--location { position: relative; padding: 1.4rem; gap: .5rem; border-radius: var(--radius-lg); overflow: visible; }
/*.card--location.is-featured { border-color: var(--primary); border-width: 2px; }*/
.card__icon-wrapper { position: absolute; top: 1.3rem; right: 1.3rem; }
.location-pin-icon { width: 20px; height: 20px; display: block; stroke: var(--primary); }
.card__location-link { display: flex; align-items: flex-start; gap: .85rem; width: 100%; color: inherit; text-decoration: none; }
.card__location-link:hover { text-decoration: none; color: inherit; }
.card__location-link:hover .card__title { color: var(--primary); }
.card__icon--pin { flex-shrink: 0; }
.card__location-body { display: flex; flex-direction: column; gap: .4rem; min-width: 0; flex: 1; }
.card__title-row { display: flex; align-items: flex-start; justify-content: space-between; gap: .5rem; }
.card__location-body .card__title { font-size: 1.15rem; margin: 0; line-height: 1.25; transition: color .15s var(--ease); }
.card__postcode { flex-shrink: 0; font-size: .72rem; display: inline-block; padding: .2rem .6rem; background: color-mix(in srgb, var(--primary) 8%, white); color: var(--primary-dark); border-radius: var(--radius-sm); width: fit-content; font-weight: 600; }
.card__view-link, .view-area-link { font-size: .85rem; color: var(--primary); font-weight: 600; margin-top: .25rem; display: inline-block; }
.card__view-link:hover, .view-area-link:hover { text-decoration: none; color: var(--primary-dark); }
.card--post .card__meta { display: flex; gap: .75rem; font-size: .8rem; color: var(--muted-fg); }
.card--post .card__meta a { color: var(--muted-fg); }

/* 7. HERO & HOMEPAGE SECTIONS ------------------------------------------- */
.hero { position: relative; overflow: hidden; padding-block: clamp(2.5rem, 6vw, 4.5rem) clamp(3rem, 7vw, 5rem); background: var(--grad-soft); }
.hero::before { content: ""; position: absolute; inset: 0; z-index: 0; background-image: radial-gradient(var(--border) 1.3px, transparent 1.3px); background-size: 22px 22px; opacity: .5; -webkit-mask-image: linear-gradient(180deg, #000 50%, transparent); mask-image: linear-gradient(180deg, #000 50%, transparent); }
.hero__inner { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr; gap: clamp(2rem, 5vw, 3.5rem); align-items: center; }
.hero__content { min-width: 0; }
.hero__pill { display: inline-flex; align-items: center; gap: .45rem; background: var(--card); border: 1px solid var(--border); border-radius: var(--radius-pill); padding: .4rem .85rem; font-size: .82rem; font-weight: 500; color: var(--fg); box-shadow: var(--shadow-sm); margin-bottom: 1.25rem; }
.hero__pill .stars { color: var(--accent); display: inline-flex; }
.hero__pill .stars svg { width: 15px; height: 15px; }
.hero__title { margin: .25rem 0 1rem; }
.hero__title .accent { color: var(--primary); }
.hero__since { color: var(--muted-fg); font-size: clamp(1rem, 2.4vw, 1rem); max-width: 46ch; }
.hero__text { font-size: 1.15rem; color: var(--muted-fg); max-width: 40ch; }
.hero__actions { display: flex; flex-wrap: wrap; gap: .85rem; margin-top: 1.5rem; }
.hero__actions .btn { flex: 1 1 auto; min-width: 0; }
.hero__trust { display: flex; flex-wrap: wrap; gap: 1.25rem; margin-top: 2rem; }
.hero__trust li { display: flex; align-items: center; gap: .45rem; font-size: .9rem; font-weight: 500; color: var(--fg); }
.hero__trust svg { width: 18px; height: 18px; color: var(--primary); }
.hero__stats { display: flex; flex-wrap: wrap; gap: clamp(1.25rem, 5vw, 2.5rem); margin-top: 2rem; }
.hero-stat { display: flex; flex-direction: column; }
.hero-stat__num { font-family: var(--font-serif); font-size: clamp(1.6rem, 5vw, 2rem); font-weight: 700; color: var(--primary); line-height: 1; }
.hero-stat__label { font-size: .82rem; color: var(--muted-fg); margin-top: .25rem; }
.hero__media { position: relative; }
.hero__media img { width: 100%; max-width: 100%; height: auto; aspect-ratio: 5 / 4; object-fit: cover; border-radius: var(--radius-xl); box-shadow: var(--shadow-lg); display: block; }
.hero__badge { position: absolute; display: flex; align-items: center; gap: .6rem; background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); padding: .6rem .8rem; box-shadow: var(--shadow); max-width: min(220px, 60%); }
.hero__badge--top { top: 1rem; right: 1rem; left: auto; bottom: auto; }
.hero__badge--bottom { bottom: 1rem; left: 1rem; right: auto; top: auto; }
.hero__badge-icon { display: inline-grid; place-items: center; width: 34px; height: 34px; border-radius: 50%; background: color-mix(in srgb, var(--primary) 12%, white); color: var(--primary); flex: none; }
.hero__badge-icon svg { width: 18px; height: 18px; }
.hero__badge strong { display: block; font-size: .85rem; }
.hero__badge > span:last-child span { display: block; font-size: .72rem; color: var(--muted-fg); }

/* Trust bar */
.trust-bar { margin-top: clamp(-2.5rem, -4vw, -1.5rem); position: relative; z-index: 5; }
.trust-bar__inner { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius-lg); box-shadow: var(--shadow); display: grid; grid-template-columns: 1fr; gap: 1px; overflow: hidden; }
.trust-item { display: flex; align-items: center; gap: .8rem; padding: 1.25rem 1.4rem; background: var(--card); }
.trust-item__icon { display: grid; place-items: center; width: 52px; height: 52px; min-width: 52px; border-radius: 50%; background: color-mix(in srgb, var(--primary) 12%, white); color: var(--primary); flex: none; }
.trust-item__icon svg { width: 24px; height: 24px; }
.trust-item strong { display: block; font-size: .95rem; }
.trust-item span {  font-size: .8rem; color: var(--muted-fg); margin-top: 2px; }

/* About section */
.about__inner { display: grid; grid-template-columns: 1fr; gap: clamp(2rem, 5vw, 3.5rem); align-items: start; }
.about__content { min-width: 0; }
.about__points { display: flex; flex-direction: column; gap: .6rem; margin: 1.25rem 0 1.75rem; font-size: 1rem; }
.about__points li { display: flex; align-items: flex-start; gap: .6rem; }
.about__points li > span:first-child { display: inline-grid; place-items: center; width: 22px; height: 22px; border-radius: 50%; background: color-mix(in srgb, var(--accent) 16%, white); color: var(--accent-dark); flex: none; margin-top: 2px; }
.about__points svg { width: 14px; height: 14px; }
.about__media { position: relative; display: grid; grid-template-columns: 1fr 1fr; grid-template-rows: auto auto; gap: 1rem; }
.about__media img { width: 100%; height: 100%; object-fit: cover; border-radius: var(--radius-lg); box-shadow: var(--shadow-sm); }
.about__media .about__img--tall { grid-row: span 2; aspect-ratio: 3 / 4; }
.about__media .about__img--wide { aspect-ratio: 4 / 3; }
.about__exp-badge { position: absolute; right: -.5rem; bottom: -.5rem; background: var(--accent); color: #fff; border-radius: var(--radius-lg); padding: 1rem 1.25rem; box-shadow: var(--shadow); text-align: center; }
.about__exp-badge strong { display: block; font-family: var(--font-serif); font-size: 1.8rem; line-height: 1; }
.about__exp-badge span { display: block; font-size: .72rem; margin-top: .25rem; }
.about__stats { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: rgba(255,255,255,.18); border-radius: var(--radius-lg); overflow: hidden; }
.stat { background: var(--primary); padding: 1.5rem; text-align: center; color: #fff; }
.stat__num { display: block; font-family: var(--font-serif); font-size: 2.4rem; font-weight: 700; line-height: 1; }
.stat__label { display: block; margin-top: .35rem; font-size: .85rem; color: rgba(255,255,255,.82); }

/* Service-areas grid */
.section--areas { background: #fff; }
.areas-grid { display: grid; grid-template-columns: 1fr; gap: clamp(1rem, 2.5vw, 1.25rem); width: 100%; }

/* Testimonials / quotes */
.quote { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 1.6rem; box-shadow: var(--shadow-sm); transition: box-shadow .2s var(--ease), transform .2s var(--ease); }
.quote:hover { box-shadow: var(--shadow); transform: translateY(-4px); }
.quote__stars { display: flex; gap: 2px; color: var(--accent); margin-bottom: .85rem; }
.quote__stars svg { width: 18px; height: 18px; }
.quote__text { margin: 0 0 1rem; font-size: 1.02rem; }
.quote__text p { margin: 0; }
.quote__author { font-weight: 600; color: var(--primary); }
.reviews-summary { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: .6rem; margin-top: 2rem; font-size: .95rem; color: var(--muted-fg); }
.reviews-summary .stars { color: var(--accent); display: inline-flex; }
.reviews-summary strong { color: var(--fg); }
.reviews-summary .dot { color: var(--border); }

/* FAQ accordion */
.faq { display: flex; flex-direction: column; gap: .75rem; }
.faq__item { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; transition: border-color .2s var(--ease), box-shadow .2s var(--ease); }
.faq__item[open] { border-color: var(--primary); box-shadow: var(--shadow-sm); }
.faq__q { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: 1.1rem 1.3rem; font-family: var(--font-serif); font-size: clamp(1rem, 2.4vw, 1.1rem); font-weight: 600; cursor: pointer; list-style: none; min-height: 44px; }
.faq__q::-webkit-details-marker { display: none; }
.faq__icon svg { width: 20px; height: 20px; transition: transform .2s var(--ease); color: var(--primary); }
.faq__item[open] .faq__icon svg { transform: rotate(180deg); }
.faq__a { padding: 0 1.3rem 1.2rem; color: var(--muted-fg); }
.faq__a p { margin: 0; }

/* CTA banner (single source of truth) */
.section--cta { background: var(--grad-primary); color: var(--primary-fg); padding-block: var(--space); text-align: center; }
.cta { text-align: center; max-width: 720px; margin-inline: auto; }
.cta__title { color: var(--primary-fg); font-size: clamp(1.8rem, 4vw, 2.6rem); margin-bottom: 1rem; }
.cta__text { color: rgba(255,255,255,.88); font-size: clamp(1rem, 2.4vw, 1.1rem); margin-bottom: 2rem; }
.cta__actions { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; margin-top: 1.5rem; }
.cta__phone { display: inline-flex; align-items: center; gap: .5rem; color: #fff; font-weight: 600; }
.cta__phone svg { width: 18px; height: 18px; }
.cta__phone:hover { color: rgba(255,255,255,.85); text-decoration: none; }

/* 8. CONTENT / ENTRY / BREADCRUMB / REVIEWS ----------------------------- */
.breadcrumbs ol, .breadcrumb { display: flex; flex-wrap: wrap; gap: .35rem; font-size: .85rem; color: var(--muted-fg); margin-bottom: 1.5rem; }
.breadcrumbs li:not(:last-child)::after, .breadcrumb__sep { content: "/"; margin-left: .35rem; color: var(--border); }
.breadcrumb__sep { margin-right: .35rem; }
.breadcrumbs a, .breadcrumb a { color: var(--muted-fg); }
.breadcrumb__current { color: var(--fg); }
.page-head { margin-bottom: clamp(1.5rem, 4vw, 2.5rem); }
.page-head--center { text-align: center; max-width: 680px; margin-inline: auto; }
.page-head__title { margin: 0 0 .5rem; }
.page-head__desc { color: var(--muted-fg); font-size: 1.05rem; }
.entry { max-width: var(--container-narrow); margin-inline: auto; }
.entry__header { margin-bottom: 1.5rem; }
.entry__title { margin-bottom: .5rem; }
.entry__meta { display: flex; flex-wrap: wrap; gap: 1rem; color: var(--muted-fg); font-size: .9rem; margin-bottom: 1.25rem; }
.entry__media { margin: 0 0 1.5rem; border-radius: var(--radius-lg); overflow: hidden; }
.entry__media img { width: 100%; }
.entry__content { font-size: 1.05rem; }
.entry__content :is(h2, h3) { margin-top: 1.8em; }
.entry__content img { border-radius: var(--radius); margin-block: 1.5rem; }
.entry__content blockquote { border-left: 4px solid var(--primary); padding-left: 1.25rem; margin-inline: 0; font-family: var(--font-serif); font-size: 1.2rem; color: var(--fg); }
.entry__content ul { list-style: disc; padding-left: 1.3rem; margin: 0 0 1.25rem; }
.entry__content ol { list-style: decimal; padding-left: 1.3rem; margin: 0 0 1.25rem; }
.entry__content li { list-style: inherit; margin-bottom: .4rem; }
.entry__footer { margin-top: 1.5rem; }

/* Blog detail (single post) polish */
.entry--post { max-width: 760px; }
.entry--post .entry__title { font-size: clamp(1.9rem, 4.5vw, 2.6rem); line-height: 1.15; letter-spacing: -.01em; margin-bottom: .75rem; }
.entry--post .entry__meta { align-items: center; gap: .5rem .85rem; font-size: .92rem; }
.entry--post .entry__meta span + span::before { content: "\2022"; margin-right: .85rem; color: var(--border); }
.entry--post .entry__media { box-shadow: var(--shadow); }
.entry--post .entry__content { line-height: 1.78; color: var(--fg); }
.entry--post .entry__content p { margin: 0 0 1.3rem; }
.entry--post .entry__content > p:first-of-type { font-size: 1.15rem; line-height: 1.7; color: var(--fg); }
.entry--post .entry__content a:not(.btn) { color: var(--primary); text-decoration: underline; text-underline-offset: 2px; text-decoration-thickness: 1px; }
.entry--post .entry__content a:not(.btn):hover { color: var(--primary-dark); }
.entry--post .entry__content :is(h2, h3) { line-height: 1.25; }
.entry--service__grid { display: grid; grid-template-columns: 1fr; gap: clamp(1.5rem, 4vw, 3rem); align-items: start; }
.entry__price { color: var(--primary); font-weight: 700; font-size: 1.15rem; }
.entry__actions { margin-top: 2rem; }
.entry--service__media img, .entry--location .entry__media img { border-radius: var(--radius-lg); }
.feature-list { display: grid; gap: .6rem; margin: 1rem 0 2rem; }
.feature-list li { display: flex; align-items: flex-start; gap: .6rem; }
.feature-list svg { width: 18px; height: 18px; color: var(--primary); flex: none; margin-top: 3px; }
.h-sub { font-size: 1.35rem; }
.related { margin-top: clamp(2.5rem, 6vw, 4rem); }
.related .section__title { text-align: center; margin-bottom: 2rem; }
.post-nav { display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap; margin-top: 2.5rem; padding-top: 1.5rem; border-top: 1px solid var(--border); }
.post-nav a { font-weight: 500; }

.pagination { display: flex; justify-content: center; margin-top: 2.5rem; }
.pagination .nav-links { display: flex; gap: .4rem; flex-wrap: wrap; }
.pagination .page-numbers { display: inline-grid; place-items: center; min-width: 44px; height: 44px; padding: 0 .6rem; border: 1px solid var(--border); border-radius: var(--radius); color: var(--fg); }
.pagination .page-numbers.current { background: var(--primary); color: var(--primary-fg); border-color: var(--primary); }
.search-form { display: flex; gap: .5rem; max-width: 460px; }
.search-field { flex: 1; padding: .7rem .9rem; border: 1px solid var(--border); border-radius: var(--radius); font: inherit; background: var(--card); }
.comments-area { max-width: var(--container-narrow); margin: 3rem auto 0; }
.comment-list { display: flex; flex-direction: column; gap: 1.25rem; margin-bottom: 2rem; }

/* Reviews page */
.stars { display: inline-flex; gap: 2px; color: var(--border); }
.stars .star.is-on { color: var(--accent); }
.stars svg { width: 18px; height: 18px; }
.reviews-rating { display: inline-flex; align-items: center; gap: .5rem; margin-top: 1rem; font-size: 1rem; }
.reviews-rating strong { font-size: 1.15rem; color: var(--fg); }
.reviews-rating span { color: var(--muted-fg); }
.reviews-section { margin-top: clamp(2.5rem, 5vw, 3.5rem); }
.reviews-section__head { display: flex; justify-content: center; margin-bottom: 1.75rem; }
.reviews-section .section__title { display: inline-flex; align-items: center; gap: .6rem; margin: 0; }
.reviews-badge { display: inline-grid; place-items: center; width: 34px; height: 34px; border-radius: 50%; font-weight: 700; font-size: 1rem; color: #fff; font-family: var(--font-sans); }
.reviews-badge--google { background: #4285f4; }
.reviews-badge--rco { background: var(--accent); }
.reviews-grid { align-items: stretch; }
.review-card { display: flex; flex-direction: column; gap: .85rem; background: var(--card); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 1.5rem; margin: 0; box-shadow: var(--shadow-sm); transition: box-shadow .18s var(--ease), transform .18s var(--ease); }
.review-card:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
.review-card__text { margin: 0; flex: 1; }
.review-card__text p { margin: 0; color: var(--fg); }
.review-card__author { display: flex; align-items: center; gap: .7rem; margin-top: auto; }
.review-card__avatar { display: inline-grid; place-items: center; width: 40px; height: 40px; border-radius: 50%; background: color-mix(in srgb, var(--primary) 14%, white); color: var(--primary); font-weight: 600; }
.review-card__name { display: block; font-weight: 600; color: var(--fg); }
.review-card__area { display: block; font-size: .82rem; color: var(--muted-fg); }
.reviews-cta { text-align: center; margin-top: 2rem; }

/* 9. FOOTER -------------------------------------------------------------- */
.site-footer { background: #f9fafb; color: #555; border-top: 1px solid #eaeaea; margin-top: clamp(3rem, 7vw, 5rem); padding-block: clamp(2.5rem, 6vw, 4rem); }
.site-footer a { color: #555; }
.site-footer a:hover { color: var(--primary); }
.site-footer__inner { display: grid; grid-template-columns: 1fr; gap: 2.25rem clamp(1.5rem, 4vw, 3rem); align-items: start; }
.footer-brand { max-width: 34ch; }
.footer-brand img { width: auto; height: 72px; max-width: 120px; object-fit: contain; margin-bottom: 1rem; }
.footer-brand p { line-height: 1.6; color: #777; margin: 0 0 1rem; max-width: 38ch; font-size: .9rem; }
.footer-col h3 { font-family: var(--font-serif); font-size: 1.15rem; margin: 0 0 1rem; color: #1a1a1a; }
.footer-col ul { display: flex; flex-direction: column; gap: .55rem; }
.footer-col ul li { color: #666; font-size: .9rem; }
.footer-col a { font-size: .9rem; }
.footer-contact p { margin: 0 0 .7rem; color: #666; font-size: .9rem; display: flex; align-items: center; gap: .6rem; }
.footer-contact p i, .footer-contact p .fa, .footer-contact p .footer-ico { width: 18px; text-align: center; color: var(--primary); flex: none; display: inline-grid; place-items: center; }
.footer-contact p .footer-ico svg { display: block; }
.social-links a svg { display: block; }
.social-links { display: flex; gap: .75rem; margin-top: 1rem; }
.social-links a { display: inline-grid; place-items: center; width: 38px; height: 38px; border-radius: 50%; background: #fff; border: 1px solid #eaeaea; color: #555; font-size: 1rem; transition: background .2s var(--ease), color .2s var(--ease), transform .2s var(--ease); }
.social-links a:hover { background: var(--primary); color: #fff; border-color: var(--primary); transform: translateY(-2px); }
.site-footer__bar { border-top: 1px solid rgba(0,0,0,.08); margin-top: 2rem; }
.site-footer__bar p { margin: 0; padding-block: 1.25rem; font-size: .85rem; color: #888; text-align: center; }

/* 10. PAGE MODULES (used by specific page templates) -------------------- */
/* These mirror the per-page modules; kept mobile-first with a single source. */

/* nd-* : service/landing hero, why-choose, walk types, how-it-works */
.nd-hero { padding: clamp(2.5rem, 6vw, 5rem) 0; background: var(--grad-soft); }
.nd-hero__inner { display: grid; grid-template-columns: 1fr; gap: clamp(2rem, 5vw, 3.5rem); align-items: center; }
.nd-hero__label { font-size: .78rem; font-weight: 700; letter-spacing: .12em; color: var(--primary); text-transform: uppercase; margin-bottom: 14px; }
.nd-hero__h1 { font-family: var(--font-serif); font-size: clamp(2rem, 5vw, 3rem); font-weight: 700; line-height: 1.15; color: var(--fg); margin-bottom: 1rem; }
.nd-hero__p, .nd-hero__text { font-size: 1.05rem; color: var(--muted-fg); line-height: 1.7; margin-bottom: 2rem; }
.nd-hero__actions { display: flex; align-items: center; gap: 1.25rem; flex-wrap: wrap; }
.nd-btn-blue { display: inline-flex; align-items: center; justify-content: center; min-height: 46px; background: var(--grad-primary); color: #fff; padding: .8rem 1.5rem; border-radius: var(--radius); font-size: .95rem; font-weight: 600; box-shadow: var(--shadow-primary); transition: transform .12s var(--ease), box-shadow .18s var(--ease); }
.nd-btn-blue:hover { transform: translateY(-2px); color: #fff; }
.nd-btn-ghost { font-size: .95rem; font-weight: 600; color: var(--fg); }
.nd-btn-ghost:hover { color: var(--primary); }
.nd-hero__img { width: 100%; height: auto; aspect-ratio: 4 / 3; object-fit: cover; border-radius: var(--radius-xl); box-shadow: var(--shadow-lg); }
.nd-section-h2 { font-family: var(--font-serif); font-size: clamp(1.7rem, 4vw, 2.2rem); font-weight: 700; color: var(--fg); margin-bottom: 14px; }
.nd-section-sub { font-size: 1rem; color: var(--muted-fg); line-height: 1.6; max-width: 560px; margin: 0 auto clamp(2rem, 5vw, 3.25rem); }
.nd-why { padding: clamp(2.5rem, 6vw, 5rem) 0; background: var(--secondary); }
.nd-why__inner { text-align: center; }
.nd-why__grid { display: grid; grid-template-columns: 1fr; gap: 2rem; }
.nd-why__card { text-align: center; background: var(--card); border: 1px solid var(--border-soft); border-radius: var(--radius-lg); padding: 2rem 1.5rem; box-shadow: var(--shadow-sm); transition: transform .2s var(--ease), box-shadow .2s var(--ease); }
.nd-why__card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.nd-why__icon { width: 52px; height: 52px; margin: 0 auto 16px; color: var(--primary); }
.nd-why__card h3 { font-size: 1.05rem; font-weight: 700; color: var(--fg); margin-bottom: 10px; }
.nd-why__card p { font-size: .9rem; color: var(--muted-fg); line-height: 1.65; }
.nd-walks { padding: clamp(2.5rem, 6vw, 5rem) 0; background: #fff; }
.nd-walks__inner { text-align: center; }
.nd-walks__grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; margin-top: clamp(2rem, 5vw, 3.25rem); }
.nd-walk-card { border: 1px solid var(--border-soft); border-radius: var(--radius-lg); padding: 2rem 1.75rem; text-align: left; background: var(--card); box-shadow: var(--shadow-sm); transition: transform .2s var(--ease), box-shadow .2s var(--ease); }
.nd-walk-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.nd-walk-card__time { font-size: .82rem; color: var(--muted-fg); display: flex; align-items: center; gap: 6px; margin-bottom: 12px; }
.nd-walk-card__time svg { width: 14px; height: 14px; }
.nd-walk-card h3 { font-size: 1.2rem; font-weight: 700; color: var(--fg); margin-bottom: 8px; }
.nd-walk-card__desc { font-size: .9rem; color: var(--muted-fg); line-height: 1.6; margin-bottom: 20px; }
.nd-walk-card__features { display: flex; flex-direction: column; gap: 8px; }
.nd-walk-card__features li { display: flex; align-items: flex-start; gap: 8px; font-size: .88rem; color: var(--fg); }
.nd-walk-card__features li svg { width: 16px; height: 16px; flex-shrink: 0; margin-top: 1px; color: var(--accent); }
.nd-how { padding: clamp(2.5rem, 6vw, 5rem) 0; background: var(--secondary); }
.nd-how__inner { text-align: center; }
.nd-how__steps { display: grid; grid-template-columns: 1fr; gap: 2rem; margin-top: clamp(2rem, 5vw, 3.25rem); }
.nd-step { text-align: center; }
.nd-step__num { width: 56px; height: 56px; background: var(--grad-primary); border-radius: 50%; display: grid; place-items: center; font-size: 1.1rem; font-weight: 700; color: #fff; margin: 0 auto 16px; box-shadow: var(--shadow-primary); }
.nd-step h3 { font-size: 1.05rem; font-weight: 700; color: var(--fg); margin-bottom: 8px; }
.nd-step p { font-size: .88rem; color: var(--muted-fg); line-height: 1.65; }

/* v0-* : alternative service/location layout */
.v0-section { padding-block: var(--space); }
.v0-hero-split { padding-block: clamp(3rem, 8vw, 5.5rem); background: var(--grad-soft); position: relative; }
.v0-hero-grid { display: grid; grid-template-columns: 1fr; gap: clamp(2rem, 5vw, 3.5rem); align-items: center; }
.v0-badge { display: inline-flex; align-items: center; gap: .5rem; background: var(--card); border: 1px solid var(--border); border-radius: var(--radius-pill); padding: .4rem .85rem; font-size: .82rem; font-weight: 600; color: var(--accent-dark); box-shadow: var(--shadow-sm); margin-bottom: 1.25rem; text-transform: uppercase; letter-spacing: .05em; }
.v0-badge svg { width: 14px; height: 14px; color: var(--accent); }
.v0-hero-title { font-family: var(--font-serif); font-size: clamp(1.8rem, 4vw, 2.4rem); color: var(--fg); line-height: 1.15; margin-bottom: 1rem; }
.v0-hero-lead { font-size: 1rem; color: var(--muted-fg); margin-bottom: 2rem; max-width: 46ch; }
.v0-hero-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 1.25rem; }
.v0-action-phone { display: inline-flex; align-items: center; gap: .5rem; font-weight: 600; color: var(--fg); }
.v0-action-phone svg { width: 18px; height: 18px; color: var(--primary); }
.v0-hero-media img { width: 100%; height: auto; aspect-ratio: 4 / 3; object-fit: cover; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); }
.v0-section-header { text-align: center; margin-bottom: clamp(2rem, 4vw, 3.5rem); max-width: 640px; margin-inline: auto; }
.v0-section-header h2 { margin-bottom: .5rem; }
.v0-section-header p { color: var(--muted-fg); font-size: 1.05rem; }
.v0-grid-3 { display: grid; grid-template-columns: 1fr; gap: clamp(1rem, 2.5vw, 1.75rem); }
.v0-grid-2 { display: grid; grid-template-columns: 1fr; gap: clamp(2rem, 5vw, 4rem); }
.v0-card { background: var(--card); padding: 2.25rem 1.75rem; border-radius: var(--radius-xl); border: 1px solid var(--border-soft); display: flex; flex-direction: column; box-shadow: var(--shadow-sm); transition: transform .2s var(--ease), box-shadow .2s var(--ease); }
.v0-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.v0-card-icon { width: 48px; height: 48px; border-radius: var(--radius); display: grid; place-items: center; margin-bottom: 1.5rem; }
.v0-card-icon svg { width: 24px; height: 24px; }
.v0-card-icon.c-cyan { background: color-mix(in srgb, var(--primary) 12%, white); color: var(--primary); }
.v0-card-icon.c-orange { background: color-mix(in srgb, var(--accent) 12%, white); color: var(--accent); }
.v0-card-icon.c-blue { background: color-mix(in srgb, var(--brand-brown) 12%, white); color: var(--brand-brown); }
.v0-card h3 { font-family: var(--font-serif); font-size: 1.35rem; color: var(--fg); margin-bottom: .75rem; }
.v0-card p { font-size: .95rem; color: var(--muted-fg); margin-bottom: 1.5rem; }
.v0-arrow-link { display: inline-flex; align-items: center; gap: .35rem; font-weight: 600; color: var(--primary); margin-top: auto; }
.v0-arrow-link:hover { text-decoration: none; color: var(--primary-dark); }
.v0-info-pane h2 { font-size: clamp(1.6rem, 4vw, 2rem); margin-bottom: .5rem; }
.v0-pane-sub { color: var(--muted-fg); margin-bottom: 1.5rem; }
.v0-feature-list { display: flex; flex-direction: column; gap: .75rem; }
.v0-feature-list li { display: flex; align-items: flex-start; gap: .6rem; font-weight: 500; color: var(--fg); }
.v0-feature-list li svg { width: 18px; height: 18px; color: var(--accent); flex-shrink: 0; margin-top: 4px; }
.v0-feature-list.spatial-pins li svg { color: var(--primary); }
.v0-accordion { display: flex; flex-direction: column; gap: .75rem; }
.v0-faq-card { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; }
.v0-faq-trigger { width: 100%; display: flex; justify-content: space-between; align-items: center; gap: 1rem; padding: 1.1rem 1.3rem; background: none; border: none; text-align: left; font-family: var(--font-serif); font-size: 1.1rem; font-weight: 600; color: var(--fg); cursor: pointer; min-height: 44px; }
.v0-chevron { width: 18px; height: 18px; transition: transform .2s var(--ease); color: var(--primary); flex: none; }
.v0-faq-trigger.active .v0-chevron, .v0-faq-trigger[aria-expanded="true"] .v0-chevron { transform: rotate(180deg); }
.v0-faq-content { padding: 1rem 1.3rem 1.2rem; color: var(--muted-fg); border-top: 1px solid var(--border); background: var(--bg); }
.v0-cta-banner { background: var(--grad-primary); color: var(--primary-fg); padding-block: var(--space); text-align: center; }
.v0-cta-banner h2 { color: var(--primary-fg); font-size: clamp(1.8rem, 4vw, 2.6rem); margin-bottom: 1rem; }
.v0-cta-banner p { color: rgba(255,255,255,.85); font-size: 1.1rem; max-width: 600px; margin-inline: auto; margin-bottom: 2rem; }
.v0-cta-flex { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 1.5rem; margin-bottom: 1rem; }
.v0-cta-phone { display: inline-flex; align-items: center; gap: .5rem; color: #fff; font-weight: 600; }
.v0-cta-phone svg { width: 18px; height: 18px; }
.v0-cta-note { font-size: .85rem; color: rgba(255,255,255,.7); margin: 0; }

/* v-* : blog listing */
.blog-page { padding-bottom: clamp(3rem, 7vw, 5rem); }
.v-blog-hero { padding: clamp(2.5rem, 6vw, 4rem) 0; text-align: center; }
.v-title { font-size: clamp(2rem, 5vw, 3rem); margin-bottom: 14px; line-height: 1.12; }
.v-subtitle { color: var(--muted-fg); max-width: 600px; margin: 0 auto; font-size: 1.05rem; line-height: 1.6; }

/* category pill (shared by featured + grid cards) */
.v-tag { display: inline-block; font-weight: 600; font-size: .72rem; text-transform: uppercase; letter-spacing: .05em; color: var(--primary-dark); background: color-mix(in srgb, var(--primary) 10%, white); padding: .32rem .72rem; border-radius: var(--radius-pill); }

/* featured card — full-bleed image, padded content */
.v-featured-card { display: grid; grid-template-columns: 1fr; gap: 0; align-items: stretch; background: var(--card); padding: 0; overflow: hidden; border-radius: var(--radius-xl); border: 1px solid var(--border-soft); box-shadow: var(--shadow-sm); transition: transform .25s var(--ease), box-shadow .25s var(--ease); }
.v-featured-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.v-featured-card > a:first-child { display: block; overflow: hidden; }
.v-featured-card img { width: 100%; height: 100%; min-height: 220px; aspect-ratio: 16 / 10; object-fit: cover; border-radius: 0; transition: transform .45s var(--ease); }
.v-featured-card:hover img { transform: scale(1.04); }
.v-featured-card > div { padding: clamp(1.5rem, 4vw, 2.5rem); display: flex; flex-direction: column; align-items: flex-start; gap: .25rem; }
.v-featured-card h2 { font-size: clamp(1.4rem, 3vw, 1.9rem); line-height: 1.2; }

/* post grid — full-bleed image cards */
.v-grid { display: grid; grid-template-columns: 1fr; gap: clamp(1.25rem, 3vw, 1.75rem); }
.v-card { display: block; border: 1px solid var(--border-soft); padding: 1.4rem; border-radius: var(--radius-xl); background: var(--card); box-shadow: var(--shadow-sm); overflow: hidden; transition: transform .22s var(--ease), box-shadow .22s var(--ease); }
.v-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.v-card > a:first-child { display: block; margin: -1.4rem -1.4rem 1.2rem; overflow: hidden; }
.v-card img { width: 100%; height: auto; aspect-ratio: 16 / 10; object-fit: cover; border-radius: 0; margin: 0; transition: transform .45s var(--ease); }
.v-card:hover img { transform: scale(1.05); }
.v-card h3 { font-size: 1.2rem; line-height: 1.3; }
.v-card .v-tag { margin-bottom: .35rem; }

/* read-more link with animated arrow */
.v-link { display: inline-flex; align-items: center; gap: .35rem; font-weight: 600; color: var(--primary); border-bottom: 0; }
.v-link::after { content: "\2192"; transition: transform .15s var(--ease); }
.v-link:hover { color: var(--primary-dark); text-decoration: none; }
.v-link:hover::after { transform: translateX(3px); }

/* 11. UTILITIES, ACCESSIBILITY & MOTION --------------------------------- */
.screen-reader-text { position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.skip-link { position: absolute; left: -999px; top: 0; z-index: 999; background: var(--primary); color: #fff; padding: .75rem 1.25rem; border-radius: 0 0 var(--radius) 0; }
.skip-link:focus { left: 0; }
.grey-bg { background: var(--secondary); }
.max-w-md { max-width: 640px; }

/* Scroll-reveal (progressive enhancement; JS adds .reveal--in) */
[data-reveal] { opacity: 0; transform: translateY(24px); transition: opacity .6s var(--ease), transform .6s var(--ease); will-change: opacity, transform; }
[data-reveal].reveal--in { opacity: 1; transform: none; }

/* Reduced motion: disable all transforms/animations/reveals */
@media (prefers-reduced-motion: reduce) {
	html { scroll-behavior: auto; }
	*, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; animation-iteration-count: 1 !important; scroll-behavior: auto !important; }
	[data-reveal] { opacity: 1 !important; transform: none !important; }
	.card:hover, .btn:hover, .v0-card:hover, .nd-why__card:hover, .nd-walk-card:hover, .review-card:hover, .quote:hover, .v-card:hover { transform: none !important; }
}

/* 12. RESPONSIVE ESCALATION (mobile-first) ------------------------------ */
/* ≥480px — large phones */
@media (min-width: 480px) {
	.hero__actions .btn { flex: 0 1 auto; }
}

/* ≥640px — small tablets */
@media (min-width: 640px) {
	.grid--cards { grid-template-columns: repeat(2, 1fr); }
	.grid--locations, .grid--three, .grid--three-cols { grid-template-columns: repeat(2, 1fr); }
	.areas-grid { grid-template-columns: repeat(2, 1fr); }
	.trust-bar__inner { grid-template-columns: 1fr 1fr; }
	.about__stats { grid-template-columns: 1fr 1fr; }
	.nd-why__grid, .nd-how__steps { grid-template-columns: repeat(2, 1fr); }
	.nd-walks__grid, .v0-grid-3 { grid-template-columns: repeat(2, 1fr); }
	.v-grid { grid-template-columns: repeat(2, 1fr); }
	.footer-contact p { font-size: .9rem; }
	.site-footer__inner { grid-template-columns: 1fr 1fr; }
	.footer-brand { grid-column: 1 / -1; max-width: 52ch; }
}

/* ≥768px — tablets */
@media (min-width: 768px) {
	.v-featured-card { grid-template-columns: 1fr 1fr; }
}

/* ≥992px — small laptops */
@media (min-width: 992px) {
	.grid--cards { grid-template-columns: repeat(3, 1fr); }
	.grid--three, .grid--three-cols, .grid--locations { grid-template-columns: repeat(3, 1fr); }
	.areas-grid { grid-template-columns: repeat(3, 1fr); }
	.nd-why__grid, .nd-how__steps { grid-template-columns: repeat(4, 1fr); }
	.nd-walks__grid, .v0-grid-3 { grid-template-columns: repeat(3, 1fr); }
	.v-grid { grid-template-columns: repeat(3, 1fr); }
	.site-footer__inner { grid-template-columns: 1.7fr 1fr 1fr 1.3fr; }
	.footer-brand { grid-column: auto; max-width: 34ch; }
}

/* ≥1024px — desktop: reveal full nav, two-column layouts */
@media (min-width: 1024px) {
	.primary-nav { display: block; }
	.header-phone, .header-cta { display: inline-flex; }
	.nav-toggle { display: none; }
	.hero__inner { grid-template-columns: 1.05fr .95fr; }
	.nd-hero__inner { grid-template-columns: 1.1fr .9fr; gap: 4rem; }
	.v0-hero-grid { grid-template-columns: 1.1fr .9fr; gap: 4rem; }
	.v0-grid-2 { grid-template-columns: 1fr 1fr; gap: 5rem; }
	.about__inner { grid-template-columns: 1.1fr .9fr; }
	.entry--service__grid { grid-template-columns: 1.2fr .8fr; }
	.trust-bar__inner { grid-template-columns: repeat(4, 1fr); }
	.areas-grid { grid-template-columns: repeat(4, 1fr); }
	.layout-with-sidebar.has-sidebar { grid-template-columns: minmax(0, 1fr) 300px; }
}

/* ≥1200px — wide */
@media (min-width: 1200px) {
	.areas-grid { grid-template-columns: repeat(5, 1fr); }
	.grid--locations { grid-template-columns: repeat(4, 1fr); }
}
