/*
 * Main stylesheet — loaded without blocking render.
 *
 * Everything below the hero. Tokens and the header/hero live in critical.css.
 *
 * Prefix: tc-
 */

/* ------------------------------------------------------- section furniture */

.tc-sectionhead {
	max-width: var(--tc-max-narrow);
	margin: 0 auto clamp(2.25rem, 5vw, 3.5rem);
	text-align: center;
}

.tc-sectionhead--left {
	margin-inline: 0;
	text-align: start;
}

.tc-sectionhead__title {
	margin-bottom: 0.4em;
}

.tc-sectionhead__intro {
	margin: 0;
	font-size: 1.075rem;
	color: var(--tc-text-muted);
}

.tc-section--alt {
	background: linear-gradient(180deg, var(--tc-bg), var(--tc-bg-2) 22%, var(--tc-bg-2) 78%, var(--tc-bg));
}

.tc-section--tint {
	background:
		radial-gradient(70% 60% at 50% 0%, var(--tc-tint-2) 0%, transparent 70%),
		var(--tc-bg);
}

/* --------------------------------------------------------------- reveal fx */

.tc-js .tc-reveal {
	opacity: 0;
	transform: translateY(22px);
	transition: opacity 620ms var(--tc-ease), transform 620ms var(--tc-ease);
}

.tc-js .tc-reveal.is-in {
	opacity: 1;
	transform: none;
}

@media (prefers-reduced-motion: reduce) {
	.tc-js .tc-reveal {
		opacity: 1;
		transform: none;
		transition: none;
	}

	html {
		scroll-behavior: auto;
	}

	.tc-btn:hover {
		transform: none;
	}
}

/* ------------------------------------------------------------- trust strip */

.tc-facts {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 1px;
	margin: 0;
	padding: 0;
	list-style: none;
	background: var(--tc-border);
	border-block: 1px solid var(--tc-border);
	overflow: hidden;
}

.tc-facts li {
	display: grid;
	gap: 0.15rem;
	padding: clamp(1.25rem, 3vw, 2rem) 1rem;
	background: var(--tc-bg);
	text-align: center;
}

