/**
 * ThatWorks Entertainment — main stylesheet.
 * Design tokens: CSS custom properties (keep in sync with theme.json palette where possible).
 */

:root {
	/* Backgrounds */
	--tw-bg: #05070a;
	--tw-bg-soft: #0b0f14;
	--tw-surface: #111820;
	--tw-surface-2: #161e28;

	/* Primary accent — electric coastal blue */
	--tw-blue: #38bdf8;
	--tw-blue-2: #0ea5e9;
	--tw-blue-border: rgba(56, 189, 248, 0.22);

	/* Secondary accent — champagne/gold (use sparingly) */
	--tw-gold: #d6b46a;

	/* Text */
	--tw-text: #ffffff;
	--tw-muted: #e8edf3;
	--tw-muted-2: #a9b4c0;

	/* Borders */
	--tw-border: rgba(255, 255, 255, 0.08);

	/* Radii / spacing */
	--tw-radius: 12px;
	--tw-radius-pill: 999px;
	--tw-header-h: 88px;
	--tw-focus: 2px solid var(--tw-blue);
	--tw-focus-offset: 2px;
	--tw-container: 1200px;
	--tw-gutter: clamp(1rem, 0.6rem + 1.5vw, 1.5rem);
	--tw-section-y: clamp(3rem, 2.2rem + 2.5vw, 5rem);
	--tw-font: system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

	/* Legacy aliases — resolves all var(--tw-orange*) calls to blue */
	--tw-orange: var(--tw-blue);
	--tw-orange-2: var(--tw-blue-2);
	--tw-orange-border: var(--tw-blue-border);
}

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

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	min-height: 100vh;
	font-family: var(--tw-font);
	font-size: 1.0625rem;
	line-height: 1.6;
	color: var(--tw-text);
	background: var(--tw-bg);
	-webkit-font-smoothing: antialiased;
}

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

a {
	color: var(--tw-orange-2);
	text-decoration-thickness: 1px;
	text-underline-offset: 0.2em;
}

a:hover {
	color: var(--tw-orange);
}

a:focus-visible {
	outline: var(--tw-focus);
	outline-offset: var(--tw-focus-offset);
}

h1,
h2,
h3,
h4 {
	color: var(--tw-text);
	line-height: 1.15;
	margin: 0 0 0.5em;
	font-weight: 700;
}

h1 {
	font-size: clamp(2.1rem, 1.7rem + 1.4vw, 3.2rem);
}

h2 {
	font-size: clamp(1.6rem, 1.35rem + 0.9vw, 2.25rem);
}

h3 {
	font-size: clamp(1.25rem, 1.1rem + 0.5vw, 1.5rem);
}

p {
	margin: 0 0 1em;
	color: var(--tw-muted);
}

p:last-child {
	margin-bottom: 0;
}

.tw-muted {
	color: var(--tw-muted);
}

.tw-skip-link {
	position: absolute;
	left: -9999px;
	top: 0.75rem;
	padding: 0.5rem 1rem;
	background: var(--tw-blue);
	color: #020617;
	font-weight: 600;
	border-radius: var(--tw-radius-pill);
	z-index: 1000;
}

.tw-skip-link:focus {
	left: 0.75rem;
	outline: 2px solid #fff;
}

.tw-container {
	width: 100%;
	max-width: var(--tw-container);
	margin-left: auto;
	margin-right: auto;
	padding-left: var(--tw-gutter);
	padding-right: var(--tw-gutter);
}

.tw-container--header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	min-height: var(--tw-header-h);
}

.tw-section {
	padding-top: var(--tw-section-y);
	padding-bottom: var(--tw-section-y);
}

.tw-section--tight {
	padding-top: clamp(1.5rem, 1rem + 1.5vw, 2.5rem);
	padding-bottom: clamp(1.5rem, 1rem + 1.5vw, 2.5rem);
}

.tw-section--alt {
	background: var(--tw-bg-soft);
}

.tw-section--surface {
	background: var(--tw-surface);
}

.tw-section__label {
	font-size: 0.8125rem;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--tw-orange);
	font-weight: 700;
	margin-bottom: 0.75rem;
}

.tw-section__header {
	margin-bottom: clamp(1.5rem, 1rem + 1.5vw, 2.5rem);
	max-width: 55ch;
}

.tw-section__title {
	margin-bottom: 0.35em;
}

.tw-section__lede {
	color: var(--tw-muted);
	font-size: 1.05rem;
}

.tw-content :where(h1, h2, h3) {
	color: var(--tw-text);
}

.tw-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	padding: 0.75rem 1.25rem;
	min-height: 44px; /* WCAG / Apple HIG minimum touch target */
	font-weight: 600;
	font-size: 0.95rem;
	border-radius: var(--tw-radius-pill);
	text-decoration: none;
	border: 1px solid transparent;
	cursor: pointer;
	transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease, transform 0.1s ease;
	white-space: nowrap;
}

.tw-btn:focus-visible {
	outline: var(--tw-focus);
	outline-offset: var(--tw-focus-offset);
}

