/*
Theme Name: Tyler's Tech Services
Theme URI: https://tylerstechservices.com
Author: Tyler Bigley
Description: Custom WordPress theme for Tyler's Tech Services.
Version: 1.0
Requires at least: 6.0
Requires PHP: 7.4
Text Domain: wp-vibecoder-starter
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
*/

:root {
	/* Brand palette: navy + orange + tech cyan. --brand-cyan (#00AEEF) is
	   the bright accent for icons, active-nav indicators, and badges.
	   --blue is a deeper shade of the same cyan hue reserved for link/
	   text-on-white contexts, where the bright accent alone fails WCAG AA
	   contrast (~2.5:1 against white). */
	--ink: #0b1220;
	--navy: #06111f;
	--brand-cyan: #00aeef;
	--blue: #0077a8;
	--blue-hover: #0092c7;
	--pale-blue: #eaf7fc;
	--bg-soft: #f4f8fb;
	--border: #d7e5ee;
	--border-strong: #c1d6e3;
	--text: #334155;
	--text-muted: #64748b;
	--coral: #f26722;
	--coral-hover: #d94e16;
	--white: #ffffff;
	--font-body: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
	--font-heading: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
	--content-width: 1180px;
	--radius-md: 12px;
	--radius-lg: 20px;
	--radius-photo: 24px;
	--shadow-card: 0 1px 2px rgba(8, 17, 31, 0.04), 0 8px 24px rgba(8, 17, 31, 0.06);
	--shadow-card-hover: 0 4px 8px rgba(8, 17, 31, 0.06), 0 16px 32px rgba(8, 17, 31, 0.1);
	--shadow-photo: 0 2px 4px rgba(8, 17, 31, 0.05), 0 20px 44px rgba(8, 17, 31, 0.12);
	--utility-bar-height: 60px;
}

/* Desktop uses the floating pill (≈54px tall + 18px bottom offset), so the
   reserved space covers the pill's full footprint. */
@media (min-width: 1000px) {
	:root {
		--utility-bar-height: 72px;
	}
}

*,
*::before,
*::after {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
	/* Keep anchor targets clear of the sticky announcement bar + header
	   above and the fixed utility bar below. */
	scroll-padding-top: 104px;
	scroll-padding-bottom: calc(var(--utility-bar-height) + 12px);
}

@media (min-width: 1000px) {
	html {
		scroll-padding-top: 132px;
	}
}

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

body {
	background: var(--white);
	color: var(--text);
	font-family: var(--font-body);
	font-size: 17px;
	line-height: 1.65;
	margin: 0;
}

@media (min-width: 640px) {
	body {
		font-size: 18px;
	}
}

h1,
h2,
h3 {
	color: var(--ink);
	font-family: var(--font-heading);
	font-weight: 700;
	letter-spacing: -0.02em;
	line-height: 1.15;
	margin: 0 0 16px;
}

h1 {
	font-size: clamp(2.2rem, 8vw, 2.75rem);
	line-height: 1.08;
}

h2 {
	font-size: clamp(1.9rem, 6.5vw, 2.5rem);
}

@media (min-width: 900px) {
	h1 {
		font-size: clamp(2.9rem, 4.2vw, 3.9rem);
		line-height: 1.06;
	}

	h2 {
		font-size: clamp(1.85rem, 2.6vw + 1rem, 2.6rem);
	}
}

h3 {
	font-size: 1.25rem;
	margin-bottom: 10px;
}

p {
	margin: 0 0 16px;
}

a {
	color: var(--blue);
}

img {
	display: block;
	height: auto;
	max-width: 100%;
}

/* Reusable placeholder standing in for photography that has not been
   uploaded to the WordPress Media Library yet. Applied to a <div> in place
   of an <img>; swap back to a real <img> once real photography is approved. */
.media-placeholder {
	align-items: center;
	background: linear-gradient(135deg, var(--pale-blue) 0%, var(--bg-soft) 100%);
	border: 1px dashed var(--border-strong);
	color: var(--text-muted);
	display: flex;
	flex-direction: column;
	gap: 8px;
	justify-content: center;
	width: 100%;
}

.media-placeholder__icon {
	height: clamp(28px, 6vw, 40px);
	opacity: 0.55;
	width: clamp(28px, 6vw, 40px);
}

.media-placeholder__text {
	font-size: 0.78rem;
	font-weight: 600;
	letter-spacing: 0.01em;
	opacity: 0.75;
	text-align: center;
}

/* Dark variant for placeholders sitting on the navy inner-page masthead or
   hero photo frame, where the light card treatment above lacks contrast. */