.tc-facts__value {
	font-family: var(--tc-font-display);
	font-size: clamp(1.7rem, 1.2rem + 1.8vw, 2.6rem);
	font-weight: 900;
	line-height: 1;
	letter-spacing: -0.03em;
	background: linear-gradient(120deg, var(--tc-primary), color-mix(in srgb, var(--tc-deep) 65%, #ffffff));
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
}

.tc-facts__label {
	font-size: 0.83rem;
	font-weight: 650;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: var(--tc-text-dim);
}

@media (min-width: 760px) {
	.tc-facts {
		grid-template-columns: repeat(4, minmax(0, 1fr));
	}
}

/* ---------------------------------------------------------------- services */

.tc-services {
	display: grid;
	gap: 1.15rem;
	grid-template-columns: repeat(auto-fit, minmax(min(100%, 270px), 1fr));
}

.tc-service {
	position: relative;
	display: flex;
	flex-direction: column;
	overflow: hidden;
	border: 1px solid var(--tc-border);
	border-radius: var(--tc-r-lg);
	background: var(--tc-surface);
	backdrop-filter: blur(var(--tc-blur));
	-webkit-backdrop-filter: blur(var(--tc-blur));
	text-decoration: none;
	color: inherit;
	transition: transform var(--tc-speed) var(--tc-ease),
		border-color var(--tc-speed) var(--tc-ease),
		box-shadow var(--tc-speed) var(--tc-ease);
}

.tc-service:hover {
	transform: translateY(-4px);
	border-color: color-mix(in srgb, var(--tc-primary) 55%, transparent);
	box-shadow: var(--tc-shadow);
}

.tc-service__media {
	position: relative;
	aspect-ratio: 16 / 10;
	overflow: hidden;
	background:
		radial-gradient(90% 90% at 70% 10%, var(--tc-tint) 0%, transparent 65%),
		var(--tc-bg-3);
}

.tc-service__media img,
.tc-service__media video {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 600ms var(--tc-ease);
}

.tc-service:hover .tc-service__media img {
	transform: scale(1.05);
}

.tc-service__glyph {
	position: absolute;
	inset: 0;
	display: grid;
	place-items: center;
	color: color-mix(in srgb, var(--tc-primary) 70%, transparent);
}

.tc-service__glyph .tc-icon {
	width: 3.5rem;
	height: 3.5rem;
	stroke-width: 1.2;
}

.tc-service__body {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
	flex: 1;
	padding: 1.25rem 1.35rem 1.4rem;
}

.tc-service__title {
	display: flex;
	align-items: center;
	gap: 0.6rem;
	margin: 0;
	font-size: 1.2rem;
}

.tc-service__title .tc-icon {
	width: 1.35rem;
	height: 1.35rem;
	color: var(--tc-primary);
}

.tc-service__desc {
	margin: 0;
	font-size: 0.95rem;
	color: var(--tc-text-muted);
}

.tc-service__meta {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 0.5rem;
	margin-top: auto;
	padding-top: 0.9rem;
}

.tc-chip {
	display: inline-flex;
	align-items: center;
	gap: 0.35rem;
	padding: 0.25rem 0.7rem;
	border: 1px solid var(--tc-border);
	border-radius: var(--tc-r-pill);
	font-size: 0.78rem;
	font-weight: 700;
	color: var(--tc-text-muted);
	white-space: nowrap;
}

.tc-chip--price {
	border-color: color-mix(in srgb, var(--tc-primary) 45%, transparent);
	background: var(--tc-tint-2);
	color: var(--tc-primary);
}

.tc-service__go {
	display: inline-flex;
	align-items: center;
	gap: 0.35rem;
	margin-inline-start: auto;
	font-size: 0.88rem;
	font-weight: 750;
	color: var(--tc-primary);
}

.tc-service__go .tc-icon {
	width: 1rem;
	height: 1rem;
	transition: transform var(--tc-speed) var(--tc-ease);
}

.tc-service:hover .tc-service__go .tc-icon {
	transform: translateX(4px);
}

/* ----------------------------------------------------------------- pricing */

.tc-pricing__controls {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 1rem;
	margin-bottom: 2.25rem;
}

.tc-switch {
	display: inline-flex;
	padding: 0.3rem;
	border: 1px solid var(--tc-border);
	border-radius: var(--tc-r-pill);
	background: var(--tc-surface);
	gap: 0.2rem;
}

.tc-switch button {
	padding: 0.55rem 1.15rem;
	border: 0;
	border-radius: var(--tc-r-pill);
	background: transparent;
	color: var(--tc-text-muted);
	font: inherit;
	font-weight: 700;
	font-size: 0.92rem;
	cursor: pointer;
	white-space: nowrap;
	transition: background-color var(--tc-speed) var(--tc-ease),
		color var(--tc-speed) var(--tc-ease);
}

.tc-switch button[aria-selected="true"] {
	background: var(--tc-primary);
	color: var(--tc-primary-ink);
	box-shadow: 0 6px 18px var(--tc-glow);
}

.tc-switch__label {
	display: block;
	width: 100%;
	margin-bottom: 0.4rem;
	font-size: 0.78rem;
	font-weight: 800;
	letter-spacing: 0.09em;
	text-transform: uppercase;
	color: var(--tc-text-dim);
	text-align: center;
}

/* Three vehicle-size labels do not fit across a 375px phone at full size, and
   the buttons cannot wrap without the pill becoming two lines tall. Tighten
   them, and keep a scroll fallback so a longer label set can never push the
   page sideways. */
@media (max-width: 520px) {
	.tc-pricing__controls > div {
		max-width: 100%;
	}

	.tc-switch {
		max-width: 100%;
		overflow-x: auto;
		scrollbar-width: none;
		-webkit-overflow-scrolling: touch;
	}

	.tc-switch::-webkit-scrollbar {
		display: none;
	}

	.tc-switch button {
		padding: 0.5rem 0.7rem;
		font-size: 0.82rem;
	}
}

.tc-plans {
	display: grid;
	gap: 1.15rem;
	grid-template-columns: repeat(auto-fit, minmax(min(100%, 265px), 1fr));
	align-items: stretch;
}

.tc-plan {
	position: relative;
	display: flex;
	flex-direction: column;
	padding: 1.6rem 1.5rem;
	border: 1px solid var(--tc-border);
	border-radius: var(--tc-r-lg);
	background: var(--tc-surface);
	backdrop-filter: blur(var(--tc-blur));
	-webkit-backdrop-filter: blur(var(--tc-blur));
}

.tc-plan--popular {
	border-color: color-mix(in srgb, var(--tc-primary) 60%, transparent);
	background: linear-gradient(180deg, var(--tc-tint) 0%, var(--tc-surface) 42%);
	box-shadow: 0 18px 46px rgb(0 0 0 / 0.32);
}

.tc-plan__flag {
	position: absolute;
	top: -0.75rem;
	inset-inline-start: 50%;
	transform: translateX(-50%);
	padding: 0.28rem 0.85rem;
	border-radius: var(--tc-r-pill);
	background: var(--tc-primary);
	color: var(--tc-primary-ink);
	font-size: 0.7rem;
	font-weight: 900;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	white-space: nowrap;
}

.tc-plan__name {
	margin: 0 0 0.15rem;
	font-size: 1.25rem;
}

.tc-plan__note {
	margin: 0 0 1rem;
	font-size: 0.85rem;
	color: var(--tc-text-dim);
}

.tc-plan__price {
	display: flex;
	align-items: baseline;
	gap: 0.3rem;
	margin-bottom: 1.15rem;
	font-family: var(--tc-font-display);
	font-size: clamp(2.1rem, 1.6rem + 1.6vw, 2.9rem);
	font-weight: 900;
	line-height: 1;
	letter-spacing: -0.04em;
}

.tc-plan__price small {
	font-size: 0.8rem;
	font-weight: 700;
	letter-spacing: 0.04em;
	color: var(--tc-text-dim);
	text-transform: uppercase;
}

.tc-plan__features {
	display: grid;
	gap: 0.55rem;
	margin: 0 0 1.5rem;
	padding: 0;
	list-style: none;
	font-size: 0.92rem;
	color: var(--tc-text-muted);
}

.tc-plan__features li {
	display: grid;
	grid-template-columns: 1.1rem 1fr;
	gap: 0.55rem;
	align-items: start;
}

.tc-plan__features .tc-icon {
	width: 1.1rem;
	height: 1.1rem;
	margin-top: 0.22rem;
	color: var(--tc-primary);
	stroke-width: 2.4;
}

.tc-plan .tc-btn {
	margin-top: auto;
}

.tc-plan[hidden] {
	display: none;
}

.tc-pricing__note {
	max-width: var(--tc-max-narrow);
	margin: 2rem auto 0;
	font-size: 0.9rem;
	color: var(--tc-text-dim);
	text-align: center;
}

/* ----------------------------------------------------- before/after slider */

.tc-compare {
	display: grid;
	gap: 1.25rem;
	grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr));
}

.tc-ba {
	overflow: hidden;
	border: 1px solid var(--tc-border);
	border-radius: var(--tc-r-lg);
	background: var(--tc-surface);
}

.tc-ba__frame {
	position: relative;
	aspect-ratio: 4 / 3;
	overflow: hidden;
	touch-action: pan-y;
	cursor: ew-resize;
	user-select: none;
	background: var(--tc-bg-3);
}

.tc-ba__frame img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	pointer-events: none;
}

.tc-ba__after {
	clip-path: inset(0 0 0 var(--tc-ba-pos, 50%));
}

.tc-ba__tagline {
	position: absolute;
	top: 0.75rem;
	padding: 0.2rem 0.65rem;
	border-radius: var(--tc-r-pill);
	background: rgb(0 0 0 / 0.62);
	color: #fff;
	font-size: 0.68rem;
	font-weight: 800;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	backdrop-filter: blur(6px);
	-webkit-backdrop-filter: blur(6px);
	pointer-events: none;
}