.tw-btn-primary {
	background: linear-gradient(135deg, #38bdf8, #0ea5e9);
	color: #020617;
	border-color: transparent;
	font-weight: 700;
}

.tw-btn-primary:hover {
	background: linear-gradient(135deg, #7dd3fc, #38bdf8);
	color: #020617;
}

.tw-btn-secondary {
	background: transparent;
	color: var(--tw-text);
	border-color: rgba(56, 189, 248, 0.3);
}

.tw-btn-secondary:hover {
	border-color: var(--tw-blue-border);
	color: var(--tw-blue);
	background: rgba(56, 189, 248, 0.06);
}

.tw-card {
	background: var(--tw-surface-2);
	border: 1px solid var(--tw-border);
	border-radius: var(--tw-radius);
	padding: 1.25rem;
}

@media (min-width: 768px) {
	.tw-card {
		padding: 1.5rem;
	}
}

/* Header */
.tw-header {
	position: sticky;
	top: 0;
	z-index: 50;
	background: color-mix(in srgb, var(--tw-bg) 88%, transparent);
	backdrop-filter: blur(10px);
	border-bottom: 1px solid transparent;
	transition: background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.tw-header.is-scrolled {
	background: color-mix(in srgb, var(--tw-bg) 96%, #000);
	border-bottom-color: var(--tw-border);
	box-shadow: 0 8px 30px rgba(0, 0, 0, 0.35);
}

.tw-header__inner {
	display: flex;
	align-items: center;
	gap: 1rem;
}

.tw-logo {
	display: inline-flex;
	align-items: center;
	text-decoration: none;
	color: inherit;
}

.tw-logo:focus-visible {
	outline: var(--tw-focus);
	outline-offset: var(--tw-focus-offset);
	border-radius: 4px;
}

.tw-logo__text {
	display: flex;
	flex-direction: column;
	line-height: 1.05;
}

.tw-logo__name {
	font-size: 1.25rem;
	font-weight: 800;
	letter-spacing: -0.02em;
	color: var(--tw-text);
}

.tw-logo__tag {
	font-size: 0.68rem;
	font-weight: 700;
	letter-spacing: 0.14em;
	color: var(--tw-gold);
}

.tw-logo--image .custom-logo-link {
	display: flex;
	align-items: center;
}

.tw-logo--image .custom-logo,
.tw-logo__img {
	max-height: 62px;
	width: auto;
	display: block;
	filter: drop-shadow(0 0 10px rgba(56, 189, 248, 0.35)) drop-shadow(0 0 24px rgba(56, 189, 248, 0.15));
}

.tw-logo__img--footer {
	max-height: 44px;
	filter: drop-shadow(0 0 8px rgba(56, 189, 248, 0.2)) drop-shadow(0 0 18px rgba(56, 189, 248, 0.08));
}

.tw-desktop-nav {
	display: none;
	flex: 1;
	justify-content: center;
}

@media (min-width: 960px) {
	.tw-desktop-nav {
		display: flex;
	}
}

.tw-nav-list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-wrap: nowrap;
	align-items: center;
	justify-content: center;
	gap: 0.25rem 0.65rem;
}

.tw-nav-link {
	color: var(--tw-muted);
	text-decoration: none;
	font-weight: 600;
	font-size: 0.95rem;
	padding: 0.35rem 0;
}

.tw-nav-link:hover {
	color: var(--tw-blue);
}

.tw-header__actions {
	display: flex;
	align-items: center;
	gap: 0.75rem;
}

.tw-header__cta {
	display: none;
	padding: 0.55rem 1rem;
	font-size: 0.85rem;
}

@media (min-width: 960px) {
	.tw-header__cta {
		display: inline-flex;
	}
}

.tw-nav-toggle {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.5rem 0.65rem;
	min-height: 44px;
	min-width: 44px;
	border-radius: var(--tw-radius);
	border: 1px solid var(--tw-border);
	background: var(--tw-surface);
	color: var(--tw-text);
	cursor: pointer;
	font-weight: 600;
}

.tw-nav-toggle__bars {
	width: 22px;
	height: 14px;
	border-top: 2px solid var(--tw-text);
	border-bottom: 2px solid var(--tw-text);
	position: relative;
	display: inline-block;
}

.tw-nav-toggle__bars::before {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
	border-top: 2px solid var(--tw-text);
}

.tw-nav-toggle:hover {
	border-color: var(--tw-orange-border);
}

.tw-nav-toggle:focus-visible {
	outline: var(--tw-focus);
	outline-offset: var(--tw-focus-offset);
}

@media (min-width: 960px) {
	.tw-nav-toggle {
		display: none;
	}
}

/* Mobile nav panel */
.tw-mobile-nav {
	display: none;
	border-bottom: 1px solid var(--tw-border);
	background: var(--tw-bg-soft);
}

.tw-mobile-nav.is-open {
	display: block;
}

.tw-mobile-nav__inner {
	padding-top: 1rem;
	padding-bottom: 1.25rem;
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.tw-nav-list--mobile {
	flex-direction: column;
	align-items: stretch;
	gap: 0;
}

.tw-nav-list--mobile .tw-nav-item {
	border-bottom: 1px solid var(--tw-border);
}

.tw-nav-list--mobile .tw-nav-link {
	display: block;
	padding: 0.85rem 0;
	min-height: 44px;
	display: flex;
	align-items: center;
}

.tw-mobile-nav__cta {
	width: 100%;
	justify-content: center;
}

body.tw-mobile-nav-open {
	overflow: hidden;
}

/* Main */
.tw-main {
	padding-bottom: calc(80px + env(safe-area-inset-bottom, 0));
}

@media (min-width: 960px) {
	.tw-main {
		padding-bottom: 0;
	}
}

/* Footer */
.tw-footer {
	background: var(--tw-bg-soft);
	border-top: 1px solid var(--tw-border);
	padding-top: clamp(2.5rem, 2rem + 2vw, 4rem);
	padding-bottom: 2rem;
	margin-top: auto;
}

.tw-footer__inner {
	display: grid;
	gap: 2rem;
}

@media (min-width: 768px) {
	.tw-footer__inner {
		grid-template-columns: 1.2fr 1fr 1fr;
		align-items: start;
	}
}

.tw-footer__tagline {
	color: var(--tw-muted-2);
	font-size: 0.95rem;
	margin-top: 0.75rem;
	max-width: 36ch;
}

.tw-footer__heading {
	font-size: 0.78rem;
	text-transform: uppercase;
	letter-spacing: 0.12em;
	color: var(--tw-muted-2);
	margin-bottom: 0.75rem;
}

.tw-footer__list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	gap: 0.45rem;
}

.tw-footer__list a {
	color: var(--tw-muted);
	text-decoration: none;
	font-weight: 600;
}

.tw-footer__list a:hover {
	color: var(--tw-orange);
}

.tw-footer__menu {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	gap: 0.45rem;
}

.tw-footer__menu a {
	color: var(--tw-muted);
	text-decoration: none;
	font-weight: 600;
}

.tw-footer__menu a:hover {
	color: var(--tw-orange);
}

.tw-footer__legal {
	border-top: 1px solid var(--tw-border);
	margin-top: 2rem;
	padding-top: 1.25rem;
}

.tw-footer__copy {
	margin: 0;
	font-size: 0.875rem;
	color: var(--tw-muted-2);
	text-align: center;
}

/* Mobile sticky CTA */
.tw-mobile-cta {
	position: fixed;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 40;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 0.5rem;
	padding: 0.5rem var(--tw-gutter) calc(0.5rem + env(safe-area-inset-bottom, 0));
	background: color-mix(in srgb, var(--tw-bg) 92%, #000);
	border-top: 1px solid var(--tw-border);
	backdrop-filter: blur(12px);
}

@media (min-width: 960px) {
	.tw-mobile-cta {
		display: none;
	}
}

.tw-mobile-cta .tw-btn {
	width: 100%;
	padding: 0.65rem 0.5rem;
	font-size: 0.85rem;
	border-radius: 10px;
}

.tw-mobile-cta .tw-btn-secondary {
	background: var(--tw-surface);
}

/* Forms (foundation only) */
.tw-form-grid {
	display: grid;
	gap: 0.75rem;
}

@media (min-width: 768px) {
	.tw-form-grid--inline {
		grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
		align-items: end;
	}
}

.tw-field label {
	display: block;
	font-size: 0.8rem;
	font-weight: 600;
	color: var(--tw-muted);
	margin-bottom: 0.35rem;
}

.tw-input,
.tw-select {
	width: 100%;
	padding: 0.65rem 0.75rem;
	border-radius: 10px;
	border: 1px solid var(--tw-border);
	background: var(--tw-surface);
	color: var(--tw-text);
	font: inherit;
}

.tw-input:focus-visible,
.tw-select:focus-visible {
	outline: var(--tw-focus);
	outline-offset: 1px;
	border-color: var(--tw-orange-border);
}

/* Legacy utility (early placeholders) */
.tw-placeholder-card {
	border: 1px dashed var(--tw-blue-border);
	background: color-mix(in srgb, var(--tw-surface) 70%, transparent);
}

/* -------------------------------------------------------------------------
   Homepage — premium dark sections
   ------------------------------------------------------------------------- */

.tw-section__header--wide {
	max-width: min(72ch, 100%);
}

.tw-headline-accent {
	color: var(--tw-orange);
	margin-left: 0.25em;
}

@media (max-width: 520px) {
	.tw-headline-accent {
		display: block;
		margin-left: 0;
		margin-top: 0.2em;
	}
}

.tw-section--hero {
	position: relative;
	padding-top: clamp(2.5rem, 1.5rem + 3vw, 4rem);
	padding-bottom: clamp(3rem, 2rem + 4vw, 5.5rem);
	overflow: hidden;
}

.tw-hero__bg {
	position: absolute;
	inset: 0;
	z-index: 0;
	overflow: hidden;
}

.tw-hero__bg img,
.tw-hero__bg video {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center 35%;
	opacity: 0.32;
	filter: saturate(0.7) brightness(0.85);
	transform: scale(1.03);
	display: block;
}

.tw-hero__bg::after {
	content: "";
	position: absolute;
	inset: 0;
	background:
		linear-gradient(to bottom, rgba(5, 7, 10, 0.35) 0%, rgba(5, 7, 10, 0.55) 100%),
		linear-gradient(135deg, rgba(14, 165, 233, 0.08) 0%, rgba(147, 51, 234, 0.06) 100%);
	pointer-events: none;
}

/* Hide video on mobile — poster image shows instead, saves data/battery */
@media (max-width: 767px) {
	.tw-hero__bg video {
		display: none;
	}
}

@media (prefers-reduced-motion: reduce) {
	.tw-hero__bg video {
		display: none;
	}
}

.tw-hero__glow {
	position: absolute;
	inset: -20% -10% -20% -10%;
	background:
		radial-gradient(ellipse at 30% 20%, rgba(56, 189, 248, 0.13), transparent 55%),
		radial-gradient(ellipse at 80% 10%, rgba(56, 189, 248, 0.07), transparent 50%),
		radial-gradient(ellipse at 50% 90%, rgba(147, 51, 234, 0.08), transparent 45%);
	pointer-events: none;
	z-index: 1;
}

.tw-hero__inner {
	position: relative;
	z-index: 2;
	display: grid;
	gap: clamp(2rem, 1.2rem + 2.5vw, 3rem);
	align-items: center;
}

@media (min-width: 900px) {
	.tw-hero__inner {
		grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
	}
}

.tw-hero__eyebrow {
	font-size: 0.8125rem;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	font-weight: 800;
	color: var(--tw-orange);
	margin: 0 0 0.75rem;
}

.tw-hero__title {
	margin-bottom: 0.45em;
	text-wrap: balance;
}

.tw-hero__lede {
	font-size: 1.08rem;
	color: var(--tw-muted);
	margin-bottom: 1rem;
	max-width: 52ch;
}

.tw-hero__trust-line {
	font-size: 0.98rem;
	color: var(--tw-muted-2);
	border-left: 3px solid var(--tw-orange-border);
	padding-left: 0.85rem;
	margin-bottom: 1.35rem;
	max-width: 52ch;
}

.tw-hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.65rem;
	margin-bottom: 1.25rem;
}

.tw-hero__chips {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
}

.tw-chip {
	display: inline-flex;
	align-items: center;
	padding: 0.45rem 0.85rem;
	border-radius: var(--tw-radius-pill);
	border: 1px solid var(--tw-border);
	background: color-mix(in srgb, var(--tw-surface) 85%, transparent);
	color: var(--tw-muted);
	font-size: 0.82rem;
	font-weight: 700;
	letter-spacing: 0.02em;
	box-shadow: 0 0 0 1px color-mix(in srgb, var(--tw-orange) 12%, transparent);
}

.tw-hero__visual {
	min-width: 0;
}

.tw-hero__frame {
	border-radius: calc(var(--tw-radius) + 6px);
	padding: 1px;
	background: linear-gradient(145deg, color-mix(in srgb, var(--tw-orange) 55%, transparent), transparent 40%, color-mix(in srgb, #fff 18%, transparent));
	box-shadow:
		0 24px 60px rgba(0, 0, 0, 0.55),
		0 0 40px color-mix(in srgb, var(--tw-orange) 14%, transparent);
}

.tw-hero__frame .tw-media {
	margin: 0;
	border-radius: calc(var(--tw-radius) + 5px);
	overflow: hidden;
	background: var(--tw-surface-2);
}

.tw-media__img {
	width: 100%;
	height: auto;
	display: block;
}

.tw-media__placeholder {
	min-height: clamp(220px, 38vw, 420px);
	display: grid;
	place-items: center;
	padding: 2rem;
	text-align: center;
	background:
		radial-gradient(circle at 30% 20%, rgba(56, 189, 248, 0.1), transparent 55%),
		linear-gradient(160deg, var(--tw-surface-2), var(--tw-bg-soft));
	border: 1px dashed var(--tw-blue-border);
}

.tw-media__placeholder-text {
	font-weight: 800;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	font-size: 0.85rem;
	color: var(--tw-muted);
}

/* Lead strip */
.tw-lead-strip__intro {
	margin-bottom: 1.25rem;
	max-width: 62ch;
}

.tw-lead-strip__title {
	margin: 0 0 0.35em;
}

.tw-lead-strip__sub {
	margin: 0;
	color: var(--tw-muted);
	font-size: 1.05rem;
}

.tw-lead-strip__sub--lead {
	margin: 0 auto 1.25rem;
	max-width: 62ch;
	text-align: center;
}

.tw-lead-strip__fields {
	display: grid;
	gap: 0.75rem;
	grid-template-columns: 1fr;
}

@media (min-width: 640px) {
	.tw-lead-strip__fields {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (min-width: 960px) {
	.tw-lead-strip__fields {
		grid-template-columns: repeat(5, minmax(0, 1fr));
	}

	.tw-field--span {
		grid-column: span 2;
	}
}

.tw-field {
	margin: 0;
}

.tw-field label {
	display: block;
	font-size: 0.78rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	color: var(--tw-muted-2);
	margin-bottom: 0.35rem;
}

.tw-lead-strip__submit {
	margin: 0.75rem 0 0;
}

.tw-lead-strip__privacy,
.tw-lead-strip__note {
	font-size: 0.88rem;
	color: var(--tw-muted-2);
	margin-top: 0.65rem;
}

.tw-lead-strip__shortcode .twent-core-lead {
	max-width: none;
	margin: 0 auto;
}

.tw-lead-strip__shortcode .twent-core-lead__title {
	text-align: center;
	margin-left: auto;
	margin-right: auto;
	max-width: 28ch;
}

.tw-lead-strip__shortcode .twent-core-lead__fields {
	display: grid;
	gap: 0.75rem;
}

@media (min-width: 960px) {
	.tw-lead-strip__shortcode .twent-core-lead__fields {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
}

.tw-lead-strip__shortcode .twent-core-lead__services {
	grid-column: 1 / -1;
}

.tw-lead-strip__shortcode fieldset.twent-core-lead__services label {
	font-weight: 600;
	color: var(--tw-muted);
}

.tw-lead-strip__shortcode .twent-core-lead__note {
	text-align: center;
}

/* Services grid */
.tw-service-grid {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	gap: 1rem;
}

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

@media (min-width: 1024px) {
	.tw-service-grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
}

.tw-service-card {
	position: relative;
	padding: 1.35rem;
	border-radius: calc(var(--tw-radius) + 4px);
	border: 1px solid var(--tw-border);
	background: linear-gradient(160deg, color-mix(in srgb, var(--tw-surface-2) 92%, #000), var(--tw-surface));
	box-shadow: 0 18px 45px rgba(0, 0, 0, 0.35);
	transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
	min-height: 100%;
	display: flex;
	flex-direction: column;
	gap: 0.65rem;
}

.tw-service-card:hover {
	transform: translateY(-3px);
	border-color: var(--tw-orange-border);
	box-shadow:
		0 22px 55px rgba(0, 0, 0, 0.45),
		0 0 35px color-mix(in srgb, var(--tw-orange) 16%, transparent);
}

.tw-service-card__icon {
	width: 44px;
	height: 44px;
	display: grid;
	place-items: center;
	border-radius: 12px;
	background: color-mix(in srgb, var(--tw-orange) 18%, var(--tw-surface));
	color: var(--tw-orange);
	border: 1px solid var(--tw-orange-border);
}

.tw-service-card__title {
	margin: 0;
	font-size: 1.15rem;
}

.tw-service-card__text {
	margin: 0;
	flex: 1;
	color: var(--tw-muted);
	font-size: 0.98rem;
}

.tw-service-card__link {
	margin-top: 0.25rem;
	font-weight: 800;
	text-decoration: none;
	color: var(--tw-orange);
	display: inline-flex;
	align-items: center;
	gap: 0.35rem;
}

.tw-service-card__link:hover {
	color: var(--tw-orange-2);
}

/* Why / pillars */
.tw-pillar-grid {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	gap: 1rem;
}

@media (min-width: 768px) {
	.tw-pillar-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

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

.tw-pillar-card {
	padding: 1.25rem;
	border-radius: var(--tw-radius);
	border: 1px solid var(--tw-border);
	background: var(--tw-surface);
}

.tw-pillar-card__icon {
	width: 48px;
	height: 48px;
	display: grid;
	place-items: center;
	border-radius: 14px;
	color: var(--tw-orange);
	background: color-mix(in srgb, var(--tw-orange) 14%, transparent);
	border: 1px solid var(--tw-orange-border);
	margin-bottom: 0.65rem;
}

.tw-pillar-card__title {
	margin: 0 0 0.35em;
	font-size: 1.05rem;
}

.tw-pillar-card__text {
	margin: 0;
	color: var(--tw-muted);
	font-size: 0.95rem;
}

/* Feature bands */
.tw-feature-band__grid {
	display: grid;
	gap: clamp(1.75rem, 1.2rem + 2vw, 2.75rem);
	align-items: center;
}

@media (min-width: 900px) {
	.tw-feature-band__grid {
		grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
	}

	.tw-feature-band--reverse .tw-feature-band__grid {
		direction: rtl;
	}

	.tw-feature-band--reverse .tw-feature-band__content,
	.tw-feature-band--reverse .tw-feature-band__media {
		direction: ltr;
	}
}

.tw-feature-band__title {
	margin: 0.35em 0 0.5em;
	font-size: clamp(1.65rem, 1.35rem + 1vw, 2.2rem);
}

.tw-feature-band__copy {
	margin: 0 0 1rem;
	color: var(--tw-muted);
	max-width: 58ch;
}

.tw-checklist {
	margin: 0 0 1.25rem;
	padding: 0;
	list-style: none;
	display: grid;
	gap: 0.55rem;
	max-width: 58ch;
}

.tw-checklist li {
	position: relative;
	padding-left: 1.55rem;
	color: var(--tw-muted);
}

.tw-checklist li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0.55em;
	width: 0.55rem;
	height: 0.55rem;
	border-radius: 50%;
	background: var(--tw-orange);
	box-shadow: 0 0 12px color-mix(in srgb, var(--tw-orange) 55%, transparent);
}

.tw-feature-band__frame {
	border-radius: calc(var(--tw-radius) + 6px);
	padding: 1px;
	background: linear-gradient(135deg, color-mix(in srgb, var(--tw-orange) 45%, transparent), transparent 55%);
	box-shadow: 0 22px 55px rgba(0, 0, 0, 0.45);
}

.tw-feature-band__frame .tw-media {
	margin: 0;
	border-radius: calc(var(--tw-radius) + 5px);
	overflow: hidden;
	background: var(--tw-surface-2);
}

/* Service areas */
.tw-areas__layout {
	display: grid;
	gap: clamp(1.75rem, 1.2rem + 2vw, 2.75rem);
	align-items: center;
}

@media (min-width: 900px) {
	.tw-areas__layout {
		grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
	}
}

.tw-areas__title {
	margin: 0.35em 0 0.5em;
}

.tw-areas__copy {
	margin: 0 0 1rem;
	color: var(--tw-muted);
	max-width: 60ch;
}

.tw-location-pills {
	list-style: none;
	margin: 0 0 1.25rem;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
}

.tw-location-pill {
	display: inline-flex;
	align-items: center;
	padding: 0.45rem 0.85rem;
	border-radius: var(--tw-radius-pill);
	border: 1px solid var(--tw-border);
	background: color-mix(in srgb, var(--tw-surface) 88%, transparent);
	color: var(--tw-text);
	font-weight: 700;
	font-size: 0.88rem;
	text-decoration: none;
	transition: border-color 0.15s ease, box-shadow 0.15s ease, transform 0.15s ease;
}

.tw-location-pill:hover {
	border-color: var(--tw-orange-border);
	box-shadow: 0 0 22px color-mix(in srgb, var(--tw-orange) 18%, transparent);
	transform: translateY(-1px);
	color: var(--tw-orange);
}

.tw-areas__frame {
	border-radius: calc(var(--tw-radius) + 6px);
	overflow: hidden;
	border: 1px solid var(--tw-border);
	box-shadow: 0 22px 55px rgba(0, 0, 0, 0.45);
	background: var(--tw-surface-2);
}

.tw-areas__frame .tw-media {
	margin: 0;
}

/* Testimonials */
.tw-testimonial-grid {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	gap: 1rem;
}

@media (min-width: 900px) {
	.tw-testimonial-grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
}

.tw-testimonial-card {
	padding: 1.35rem;
	border-radius: calc(var(--tw-radius) + 4px);
	border: 1px solid var(--tw-border);
	background: linear-gradient(165deg, color-mix(in srgb, var(--tw-surface-2) 92%, #000), var(--tw-surface));
	box-shadow: 0 18px 45px rgba(0, 0, 0, 0.35);
	display: flex;
	flex-direction: column;
	gap: 0.65rem;
	min-height: 100%;
}

.tw-testimonial-card__stars {
	margin: 0;
	color: var(--tw-orange);
	letter-spacing: 0.08em;
	font-size: 0.95rem;
}

.tw-testimonial-card__quote {
	margin: 0;
}

.tw-testimonial-card__quote p {
	margin: 0;
	color: var(--tw-muted);
	font-size: 0.98rem;
}

.tw-testimonial-card__meta {
	margin: 0;
	margin-top: auto;
	display: grid;
	gap: 0.15rem;
	color: var(--tw-text);
	font-size: 0.92rem;
}

.tw-testimonial-card__loc {
	display: block;
	color: var(--tw-muted-2);
	font-weight: 600;
}

/* FAQ (native details) */
.tw-faq__list {
	display: grid;
	gap: 0.65rem;
	max-width: 860px;
}

.tw-faq__item {
	border-radius: var(--tw-radius);
	border: 1px solid var(--tw-border);
	background: color-mix(in srgb, var(--tw-surface) 88%, transparent);
	overflow: hidden;
}

.tw-faq__summary {
	cursor: pointer;
	list-style: none;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	padding: 1rem 1.15rem;
	font-weight: 800;
	color: var(--tw-text);
}

.tw-faq__summary::-webkit-details-marker {
	display: none;
}

.tw-faq__question {
	max-width: 85%;
}

.tw-faq__chev {
	width: 10px;
	height: 10px;
	border-right: 2px solid var(--tw-orange);
	border-bottom: 2px solid var(--tw-orange);
	transform: rotate(45deg);
	transition: transform 0.18s ease;
	flex-shrink: 0;
	margin-right: 4px;
	margin-bottom: 4px;
}

.tw-faq__item[open] .tw-faq__chev {
	transform: rotate(-135deg);
	margin-bottom: 0;
	margin-top: 4px;
}

.tw-faq__answer {
	padding: 0 1.15rem 1.1rem;
	border-top: 1px solid color-mix(in srgb, var(--tw-border) 70%, transparent);
}

.tw-faq__answer p {
	margin: 0.85rem 0 0;
	color: var(--tw-muted);
}

/* Final CTA */
.tw-final-cta-band__inner {
	display: grid;
	gap: 1.5rem;
	align-items: center;
	padding: clamp(1.75rem, 1.2rem + 2vw, 2.5rem);
	border-radius: calc(var(--tw-radius) + 8px);
	border: 1px solid var(--tw-orange-border);
	background:
		radial-gradient(ellipse at 20% 20%, color-mix(in srgb, var(--tw-orange) 22%, transparent), transparent 55%),
		linear-gradient(145deg, var(--tw-surface-2), var(--tw-bg-soft));
	box-shadow:
		0 26px 70px rgba(0, 0, 0, 0.55),
		0 0 45px color-mix(in srgb, var(--tw-orange) 14%, transparent);
}

@media (min-width: 768px) {
	.tw-final-cta-band__inner {
		grid-template-columns: minmax(0, 1.4fr) minmax(0, 0.75fr);
	}
}

.tw-final-cta-band__title {
	margin: 0 0 0.35em;
}

.tw-final-cta-band__sub {
	margin: 0 0 1rem;
	color: var(--tw-muted);
	max-width: 52ch;
}

.tw-final-cta-band__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.65rem;
}

.tw-final-cta-band__contact {
	padding: 1rem 1.15rem;
	border-radius: var(--tw-radius);
	border: 1px solid var(--tw-border);
	background: color-mix(in srgb, var(--tw-bg) 70%, transparent);
}

.tw-final-cta-band__label {
	margin: 0 0 0.35rem;
	font-size: 0.72rem;
	text-transform: uppercase;
	letter-spacing: 0.12em;
	font-weight: 800;
	color: var(--tw-muted-2);
}

.tw-final-cta-band__phone {
	margin: 0;
	font-size: 1.35rem;
	font-weight: 900;
}

.tw-final-cta-band__phone a {
	color: var(--tw-text);
	text-decoration: none;
}

.tw-final-cta-band__phone a:hover {
	color: var(--tw-orange);
}

.tw-final-cta-band__email {
	margin: 0.35rem 0 0;
	font-weight: 700;
}

.tw-final-cta-band__email a {
	color: var(--tw-orange-2);
	text-decoration: none;
}

.tw-final-cta-band__email a:hover {
	color: var(--tw-orange);
}

/* -------------------------------------------------------------------------
   Service landing pages
   ------------------------------------------------------------------------- */

.tw-main--service {
	padding-bottom: calc(80px + env(safe-area-inset-bottom, 0));
}

@media (min-width: 960px) {
	.tw-main--service {
		padding-bottom: 0;
	}
}

.tw-svc-section-title {
	margin: 0 0 0.35em;
	font-size: clamp(1.65rem, 1.35rem + 1vw, 2.15rem);
}

.tw-svc-section-lede {
	margin: 0 0 1.25rem;
	max-width: 65ch;
	color: var(--tw-muted);
	font-size: 1.02rem;
}

.tw-svc-card {
	box-shadow: 0 16px 42px rgba(0, 0, 0, 0.32);
	border-color: color-mix(in srgb, var(--tw-border) 85%, transparent);
}

.tw-svc-hero {
	position: relative;
	overflow: hidden;
	padding-top: clamp(2rem, 1.2rem + 2.5vw, 3.25rem);
	padding-bottom: clamp(2.5rem, 1.8rem + 3vw, 4rem);
}

.tw-svc-hero__glow {
	position: absolute;
	inset: -25% -15% auto -15%;
	height: 75%;
	background:
		radial-gradient(ellipse at 25% 25%, rgba(56, 189, 248, 0.12), transparent 55%),
		radial-gradient(ellipse at 85% 15%, rgba(147, 51, 234, 0.07), transparent 55%);
	pointer-events: none;
	z-index: 0;
}

.tw-svc-hero__grid {
	position: relative;
	z-index: 1;
	display: grid;
	gap: clamp(1.75rem, 1.1rem + 2vw, 2.75rem);
	align-items: center;
}

@media (min-width: 900px) {
	.tw-svc-hero__grid {
		grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
	}
}

.tw-svc-hero__eyebrow {
	font-size: 0.8125rem;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	font-weight: 800;
	color: var(--tw-orange);
	margin: 0 0 0.65rem;
}

.tw-svc-hero__title {
	margin: 0 0 0.45em;
	text-wrap: balance;
}

.tw-svc-hero__intro {
	margin: 0 0 1.1rem;
	color: var(--tw-muted);
	max-width: 56ch;
	font-size: 1.05rem;
}

.tw-svc-hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.65rem;
	margin-bottom: 1rem;
}

.tw-svc-hero__chips {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
}

.tw-svc-hero__frame {
	border-radius: calc(var(--tw-radius) + 6px);
	padding: 1px;
	background: linear-gradient(145deg, color-mix(in srgb, var(--tw-orange) 55%, transparent), transparent 42%, color-mix(in srgb, #fff 16%, transparent));
	box-shadow:
		0 22px 58px rgba(0, 0, 0, 0.52),
		0 0 38px color-mix(in srgb, var(--tw-orange) 14%, transparent);
}

.tw-svc-hero__frame .tw-media {
	margin: 0;
	border-radius: calc(var(--tw-radius) + 5px);
	overflow: hidden;
	background: var(--tw-surface-2);
}

.tw-media--svc-hero .tw-media__img {
	width: 100%;
	height: auto;
}

.tw-svc-overview__grid {
	display: grid;
	gap: 1rem;
}

@media (min-width: 900px) {
	.tw-svc-overview__grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
}

.tw-svc-overview__label {
	margin: 0 0 0.35rem;
	font-size: 0.78rem;
	text-transform: uppercase;
	letter-spacing: 0.12em;
	font-weight: 800;
	color: var(--tw-orange);
}

.tw-svc-overview__text {
	margin: 0;
	color: var(--tw-muted);
}

.tw-svc-details__grid {
	display: grid;
	gap: 1rem;
}

@media (min-width: 768px) {
	.tw-svc-details__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

.tw-svc-detail-card__title {
	margin: 0 0 0.65rem;
	font-size: 1.15rem;
}

.tw-svc-detail-card__list {
	margin: 0;
	padding-left: 1.1rem;
	display: grid;
	gap: 0.45rem;
	color: var(--tw-muted);
}

.tw-svc-benefits__grid {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	gap: 0.85rem;
}

@media (min-width: 768px) {
	.tw-svc-benefits__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (min-width: 1100px) {
	.tw-svc-benefits__grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
}

.tw-svc-benefit__text {
	margin: 0;
	font-weight: 700;
	color: var(--tw-text);
}

.tw-svc-areas-mini__inner {
	display: grid;
	gap: 1.25rem;
	align-items: start;
}

@media (min-width: 900px) {
	.tw-svc-areas-mini__inner {
		grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
		gap: 1.75rem;
	}
}

.tw-svc-areas-mini__pills {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
}

.tw-svc-areas-mini__note {
	margin: 0 0 1rem;
	color: var(--tw-muted-2);
	font-size: 0.95rem;
	max-width: 58ch;
}

.tw-svc-related__grid {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	gap: 1rem;
}

@media (min-width: 768px) {
	.tw-svc-related__grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
}

.tw-svc-related-card__eyebrow {
	margin: 0 0 0.35rem;
	font-size: 0.72rem;
	text-transform: uppercase;
	letter-spacing: 0.12em;
	font-weight: 800;
	color: var(--tw-orange);
}

.tw-svc-related-card__title {
	margin: 0 0 0.45rem;
	font-size: 1.1rem;
}

.tw-svc-related-card__title a {
	color: var(--tw-text);
	text-decoration: none;
}

.tw-svc-related-card__title a:hover {
	color: var(--tw-orange);
}

.tw-svc-related-card__excerpt {
	margin: 0 0 0.65rem;
	color: var(--tw-muted);
	font-size: 0.95rem;
}

.tw-svc-faq__list {
	max-width: 920px;
}

.tw-svc-lead__shortcode .twent-core-lead__title {
	text-align: center;
	margin-left: auto;
	margin-right: auto;
}

.tw-svc-lead__shortcode .twent-core-lead__fields {
	display: grid;
	gap: 0.75rem;
}

@media (min-width: 960px) {
	.tw-svc-lead__shortcode .twent-core-lead__fields {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
}

.tw-svc-lead__shortcode fieldset.twent-core-lead__services {
	grid-column: 1 / -1;
}

.tw-svc-lead__privacy {
	text-align: center;
	margin: 0.85rem 0 0;
	font-size: 0.9rem;
	color: var(--tw-muted-2);
}

.tw-svc-lead__fallback {
	text-align: center;
	max-width: 720px;
	margin: 0 auto;
}

.tw-svc-lead__title {
	margin-top: 0;
}

.tw-svc-lead__sub {
	color: var(--tw-muted);
}

.tw-svc-final-cta__card {
	display: grid;
	gap: 1.25rem;
	padding: clamp(1.75rem, 1.2rem + 2vw, 2.5rem);
	border-radius: calc(var(--tw-radius) + 8px);
	border: 1px solid var(--tw-orange-border);
	background:
		radial-gradient(ellipse at 15% 10%, color-mix(in srgb, var(--tw-orange) 22%, transparent), transparent 58%),
		linear-gradient(150deg, var(--tw-surface-2), var(--tw-bg-soft));
	box-shadow:
		0 26px 70px rgba(0, 0, 0, 0.55),
		0 0 42px color-mix(in srgb, var(--tw-orange) 14%, transparent);
}

@media (min-width: 900px) {
	.tw-svc-final-cta__card {
		grid-template-columns: minmax(0, 1.35fr) minmax(0, 0.75fr);
		align-items: center;
	}
}

.tw-svc-final-cta__title {
	margin: 0 0 0.35em;
}

.tw-svc-final-cta__sub {
	margin: 0 0 1rem;
	color: var(--tw-muted);
	max-width: 52ch;
}

.tw-svc-final-cta__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.65rem;
}

.tw-svc-final-cta__contact {
	padding: 1rem 1.15rem;
	border-radius: var(--tw-radius);
	border: 1px solid var(--tw-border);
	background: color-mix(in srgb, var(--tw-bg) 72%, transparent);
}

.tw-svc-final-cta__label {
	margin: 0 0 0.35rem;
	font-size: 0.72rem;
	text-transform: uppercase;
	letter-spacing: 0.12em;
	font-weight: 800;
	color: var(--tw-muted-2);
}

.tw-svc-final-cta__phone {
	margin: 0;
	font-size: 1.25rem;
	font-weight: 900;
}

.tw-svc-final-cta__phone a {
	color: var(--tw-text);
	text-decoration: none;
}

.tw-svc-final-cta__phone a:hover {
	color: var(--tw-orange);
}

.tw-svc-final-cta__email {
	margin: 0.35rem 0 0;
	font-weight: 700;
}

.tw-svc-final-cta__sms {
	margin: 0.35rem 0 0;
	font-weight: 700;
}

/* -------------------------------------------------------------------------
   Location hub and location landing pages
   ------------------------------------------------------------------------- */

.tw-main--location,
.tw-main--location-hub {
	padding-bottom: calc(80px + env(safe-area-inset-bottom, 0));
}

@media (min-width: 960px) {
	.tw-main--location,
	.tw-main--location-hub {
		padding-bottom: 0;
	}
}

.tw-loc-hero {
	position: relative;
	overflow: hidden;
	padding-top: clamp(2rem, 1.2rem + 2.5vw, 3.35rem);
	padding-bottom: clamp(2.5rem, 1.8rem + 3vw, 4.25rem);
}

.tw-loc-hero__glow {
	position: absolute;
	inset: -25% -15% auto -15%;
	height: 75%;
	background:
		radial-gradient(ellipse at 25% 25%, rgba(56, 189, 248, 0.12), transparent 55%),
		radial-gradient(ellipse at 85% 12%, rgba(56, 189, 248, 0.07), transparent 55%),
		radial-gradient(ellipse at 55% 90%, rgba(147, 51, 234, 0.08), transparent 45%);
	pointer-events: none;
	z-index: 0;
}

.tw-loc-hero__grid {
	position: relative;
	z-index: 1;
	display: grid;
	gap: clamp(1.75rem, 1.1rem + 2vw, 2.75rem);
	align-items: center;
}

@media (min-width: 900px) {
	.tw-loc-hero__grid {
		grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
	}
}

.tw-loc-hero__eyebrow {
	font-size: 0.8125rem;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	font-weight: 800;
	color: var(--tw-orange);
	margin: 0 0 0.65rem;
}

.tw-loc-hero__title {
	margin: 0 0 0.45em;
	text-wrap: balance;
}

.tw-loc-hero__intro {
	margin: 0 0 1.1rem;
	color: var(--tw-muted);
	max-width: 58ch;
	font-size: 1.05rem;
}

.tw-loc-hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.65rem;
	margin-bottom: 1rem;
}

.tw-loc-hero__chips {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
}

.tw-loc-hero__frame {
	border-radius: calc(var(--tw-radius) + 6px);
	padding: 1px;
	background: linear-gradient(145deg, color-mix(in srgb, var(--tw-orange) 55%, transparent), transparent 42%, color-mix(in srgb, #fff 16%, transparent));
	box-shadow:
		0 22px 58px rgba(0, 0, 0, 0.52),
		0 0 38px color-mix(in srgb, var(--tw-orange) 14%, transparent);
}

.tw-loc-hero__frame .tw-media {
	margin: 0;
	border-radius: calc(var(--tw-radius) + 5px);
	overflow: hidden;
	background: var(--tw-surface-2);
}

.tw-location-overview__grid,
.tw-location-feature__inner,
.tw-location-events__grid {
	display: grid;
	gap: 1.25rem;
	align-items: start;
}

@media (min-width: 900px) {
	.tw-location-overview__grid,
	.tw-location-feature__inner,
	.tw-location-events__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.tw-location-feature--reverse .tw-location-feature__inner {
		direction: rtl;
	}

	.tw-location-feature--reverse .tw-location-feature__inner > * {
		direction: ltr;
	}
}

.tw-location-overview__card h3,
.tw-location-feature__card h3,
.tw-location-events h3 {
	margin-top: 0;
	font-size: 1.12rem;
}

.tw-location-overview__card p,
.tw-location-feature__card p,
.tw-location-events p,
.tw-location-local-card p {
	color: var(--tw-muted);
}

.tw-loc-service-grid,
.tw-location-card-grid,
.tw-location-related__grid {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	gap: 1rem;
}

@media (min-width: 680px) {
	.tw-loc-service-grid,
	.tw-location-card-grid,
	.tw-location-related__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (min-width: 1100px) {
	.tw-loc-service-grid,
	.tw-location-card-grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
}

.tw-loc-service-card,
.tw-location-card,
.tw-location-related-card {
	border-color: var(--tw-border);
	background: linear-gradient(160deg, color-mix(in srgb, var(--tw-surface-2) 92%, #000), var(--tw-surface));
	transition: border-color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
}

.tw-loc-service-card:hover,
.tw-location-card:hover,
.tw-location-related-card:hover {
	border-color: var(--tw-orange-border);
	box-shadow:
		0 22px 55px rgba(0, 0, 0, 0.45),
		0 0 30px color-mix(in srgb, var(--tw-orange) 13%, transparent);
	transform: translateY(-2px);
}

.tw-loc-service-card__title,
.tw-location-card__title,
.tw-location-related-card__title {
	margin: 0 0 0.45rem;
	font-size: 1.1rem;
}

.tw-loc-service-card__title a,
.tw-location-card__title a,
.tw-location-related-card__title a {
	color: var(--tw-text);
	text-decoration: none;
}

.tw-loc-service-card__title a:hover,
.tw-location-card__title a:hover,
.tw-location-related-card__title a:hover {
	color: var(--tw-orange);
}

.tw-loc-service-card__text,
.tw-location-card__text,
.tw-location-related-card__text {
	margin: 0 0 0.7rem;
	color: var(--tw-muted);
	font-size: 0.96rem;
}

.tw-location-card__eyebrow,
.tw-location-related-card__eyebrow {
	margin: 0 0 0.35rem;
	font-size: 0.72rem;
	text-transform: uppercase;
	letter-spacing: 0.12em;
	font-weight: 800;
	color: var(--tw-orange);
}

.tw-location-local-card {
	padding: clamp(1.35rem, 1rem + 1.5vw, 2rem);
	border: 1px solid var(--tw-orange-border);
	border-radius: calc(var(--tw-radius) + 6px);
	background:
		radial-gradient(ellipse at 15% 10%, color-mix(in srgb, var(--tw-orange) 16%, transparent), transparent 58%),
		linear-gradient(150deg, var(--tw-surface-2), var(--tw-bg-soft));
	box-shadow: 0 22px 55px rgba(0, 0, 0, 0.42);
}

.tw-location-local-card p:last-child {
	margin-bottom: 0;
}

.tw-location-faq__list {
	max-width: 940px;
}

.tw-location-lead__shortcode .twent-core-lead__title {
	text-align: center;
}

@media (prefers-reduced-motion: reduce) {
	.tw-service-card,
	.tw-location-pill,
	.tw-loc-service-card,
	.tw-location-card,
	.tw-location-related-card {
		transition: none;
	}

	.tw-service-card:hover,
	.tw-location-pill:hover,
	.tw-loc-service-card:hover,
	.tw-location-card:hover,
	.tw-location-related-card:hover {
		transform: none;
	}
}

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

/* Hero */
.tw-about-hero {
	position: relative;
	overflow: hidden;
	padding-top: clamp(2rem, 1.2rem + 2.5vw, 3.25rem);
	padding-bottom: clamp(2.5rem, 1.8rem + 3vw, 4rem);
}

.tw-about-hero__glow {
	position: absolute;
	inset: -25% -15% auto -15%;
	height: 75%;
	background:
		radial-gradient(ellipse at 25% 25%, rgba(56, 189, 248, 0.12), transparent 55%),
		radial-gradient(ellipse at 85% 15%, rgba(147, 51, 234, 0.07), transparent 55%);
	pointer-events: none;
	z-index: 0;
}

.tw-about-hero__grid {
	position: relative;
	z-index: 1;
	display: grid;
	gap: clamp(1.75rem, 1.1rem + 2vw, 2.75rem);
	align-items: center;
}

@media (min-width: 900px) {
	.tw-about-hero__grid {
		grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
	}
}

.tw-about-hero__eyebrow {
	font-size: 0.8125rem;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	font-weight: 800;
	color: var(--tw-orange);
	margin: 0 0 0.65rem;
}

.tw-about-hero__title {
	font-size: clamp(1.85rem, 1.45rem + 1.3vw, 2.85rem);
	margin: 0 0 0.45em;
	text-wrap: balance;
	line-height: 1.12;
}

.tw-about-hero__intro {
	margin: 0 0 1.1rem;
	color: var(--tw-muted);
	max-width: 58ch;
	font-size: 1.05rem;
}

.tw-about-hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.65rem;
	margin-bottom: 1.1rem;
}

.tw-about-hero__chips {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
}

.tw-about-hero__visual {
	min-width: 0;
}

.tw-about-hero__frame {
	border-radius: calc(var(--tw-radius) + 6px);
	padding: 1px;
	background: linear-gradient(145deg, color-mix(in srgb, var(--tw-orange) 55%, transparent), transparent 42%, color-mix(in srgb, #fff 16%, transparent));
	box-shadow:
		0 22px 58px rgba(0, 0, 0, 0.52),
		0 0 38px color-mix(in srgb, var(--tw-orange) 14%, transparent);
}

.tw-about-hero__frame .tw-media {
	margin: 0;
	border-radius: calc(var(--tw-radius) + 5px);
	overflow: hidden;
	background: var(--tw-surface-2);
}

/* Story sections */
.tw-about-prose {
	max-width: 72ch;
}

.tw-about-prose p {
	line-height: 1.72;
}

.tw-about-today {
	max-width: 80ch;
	margin: 0 auto;
	padding: clamp(1.5rem, 1rem + 1.5vw, 2.25rem);
	border: 1px solid var(--tw-orange-border);
	border-radius: calc(var(--tw-radius) + 6px);
	background:
		radial-gradient(ellipse at 10% 15%, color-mix(in srgb, var(--tw-orange) 14%, transparent), transparent 58%),
		linear-gradient(150deg, var(--tw-surface-2), var(--tw-bg-soft));
	box-shadow: 0 22px 55px rgba(0, 0, 0, 0.42);
}

.tw-about-today .tw-section__label {
	margin-top: 0;
}

.tw-about-today p:last-child {
	margin-bottom: 0;
}

/* Pullout quote */
.tw-about-pullout-section {
	background: var(--tw-bg);
}

.tw-about-pullout {
	display: block;
	margin: 0 auto;
	max-width: 800px;
	padding: clamp(1.5rem, 1rem + 2vw, 2.5rem) clamp(1.5rem, 1rem + 2.5vw, 3rem);
	border-left: 4px solid var(--tw-orange);
	border-radius: 0 var(--tw-radius) var(--tw-radius) 0;
	background:
		radial-gradient(ellipse at 0% 50%, color-mix(in srgb, var(--tw-orange) 10%, transparent), transparent 60%),
		color-mix(in srgb, var(--tw-surface) 88%, transparent);
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.tw-about-pullout__quote p {
	margin: 0 0 0.85rem;
	font-size: clamp(1.1rem, 1rem + 0.4vw, 1.4rem);
	font-weight: 700;
	font-style: italic;
	color: var(--tw-text);
	line-height: 1.55;
}

.tw-about-pullout__attribution {
	display: block;
	font-size: 0.88rem;
	font-weight: 700;
	letter-spacing: 0.04em;
	color: var(--tw-orange);
	text-transform: uppercase;
}

/* Service links grid */
.tw-about-service-links {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	gap: 0.75rem;
}

@media (min-width: 540px) {
	.tw-about-service-links {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (min-width: 1024px) {
	.tw-about-service-links {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
}

.tw-about-service-link-card {
	display: flex;
	align-items: center;
	gap: 0.65rem;
	padding: 1rem 1.15rem;
	text-decoration: none;
	border-radius: var(--tw-radius);
	border: 1px solid var(--tw-border);
	background: linear-gradient(160deg, color-mix(in srgb, var(--tw-surface-2) 92%, #000), var(--tw-surface));
	color: var(--tw-text);
	font-weight: 700;
	font-size: 0.97rem;
	transition: border-color 0.15s ease, box-shadow 0.15s ease, transform 0.12s ease, color 0.12s ease;
}

.tw-about-service-link-card:hover {
	border-color: var(--tw-orange-border);
	box-shadow:
		0 10px 32px rgba(0, 0, 0, 0.32),
		0 0 24px color-mix(in srgb, var(--tw-orange) 12%, transparent);
	color: var(--tw-orange);
	transform: translateY(-2px);
}

.tw-about-service-link-card__label {
	flex: 1;
}

.tw-about-service-link-card__arrow {
	flex-shrink: 0;
	color: var(--tw-orange);
	font-size: 1.05rem;
	transition: transform 0.12s ease;
}

.tw-about-service-link-card:hover .tw-about-service-link-card__arrow {
	transform: translateX(3px);
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
	.tw-about-service-link-card,
	.tw-about-service-link-card__arrow {
		transition: none;
	}

	.tw-about-service-link-card:hover {
		transform: none;
	}

	.tw-about-service-link-card:hover .tw-about-service-link-card__arrow {
		transform: none;
	}
}

/* -------------------------------------------------------------------------
   Mobile — small screen fixes (< 640px)
   ------------------------------------------------------------------------- */
@media (max-width: 639px) {

	/* Hero: show image above content on mobile for instant visual impact */
	.tw-hero__inner {
		display: flex;
		flex-direction: column-reverse;
	}

	/* Chips: allow wrapping but cap line to prevent wall of pills */
	.tw-hero__chips,
	.tw-svc-hero__chips,
	.tw-loc-hero__chips,
	.tw-about-hero__chips {
		gap: 0.4rem;
	}

	.tw-chip {
		font-size: 0.78rem;
		padding: 0.35rem 0.7rem;
	}

	/* Feature bands: always stack on small phones */
	.tw-feature-band__grid {
		grid-template-columns: 1fr;
	}

	/* Final CTA: stack contact block below actions */
	.tw-final-cta-band__inner {
		grid-template-columns: 1fr;
	}

	/* Section headings: tighten on very small screens */
	.tw-section__header {
		margin-bottom: 1.25rem;
	}

	/* Footer: single column already handled, tighten gap */
	.tw-footer__inner {
		gap: 1.5rem;
	}

	/* Location pills: smaller on phone */
	.tw-location-pill {
		font-size: 0.82rem;
		padding: 0.4rem 0.7rem;
	}

	/* Service cards: full width, reduce internal padding */
	.tw-service-card {
		padding: 1.1rem;
	}

	/* Mobile CTA bar: ensure text doesn't clip */
	.tw-mobile-cta .tw-btn {
		font-size: 0.8rem;
		padding: 0.6rem 0.4rem;
	}
}