.media-placeholder--dark {
	background: linear-gradient(135deg, #16283f 0%, var(--navy) 100%);
	border: none;
	color: rgba(234, 247, 255, 0.75);
}

ul {
	margin: 0;
	padding: 0;
}

/* Focus visibility */
a:focus-visible,
button:focus-visible,
summary:focus-visible,
input:focus-visible {
	outline: 3px solid var(--blue);
	outline-offset: 3px;
}

.site-container {
	margin-inline: auto;
	max-width: var(--content-width);
	padding-inline: 20px;
	width: 100%;
}

@media (min-width: 480px) {
	.site-container {
		padding-inline: 24px;
	}
}

.screen-reader-text {
	clip: rect(1px, 1px, 1px, 1px);
	clip-path: inset(50%);
	height: 1px;
	overflow: hidden;
	position: absolute;
	width: 1px;
}

.screen-reader-text:focus {
	background: var(--white);
	clip: auto;
	clip-path: none;
	height: auto;
	left: 12px;
	padding: 12px;
	top: 12px;
	width: auto;
	z-index: 100000;
}

/* Buttons */
.button-link {
	border: 2px solid transparent;
	border-radius: 999px;
	display: inline-block;
	font-weight: 700;
	font-size: 1rem;
	padding: 13px 26px;
	text-align: center;
	text-decoration: none;
	transition: background-color 0.15s ease, border-color 0.15s ease, transform 0.15s ease;
}

.button-link--primary {
	background: var(--coral);
	border-color: var(--coral);
	color: var(--navy);
}

.button-link--primary:hover {
	background: var(--coral-hover);
	border-color: var(--coral-hover);
	color: var(--navy);
}

.button-link--secondary {
	background: transparent;
	border-color: var(--navy);
	color: var(--navy);
}

.button-link--secondary:hover {
	background: var(--navy);
	color: var(--white);
}

.button-link--on-dark.button-link--secondary {
	border-color: var(--white);
	color: var(--white);
}

.button-link--on-dark.button-link--secondary:hover {
	background: var(--white);
	color: var(--navy);
}

/* Eyebrow label */
.eyebrow {
	color: var(--blue);
	font-size: 0.85rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.eyebrow--on-dark {
	color: #8ed3f4;
}

/* Badge */
.badge {
	background: var(--white);
	border: 1px solid var(--border-strong);
	border-radius: 999px;
	color: var(--navy);
	display: inline-block;
	font-size: 0.8rem;
	font-weight: 700;
	margin-bottom: 16px;
	padding: 8px 16px;
}

/* Section heading */
.section-heading {
	margin-bottom: 40px;
	max-width: 720px;
}

.section-heading p {
	color: var(--text-muted);
	font-size: 1.1rem;
	line-height: 1.55;
}

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

/* Announcement bar (slim, CSS-only rotating messages) */
.announcement-bar {
	background: var(--navy);
	color: #d7e6f2;
	padding-block: 6px;
}

.announcement-bar__rotator {
	font-size: 0.78rem;
	line-height: 1.4;
	margin: 0;
	min-height: 1.4em;
	position: relative;
	text-align: center;
}

/* Four messages, 5 seconds each; the keyframe percentages keep the same
   0.6s fade and 4.5s hold as the previous three-message cycle. */
.announcement-bar__message {
	animation: announcement-rotate 20s infinite;
	left: 0;
	opacity: 0;
	overflow: hidden;
	position: absolute;
	right: 0;
	text-overflow: ellipsis;
	top: 0;
	white-space: nowrap;
}

.announcement-bar__message:nth-child(2) {
	animation-delay: 5s;
}

.announcement-bar__message:nth-child(3) {
	animation-delay: 10s;
}

.announcement-bar__message:nth-child(4) {
	animation-delay: 15s;
}

@keyframes announcement-rotate {
	0% {
		opacity: 0;
	}

	3% {
		opacity: 1;
	}

	22.5% {
		opacity: 1;
	}

	25.5%,
	100% {
		opacity: 0;
	}
}

@media (min-width: 640px) {
	.announcement-bar__rotator {
		font-size: 0.85rem;
	}
}

@media (prefers-reduced-motion: reduce) {
	.announcement-bar__message {
		animation: none;
	}

	.announcement-bar__message:first-child {
		opacity: 1;
		position: static;
	}

	.announcement-bar__message:not(:first-child) {
		display: none;
	}
}

/* Sticky top region: the announcement bar and header stick together, so
   their combined height never needs manual offset coordination. */
.site-top {
	position: sticky;
	top: 0;
	z-index: 100;
}

.site-header {
	background: var(--white);
	border-bottom: 1px solid var(--border);
	box-shadow: 0 4px 16px rgba(8, 17, 31, 0.06);
	padding-block: 8px;
}

.site-header__inner {
	align-items: center;
	display: flex;
	flex-wrap: nowrap;
	gap: 12px;
}

.site-logo {
	display: inline-flex;
	flex-shrink: 0;
}

.site-logo img {
	height: 38px;
	width: auto;
}

.site-nav--desktop {
	display: none;
}

.nav-menu {
	display: flex;
	list-style: none;
}

.nav-menu li {
	list-style: none;
}

.nav-menu a {
	color: var(--text);
	font-weight: 600;
	text-decoration: none;
}

.nav-menu a:hover {
	color: var(--blue);
}

/* Active page indicators. Core menus emit current-menu-item /
   current-menu-ancestor (and the current_page_* aliases); the fallback
   menu in functions.php now emits the same classes plus aria-current,
   so one set of selectors covers both. */
.nav-menu > .current-menu-item > a,
.nav-menu > .current_page_item > a,
.nav-menu > .current-menu-ancestor > a,
.nav-menu > .current_page_parent > a,
.nav-menu > .current_page_ancestor > a {
	color: var(--navy);
}

/* Mobile is a compact utility header: logo left, phone + menu buttons right.
   The Schedule Service CTA appears only on desktop; the hero carries it on mobile. */
.site-header__actions {
	align-items: center;
	display: flex;
	gap: 8px;
	margin-left: auto;
}

.header-phone {
	align-items: center;
	background: var(--white);
	border: 1px solid var(--border);
	border-radius: 10px;
	color: var(--navy);
	display: inline-flex;
	height: 44px;
	justify-content: center;
	width: 44px;
}

.header-phone svg {
	height: 20px;
	width: 20px;
}

.site-header__cta {
	display: none;
}

/* Mobile menu (CSS-only details/summary disclosure) */
.mobile-nav {
	position: relative;
}

.mobile-nav__toggle {
	align-items: center;
	background: var(--white);
	border: 1px solid var(--border);
	border-radius: 10px;
	color: var(--navy);
	cursor: pointer;
	display: flex;
	font-size: 16px;
	font-weight: 700;
	gap: 8px;
	list-style: none;
	min-height: 44px;
	padding: 10px 14px;
}

.mobile-nav__toggle::marker {
	content: "";
}

.mobile-nav__toggle::-webkit-details-marker {
	display: none;
}

.mobile-nav__icon,
.mobile-nav__icon::before,
.mobile-nav__icon::after {
	background: var(--navy);
	border-radius: 2px;
	content: "";
	display: block;
	height: 2px;
	width: 18px;
}

.mobile-nav__icon {
	position: relative;
}

.mobile-nav__icon::before {
	position: absolute;
	top: -6px;
}

.mobile-nav__icon::after {
	position: absolute;
	top: 6px;
}

.mobile-nav__panel {
	background: var(--white);
	border: 1px solid var(--border);
	border-radius: var(--radius-md);
	box-shadow: var(--shadow-card-hover);
	margin-top: 8px;
	padding: 10px;
	position: absolute;
	right: 0;
	top: 100%;
	width: 230px;
	z-index: 60;
}

.mobile-nav__panel .nav-menu {
	flex-direction: column;
	gap: 2px;
}

.mobile-nav__panel .nav-menu a {
	border-radius: 8px;
	display: block;
	font-size: 17px;
	padding: 10px 12px;
}

.mobile-nav__panel .nav-menu a:hover {
	background: var(--bg-soft);
}

/* Active item in the mobile panel: soft blue pill with a cyan edge, plus
   the bolder navy text, so the state does not rely on color alone. */
.mobile-nav__panel .nav-menu .current-menu-item:not(.menu-item--cta) > a,
.mobile-nav__panel .nav-menu .current_page_item:not(.menu-item--cta) > a,
.mobile-nav__panel .nav-menu > .current-menu-ancestor > a,
.mobile-nav__panel .nav-menu > .current_page_parent > a,
.mobile-nav__panel .nav-menu > .current_page_ancestor > a {
	background: var(--pale-blue);
	box-shadow: inset 3px 0 0 var(--brand-cyan);
	color: var(--navy);
	font-weight: 700;
}

/* Submenu (Services). The chevron toggle buttons are injected by site-ui.js;
   without JS the submenus stay reachable (hover/focus on desktop, expanded
   in the mobile panel) and the parent link gets a CSS chevron instead. */
.nav-menu .sub-menu {
	list-style: none;
}

.submenu-toggle {
	align-items: center;
	background: none;
	border: 0;
	border-radius: 8px;
	color: var(--text);
	cursor: pointer;
	display: inline-flex;
	justify-content: center;
	padding: 4px;
}

.submenu-toggle svg {
	height: 16px;
	transition: transform 0.15s ease;
	width: 16px;
}

.submenu-toggle[aria-expanded="true"] svg {
	transform: rotate(180deg);
}

html:not(.js) .nav-menu .menu-item-has-children > a::after {
	border-bottom: 2px solid currentColor;
	border-right: 2px solid currentColor;
	content: "";
	display: inline-block;
	height: 6px;
	margin-left: 8px;
	transform: rotate(45deg) translate(-2px, -2px);
	width: 6px;
}

.mobile-nav__panel .menu-item-has-children {
	align-items: center;
	display: flex;
	flex-wrap: wrap;
}

.mobile-nav__panel .menu-item-has-children > a {
	flex: 1 1 auto;
}

.mobile-nav__panel .submenu-toggle {
	flex-shrink: 0;
	height: 42px;
	width: 42px;
}

.mobile-nav__panel .submenu-toggle:hover {
	background: var(--bg-soft);
}

.mobile-nav__panel .sub-menu {
	border-left: 2px solid var(--border);
	flex: 1 1 100%;
	margin: 2px 0 6px 12px;
	padding-left: 6px;
}

.mobile-nav__panel .sub-menu a {
	font-size: 16px;
	padding: 9px 12px;
}

.mobile-nav__panel .sub-menu a:hover,
.mobile-nav__panel .sub-menu a:focus-visible {
	background: var(--pale-blue);
	color: var(--navy);
}

/* Collapsed by default only when JS can expand it again. */
html.js .mobile-nav__panel .menu-item-has-children:not(.is-open) > .sub-menu {
	display: none;
}

/* Schedule Service appears as a menu item only in the mobile panel;
   the desktop header keeps its dedicated CTA button. */
.mobile-nav__panel .menu-item--cta {
	margin-top: 6px;
}

.mobile-nav__panel .menu-item--cta a {
	background: var(--coral);
	border-radius: 999px;
	color: var(--navy);
	font-weight: 700;
	text-align: center;
}

.mobile-nav__panel .menu-item--cta a:hover {
	background: var(--coral-hover);
}

@media (min-width: 1000px) {
	.site-header {
		padding-block: 0;
	}

	.site-header__inner {
		gap: 32px;
		min-height: 72px;
	}

	.site-logo img {
		height: 50px;
	}

	.site-nav--desktop {
		display: block;
		margin-left: auto;
	}

	.site-nav--desktop .nav-menu {
		flex-wrap: nowrap;
		gap: 26px;
	}

	.site-nav--desktop .nav-menu a {
		font-size: 0.95rem;
		white-space: nowrap;
	}

	.site-nav--desktop .menu-item--cta {
		display: none;
	}

	/* Active top-level item: navy text plus a small cyan-to-blue bar under
	   the label. Absolutely positioned, so it causes no layout shift. */
	.site-nav--desktop .nav-menu > .menu-item > a {
		position: relative;
	}

	.site-nav--desktop .nav-menu > .current-menu-item > a::after,
	.site-nav--desktop .nav-menu > .current_page_item > a::after,
	.site-nav--desktop .nav-menu > .current-menu-ancestor > a::after,
	.site-nav--desktop .nav-menu > .current_page_parent > a::after,
	.site-nav--desktop .nav-menu > .current_page_ancestor > a::after {
		background: var(--brand-cyan);
		border-radius: 999px;
		bottom: -8px;
		content: "";
		height: 3px;
		left: 0;
		position: absolute;
		right: 0;
	}

	/* Desktop dropdown: opens on hover, keyboard focus, or toggle click. */
	.site-nav--desktop .menu-item-has-children {
		align-items: center;
		display: flex;
		gap: 2px;
		position: relative;
	}

	.site-nav--desktop .sub-menu {
		background: var(--white);
		border: 1px solid var(--border);
		border-radius: var(--radius-md);
		box-shadow: var(--shadow-card-hover);
		display: flex;
		flex-direction: column;
		gap: 2px;
		left: 50%;
		min-width: 220px;
		opacity: 0;
		padding: 8px;
		position: absolute;
		top: calc(100% + 10px);
		transform: translate(-50%, 6px);
		transition: opacity 0.15s ease, transform 0.15s ease, visibility 0.15s;
		visibility: hidden;
		z-index: 70;
	}

	/* Invisible bridge so hover survives the gap between link and dropdown. */
	.site-nav--desktop .sub-menu::before {
		content: "";
		height: 14px;
		left: 0;
		position: absolute;
		right: 0;
		top: -14px;
	}

	.site-nav--desktop .menu-item-has-children:hover > .sub-menu,
	.site-nav--desktop .menu-item-has-children:focus-within > .sub-menu,
	.site-nav--desktop .menu-item-has-children.is-open > .sub-menu {
		opacity: 1;
		transform: translate(-50%, 0);
		visibility: visible;
	}

	/* Set by site-ui.js after Escape so the dropdown stays closed while
	   focus sits on the toggle button. */
	.site-nav--desktop .menu-item-has-children.is-suppressed > .sub-menu {
		opacity: 0;
		transform: translate(-50%, 6px);
		visibility: hidden;
	}

	.site-nav--desktop .sub-menu a {
		border-radius: 8px;
		display: block;
		padding: 9px 12px;
		white-space: nowrap;
	}

	.site-nav--desktop .sub-menu a:hover,
	.site-nav--desktop .sub-menu a:focus-visible {
		background: var(--pale-blue);
		color: var(--navy);
	}

	/* Active service page inside the dropdown: same cyan-edge pill as the
	   mobile panel so the two menus read consistently. */
	.site-nav--desktop .sub-menu .current-menu-item > a,
	.site-nav--desktop .sub-menu .current_page_item > a {
		background: var(--pale-blue);
		box-shadow: inset 3px 0 0 var(--brand-cyan);
		color: var(--navy);
		font-weight: 700;
	}

	.site-header__actions {
		margin-left: 0;
	}

	.site-header__cta {
		display: inline-flex;
		font-size: 0.95rem;
		padding: 12px 22px;
	}

	.header-phone,
	.mobile-nav {
		display: none;
	}
}

/* Hero */
.hero {
	background: linear-gradient(180deg, var(--bg-soft) 0%, var(--pale-blue) 100%);
	padding-block: 52px 48px;
}

/* The mobile gap separates the trust bar from the photo card so the photo
   reads as its own card instead of being jammed under the trust strip. */
.hero__inner {
	align-items: center;
	display: grid;
	gap: 44px;
	grid-template-columns: 1fr;
}

@media (min-width: 900px) {
	.hero {
		padding-block: clamp(56px, 6vw, 76px);
	}

	.hero__inner {
		gap: 64px;
		grid-template-columns: 1.083fr 1fr;
	}
}

/* Keep the mobile H1 strong but not oversized; desktop inherits the global size.
   text-wrap: balance evens out the two wrapped lines so no word is orphaned. */
.hero__content h1 {
	margin-bottom: 12px;
	text-wrap: balance;
}

@media (max-width: 899px) {
	.hero__content h1 {
		font-size: clamp(1.95rem, 7vw, 2.6rem);
	}
}

/* Small bold service-area line under the H1 — a support line, not a second headline. */
.hero__location {
	color: var(--navy);
	font-size: clamp(1rem, 0.9rem + 0.5vw, 1.15rem);
	font-weight: 700;
	margin: 0 0 20px;
}

.hero__lede {
	color: var(--text);
	font-size: 1.1rem;
	line-height: 1.65;
	max-width: 560px;
}

.hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
	margin: 30px 0 26px;
}

.hero__actions .button-link {
	min-height: 48px;
}

/* Below this width the two CTAs cannot share a row cleanly, so stack them full width. */
@media (max-width: 459px) {
	.hero__actions .button-link {
		flex: 1 1 100%;
	}
}

@media (min-width: 900px) {
	/* Slightly under the global h1 cap so the headline breaks as two even
	   lines and keeps "Your Local Tech Guy" together. */
	.hero__content h1 {
		font-size: 2.5rem;
	}

	.hero__location {
		margin-bottom: 18px;
	}

	.hero__actions {
		margin: 28px 0 24px;
	}
}

/* Hero trust bar: light proof strip under the CTAs — one rounded card,
   three equal segments with subtle dividers, icon above a bold label. */
.hero__trust-bar {
	background: var(--white);
	border: 1px solid var(--border-strong);
	border-radius: 14px;
	box-shadow: 0 1px 2px rgba(8, 17, 31, 0.05);
	color: var(--navy);
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	list-style: none;
	margin: 0;
	max-width: 560px;
	overflow: hidden;
	padding: 0;
}

.hero__trust-bar li {
	align-items: center;
	display: flex;
	flex-direction: column;
	font-size: 0.75rem;
	font-weight: 700;
	gap: 5px;
	justify-content: center;
	line-height: 1.25;
	padding: 10px 8px;
	text-align: center;
}

.hero__trust-bar li + li {
	border-left: 1px solid var(--border);
}

.hero__trust-icon {
	color: var(--brand-cyan);
	flex-shrink: 0;
	height: 16px;
	width: 16px;
}

/* Five small stars in a row for the reviews segment, sized to match the
   single-icon height of the other segments. */
.hero__trust-stars {
	display: flex;
	gap: 2px;
}

.hero__trust-stars .hero__trust-icon {
	height: 13px;
	width: 13px;
}

@media (min-width: 640px) {
	.hero__trust-stars .hero__trust-icon {
		height: 15px;
		width: 15px;
	}
}

@media (min-width: 640px) {
	.hero__trust-bar li {
		font-size: 0.85rem;
		gap: 6px;
		padding: 12px 8px;
	}
}

/* Hero photo frame */
.hero__photo-frame {
	background: var(--white);
	border-radius: 22px;
	box-shadow: var(--shadow-photo);
	margin: 0;
	max-width: 620px;
	overflow: hidden;
	position: relative;
	width: 100%;
}

/* The bench photo is portrait; bias the crop upward so the laptop screen
   and keyboard stay in frame inside the landscape-leaning card. */
.hero__photo {
	height: clamp(210px, 56vw, 300px);
	object-fit: cover;
	object-position: 50% 38%;
	width: 100%;
}

@media (min-width: 900px) {
	.hero__photo-frame {
		border-radius: 28px;
	}

	.hero__photo {
		height: clamp(440px, 37vw, 540px);
		min-height: 440px;
	}
}

.hero__photo-caption {
	background: linear-gradient(0deg, rgba(8, 17, 31, 0.92) 0%, rgba(8, 17, 31, 0.72) 55%, rgba(8, 17, 31, 0) 100%);
	bottom: 0;
	color: var(--white);
	left: 0;
	padding: 32px 24px 22px;
	position: absolute;
	right: 0;
}

.hero__photo-heading {
	font-size: 1.1rem;
	font-weight: 700;
	margin-bottom: 4px;
}

.hero__photo-text {
	color: #dbe7f0;
	font-size: 0.95rem;
	margin: 0;
}

/* On very narrow screens, tighten the caption so the overlay stays
   subordinate to the photo. */
@media (max-width: 479px) {
	.hero__photo-caption {
		padding: 26px 18px 16px;
	}

	.hero__photo-text {
		font-size: 0.9rem;
	}
}

/* Three customer path cards */
.customer-paths {
	padding-block: clamp(56px, 8vw, 96px);
}

.customer-paths__grid {
	display: grid;
	gap: 28px;
	grid-template-columns: 1fr;
}

@media (min-width: 700px) {
	.customer-paths__grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (min-width: 1000px) {
	.customer-paths__grid {
		gap: 0 28px;
		grid-auto-rows: auto;
		grid-template-columns: repeat(3, 1fr);
	}
}

.path-card {
	background: var(--white);
	border: 1px solid var(--border-strong);
	border-radius: var(--radius-lg);
	box-shadow: var(--shadow-card);
	display: flex;
	flex-direction: column;
	overflow: hidden;
	padding: 34px 28px 32px;
	position: relative;
	transition: border-color 0.15s ease, box-shadow 0.15s ease, transform 0.15s ease;
}

.path-card::before {
	background: var(--brand-cyan);
	content: "";
	height: 4px;
	left: 0;
	position: absolute;
	right: 0;
	top: 0;
}

.path-card:hover {
	border-color: var(--brand-cyan);
	box-shadow: var(--shadow-card-hover);
	transform: translateY(-2px);
}

/* The whole card is a single link; keep the card's own text colors and
   give keyboard focus the same lift as hover plus a visible outline. */
.path-card--link {
	color: inherit;
	text-decoration: none;
}

.path-card--link:focus-visible {
	border-color: var(--brand-cyan);
	box-shadow: var(--shadow-card-hover);
	outline: 3px solid var(--brand-cyan);
	outline-offset: 2px;
	transform: translateY(-2px);
}

/* Hovering or focusing anywhere on the card also activates the inner
   button's hover style so the card reads as one control. */
.path-card--link:hover .path-card__button,
.path-card--link:focus-visible .path-card__button {
	background: var(--navy);
	color: var(--white);
}

/* Subgrid keeps icon, title, description, bullets, and button rows
   aligned across all three cards at every desktop width. */
@media (min-width: 1000px) {
	.path-card {
		display: grid;
		grid-row: span 5;
		grid-template-rows: subgrid;
	}
}

.path-card__icon {
	align-items: center;
	background: var(--pale-blue);
	border: 1px solid rgba(0, 174, 239, 0.25);
	border-radius: 16px;
	color: var(--brand-cyan);
	display: inline-flex;
	height: 56px;
	justify-content: center;
	margin-bottom: 20px;
	width: 56px;
}

.path-card__icon svg {
	height: 28px;
	width: 28px;
}

.path-card__desc {
	color: var(--text);
}

.path-card__bullets {
	flex-grow: 1;
	list-style: none;
	margin: 4px 0 24px;
}

.path-card__bullets li {
	border-top: 1px solid var(--border);
	color: var(--text-muted);
	font-size: 0.95rem;
	padding: 9px 0;
}

.path-card__bullets li:first-child {
	border-top: none;
}

.path-card__button {
	align-self: flex-start;
	margin-top: auto;
}

@media (max-width: 699px) {
	.path-card {
		padding: 26px 22px;
	}

	.path-card__icon {
		margin-bottom: 16px;
	}

	.path-card h3 {
		font-size: 1.35rem;
		line-height: 1.15;
	}

	.path-card p {
		font-size: 17px;
		line-height: 1.5;
	}

	.path-card__bullets {
		margin-bottom: 18px;
	}

	.path-card__bullets li {
		font-size: 16px;
		line-height: 1.4;
		padding: 7px 0;
	}
}

/* Expectations */
.expectations {
	background: var(--bg-soft);
	padding-block: clamp(56px, 8vw, 96px);
}

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

@media (min-width: 800px) {
	.expectations__grid {
		grid-template-columns: repeat(3, 1fr);
	}
}

.expectation-card {
	background: var(--white);
	border: 1px solid var(--border-strong);
	border-radius: var(--radius-lg);
	box-shadow: var(--shadow-card);
	padding: 30px 26px;
}

.expectation-card__icon {
	align-items: center;
	background: var(--pale-blue);
	border: 1px solid rgba(0, 174, 239, 0.25);
	border-radius: 14px;
	color: var(--brand-cyan);
	display: inline-flex;
	height: 48px;
	justify-content: center;
	margin-bottom: 18px;
	width: 48px;
}

.expectation-card__icon svg {
	height: 24px;
	width: 24px;
}

.expectation-card h3 {
	font-size: 1.15rem;
}

.expectation-card p {
	color: var(--text-muted);
	font-size: 0.98rem;
	margin: 0;
}

/* Rebrand trust */
.rebrand-trust {
	background: var(--pale-blue);
	padding-block: clamp(48px, 8vw, 88px);
}

.rebrand-trust__inner {
	display: grid;
	gap: 32px;
	grid-template-columns: 1fr;
}

@media (min-width: 900px) {
	.rebrand-trust__inner {
		align-items: center;
		grid-template-columns: 0.85fr 1.15fr;
	}
}

.rebrand-trust__lead h2 {
	margin-bottom: 0;
}

.rebrand-trust__body p {
	font-size: 1.05rem;
}

/* Pain point */
.pain-point {
	background: var(--navy);
	color: #c7d3de;
	padding-block: clamp(56px, 8vw, 96px);
}

.pain-point__inner {
	display: grid;
	gap: 40px;
	grid-template-columns: 1fr;
}

@media (min-width: 900px) {
	.pain-point__inner {
		grid-template-columns: 1fr 1fr;
	}
}

.pain-point h2 {
	color: var(--white);
}

.pain-point__body p {
	color: #c7d3de;
	font-size: 1.05rem;
}

.pain-point__checklist {
	list-style: none;
	margin-top: 20px;
}

.pain-point__checklist li {
	border-top: 1px solid rgba(199, 211, 222, 0.2);
	font-weight: 600;
	padding: 12px 0 12px 30px;
	position: relative;
}

.pain-point__checklist li:first-child {
	border-top: none;
}

.pain-point__checklist li::before {
	color: var(--brand-cyan);
	content: "\2713";
	left: 0;
	position: absolute;
}

/* Common problems grid */
.problems-grid {
	background: var(--bg-soft);
	padding-block: clamp(56px, 8vw, 96px);
}

.problems-grid__grid {
	display: grid;
	gap: 20px;
	grid-template-columns: 1fr;
}

@media (min-width: 640px) {
	.problems-grid__grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (min-width: 1000px) {
	.problems-grid__grid {
		grid-template-columns: repeat(3, 1fr);
	}
}

.problem-card {
	background: var(--white);
	border: 1px solid var(--border);
	border-radius: var(--radius-md);
	column-gap: 14px;
	display: grid;
	grid-template-columns: auto 1fr;
	padding: 20px;
}

.problem-card__icon {
	align-items: center;
	background: var(--pale-blue);
	border-radius: 10px;
	color: var(--brand-cyan);
	display: inline-flex;
	grid-row: 1 / span 2;
	height: 40px;
	justify-content: center;
	width: 40px;
}

.problem-card__icon svg {
	height: 22px;
	width: 22px;
}

.problem-card h3 {
	font-size: 1.05rem;
	margin-bottom: 4px;
}

.problem-card p {
	color: var(--text-muted);
	font-size: 0.92rem;
	margin: 0;
}

/* Popular services: compact link chips, deliberately lighter than a card
   grid — each chip routes to the matching service page. */
.popular-services {
	background: var(--bg-soft);
	padding-block: clamp(56px, 8vw, 96px);
}

.popular-services__list {
	display: grid;
	gap: 12px;
	grid-template-columns: 1fr;
	list-style: none;
	margin: 0;
	padding: 0;
}

.popular-services__list li {
	list-style: none;
}

@media (min-width: 480px) {
	.popular-services__list {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (min-width: 800px) {
	.popular-services__list {
		grid-template-columns: repeat(3, 1fr);
	}
}

@media (min-width: 1100px) {
	.popular-services__list {
		grid-template-columns: repeat(4, 1fr);
	}
}

.popular-service-link {
	align-items: center;
	background: var(--white);
	border: 1px solid var(--border-strong);
	border-radius: 999px;
	color: var(--navy);
	display: flex;
	font-size: 0.95rem;
	font-weight: 600;
	gap: 10px;
	justify-content: space-between;
	min-height: 48px;
	padding: 10px 18px;
	text-decoration: none;
	transition: border-color 0.15s ease, box-shadow 0.15s ease, transform 0.15s ease;
}

.popular-service-link:hover,
.popular-service-link:focus-visible {
	border-color: var(--brand-cyan);
	box-shadow: var(--shadow-card);
	transform: translateY(-1px);
}

.popular-service-link svg {
	color: var(--brand-cyan);
	flex-shrink: 0;
	height: 14px;
	width: 14px;
}

/* Pricing preview */
.pricing-preview {
	background: var(--white);
	padding-block: clamp(56px, 8vw, 96px);
}

.pricing-preview__disclaimer {
	color: var(--text-muted);
	font-size: 0.95rem;
	font-weight: 600;
	margin: -20px auto 36px;
	max-width: 640px;
	text-align: center;
}

.pricing-preview__grid {
	display: grid;
	gap: 24px;
	grid-template-columns: 1fr;
}

@media (min-width: 800px) {
	.pricing-preview__grid {
		grid-template-columns: repeat(3, 1fr);
	}
}

.pricing-card {
	background: var(--white);
	border: 1px solid var(--border-strong);
	border-radius: var(--radius-lg);
	box-shadow: var(--shadow-card);
	display: flex;
	flex-direction: column;
	padding: 32px 28px;
	text-align: center;
}

.pricing-card--highlighted {
	background: var(--pale-blue);
	border-color: var(--brand-cyan);
}

.pricing-card__price {
	color: var(--ink);
	font-size: 2rem;
	font-weight: 800;
	margin-bottom: 12px;
}

.pricing-card p:not(.pricing-card__price) {
	color: var(--text-muted);
	font-size: 0.95rem;
}

.pricing-card .button-link {
	margin-top: auto;
	width: 100%;
}

.pricing-preview__note {
	color: var(--text-muted);
	font-size: 0.9rem;
	margin: 32px auto 0;
	max-width: 720px;
	text-align: center;
}

/* Single directional link under the homepage pricing cards. */
.pricing-preview__cta {
	margin-top: 36px;
	text-align: center;
}

/* About Tyler */
.about-tyler {
	background: var(--bg-soft);
	padding-block: clamp(56px, 8vw, 96px);
}

.about-tyler__inner {
	align-items: center;
	display: grid;
	gap: 40px;
	grid-template-columns: 1fr;
}

@media (min-width: 900px) {
	.about-tyler__inner {
		grid-template-columns: 0.85fr 1.15fr;
	}
}

/* The location photo is landscape; crop it to the portrait card shape the
   layout was designed around so the text column stays balanced. */
.about-tyler__media img,
.about-tyler__media .media-placeholder {
	aspect-ratio: 6 / 7;
	border-radius: var(--radius-photo);
	box-shadow: var(--shadow-photo);
	object-fit: cover;
	width: 100%;
}

.about-tyler__body p {
	font-size: 1.05rem;
}

/* Quiet one-line rebrand note; the full story lives on the About page. */
.about-tyler__body .about-tyler__rebrand-note {
	border-top: 1px solid var(--border-strong);
	color: var(--text-muted);
	font-size: 0.9rem;
	margin-bottom: 24px;
	padding-top: 14px;
}

/* Process */
.process {
	background: var(--white);
	padding-block: clamp(56px, 8vw, 96px);
}

.process__grid {
	display: grid;
	gap: 28px;
	grid-template-columns: 1fr;
}

@media (min-width: 640px) {
	.process__grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (min-width: 1100px) {
	.process__grid {
		grid-template-columns: repeat(4, 1fr);
	}
}

.process-step__number {
	align-items: center;
	background: var(--blue);
	border-radius: 999px;
	color: var(--white);
	display: inline-flex;
	font-weight: 800;
	height: 44px;
	justify-content: center;
	margin-bottom: 16px;
	width: 44px;
}

.process-step p {
	color: var(--text-muted);
}

/* Testimonials / reviews */
.testimonials {
	background: var(--bg-soft);
	padding-block: clamp(56px, 8vw, 96px);
}

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

@media (min-width: 700px) {
	.testimonials__grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (min-width: 1000px) {
	.testimonials__grid {
		grid-template-columns: repeat(3, 1fr);
	}
}

.testimonial-card {
	background: var(--white);
	border: 1px solid var(--border);
	border-radius: var(--radius-lg);
	box-shadow: var(--shadow-card);
	display: flex;
	flex-direction: column;
	margin: 0;
	padding: 26px;
}

.testimonial-card__tag {
	align-self: flex-start;
	background: var(--pale-blue);
	border-radius: 999px;
	color: var(--blue);
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 0.02em;
	margin-bottom: 14px;
	padding: 4px 12px;
}

.testimonial-card__quote {
	color: var(--text);
	font-size: 1rem;
}

.testimonial-card__name {
	color: var(--ink);
	font-size: 0.9rem;
	font-style: normal;
	font-weight: 700;
	margin-top: auto;
}

.testimonial-card__source {
	color: var(--text-muted);
	display: block;
	font-size: 0.8rem;
	font-style: normal;
	font-weight: 400;
}

/* Homepage variant: reviews sit between two soft sections, so this copy
   stays white to keep the section backgrounds alternating. */
.testimonials--on-white {
	background: var(--white);
}

.testimonials__cta {
	margin-top: 36px;
	text-align: center;
}

.button-link--google {
	align-items: center;
	background: var(--white);
	border-color: var(--border-strong);
	color: var(--navy);
	display: inline-flex;
	gap: 10px;
	justify-content: center;
}

.button-link--google:hover {
	border-color: var(--navy);
}

.button-link--google svg {
	flex-shrink: 0;
	height: 18px;
	width: 18px;
}

.button-link--google__star {
	color: var(--brand-cyan);
}

.button-link--google__external {
	color: var(--text-muted);
	height: 15px;
	width: 15px;
}

/* Final CTA */
.final-cta {
	background: var(--navy);
	padding-block: clamp(56px, 8vw, 96px);
	text-align: center;
}

.final-cta__inner {
	margin-inline: auto;
	max-width: 720px;
}

.final-cta h2 {
	color: var(--white);
}

.final-cta p {
	color: #c7d3de;
	font-size: 1.1rem;
}

.final-cta__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
	justify-content: center;
	margin-top: 12px;
}

/* Footer */
.site-footer {
	background: var(--navy);
	color: #c7d3de;
}

.footer__columns {
	display: grid;
	gap: 36px;
	grid-template-columns: 1fr;
	padding-block: 56px 40px;
}

@media (min-width: 700px) {
	.footer__columns {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (min-width: 1000px) {
	.footer__columns {
		grid-template-columns: repeat(4, 1fr);
	}
}

.footer__heading {
	color: var(--white);
	font-size: 1.05rem;
	font-weight: 700;
	margin-bottom: 14px;
}

/* Footer brand is deliberately styled text, not the full logo image. */
.footer__logo {
	color: var(--white);
	display: inline-block;
	font-size: 1.35rem;
	font-weight: 800;
	letter-spacing: -0.02em;
	line-height: 1.2;
	margin-bottom: 12px;
	text-decoration: none;
}

.footer__logo:hover {
	color: var(--brand-cyan);
}

.footer__column p {
	color: #c7d3de;
	font-size: 0.95rem;
}

.footer__small-text {
	color: #9db0c1;
	font-size: 0.875rem;
}

.footer__link-list,
.footer__plain-list {
	list-style: none;
}

.footer__link-list li,
.footer__plain-list li {
	font-size: 0.95rem;
	list-style: none;
	padding: 6px 0;
}

.footer__link-list a {
	color: #c7d3de;
	text-decoration: none;
}

.footer__link-list a:hover {
	color: var(--white);
	text-decoration: underline;
}

.footer__plain-list li {
	color: #c7d3de;
}

.footer__column .button-link {
	margin-top: 8px;
}

.footer__bottom {
	border-top: 1px solid rgba(199, 211, 222, 0.2);
	color: #9db0c1;
	font-size: 0.875rem;
	padding-block: 20px;
}

/* Copyright plus legal links in one quiet row. */
.footer__legal {
	align-items: center;
	display: flex;
	flex-wrap: wrap;
	gap: 4px 10px;
	margin: 0;
}

/* Legal links follow the footer nav link style: muted, white underline on hover. */
.footer__legal a {
	color: #c7d3de;
	text-decoration: none;
}

.footer__legal a:hover,
.footer__legal a:focus-visible {
	color: var(--white);
	text-decoration: underline;
}

.footer__legal-divider {
	color: rgba(157, 176, 193, 0.55);
}

/* The full row does not fit narrow screens: stack the copyright and each
   link on its own line instead of letting the pipes wrap mid-row. */
@media (max-width: 639px) {
	.footer__legal {
		align-items: flex-start;
		flex-direction: column;
		gap: 8px;
	}

	.footer__legal-divider {
		display: none;
	}
}

/* Inner pages (Computer Repair and future service pages) */
/* Reusable compact image masthead: photo banner, dark overlay, breadcrumb,
   page title, short phrase, and appointment pill. Deliberately much shorter
   than the homepage hero — inner pages get straight to the useful content. */
.inner-masthead {
	background: var(--navy);
	isolation: isolate;
	overflow: hidden;
	position: relative;
}

.inner-masthead__image {
	height: 100%;
	inset: 0;
	object-fit: cover;
	position: absolute;
	width: 100%;
	z-index: -2;
}

/* Home Tech Help banner: favor the house over the tree canopy in the crop. */
.inner-masthead__image--home-tech {
	object-position: center 55%;
}

/* Business IT & AI banner: keep the laptop screen in view in the wide crop. */
.inner-masthead__image--business {
	object-position: center 38%;
}

/* Pricing banner: bias the crop toward the repaired laptop's screen. */
.inner-masthead__image--pricing {
	object-position: center 40%;
}

/* Bottom-heavy gradient keeps the text readable on any banner photo. */
.inner-masthead__overlay {
	background: linear-gradient(180deg, rgba(8, 17, 31, 0.48) 0%, rgba(8, 17, 31, 0.6) 55%, rgba(8, 17, 31, 0.84) 100%);
	inset: 0;
	position: absolute;
	z-index: -1;
}

/* min-height keeps the banner compact: ~200px on phones, ~320px on desktop. */
.inner-masthead__content {
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	min-height: clamp(200px, 28vw, 320px);
	padding-block: 24px 30px;
}

.inner-masthead__title {
	color: var(--white);
	font-size: clamp(1.85rem, 4.5vw, 2.5rem);
	line-height: 1.1;
	margin: 0;
	text-wrap: balance;
}

.inner-masthead__intro {
	color: rgba(234, 247, 255, 0.92);
	font-size: 1.02rem;
	line-height: 1.5;
	margin: 10px 0 0;
	max-width: 560px;
}

/* Small appointment pill under the title; informative rather than alarming. */
.inner-masthead__pill {
	align-items: center;
	align-self: flex-start;
	background: rgba(8, 17, 31, 0.55);
	border: 1px solid rgba(234, 247, 255, 0.4);
	border-radius: 999px;
	color: var(--white);
	display: inline-flex;
	font-size: 0.85rem;
	font-weight: 700;
	gap: 8px;
	line-height: 1.3;
	margin: 14px 0 0;
	padding: 6px 14px;
}

.inner-masthead__pill svg {
	color: var(--brand-cyan);
	flex-shrink: 0;
	height: 14px;
	width: 14px;
}

/* Breadcrumb: quiet utility row above the headline. */
.breadcrumb ol {
	color: var(--text-muted);
	display: flex;
	flex-wrap: wrap;
	font-size: 0.85rem;
	gap: 4px 8px;
	list-style: none;
	margin: 0 0 20px;
	padding: 0;
}

.breadcrumb li {
	list-style: none;
}

.breadcrumb li + li::before {
	color: var(--border-strong);
	content: "/";
	margin-right: 8px;
}

.breadcrumb a {
	color: var(--text-muted);
	text-decoration: none;
}

.breadcrumb a:hover,
.breadcrumb a:focus-visible {
	color: var(--blue);
	text-decoration: underline;
}

.breadcrumb [aria-current="page"] {
	color: var(--navy);
	font-weight: 600;
}

/* On the image masthead the breadcrumb sits on a photo, so it flips to light. */
.inner-masthead .breadcrumb ol {
	color: rgba(234, 247, 255, 0.85);
	margin-bottom: 14px;
}

.inner-masthead .breadcrumb a {
	color: rgba(234, 247, 255, 0.85);
}

.inner-masthead .breadcrumb a:hover,
.inner-masthead .breadcrumb a:focus-visible {
	color: var(--white);
}

.inner-masthead .breadcrumb li + li::before {
	color: rgba(234, 247, 255, 0.5);
}

.inner-masthead .breadcrumb [aria-current="page"] {
	color: var(--white);
}

/* Appointment action strip: compact "how to start" bar right under the
   masthead. Intentionally small — it directs action without being a hero. */
.service-action-strip {
	background: var(--pale-blue);
	border-bottom: 1px solid var(--border);
	padding-block: 28px;
}

.service-action-strip__inner {
	align-items: center;
	display: flex;
	flex-wrap: wrap;
	gap: 18px 32px;
	justify-content: space-between;
}

.service-action-strip__text h2 {
	font-size: 1.3rem;
	line-height: 1.25;
	margin: 0 0 6px;
}

.service-action-strip__text p {
	color: var(--text-muted);
	font-size: 0.98rem;
	margin: 0;
	max-width: 560px;
}

.service-action-strip__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
}

.service-action-strip__actions .button-link {
	min-height: 48px;
}

/* Stack the CTAs full width when they cannot share a row cleanly. */
@media (max-width: 459px) {
	.service-action-strip__actions {
		width: 100%;
	}

	.service-action-strip__actions .button-link {
		flex: 1 1 100%;
	}
}

/* This grid sits directly under the pale action strip, so it stays white here. */
.repair-benefits {
	background: var(--white);
}

/* Slightly smaller heading so it balances with the compact benefit cards. */
.repair-benefits .section-heading h2 {
	font-size: clamp(1.75rem, 2vw + 1rem, 2.25rem);
}

/* Compact "common repairs handled" band: plain pills, deliberately much
   smaller than the benefit cards above so it confirms coverage without
   competing for attention. */
.repair-list {
	background: var(--white);
	border-top: 1px solid var(--border);
	padding-block: clamp(40px, 6vw, 64px);
}

.repair-list .section-heading {
	margin-bottom: 28px;
}

.repair-list .section-heading h2 {
	font-size: clamp(1.4rem, 1.5vw + 0.9rem, 1.75rem);
}

.repair-list .section-heading p {
	font-size: 1rem;
}

.repair-list__items {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	justify-content: center;
	list-style: none;
	margin: 0 auto;
	max-width: 840px;
	padding: 0;
}

.repair-list__items li {
	background: var(--bg-soft);
	border: 1px solid var(--border-strong);
	border-radius: 999px;
	color: var(--navy);
	font-size: 0.92rem;
	font-weight: 600;
	list-style: none;
	padding: 8px 16px;
}

.repair-trust__cta {
	margin-top: 24px;
}

/* Pricing on this page holds four cards: 2x2 on tablet, one row when wide. */
.repair-pricing {
	background: var(--bg-soft);
}

@media (min-width: 800px) {
	.repair-pricing .pricing-preview__grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (min-width: 1100px) {
	.repair-pricing .pricing-preview__grid {
		grid-template-columns: repeat(4, 1fr);
	}
}

.repair-pricing .pricing-card {
	position: relative;
}

/* Pill badge straddling the top edge of the highlighted $130 card. Positioned
   out of the normal flow so the title and price line up with the other cards.
   The extra `p` qualifier outweighs the generic muted card-copy rule. */
.repair-pricing .pricing-card p.pricing-card__flag {
	background: var(--blue);
	border-radius: 999px;
	color: var(--white);
	font-size: 0.72rem;
	font-weight: 700;
	left: 50%;
	letter-spacing: 0.08em;
	margin: 0;
	padding: 5px 14px;
	position: absolute;
	text-transform: uppercase;
	top: 0;
	transform: translate(-50%, -50%);
	white-space: nowrap;
}

/* Non-dollar starting points (“By appointment”, “Custom quote”) read as
   labels rather than figures, so they sit smaller than the dollar prices. */
.repair-pricing .pricing-card p.pricing-card__price--text {
	font-size: 1.3rem;
	line-height: 1.25;
	padding-top: 0.35rem;
}

/* Qualifiers like “labor” or “first 2 hours” drop to a smaller second line so
   the dollar amounts read at the same size on every card. */
.repair-pricing .pricing-card .pricing-card__price-qualifier {
	color: var(--text-muted);
	display: block;
	font-size: 0.9rem;
	font-weight: 600;
	letter-spacing: 0;
	margin-top: 2px;
}

/* Reserve consistent title and price rows in multi-column layouts so every
   card's price and copy start at the same height, wrapped lines included. */
@media (min-width: 800px) {
	.repair-pricing .pricing-card h3 {
		align-items: center;
		display: flex;
		justify-content: center;
		min-height: 2.5em;
	}

	.repair-pricing .pricing-card .pricing-card__price {
		min-height: 4.8rem;
	}
}

/* Directional link to the full Pricing page under the pricing cards. */
.repair-pricing__more {
	margin: 32px auto 0;
	max-width: 640px;
	text-align: center;
}

.repair-pricing__more p {
	color: var(--text-muted);
	font-size: 0.98rem;
}

/* Optional button row under the pricing note (Business IT & AI). */
.repair-pricing__more-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	justify-content: center;
	margin-top: 18px;
}

/* Compact CTA after the process steps; one of the few mid-page CTAs. */
.process__cta {
	margin-top: 48px;
	text-align: center;
}

.process__cta-heading {
	color: var(--ink);
	font-size: 1.25rem;
	font-weight: 700;
	margin-bottom: 18px;
}

.process__cta-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
	justify-content: center;
}

/* Quiet appointment reminder under the final CTA buttons. */
.final-cta__note {
	color: #9db0c1;
	font-size: 0.9rem;
	margin: 20px 0 0;
}

/* FAQ (CSS-only details/summary accordion) */
.repair-faq {
	background: var(--white);
	padding-block: clamp(56px, 8vw, 96px);
}

.repair-faq__list {
	margin-inline: auto;
	max-width: 760px;
}

.repair-faq__item {
	background: var(--white);
	border: 1px solid var(--border-strong);
	border-radius: var(--radius-md);
	box-shadow: var(--shadow-card);
	margin-bottom: 12px;
}

.repair-faq__item summary {
	color: var(--ink);
	cursor: pointer;
	font-weight: 700;
	list-style: none;
	padding: 16px 48px 16px 20px;
	position: relative;
}

.repair-faq__item summary::marker {
	content: "";
}

.repair-faq__item summary::-webkit-details-marker {
	display: none;
}

.repair-faq__item summary::after {
	color: var(--brand-cyan);
	content: "+";
	font-size: 1.4rem;
	font-weight: 700;
	line-height: 1;
	position: absolute;
	right: 20px;
	top: 50%;
	transform: translateY(-50%);
}

.repair-faq__item[open] summary::after {
	content: "\2212";
}

.repair-faq__answer {
	border-top: 1px solid var(--border);
	color: var(--text-muted);
	padding: 14px 20px 16px;
}

.repair-faq__answer p {
	margin: 0;
}

/* Pricing page
   ------------------------------------------------------------------ */

/* The full pricing page holds six cards: 2x3 on tablet, 3x2 when wide.
   White background keeps the strip → cards rhythm of the service pages. */
.pricing-main {
	background: var(--white);
}

@media (min-width: 1100px) {
	.pricing-main .pricing-preview__grid {
		grid-template-columns: repeat(3, 1fr);
	}
}

/* "What these prices mean" holds four cards, so it reads best as 2x2. */
@media (min-width: 1000px) {
	.pricing-meaning .problems-grid__grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

/* Drop-off / on-site / remote / project comparison cards. */
.service-types {
	background: var(--white);
	border-top: 1px solid var(--border);
	padding-block: clamp(56px, 8vw, 96px);
}

.service-types__grid {
	display: grid;
	gap: 20px;
	grid-template-columns: 1fr;
	margin-inline: auto;
	max-width: 960px;
}

@media (min-width: 700px) {
	.service-types__grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

.service-type-card {
	background: var(--white);
	border: 1px solid var(--border-strong);
	border-radius: var(--radius-md);
	box-shadow: var(--shadow-card);
	padding: 24px 22px;
}

.service-type-card h3 {
	font-size: 1.1rem;
	margin-bottom: 8px;
}

.service-type-card__best {
	color: var(--navy);
	font-size: 0.92rem;
	line-height: 1.55;
	margin: 0 0 10px;
}

.service-type-card__copy {
	color: var(--text-muted);
	font-size: 0.95rem;
	margin: 0;
}

/* Parts & approvals: reassuring soft band with a compact checklist. */
.parts-approvals {
	background: var(--bg-soft);
	padding-block: clamp(48px, 7vw, 80px);
}

.parts-approvals .section-heading {
	margin-bottom: 28px;
}

.parts-approvals__list {
	list-style: none;
	margin: 0 auto;
	max-width: 620px;
	padding: 0;
}

.parts-approvals__list li {
	border-top: 1px solid var(--border-strong);
	color: var(--navy);
	font-weight: 600;
	padding: 12px 0 12px 30px;
	position: relative;
}

.parts-approvals__list li:first-child {
	border-top: none;
}

.parts-approvals__list li::before {
	color: var(--brand-cyan);
	content: "\2713";
	left: 0;
	position: absolute;
}

/* Standard page template */
.content-section {
	padding-block: clamp(48px, 8vw, 100px);
}

.entry {
	margin-inline: auto;
	max-width: 760px;
}

.entry-title {
	font-size: clamp(2rem, 5vw, 3.75rem);
	letter-spacing: -0.04em;
	line-height: 1.08;
}

/* Contact page
   ------------------------------------------------------------------ */

/* Contact banner: keep the fan/heatsink detail in view, away from the
   battery label crowding the lower-right of the source photo. */
.inner-masthead__image--contact {
	object-position: center 32%;
}

/* Remote-support utility pill + availability line under the action strip
   buttons (shared by the Contact and About action strips). Deliberately
   quieter than the primary/secondary CTAs above it. */
.contact-action-strip__meta,
.about-action-strip__meta {
	align-items: center;
	display: flex;
	flex-wrap: wrap;
	gap: 10px 14px;
	margin: 16px 0 0;
}

.contact-action-strip__remote {
	background: var(--white);
	border: 1px solid var(--border-strong);
	border-radius: 999px;
	color: var(--navy);
	display: inline-block;
	font-size: 0.85rem;
	font-weight: 600;
	padding: 7px 16px;
	text-decoration: none;
	transition: background-color 0.15s ease, border-color 0.15s ease;
}

.contact-action-strip__remote:hover {
	background: var(--pale-blue);
	border-color: var(--brand-cyan);
}

.contact-action-strip__remote:focus-visible {
	outline: 3px solid var(--blue);
	outline-offset: 2px;
}

.contact-action-strip__availability,
.about-action-strip__availability {
	color: var(--text-muted);
	font-size: 0.92rem;
}

.contact-form-section {
	background: var(--bg-soft);
	padding-block: clamp(56px, 8vw, 96px);
}

.contact-form-layout {
	margin-inline: auto;
	max-width: 760px;
}

.contact-form-section__note {
	color: var(--navy);
	font-size: 0.95rem;
	font-weight: 600;
}

.contact-form-card {
	background: var(--white);
	border: 1px solid var(--border);
	border-radius: var(--radius-lg);
	box-shadow: var(--shadow-card);
	padding: clamp(24px, 4vw, 40px);
}

.contact-form-fallback {
	color: var(--text-muted);
	font-size: 1.05rem;
	margin: 0;
	text-align: center;
}

/* Gravity Forms intake form styling, scoped to .tts-contact-form so any
   other form embedded elsewhere later is unaffected.

   Spacing below is intentionally tightened for perceived form length.
   Actual field removal/reordering should be handled in Gravity Forms
   admin or via a revised import file, not hidden with theme CSS. */
.tts-contact-form .gform_wrapper {
	margin: 0;
}

.tts-contact-form .gform_heading {
	margin-bottom: 16px;
}

.tts-contact-form .gform_title {
	color: var(--ink);
	font-size: 1.3rem;
}

.tts-contact-form .gform_description {
	color: var(--text-muted);
}

.tts-contact-form .gform_fields {
	display: grid;
	gap: 16px;
	grid-template-columns: 1fr;
	list-style: none;
	margin: 0;
	padding: 0;
}

.tts-contact-form .gfield {
	list-style: none;
}

/* Main field question labels: kept identical across field types (text,
   phone, select, textarea, file upload, complex-field intro labels) so
   no single field reads as more or less important than another. */
.tts-contact-form .gfield > .gfield_label,
.tts-contact-form .gfield legend.gfield_label,
.tts-contact-form .gfield_label.gform-field-label,
.tts-contact-form .gfield_label_before_complex,
.tts-contact-form label.gfield_label,
.tts-contact-form legend.gfield_label,
.tts-contact-form .gform-field-label {
	color: var(--ink);
	display: block;
	font-size: 0.95rem;
	font-weight: 700;
	line-height: 1.3;
	margin-bottom: 8px;
}

/* Newer Gravity Forms markup sets this modifier on labels that sit inline
   next to their input (for example a single consent checkbox); keep those
   readable without matching the weight of a main field question. */
.tts-contact-form .gform-field-label--type-inline {
	display: inline;
	font-weight: 600;
	margin-bottom: 0;
}

.tts-contact-form .gfield_required {
	color: var(--coral-hover);
	margin-left: 3px;
}

.tts-contact-form .gfield_description,
.tts-contact-form .instruction {
	color: var(--text-muted);
	font-size: 0.88rem;
	line-height: 1.35;
	margin-top: 4px;
}

.tts-contact-form .ginput_container {
	margin-top: 0;
}

/* Sub-field labels, such as First/Last Name or Address rows. Readable but
   deliberately lighter than a main field question so the hierarchy scans. */
.tts-contact-form .ginput_container label {
	color: var(--ink);
	display: block;
	font-size: 0.85rem;
	font-weight: 600;
	margin-bottom: 4px;
}

.tts-contact-form input[type="text"],
.tts-contact-form input[type="email"],
.tts-contact-form input[type="tel"],
.tts-contact-form input[type="number"],
.tts-contact-form input[type="url"],
.tts-contact-form select,
.tts-contact-form textarea {
	background: var(--white);
	border: 1px solid var(--border-strong);
	border-radius: var(--radius-md);
	color: var(--ink);
	font-family: var(--font-body);
	font-size: 1rem;
	padding: 12px 14px;
	width: 100%;
}

.tts-contact-form textarea {
	min-height: 130px;
	resize: vertical;
}

.tts-contact-form input:focus-visible,
.tts-contact-form select:focus-visible,
.tts-contact-form textarea:focus-visible {
	border-color: var(--brand-cyan);
	outline: 3px solid var(--blue);
	outline-offset: 2px;
}

/* Radio / checkbox choices */
.tts-contact-form .gfield_radio,
.tts-contact-form .gfield_checkbox {
	display: grid;
	gap: 8px;
	list-style: none;
	margin: 0;
	padding: 0;
}

.tts-contact-form .gchoice {
	align-items: center;
	background: var(--bg-soft);
	border: 1px solid var(--border);
	border-radius: var(--radius-md);
	display: flex;
	gap: 10px;
	list-style: none;
	padding: 10px 14px;
	transition: background-color 0.15s ease, border-color 0.15s ease, box-shadow 0.15s ease;
}

/* Hover/focus highlight so options are easier to notice, without making
   the form loud: a light blue tint and a slightly stronger border. */
.tts-contact-form .gchoice:hover {
	background: var(--pale-blue);
	border-color: var(--brand-cyan);
}

.tts-contact-form .gchoice:focus-within {
	border-color: var(--brand-cyan);
	box-shadow: 0 0 0 3px var(--pale-blue);
}

/* Checked state: a left accent stripe makes the selected option clearly
   more noticeable than a hover. `:has()` gives the whole choice the
   treatment in current browsers; the `input:checked + label` fallback
   keeps the label itself readable in browsers without `:has()` support. */
.tts-contact-form .gchoice:has(input:checked) {
	background: var(--pale-blue);
	border-color: var(--brand-cyan);
	box-shadow: inset 3px 0 0 var(--brand-cyan);
}

.tts-contact-form .gchoice input[type="radio"],
.tts-contact-form .gchoice input[type="checkbox"] {
	flex-shrink: 0;
	height: 20px;
	width: 20px;
}

.tts-contact-form .gchoice label {
	color: var(--ink);
	font-size: 0.95rem;
	font-weight: 600;
}

.tts-contact-form .gchoice input:checked + label {
	color: var(--navy);
	font-weight: 700;
}

/* File upload */
.tts-contact-form .ginput_container_fileupload {
	background: var(--bg-soft);
	border: 1px dashed var(--border-strong);
	border-radius: var(--radius-md);
	padding: 14px;
}

.tts-contact-form .ginput_container_fileupload input[type="file"] {
	font-size: 0.9rem;
	max-width: 100%;
}

/* Section headings inside a multi-part form */
.tts-contact-form .gsection {
	border-bottom: 1px solid var(--border);
	margin: 8px 0 4px;
	padding-bottom: 10px;
}

.tts-contact-form .gsection .gfield_label,
.tts-contact-form .gsection_title {
	color: var(--ink);
	font-size: 1.1rem;
	font-weight: 700;
}

.tts-contact-form .gsection_description {
	color: var(--text-muted);
	font-size: 0.9rem;
}

/* Validation */
.tts-contact-form .gfield_error input,
.tts-contact-form .gfield_error select,
.tts-contact-form .gfield_error textarea {
	border-color: var(--coral-hover);
}

.tts-contact-form .validation_message,
.tts-contact-form .gfield_validation_message {
	color: var(--coral-hover);
	font-size: 0.88rem;
	font-weight: 600;
	margin-top: 6px;
}

.tts-contact-form .gform_validation_errors {
	background: #fdeceb;
	border: 1px solid var(--coral);
	border-radius: var(--radius-md);
	color: #7a2417;
	margin-bottom: 20px;
	padding: 16px 18px;
}

.tts-contact-form .gform_validation_errors h2 {
	color: #7a2417;
	font-size: 1.05rem;
	margin: 0 0 4px;
}

/* Submit button, styled to match the site's primary button */
.tts-contact-form .gform_footer {
	margin-top: 4px;
}

.tts-contact-form .gform_button {
	background: var(--coral);
	border: 2px solid var(--coral);
	border-radius: 999px;
	color: var(--navy);
	cursor: pointer;
	font-size: 1rem;
	font-weight: 700;
	padding: 13px 30px;
	transition: background-color 0.15s ease, border-color 0.15s ease;
}

.tts-contact-form .gform_button:hover {
	background: var(--coral-hover);
	border-color: var(--coral-hover);
}

.tts-contact-form .gform_confirmation_message {
	background: var(--pale-blue);
	border: 1px solid var(--brand-cyan);
	border-radius: var(--radius-md);
	color: var(--navy);
	font-weight: 600;
	padding: 20px;
}

@media (min-width: 640px) {
	.tts-contact-form .gform_fields {
		gap: 20px;
	}
}

/* Location and directions */
.directions {
	background: var(--white);
	padding-block: clamp(56px, 8vw, 96px);
}

.directions__grid {
	display: grid;
	gap: 28px;
	grid-template-columns: 1fr;
}

@media (min-width: 900px) {
	.directions__grid {
		grid-template-columns: 1fr 1fr;
	}
}

.directions__card {
	background: var(--bg-soft);
	border: 1px solid var(--border);
	border-radius: var(--radius-lg);
	padding: clamp(24px, 4vw, 36px);
}

.directions__label {
	color: var(--ink);
	font-weight: 700;
	margin: 0 0 4px;
}

.directions__address {
	color: var(--text);
	font-size: 1rem;
	font-style: normal;
	line-height: 1.5;
	margin: 0 0 16px;
}

.directions__availability {
	color: var(--navy);
	font-weight: 600;
	margin: 0 0 20px;
}

.directions__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-bottom: 16px;
}

.directions__note {
	color: var(--text-muted);
	font-size: 0.9rem;
	margin: 0 0 16px;
}

.directions__note:last-child {
	margin-bottom: 0;
}

.directions__note--appointment {
	font-weight: 600;
}

.directions__links {
	color: var(--text-muted);
	font-size: 0.9rem;
	margin: 0 0 16px;
}

.directions__map {
	height: 100%;
	min-height: 240px;
}

.directions__map-frame {
	background: var(--bg-soft);
	border: 1px solid var(--border);
	border-radius: var(--radius-lg);
	height: 100%;
	min-height: 240px;
	overflow: hidden;
	position: relative;
}

.directions__map-frame iframe {
	border: 0;
	display: block;
	height: 100%;
	min-height: 320px;
	width: 100%;
}

/* Other ways to get help: compact clickable cards */
.help-options {
	background: var(--bg-soft);
	padding-block: clamp(48px, 7vw, 80px);
}

.help-options__grid {
	display: grid;
	gap: 20px;
	grid-template-columns: 1fr;
}

@media (min-width: 700px) {
	.help-options__grid {
		grid-template-columns: repeat(3, 1fr);
	}
}

.help-card {
	background: var(--white);
	border: 1px solid var(--border);
	border-radius: var(--radius-md);
	box-shadow: var(--shadow-card);
	color: inherit;
	display: flex;
	flex-direction: column;
	gap: 10px;
	padding: 22px;
	text-decoration: none;
	transition: border-color 0.15s ease, box-shadow 0.15s ease, transform 0.15s ease;
}

.help-card:hover,
.help-card:focus-visible {
	border-color: var(--brand-cyan);
	box-shadow: var(--shadow-card-hover);
	transform: translateY(-2px);
}

.help-card h3 {
	font-size: 1.05rem;
	margin: 0;
}

.help-card p {
	color: var(--text-muted);
	font-size: 0.92rem;
	margin: 0;
}

/* Service area: plain badge chips, reusing the .badge component */
.service-area {
	background: var(--white);
	border-top: 1px solid var(--border);
	padding-block: clamp(48px, 7vw, 80px);
}

.service-area__list {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	justify-content: center;
	list-style: none;
	margin: 0 0 16px;
	padding: 0;
}

.service-area__list li {
	list-style: none;
}

.service-area__note {
	color: var(--text-muted);
	font-size: 0.9rem;
	margin: 0 auto;
	max-width: 560px;
	text-align: center;
}

/* Reviews page
   ------------------------------------------------------------------ */

/* Portrait source photo in a short banner: bias toward the laptop screen
   rather than the desk or wall above/below it. */
.inner-masthead__image--reviews {
	object-position: center 34%;
}

/* Trust highlight cards: same card look as .problem-card, sized for exactly
   four cards instead of the general 3-column problems grid. The About page's
   trust grid shares the same layout. */
.reviews-summary {
	background: var(--white);
	padding-block: clamp(56px, 8vw, 96px);
}

.reviews-summary__grid,
.about-trust__grid {
	display: grid;
	gap: 20px;
	grid-template-columns: 1fr;
}

@media (min-width: 700px) {
	.reviews-summary__grid,
	.about-trust__grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (min-width: 1100px) {
	.reviews-summary__grid,
	.about-trust__grid {
		grid-template-columns: repeat(4, 1fr);
	}
}

#reviews-list {
	background: var(--bg-soft);
	padding-block: clamp(56px, 8vw, 96px);
}

.reviews-filter {
	margin: 0 auto;
	max-width: 900px;
}

.reviews-filter__controls {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	justify-content: center;
}

.reviews-filter__button {
	background: var(--white);
	border: 2px solid var(--border-strong);
	border-radius: 999px;
	color: var(--navy);
	cursor: pointer;
	font-size: 0.88rem;
	font-weight: 600;
	padding: 8px 16px;
	transition: background-color 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}

.reviews-filter__button:hover {
	background: var(--pale-blue);
	border-color: var(--brand-cyan);
}

.reviews-filter__button:focus-visible {
	outline: 3px solid var(--blue);
	outline-offset: 2px;
}

.reviews-filter__button[aria-pressed="true"] {
	background: var(--navy);
	border-color: var(--navy);
	color: var(--white);
}

.reviews-filter__button[aria-pressed="true"]:hover {
	background: var(--navy);
}

.reviews-search {
	align-items: center;
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	justify-content: center;
	margin: 18px auto 0;
	max-width: 460px;
}

.reviews-search__input {
	background: var(--white);
	border: 1px solid var(--border-strong);
	border-radius: 999px;
	color: var(--ink);
	flex: 1 1 220px;
	font-family: var(--font-body);
	font-size: 0.95rem;
	padding: 10px 18px;
}

.reviews-search__input:focus-visible {
	border-color: var(--brand-cyan);
	outline: 3px solid var(--blue);
	outline-offset: 2px;
}

/* Deliberately quieter than the filter pills above so it reads as a
   secondary action, but still easy to find next to the search input. */
.reviews-filter__reset {
	background: transparent;
	border: 1px solid transparent;
	border-radius: 999px;
	color: var(--text-muted);
	cursor: pointer;
	flex: 0 0 auto;
	font-size: 0.85rem;
	font-weight: 600;
	padding: 8px 14px;
	text-decoration: underline;
	text-underline-offset: 3px;
	transition: background-color 0.15s ease, color 0.15s ease;
	white-space: nowrap;
}

.reviews-filter__reset:hover {
	background: var(--pale-blue);
	color: var(--navy);
}

.reviews-filter__reset:focus-visible {
	outline: 3px solid var(--blue);
	outline-offset: 2px;
}

.reviews-filter__count {
	color: var(--text-muted);
	font-size: 0.9rem;
	margin: 18px 0 24px;
	text-align: center;
}

.reviews-grid {
	display: grid;
	gap: 20px;
	grid-template-columns: 1fr;
}

@media (min-width: 700px) {
	.reviews-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (min-width: 1000px) {
	.reviews-grid {
		grid-template-columns: repeat(3, 1fr);
	}
}

.review-card {
	background: var(--white);
	border: 1px solid var(--border);
	border-radius: var(--radius-lg);
	box-shadow: var(--shadow-card);
	display: flex;
	flex-direction: column;
	gap: 10px;
	padding: 22px;
}

/* `.review-card` sets `display: flex` as an author style, which beats the
   browser's default `[hidden] { display: none }` UA rule on cascade
   origin even when specificity ties. Force both the `hidden` attribute
   and the `.is-hidden` class (toggled by reviews-filter.js) to actually
   hide the card. */
.review-card.is-hidden,
.reviews-grid [hidden] {
	display: none !important;
}

.review-card__meta {
	align-items: baseline;
	display: flex;
	flex-wrap: wrap;
	gap: 4px 10px;
	justify-content: space-between;
}

.review-card__name {
	color: var(--ink);
	font-weight: 700;
}

.review-card__date {
	color: var(--text-muted);
	font-size: 0.82rem;
}

/* Five-star row under the name/date line. Same star glyph as the Google
   review buttons, sized to stay subordinate to the review text. */
.review-card__stars {
	color: var(--brand-cyan);
	display: flex;
	gap: 2px;
}

.review-card__stars svg {
	height: 15px;
	width: 15px;
}

.review-card__text {
	color: var(--text);
	font-size: 0.95rem;
	line-height: 1.55;
	margin: 0;
}

.review-card__text--empty {
	color: var(--text-muted);
	font-style: italic;
}

.review-card__tags {
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
	margin-top: auto;
	padding-top: 4px;
}

.review-tag {
	background: var(--pale-blue);
	border-radius: 999px;
	color: var(--blue);
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.02em;
	padding: 4px 10px;
}

.review-card__source {
	color: var(--text-muted);
	font-size: 0.78rem;
	margin: 0;
}

.reviews-empty {
	background: var(--white);
	border: 1px dashed var(--border-strong);
	border-radius: var(--radius-md);
	color: var(--text-muted);
	margin-top: 24px;
	padding: 28px;
	text-align: center;
}

/* Common themes: reuse the pill-chip look from the Computer Repair page's
   "common repairs handled" band (.repair-list__items). */
.reviews-themes {
	background: var(--white);
	border-top: 1px solid var(--border);
	padding-block: clamp(48px, 7vw, 80px);
}

.reviews-themes__list {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	justify-content: center;
	list-style: none;
	margin: 0 auto;
	max-width: 840px;
	padding: 0;
}

.reviews-themes__list li {
	background: var(--bg-soft);
	border: 1px solid var(--border-strong);
	border-radius: 999px;
	color: var(--navy);
	font-size: 0.92rem;
	font-weight: 600;
	list-style: none;
	padding: 8px 16px;
}

/* Leave-a-review CTA: quiet mid-page band between the themes and FAQ. */
.reviews-cta {
	background: var(--pale-blue);
	padding-block: clamp(48px, 7vw, 80px);
}

.reviews-cta__inner {
	margin-inline: auto;
	max-width: 640px;
	text-align: center;
}

.reviews-cta__inner p {
	color: var(--text-muted);
	font-size: 1.05rem;
}

.reviews-cta__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
	justify-content: center;
	margin-top: 24px;
}

/* About page
   ------------------------------------------------------------------ */

/* About banner: repaired laptop working on the bench; bias the crop toward
   the screen in the upper-middle of the source photo. */
.inner-masthead__image--about {
	object-position: center 42%;
}

/* Meet Tyler: story text beside the portrait/trust column. */
.about-story {
	background: var(--white);
	padding-block: clamp(56px, 8vw, 96px);
}

.about-story__grid {
	align-items: start;
	display: grid;
	gap: 40px;
	grid-template-columns: 1fr;
}

@media (min-width: 900px) {
	.about-story__grid {
		grid-template-columns: 1.15fr 0.85fr;
	}
}

.about-story__body p {
	font-size: 1.05rem;
}

.about-story__aside {
	display: grid;
	gap: 20px;
}

/* Portrait card for the (temporary) headshot beside the story text. */
.about-portrait-card {
	background: var(--bg-soft);
	border: 1px solid var(--border);
	border-radius: var(--radius-md);
	box-shadow: var(--shadow-card);
	margin: 0;
	overflow: hidden;
}

.about-portrait-card img,
.about-portrait-card .media-placeholder {
	aspect-ratio: 6 / 7;
	display: block;
	object-fit: cover;
	width: 100%;
}

/* Compact "direct local help" checklist beside the story text. */
.about-trust-list {
	background: var(--white);
	border: 1px solid var(--border);
	border-radius: var(--radius-md);
	box-shadow: var(--shadow-card);
	padding: 22px;
}

.about-trust-list h3 {
	font-size: 1.05rem;
	margin: 0 0 12px;
}

.about-trust-list ul {
	display: grid;
	gap: 8px;
	list-style: none;
	margin: 0;
	padding: 0;
}

.about-trust-list li {
	font-size: 0.95rem;
	padding-left: 26px;
	position: relative;
}

.about-trust-list li::before {
	color: var(--blue);
	content: "\2713";
	font-weight: 800;
	left: 0;
	position: absolute;
}

/* Rebrand story: text beside a small history photo. */
.about-rebrand {
	background: var(--bg-soft);
	padding-block: clamp(56px, 8vw, 96px);
}

.about-rebrand__grid {
	align-items: center;
	display: grid;
	gap: 40px;
	grid-template-columns: 1fr;
}

@media (min-width: 900px) {
	.about-rebrand__grid {
		grid-template-columns: 1.15fr 0.85fr;
	}
}

.about-rebrand__body p {
	font-size: 1.05rem;
}

.about-rebrand__callout {
	background: var(--pale-blue);
	border-left: 4px solid var(--blue);
	border-radius: var(--radius-md);
	color: var(--navy);
	font-weight: 700;
	padding: 14px 18px;
}

/* Keep the old Assure sign photo modest: landscape crop biased toward the
   window sign in the upper part of the portrait source photo. */
.about-rebrand__media img,
.about-rebrand__media .media-placeholder {
	aspect-ratio: 4 / 3;
	border-radius: var(--radius-photo);
	box-shadow: var(--shadow-photo);
	object-fit: cover;
	object-position: center 30%;
	width: 100%;
}

/* Real work photo strip: three compact proof cards. */
.about-proof {
	background: var(--white);
	padding-block: clamp(56px, 8vw, 96px);
}

.about-proof-grid {
	display: grid;
	gap: 20px;
	grid-template-columns: 1fr;
}

@media (min-width: 700px) {
	.about-proof-grid {
		grid-template-columns: repeat(3, 1fr);
	}
}

.about-proof-card {
	background: var(--white);
	border: 1px solid var(--border);
	border-radius: var(--radius-md);
	box-shadow: var(--shadow-card);
	display: flex;
	flex-direction: column;
	overflow: hidden;
}

.about-proof-card__media img,
.about-proof-card__media .media-placeholder {
	aspect-ratio: 4 / 3;
	display: block;
	object-fit: cover;
	width: 100%;
}

.about-proof-card__body {
	display: flex;
	flex-direction: column;
	gap: 8px;
	padding: 20px 22px 22px;
}

.about-proof-card__body h3 {
	font-size: 1.05rem;
	margin: 0;
}

.about-proof-card__body p {
	color: var(--text-muted);
	font-size: 0.92rem;
	margin: 0;
}

/* The shared .process band is white; alternate it on the About page. */
.about-process {
	background: var(--bg-soft);
}

/* "Who I help" reuses the homepage path cards on a white band. */
.about-service-cards {
	background: var(--white);
}

/* Why customers trust Tyler: four problem-cards on a soft band. */
.about-trust {
	background: var(--bg-soft);
	padding-block: clamp(56px, 8vw, 96px);
}

.about-trust__cta {
	margin-top: 32px;
	text-align: center;
}

/* Button row under the service-area badges. */
.about-service-area__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
	justify-content: center;
	margin-top: 24px;
}

/* ------------------------------------------------------------------ */
/* Legal pages (Privacy Policy, Terms of Service). The masthead reuses
   the inner-masthead treatment without a photo, and the body is a
   readable policy column with a sticky table of contents on desktop. */

.inner-masthead--legal .inner-masthead__content {
	justify-content: center;
	min-height: 0;
	padding-block: 34px 38px;
}

/* "Last updated" line under the legal page title. */
.legal-updated {
	color: rgba(234, 247, 255, 0.75);
	font-size: 0.85rem;
	font-weight: 600;
	margin: 12px 0 0;
}

.legal-page__body {
	padding-block: clamp(40px, 6vw, 64px) clamp(56px, 8vw, 88px);
}

.legal-layout {
	display: grid;
	gap: 36px;
}

@media (min-width: 1000px) {
	.legal-layout {
		align-items: start;
		gap: 56px;
		grid-template-columns: 264px minmax(0, 1fr);
	}
}

/* Table of contents: numbered jump links; sticky beside the policy text
   on desktop, a compact card above it on phones. */
.legal-toc {
	background: var(--bg-soft);
	border: 1px solid var(--border);
	border-radius: var(--radius-md);
	padding: 20px 22px;
}

@media (min-width: 1000px) {
	.legal-toc {
		max-height: calc(100vh - 120px);
		overflow-y: auto;
		position: sticky;
		top: 96px;
	}
}

.legal-toc__heading {
	color: var(--ink);
	font-size: 0.8rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	margin: 0 0 12px;
	text-transform: uppercase;
}

.legal-toc ol {
	counter-reset: legal-toc;
	display: grid;
	gap: 7px;
	list-style: none;
	margin: 0;
	padding: 0;
}

.legal-toc li {
	counter-increment: legal-toc;
	font-size: 0.9rem;
	line-height: 1.4;
}

.legal-toc li::before {
	color: var(--text-muted);
	content: counter(legal-toc) ".";
	font-variant-numeric: tabular-nums;
	margin-right: 7px;
}

.legal-toc a {
	color: var(--text);
	text-decoration: none;
}

.legal-toc a:hover,
.legal-toc a:focus-visible {
	color: var(--blue);
	text-decoration: underline;
}

/* Policy text column: capped for comfortable line length. */
.legal-content {
	max-width: 760px;
}

.legal-content__lead {
	color: var(--text-muted);
	font-size: 1.08rem;
	line-height: 1.6;
	margin: 0;
}

.legal-section {
	border-top: 1px solid var(--border);
	margin-top: 34px;
	padding-top: 30px;
}

/* Policy headings stay quieter than marketing-section headings. */
.legal-section h2 {
	font-size: 1.45rem;
	line-height: 1.2;
	margin-bottom: 14px;
}

.legal-section h3 {
	font-size: 1.02rem;
	margin: 20px 0 8px;
}

.legal-section ul {
	display: grid;
	gap: 7px;
	list-style: disc;
	margin: 0 0 16px;
	padding-left: 22px;
}

.legal-section > :last-child {
	margin-bottom: 0;
}

/* Callout card for the sections customers most need to notice
   (SMS consent, data loss, warranty). */
.legal-callout {
	background: var(--pale-blue);
	border: 1px solid var(--border-strong);
	border-left: 4px solid var(--brand-cyan);
	border-radius: var(--radius-md);
	margin: 20px 0 16px;
	padding: 18px 20px;
}

.legal-callout__label {
	color: var(--navy);
	font-size: 0.78rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	margin: 0 0 8px;
	text-transform: uppercase;
}

.legal-callout p:last-child,
.legal-callout ul:last-child {
	margin-bottom: 0;
}

/* Business identity block in the final Contact section. */
.legal-contact-card {
	background: var(--bg-soft);
	border: 1px solid var(--border);
	border-radius: var(--radius-md);
	margin-top: 16px;
	padding: 22px 24px;
}

.legal-contact-card p {
	margin: 0 0 6px;
}

.legal-contact-card p:last-child {
	margin-bottom: 0;
}

.legal-contact-card address {
	font-style: normal;
	margin: 0 0 10px;
}

/* Quiet fine print under the contact form: agreement + SMS consent note. */
.contact-form-legal {
	border-top: 1px solid var(--border);
	color: var(--text-muted);
	font-size: 0.85rem;
	line-height: 1.55;
	margin-top: 26px;
	padding-top: 16px;
}

.contact-form-legal p {
	margin: 0 0 8px;
}

.contact-form-legal p:last-child {
	margin-bottom: 0;
}

/* Sticky bottom utility bar (Directions + back to top).
   Mobile: full-width navy bar. Desktop (≥1000px): compact floating pill
   in the bottom-right corner instead of a full-width strip. */
body {
	padding-bottom: var(--utility-bar-height);
}

.utility-bar {
	align-items: center;
	background: var(--navy);
	border-top: 1px solid rgba(215, 230, 242, 0.16);
	bottom: 0;
	box-shadow: 0 -6px 20px rgba(8, 17, 31, 0.22);
	display: flex;
	height: var(--utility-bar-height);
	left: 0;
	position: fixed;
	right: 0;
	z-index: 90;
}

.utility-bar__inner {
	align-items: center;
	display: flex;
	justify-content: space-between;
	gap: 12px;
}

.utility-bar__directions,
.utility-bar__top {
	align-items: center;
	border: 1px solid rgba(215, 230, 242, 0.45);
	border-radius: 999px;
	color: #eaf4fb;
	display: inline-flex;
	justify-content: center;
	text-decoration: none;
	transition: background-color 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}

/* Directions is the primary action of the bar, so it takes the coral
   button treatment; back-to-top stays a quieter outlined circle. */
.utility-bar__directions {
	background: var(--coral);
	border-color: var(--coral);
	color: var(--navy);
	font-size: 0.95rem;
	font-weight: 700;
	gap: 8px;
	min-height: 44px;
	padding: 8px 18px;
}

.utility-bar__directions:hover {
	background: var(--coral-hover);
	border-color: var(--coral-hover);
	color: var(--navy);
}

.utility-bar__top {
	background: rgba(234, 244, 251, 0.1);
	border-color: rgba(215, 230, 242, 0.6);
	height: 44px;
	width: 44px;
}

.utility-bar__top:hover {
	background: var(--white);
	border-color: var(--white);
	color: var(--navy);
}

.utility-bar__directions:focus-visible,
.utility-bar__top:focus-visible {
	outline-color: var(--brand-cyan);
}

.utility-bar__directions svg {
	height: 18px;
	width: 18px;
}

.utility-bar__top svg {
	height: 20px;
	width: 20px;
}

@media (min-width: 1000px) {
	/* Compact floating pill, bottom right. --utility-bar-height still
	   reserves the space it can overlap (pill + bottom offset) so the
	   footer and anchor targets clear it. */
	.utility-bar {
		border: 1px solid rgba(215, 230, 242, 0.28);
		border-radius: 999px;
		bottom: 18px;
		box-shadow: 0 4px 10px rgba(8, 17, 31, 0.25), 0 14px 32px rgba(8, 17, 31, 0.35);
		height: auto;
		left: auto;
		padding: 6px;
		right: 24px;
	}

	/* Undo the .site-container sizing inside the pill. */
	.utility-bar__inner {
		gap: 8px;
		margin: 0;
		max-width: none;
		padding-inline: 0;
		width: auto;
	}

	.utility-bar__directions {
		font-size: 0.9rem;
		min-height: 40px;
		padding: 6px 18px;
	}

	.utility-bar__top {
		height: 40px;
		width: 40px;
	}

	.utility-bar__top svg {
		height: 18px;
		width: 18px;
	}
}

/* Directions modal */
.tts-modal {
	align-items: center;
	display: flex;
	inset: 0;
	justify-content: center;
	padding: 20px;
	position: fixed;
	z-index: 1000;
}

.tts-modal[hidden] {
	display: none;
}

.tts-modal__backdrop {
	background: rgba(8, 17, 31, 0.65);
	inset: 0;
	position: absolute;
}

.tts-modal__dialog {
	background: var(--white);
	border-radius: var(--radius-lg);
	box-shadow: var(--shadow-photo);
	max-height: calc(100dvh - 40px);
	max-width: 460px;
	overflow-y: auto;
	padding: 28px 24px 22px;
	position: relative;
	width: 100%;
}

.tts-modal__title {
	font-size: 1.5rem;
	margin: 0 44px 12px 0;
}

.tts-modal__question {
	color: var(--ink);
	font-weight: 700;
}

.tts-modal__actions {
	display: flex;
	flex-direction: column;
	gap: 10px;
	margin: 18px 0 20px;
}

.tts-modal__tertiary {
	color: var(--blue);
	font-weight: 700;
	padding: 6px;
	text-align: center;
}

.tts-modal__close {
	align-items: center;
	background: var(--bg-soft);
	border: 1px solid var(--border);
	border-radius: 999px;
	color: var(--navy);
	cursor: pointer;
	display: inline-flex;
	height: 40px;
	justify-content: center;
	position: absolute;
	right: 14px;
	top: 14px;
	width: 40px;
}

.tts-modal__close:hover {
	background: var(--border);
}

.tts-modal__close svg {
	height: 16px;
	width: 16px;
}

.tts-modal__meta {
	border-top: 1px solid var(--border);
	color: var(--text-muted);
	font-size: 0.85rem;
	line-height: 1.55;
	margin: 0;
	padding-top: 14px;
}

body.has-open-modal {
	overflow: hidden;
}