.tc-ba__tagline--before {
	inset-inline-start: 0.75rem;
}

.tc-ba__tagline--after {
	inset-inline-end: 0.75rem;
	background: var(--tc-primary);
	color: var(--tc-primary-ink);
}

.tc-ba__handle {
	position: absolute;
	top: 0;
	bottom: 0;
	inset-inline-start: var(--tc-ba-pos, 50%);
	width: 3px;
	margin-inline-start: -1.5px;
	background: #fff;
	box-shadow: 0 0 0 1px rgb(0 0 0 / 0.25), 0 0 22px rgb(0 0 0 / 0.5);
	pointer-events: none;
}

.tc-ba__grip {
	position: absolute;
	top: 50%;
	inset-inline-start: 50%;
	transform: translate(-50%, -50%);
	display: grid;
	place-items: center;
	width: 46px;
	height: 46px;
	border-radius: 50%;
	background: #fff;
	color: #04121b;
	box-shadow: 0 6px 20px rgb(0 0 0 / 0.45);
}

.tc-ba__grip .tc-icon {
	width: 1.35rem;
	height: 1.35rem;
	stroke-width: 2.2;
}

/* The range input is the real control — the visual handle just follows it.
   Keeping a native input means keyboard and screen readers work for free. */
.tc-ba__range {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	margin: 0;
	opacity: 0;
	cursor: ew-resize;
	-webkit-appearance: none;
	appearance: none;
	background: transparent;
}

.tc-ba__range:focus-visible + .tc-ba__handle {
	outline: 3px solid var(--tc-primary);
	outline-offset: 2px;
}

.tc-ba__cap {
	display: grid;
	gap: 0.15rem;
	padding: 1rem 1.25rem 1.15rem;
}

.tc-ba__title {
	margin: 0;
	font-size: 1.05rem;
	font-weight: 800;
}

.tc-ba__label {
	margin: 0;
	font-size: 0.88rem;
	color: var(--tc-text-muted);
}

/* ---------------------------------------------------------------- gallery */

.tc-gallery {
	display: grid;
	gap: 0.85rem;
	grid-template-columns: repeat(auto-fill, minmax(min(100%, 250px), 1fr));
	grid-auto-rows: 220px;
}

.tc-gallery__item {
	position: relative;
	display: block;
	overflow: hidden;
	border: 1px solid var(--tc-border);
	border-radius: var(--tc-r);
	background: var(--tc-bg-3);
	padding: 0;
	cursor: zoom-in;
	color: inherit;
	text-align: start;
}

.tc-gallery__item--tall {
	grid-row: span 2;
}

.tc-gallery__item img,
.tc-gallery__item video {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 700ms var(--tc-ease);
}

.tc-gallery__item:hover img,
.tc-gallery__item:hover video {
	transform: scale(1.06);
}

.tc-gallery__badge {
	position: absolute;
	inset-block-end: 0.7rem;
	inset-inline-start: 0.7rem;
	display: inline-flex;
	align-items: center;
	gap: 0.35rem;
	padding: 0.3rem 0.7rem;
	border-radius: var(--tc-r-pill);
	background: rgb(0 0 0 / 0.6);
	color: #fff;
	font-size: 0.78rem;
	font-weight: 700;
	backdrop-filter: blur(6px);
	-webkit-backdrop-filter: blur(6px);
	pointer-events: none;
}

.tc-gallery__badge .tc-icon {
	width: 1rem;
	height: 1rem;
}

.tc-gallery__item[hidden] {
	display: none;
}

.tc-gallery__more {
	margin-top: 1.75rem;
	text-align: center;
}

/* Empty state — an honest placeholder rather than grey boxes. */
.tc-gallery__empty {
	padding: clamp(2.5rem, 6vw, 4rem);
	border: 1px dashed var(--tc-border-strong);
	border-radius: var(--tc-r-lg);
	background: var(--tc-surface);
	text-align: center;
	color: var(--tc-text-muted);
}

.tc-gallery__empty .tc-icon {
	width: 2.5rem;
	height: 2.5rem;
	margin: 0 auto 0.75rem;
	color: var(--tc-primary);
}

/* Lightbox */
/* A <dialog> is hidden by the UA rule `dialog:not([open]) { display: none }`,
   but ANY author display value beats a UA one regardless of specificity — so
   declaring `display: grid` here unconditionally left a fixed, full-viewport,
   94%-opaque panel sitting over the whole site with nothing able to close it.
   The layout is therefore scoped to [open], and the closed state is stated
   explicitly rather than relied on. */
.tc-lightbox:not([open]) {
	display: none;
}

.tc-lightbox[open] {
	position: fixed;
	inset: 0;
	z-index: 160;
	display: grid;
	place-items: center;
	padding: clamp(1rem, 4vw, 3rem);
	background: rgb(2 5 9 / 0.94);
	border: 0;
	max-width: 100%;
	max-height: 100%;
	width: 100%;
	height: 100%;
}

.tc-lightbox::backdrop {
	background: rgb(2 5 9 / 0.9);
}

.tc-lightbox__stage {
	max-width: min(1100px, 100%);
	max-height: 82vh;
}

.tc-lightbox__stage img,
.tc-lightbox__stage video {
	max-width: 100%;
	max-height: 82vh;
	width: auto;
	border-radius: var(--tc-r);
	object-fit: contain;
}

.tc-lightbox__cap {
	margin-top: 0.85rem;
	color: var(--tc-text-muted);
	text-align: center;
	font-size: 0.92rem;
}

.tc-lightbox__close {
	position: absolute;
	top: 1rem;
	inset-inline-end: 1rem;
	display: grid;
	place-items: center;
	width: 46px;
	height: 46px;
	border: 1px solid var(--tc-border-strong);
	border-radius: 50%;
	background: var(--tc-surface-2);
	color: var(--tc-text);
	cursor: pointer;
}

/* ----------------------------------------------------------------- process */

.tc-steps {
	display: grid;
	gap: 1.15rem;
	grid-template-columns: repeat(auto-fit, minmax(min(100%, 240px), 1fr));
	counter-reset: tc-step;
	margin: 0;
	padding: 0;
	list-style: none;
}

.tc-step {
	position: relative;
	padding: 1.5rem 1.4rem 1.4rem;
	border: 1px solid var(--tc-border);
	border-radius: var(--tc-r-lg);
	background: var(--tc-surface);
	counter-increment: tc-step;
}

.tc-step::before {
	content: counter(tc-step, decimal-leading-zero);
	display: block;
	margin-bottom: 0.5rem;
	font-family: var(--tc-font-display);
	font-size: 2.1rem;
	font-weight: 900;
	line-height: 1;
	letter-spacing: -0.05em;
	color: color-mix(in srgb, var(--tc-primary) 78%, transparent);
}

.tc-step h3 {
	margin: 0 0 0.35rem;
	font-size: 1.1rem;
}

.tc-step p {
	margin: 0;
	font-size: 0.93rem;
	color: var(--tc-text-muted);
}

/* --------------------------------------------------------------- why / usp */

.tc-why {
	display: grid;
	gap: 1.15rem;
	grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
}

.tc-why__item {
	display: grid;
	grid-template-columns: auto 1fr;
	gap: 1rem;
	padding: 1.4rem;
	border: 1px solid var(--tc-border);
	border-radius: var(--tc-r-lg);
	background: var(--tc-surface);
}

.tc-why__icon {
	display: grid;
	place-items: center;
	width: 46px;
	height: 46px;
	border-radius: var(--tc-r-sm);
	background: var(--tc-tint);
	color: var(--tc-primary);
}

.tc-why__item h3 {
	margin: 0 0 0.3rem;
	font-size: 1.03rem;
}

.tc-why__item p {
	margin: 0;
	font-size: 0.92rem;
	color: var(--tc-text-muted);
}

/* ---------------------------------------------------------------- reviews */

.tc-rating {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 0.75rem;
	margin-bottom: 2rem;
}

.tc-rating__score {
	font-family: var(--tc-font-display);
	font-size: 2.4rem;
	font-weight: 900;
	line-height: 1;
	letter-spacing: -0.04em;
}

.tc-rating__meta {
	font-size: 0.92rem;
	color: var(--tc-text-muted);
}

.tc-stars {
	display: inline-flex;
	gap: 0.1rem;
	color: #ffc231;
}

.tc-stars__star {
	width: 1rem;
	height: 1rem;
}

.tc-reviews {
	display: grid;
	gap: 1.15rem;
	grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
}

.tc-review {
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
	padding: 1.5rem;
	border: 1px solid var(--tc-border);
	border-radius: var(--tc-r-lg);
	background: var(--tc-surface);
}

.tc-review__text {
	margin: 0;
	font-size: 0.96rem;
	color: var(--tc-text);
}

.tc-review__who {
	display: flex;
	align-items: center;
	gap: 0.6rem;
	margin-top: auto;
	padding-top: 0.5rem;
	border-top: 1px solid var(--tc-border);
	font-size: 0.88rem;
}

.tc-review__avatar {
	display: grid;
	place-items: center;
	width: 34px;
	height: 34px;
	border-radius: 50%;
	background: var(--tc-tint);
	color: var(--tc-primary);
	font-weight: 900;
	font-size: 0.88rem;
	flex: none;
}

.tc-review__name {
	font-weight: 750;
}

.tc-review__source {
	display: inline-flex;
	align-items: center;
	gap: 0.3rem;
	margin-inline-start: auto;
	color: var(--tc-text-dim);
	font-size: 0.8rem;
}

.tc-review__source .tc-icon {
	width: 0.95rem;
	height: 0.95rem;
}

/* -------------------------------------------------------------------- faq */

.tc-faq {
	max-width: 840px;
	margin-inline: auto;
}

.tc-faq details {
	border-bottom: 1px solid var(--tc-border);
}

.tc-faq summary {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	padding: 1.2rem 0;
	font-size: 1.05rem;
	font-weight: 750;
	cursor: pointer;
	list-style: none;
}

.tc-faq summary::-webkit-details-marker {
	display: none;
}

.tc-faq summary .tc-icon {
	flex: none;
	color: var(--tc-primary);
	transition: transform var(--tc-speed) var(--tc-ease);
}

.tc-faq details[open] summary .tc-icon {
	transform: rotate(180deg);
}

.tc-faq__answer {
	padding-bottom: 1.35rem;
	margin: 0;
	color: var(--tc-text-muted);
	max-width: 68ch;
}

/* ------------------------------------------------------------- shop / map */

.tc-shop {
	display: grid;
	gap: clamp(1.5rem, 4vw, 3rem);
	align-items: center;
}

@media (min-width: 900px) {
	.tc-shop {
		grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
	}
}

.tc-shop__media {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 0.75rem;
}

.tc-shop__media img {
	width: 100%;
	height: 100%;
	aspect-ratio: 1;
	object-fit: cover;
	border-radius: var(--tc-r);
	border: 1px solid var(--tc-border);
}

.tc-shop__map {
	width: 100%;
	aspect-ratio: 16 / 10;
	border: 1px solid var(--tc-border);
	border-radius: var(--tc-r-lg);
	filter: grayscale(1) invert(0.92) hue-rotate(180deg) contrast(0.86);
}

:root[data-tc-theme="light"] .tc-shop__map {
	filter: none;
}

.tc-hours {
	display: grid;
	gap: 0.35rem;
	margin: 1.25rem 0 0;
	padding: 0;
	list-style: none;
	font-size: 0.93rem;
}

.tc-hours li {
	display: flex;
	justify-content: space-between;
	gap: 1rem;
	padding: 0.4rem 0;
	border-bottom: 1px solid var(--tc-border);
	color: var(--tc-text-muted);
}

.tc-hours li.is-today {
	color: var(--tc-text);
	font-weight: 750;
}

/* Consecutive identical days are merged into one row, so a shop open the same
   hours all week shows a single "Monday – Sunday" line. Tagging that as
   "today" says nothing and only makes the row wrap. */
.tc-hours li.is-today:not(:only-child) .tc-hours__day::after {
	content: " • today";
	color: var(--tc-primary);
	font-weight: 700;
}

.tc-hours li > span:last-child {
	white-space: nowrap;
	text-align: end;
}

.tc-address {
	display: grid;
	gap: 0.65rem;
	margin: 1.25rem 0 0;
	padding: 0;
	list-style: none;
}

.tc-address li {
	display: grid;
	grid-template-columns: 1.35rem 1fr;
	gap: 0.7rem;
	align-items: start;
	color: var(--tc-text-muted);
}

.tc-address .tc-icon {
	width: 1.35rem;
	height: 1.35rem;
	color: var(--tc-primary);
	margin-top: 0.15rem;
}

.tc-address a {
	color: inherit;
	text-decoration: none;
	font-weight: 650;
}

.tc-address a:hover {
	color: var(--tc-primary);
}

/* --------------------------------------------------------------- areas */

.tc-areas {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 0.5rem;
	margin: 0;
	padding: 0;
	list-style: none;
}

.tc-areas li {
	padding: 0.4rem 0.9rem;
	border: 1px solid var(--tc-border);
	border-radius: var(--tc-r-pill);
	background: var(--tc-surface);
	font-size: 0.87rem;
	color: var(--tc-text-muted);
}

/* ----------------------------------------------------------------- cta band */

.tc-cta {
	position: relative;
	isolation: isolate;
	overflow: hidden;
	padding-block: clamp(3.5rem, 8vw, 6rem);
	text-align: center;
}

.tc-cta::before {
	content: "";
	position: absolute;
	inset: 0;
	z-index: -1;
	background:
		radial-gradient(80% 120% at 50% 0%, color-mix(in srgb, var(--tc-primary) 26%, transparent) 0%, transparent 62%),
		linear-gradient(180deg, var(--tc-bg-2), var(--tc-bg));
}

.tc-cta__inner {
	max-width: 720px;
	margin-inline: auto;
}

.tc-cta .tc-ctarow {
	justify-content: center;
	margin-top: 1.75rem;
}

.tc-cta__phone {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	margin-top: 1.5rem;
	font-family: var(--tc-font-display);
	font-size: clamp(1.5rem, 1.2rem + 1.2vw, 2.1rem);
	font-weight: 900;
	letter-spacing: -0.03em;
	color: var(--tc-text);
	text-decoration: none;
}

.tc-cta__phone:hover {
	color: var(--tc-primary);
}

/* ------------------------------------------------------------------ footer */

.tc-footer {
	border-top: 1px solid var(--tc-border);
	background: var(--tc-bg-2);
	padding-block: clamp(2.5rem, 6vw, 4rem) 1.5rem;
	font-size: 0.93rem;
}

.tc-footer__grid {
	display: grid;
	gap: 2rem;
	grid-template-columns: repeat(auto-fit, minmax(min(100%, 220px), 1fr));
}

/* Grid items default to min-width:auto, so a nowrap wordmark refuses to shrink
   and spills over the column beside it. */
.tc-footer__grid > * {
	min-width: 0;
}

/* The header keeps the lockup on one line because it has the room. In a 220px
   footer column it has to be allowed to wrap. */
.tc-footer__brand .tc-brand {
	max-width: 100%;
}

.tc-footer__brand .tc-brand__text {
	white-space: normal;
	font-size: 1rem;
	overflow-wrap: anywhere;
}

.tc-footer h3 {
	margin: 0 0 0.85rem;
	font-size: 0.8rem;
	font-weight: 800;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--tc-text-dim);
}

.tc-footer ul {
	display: grid;
	gap: 0.5rem;
	margin: 0;
	padding: 0;
	list-style: none;
}

.tc-footer a {
	color: var(--tc-text-muted);
	text-decoration: none;
}

.tc-footer a:hover {
	color: var(--tc-primary);
}

.tc-footer__about p {
	color: var(--tc-text-muted);
	max-width: 40ch;
}

.tc-footer__brand img {
	height: calc(var(--tc-logo-h) * 1.1);
	width: auto;
	margin-bottom: 0.9rem;
}

.tc-social {
	display: flex;
	gap: 0.5rem;
	margin-top: 1rem;
}

.tc-social a {
	display: grid;
	place-items: center;
	width: 40px;
	height: 40px;
	border: 1px solid var(--tc-border);
	border-radius: var(--tc-r-sm);
	background: var(--tc-surface);
	color: var(--tc-text-muted);
	transition: color var(--tc-speed) var(--tc-ease),
		border-color var(--tc-speed) var(--tc-ease);
}

.tc-social a:hover {
	color: var(--tc-primary);
	border-color: var(--tc-primary);
}

.tc-footer__bottom {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 0.75rem;
	margin-top: 2.5rem;
	padding-top: 1.35rem;
	border-top: 1px solid var(--tc-border);
	color: var(--tc-text-dim);
	font-size: 0.84rem;
}

/* The agency credit sits last on its own line on narrow screens, so it never
   competes with the client's own copyright for the same row. */
.tc-footer__credit {
	flex-basis: 100%;
	order: 3;
	color: var(--tc-text-dim);
	font-size: 0.8rem;
}

.tc-footer__credit a {
	color: inherit;
	text-decoration: underline;
	text-underline-offset: 2px;
}

.tc-footer__credit a:hover,
.tc-footer__credit a:focus-visible {
	color: var(--tc-accent);
}

@media (min-width: 900px) {
	.tc-footer__credit {
		flex-basis: auto;
		order: 0;
	}
}

/* -------------------------------------------------------- sticky mobile bar */

.tc-sticky {
	position: fixed;
	inset-inline: 0;
	bottom: 0;
	z-index: 95;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1px;
	background: var(--tc-border);
	border-top: 1px solid var(--tc-border);
	padding-bottom: env(safe-area-inset-bottom);
	backdrop-filter: blur(var(--tc-blur));
	-webkit-backdrop-filter: blur(var(--tc-blur));
	transform: translateY(110%);
	transition: transform 320ms var(--tc-ease);
}

.tc-sticky.is-shown {
	transform: translateY(0);
}

.tc-sticky a {
	display: grid;
	place-items: center;
	gap: 0.15rem;
	padding: 0.7rem 0.4rem 0.75rem;
	background: color-mix(in srgb, var(--tc-bg-2) 94%, transparent);
	color: var(--tc-text);
	font-size: 0.76rem;
	font-weight: 750;
	text-decoration: none;
}

.tc-sticky a .tc-icon {
	width: 1.25rem;
	height: 1.25rem;
	color: var(--tc-primary);
}

.tc-sticky a.is-primary {
	background: var(--tc-primary);
	color: var(--tc-primary-ink);
}

.tc-sticky a.is-primary .tc-icon {
	color: inherit;
}

@media (min-width: 900px) {
	.tc-sticky {
		display: none;
	}
}

body.tc-has-sticky {
	padding-bottom: 74px;
}

@media (min-width: 900px) {
	body.tc-has-sticky {
		padding-bottom: 0;
	}
}

/* ----------------------------------------------------------------- booking */

.tc-booking {
	padding-block: clamp(2.5rem, 6vw, 4.5rem);
}

.tc-booking__head {
	max-width: var(--tc-max-narrow);
	margin: 0 auto clamp(1.75rem, 4vw, 2.75rem);
	text-align: center;
}

.tc-booking__assure {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 0.5rem;
	margin-top: 1.25rem;
	padding: 0;
	list-style: none;
}

.tc-booking__assure li {
	display: inline-flex;
	align-items: center;
	gap: 0.4rem;
	padding: 0.35rem 0.85rem;
	border: 1px solid var(--tc-border);
	border-radius: var(--tc-r-pill);
	background: var(--tc-surface);
	font-size: 0.84rem;
	font-weight: 650;
	color: var(--tc-text-muted);
}

.tc-booking__assure .tc-icon {
	width: 1rem;
	height: 1rem;
	color: var(--tc-primary);
}

.tc-booking__widget {
	border: 1px solid var(--tc-border);
	border-radius: var(--tc-r-lg);
	background: var(--tc-surface);
	padding: clamp(0.5rem, 2vw, 1.5rem);
	overflow-x: auto;
}

.tc-booking__fallback {
	max-width: 560px;
	margin-inline: auto;
	padding: clamp(2rem, 5vw, 3rem);
	border: 1px solid var(--tc-border);
	border-radius: var(--tc-r-lg);
	background: var(--tc-surface);
	text-align: center;
}

.tc-booking__fallback .tc-ctarow {
	justify-content: center;
	margin-top: 1.25rem;
}

.tc-booking__fallback-lead {
	font-size: 1.1rem;
	font-weight: 700;
}

.tc-booking__admin-note {
	margin: 1.5rem 0 0;
	padding-top: 1rem;
	border-top: 1px dashed var(--tc-border-strong);
	font-size: 0.85rem;
	color: var(--tc-text-dim);
}

/* ------------------------------------------------------------------- forms */

.tc-form {
	display: grid;
	gap: 1.25rem;
	max-width: 720px;
	margin-inline: auto;
	padding: clamp(1.5rem, 4vw, 2.5rem);
	border: 1px solid var(--tc-border);
	border-radius: var(--tc-r-lg);
	background: var(--tc-surface);
}

.tc-field {
	display: grid;
	gap: 0.4rem;
}

.tc-field > label,
.tc-fieldset > legend {
	font-size: 0.88rem;
	font-weight: 750;
	color: var(--tc-text);
}

.tc-field__hint {
	font-size: 0.83rem;
	color: var(--tc-text-dim);
}

.tc-input,
.tc-select,
.tc-textarea {
	width: 100%;
	padding: 0.8rem 1rem;
	border: 1px solid var(--tc-border-strong);
	border-radius: var(--tc-r-sm);
	background: var(--tc-bg-2);
	color: var(--tc-text);
	font: inherit;
	transition: border-color var(--tc-speed) var(--tc-ease),
		box-shadow var(--tc-speed) var(--tc-ease);
}

.tc-textarea {
	min-height: 120px;
	resize: vertical;
}

.tc-input:focus,
.tc-select:focus,
.tc-textarea:focus {
	outline: none;
	border-color: var(--tc-primary);
	box-shadow: 0 0 0 3px var(--tc-tint);
}

.tc-input[aria-invalid="true"],
.tc-select[aria-invalid="true"],
.tc-textarea[aria-invalid="true"] {
	border-color: #ff6b6b;
	box-shadow: 0 0 0 3px rgb(255 107 107 / 0.16);
}

.tc-error {
	display: flex;
	align-items: center;
	gap: 0.35rem;
	font-size: 0.83rem;
	font-weight: 650;
	color: #ff8f8f;
}

.tc-error:empty {
	display: none;
}

.tc-fieldset {
	display: grid;
	gap: 0.6rem;
	margin: 0;
	padding: 0;
	border: 0;
}

.tc-choices {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
}

/* One per line, for a set of options that are read rather than scanned — four
   coating levels carrying prices do not belong on a row of chips. */
.tc-choices--stack {
	flex-direction: column;
	flex-wrap: nowrap;
}

.tc-choices--stack .tc-choice,
.tc-choices--stack .tc-choice span {
	width: 100%;
}

.tc-choices--stack .tc-choice span {
	display: flex;
	align-items: baseline;
	justify-content: space-between;
	gap: 0.75rem;
}

.tc-choices--stack .tc-choice em {
	flex: none;
	color: var(--tc-accent);
	font-style: normal;
	font-weight: 700;
}

.tc-choice {
	position: relative;
}

.tc-choice input {
	position: absolute;
	opacity: 0;
	width: 0;
	height: 0;
}

.tc-choice span {
	display: inline-flex;
	align-items: center;
	gap: 0.4rem;
	padding: 0.55rem 1rem;
	border: 1px solid var(--tc-border-strong);
	border-radius: var(--tc-r-pill);
	background: var(--tc-bg-2);
	font-size: 0.9rem;
	font-weight: 650;
	color: var(--tc-text-muted);
	cursor: pointer;
	transition: all var(--tc-speed) var(--tc-ease);
}

.tc-choice input:checked + span {
	border-color: var(--tc-primary);
	background: var(--tc-tint);
	color: var(--tc-primary);
}

.tc-choice input:focus-visible + span {
	outline: 2px solid var(--tc-primary);
	outline-offset: 2px;
}

.tc-row {
	display: grid;
	gap: 1rem;
	grid-template-columns: repeat(auto-fit, minmax(min(100%, 200px), 1fr));
}

.tc-hp {
	position: absolute !important;
	left: -9999px;
	opacity: 0;
	height: 0;
	overflow: hidden;
}

.tc-formnote {
	margin: 0;
	font-size: 0.83rem;
	color: var(--tc-text-dim);
	text-align: center;
}

.tc-notice {
	display: grid;
	gap: 0.35rem;
	padding: 1rem 1.15rem;
	border: 1px solid;
	border-radius: var(--tc-r-sm);
	font-size: 0.93rem;
}

.tc-notice--error {
	border-color: rgb(255 107 107 / 0.45);
	background: rgb(255 107 107 / 0.09);
	color: #ffb1b1;
}

.tc-success {
	max-width: 620px;
	margin-inline: auto;
	padding: clamp(2rem, 5vw, 3rem);
	border: 1px solid color-mix(in srgb, var(--tc-primary) 45%, transparent);
	border-radius: var(--tc-r-lg);
	background: var(--tc-tint-2);
	text-align: center;
}

.tc-success__icon {
	display: grid;
	place-items: center;
	width: 64px;
	height: 64px;
	margin: 0 auto 1.25rem;
	border-radius: 50%;
	background: var(--tc-primary);
	color: var(--tc-primary-ink);
}

.tc-success__icon .tc-icon {
	width: 2rem;
	height: 2rem;
	stroke-width: 2.6;
}

/* -------------------------------------------------------------- page shells */

.tc-page {
	padding-block: clamp(3rem, 7vw, 5.5rem);
}

.tc-pagehead {
	padding-block: clamp(2.5rem, 6vw, 4.5rem) clamp(1.5rem, 4vw, 2.5rem);
	background:
		radial-gradient(75% 100% at 50% 0%, var(--tc-tint-2) 0%, transparent 66%),
		var(--tc-bg);
	text-align: center;
}

.tc-pagehead--media {
	position: relative;
	isolation: isolate;
	overflow: hidden;
	padding-block: clamp(4rem, 10vw, 7rem) clamp(3rem, 7vw, 5rem);
}

.tc-pagehead__media {
	position: absolute;
	inset: 0;
	z-index: -2;
}

.tc-pagehead__media img,
.tc-pagehead__media video {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.tc-pagehead__scrim {
	position: absolute;
	inset: 0;
	z-index: -1;
	background: linear-gradient(180deg, rgb(5 9 15 / 0.72), rgb(5 9 15 / 0.94));
}

.tc-crumbs {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 0.4rem;
	margin: 0 0 1rem;
	padding: 0;
	list-style: none;
	font-size: 0.85rem;
	color: var(--tc-text-dim);
}

.tc-crumbs a {
	color: var(--tc-text-muted);
	text-decoration: none;
}

.tc-crumbs a:hover {
	color: var(--tc-primary);
}

.tc-prose {
	max-width: 72ch;
	margin-inline: auto;
}

.tc-prose h2 {
	margin-top: 2em;
	font-size: clamp(1.5rem, 1.2rem + 1.2vw, 2rem);
}

.tc-prose h3 {
	margin-top: 1.6em;
}

.tc-prose ul,
.tc-prose ol {
	padding-inline-start: 1.35rem;
	color: var(--tc-text-muted);
}

.tc-prose li {
	margin-bottom: 0.45rem;
}

.tc-prose img {
	border-radius: var(--tc-r);
	margin-block: 1.5rem;
}

.tc-prose blockquote {
	margin: 1.75rem 0;
	padding: 1rem 1.35rem;
	border-inline-start: 3px solid var(--tc-primary);
	background: var(--tc-surface);
	border-radius: 0 var(--tc-r-sm) var(--tc-r-sm) 0;
	color: var(--tc-text-muted);
}

/* Service page rail */
.tc-servicelayout {
	display: grid;
	gap: clamp(2rem, 5vw, 3.5rem);
	align-items: start;
}

@media (min-width: 1000px) {
	.tc-servicelayout {
		grid-template-columns: minmax(0, 1fr) 340px;
	}
}

.tc-rail {
	display: grid;
	gap: 1rem;
	padding: 1.6rem 1.5rem;
	border: 1px solid var(--tc-border);
	border-radius: var(--tc-r-lg);
	background: var(--tc-surface);
	backdrop-filter: blur(var(--tc-blur));
	-webkit-backdrop-filter: blur(var(--tc-blur));
}

@media (min-width: 1000px) {
	.tc-rail {
		position: sticky;
		top: 96px;
	}
}

.tc-rail__price {
	font-family: var(--tc-font-display);
	font-size: 2.2rem;
	font-weight: 900;
	line-height: 1;
	letter-spacing: -0.04em;
}

.tc-rail__meta {
	display: grid;
	gap: 0.5rem;
	margin: 0;
	padding: 0;
	list-style: none;
	font-size: 0.9rem;
	color: var(--tc-text-muted);
}

.tc-rail__meta li {
	display: grid;
	grid-template-columns: 1.15rem 1fr;
	gap: 0.55rem;
	align-items: center;
}

.tc-rail__meta .tc-icon {
	width: 1.15rem;
	height: 1.15rem;
	color: var(--tc-primary);
}

.tc-otherservices {
	display: grid;
	gap: 0.4rem;
	margin: 0;
	padding: 0;
	list-style: none;
}

.tc-otherservices a {
	display: flex;
	align-items: center;
	gap: 0.55rem;
	padding: 0.6rem 0.75rem;
	border-radius: var(--tc-r-sm);
	color: var(--tc-text-muted);
	text-decoration: none;
	font-size: 0.92rem;
	font-weight: 650;
	transition: background-color var(--tc-speed) var(--tc-ease),
		color var(--tc-speed) var(--tc-ease);
}

.tc-otherservices a:hover,
.tc-otherservices a[aria-current="page"] {
	background: var(--tc-tint);
	color: var(--tc-primary);
}

.tc-otherservices .tc-icon {
	width: 1.15rem;
	height: 1.15rem;
}

/* Addon pills on a service page */
.tc-addons {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
	margin: 1rem 0 0;
	padding: 0;
	list-style: none;
}

.tc-addons li {
	padding: 0.4rem 0.85rem;
	border: 1px solid var(--tc-border);
	border-radius: var(--tc-r-pill);
	background: var(--tc-surface);
	font-size: 0.86rem;
	color: var(--tc-text-muted);
}

/* --------------------------------------------------------------- utilities */

.tc-center {
	text-align: center;
}

.tc-mt {
	margin-top: 2rem;
}

.tc-embed {
	position: relative;
	width: 100%;
}

.tc-embed iframe {
	width: 100%;
	aspect-ratio: 16 / 9;
	border: 0;
	border-radius: var(--tc-r);
}

.tc-pagination {
	display: flex;
	justify-content: center;
	gap: 0.5rem;
	margin-top: 2.5rem;
}

.tc-pagination .page-numbers {
	display: grid;
	place-items: center;
	min-width: 42px;
	height: 42px;
	padding-inline: 0.6rem;
	border: 1px solid var(--tc-border);
	border-radius: var(--tc-r-sm);
	color: var(--tc-text-muted);
	text-decoration: none;
}

.tc-pagination .page-numbers.current {
	background: var(--tc-primary);
	border-color: var(--tc-primary);
	color: var(--tc-primary-ink);
	font-weight: 800;
}

@media print {
	.tc-header,
	.tc-topbar,
	.tc-sticky,
	.tc-cta,
	.tc-drawer {
		display: none !important;
	}

	body {
		background: #fff;
		color: #000;
	}
}

/* ------------------------------------------------------- ad landing page */

.tc-offer {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	margin: 0 0 1.1rem;
	padding: 0.5rem 1.1rem;
	border-radius: var(--tc-r-pill);
	background: linear-gradient(96deg, var(--tc-primary), var(--tc-deep));
	color: var(--tc-primary-ink);
	font-weight: 800;
	font-size: 0.98rem;
	letter-spacing: 0.01em;
	box-shadow: 0 8px 24px var(--tc-glow);
}

/* A landing hero has no floating card, so the copy gets the full measure. */
.tc-hero--campaign .tc-hero__grid {
	grid-template-columns: minmax(0, 1fr);
	max-width: 820px;
}

.tc-valuelist {
	display: grid;
	gap: 0.9rem;
	grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr));
	margin: 0;
	padding: 0;
	list-style: none;
}

.tc-valuelist li {
	display: grid;
	grid-template-columns: auto 1fr;
	gap: 0.9rem;
	align-items: center;
	padding: 1.1rem 1.25rem;
	border: 1px solid var(--tc-border);
	border-radius: var(--tc-r);
	background: var(--tc-surface);
	font-size: 0.98rem;
}

.tc-valuelist__icon {
	display: grid;
	place-items: center;
	width: 38px;
	height: 38px;
	border-radius: var(--tc-r-sm);
	background: var(--tc-tint);
	color: var(--tc-primary);
}

.tc-valuelist__icon .tc-icon {
	width: 1.2rem;
	height: 1.2rem;
}

/* The locked-service notice that replaces eight checkboxes on the ad page. */
.tc-locked {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 0.6rem;
	margin: 0;
	padding: 0.85rem 1.1rem;
	border: 1px solid color-mix(in srgb, var(--tc-primary) 45%, transparent);
	border-radius: var(--tc-r-sm);
	background: var(--tc-tint-2);
	font-size: 0.95rem;
}

.tc-locked .tc-icon {
	width: 1.15rem;
	height: 1.15rem;
	color: var(--tc-primary);
	stroke-width: 2.4;
}

.tc-locked a {
	margin-inline-start: auto;
	font-size: 0.87rem;
}

/* The third home-hero CTA: present, but never louder than Book. */
.tc-btn--accent {
	--_bg: var(--tc-tint);
	--_fg: var(--tc-primary);
	--_bd: color-mix(in srgb, var(--tc-primary) 55%, transparent);
}

.tc-btn--accent:hover {
	--_bg: var(--tc-primary);
	--_fg: var(--tc-primary-ink);
	--_bd: transparent;
}

.tc-hero--media .tc-btn--accent {
	--_bg: rgb(255 255 255 / 0.14);
	--_fg: #f4f8fc;
	--_bd: rgb(255 255 255 / 0.45);
}

/* The service photograph, in the body rather than behind the title. */
/*
 * The service photograph, sized by the photograph. The bundled stills are about
 * 460px wide — enough behind a blurred hero, visibly soft stretched across a
 * 700px column. Intrinsic width means a small still stays sharp at its own size
 * and a large one the shop uploads still fills the column, without either being
 * upscaled to fit a box the source cannot fill.
 */
.tc-servicefigure {
	margin: 0 0 1.6rem;
	border-radius: var(--tc-r-lg);
	overflow: hidden;
	border: 1px solid var(--tc-border);
	background: var(--tc-bg-3);
	width: fit-content;
	max-width: 100%;
}

.tc-servicefigure img,
.tc-servicefigure video {
	display: block;
	width: auto;
	max-width: 100%;
	height: auto;
}
