/*
 * ThatWorx Local Launch — main stylesheet.
 *
 * Premium coastal design system for the Local Service starter.
 * Mobile-first, vanilla CSS, no frameworks.
 *
 * Layers (in order):
 *   1. Design tokens (CSS variables)
 *   2. Reset / base
 *   3. Layout primitives + shared section pieces
 *   4. Buttons
 *   5. Header / navigation
 *   6. Hero
 *   7. Trust strip
 *   8. Services
 *   9. Why Choose Us
 *  10. Gallery (before/after)
 *  11. Testimonials
 *  12. Service areas
 *  13. Quote / contact CTA + form
 *  14. Footer
 *  15. Content templates (page/single/index)
 *  16. Utilities
 */

/* -------------------------------------------------------------------
 * 1. Design tokens
 * ---------------------------------------------------------------- */

:root {
	--twx-navy: #061b33;
	--twx-navy-2: #092846;
	--twx-teal: #00a8a8;
	--twx-teal-dark: #008b8b;
	--twx-aqua: #dff8f7;
	--twx-sand: #f5efe4;
	--twx-white: #ffffff;
	--twx-light: #f8fbfc;
	--twx-text: #122033;
	--twx-muted: #5f6f7d;
	--twx-border: #dce7ea;
	--twx-shadow: 0 18px 45px rgba(6, 27, 51, 0.12);
	--twx-radius: 18px;
	--twx-radius-sm: 10px;
	--twx-max: 1180px;

	/* Supporting tokens */
	--twx-shadow-sm: 0 4px 14px rgba(6, 27, 51, 0.08);
	--twx-star: #f5a623;

	/* Warm accent (restaurant/food starters) */
	--twx-warm: #d97f4e;
	--twx-warm-dark: #b9633a;
	--twx-cream: #fbf5ea;
	--twx-font-body: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
	--twx-space-xs: 0.5rem;
	--twx-space-sm: 0.75rem;
	--twx-space-md: 1.25rem;
	--twx-space-lg: 2rem;
	--twx-space-xl: 4rem;
	--twx-space-2xl: 6rem;
}

/* -------------------------------------------------------------------
 * 2. Reset / base
 * ---------------------------------------------------------------- */

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

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	font-family: var(--twx-font-body);
	font-size: 1rem;
	line-height: 1.65;
	color: var(--twx-text);
	background-color: var(--twx-white);
	-webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	line-height: 1.18;
	color: var(--twx-navy);
	margin: 0 0 var(--twx-space-sm);
	font-weight: 800;
	letter-spacing: -0.01em;
}

p {
	margin: 0 0 var(--twx-space-md);
}

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

a {
	color: var(--twx-teal-dark);
}

ul {
	margin: 0;
	padding: 0;
}

svg {
	display: block;
}

/* -------------------------------------------------------------------
 * 3. Layout primitives + shared section pieces
 * ---------------------------------------------------------------- */

.twx-ll-container {
	width: 100%;
	max-width: var(--twx-max);
	margin-inline: auto;
	padding-inline: var(--twx-space-md);
}

.twx-ll-section {
	padding-block: var(--twx-space-xl);
}

.twx-ll-section__header {
	max-width: 44rem;
	margin: 0 auto var(--twx-space-lg);
	text-align: center;
}

.twx-ll-section__header--left {
	margin-inline: 0;
	text-align: left;
}

.twx-ll-section__title {
	font-size: clamp(1.6rem, 3.2vw, 2.25rem);
	margin-bottom: var(--twx-space-xs);
}

.twx-ll-eyebrow {
	display: block;
	margin: 0 0 var(--twx-space-xs);
	font-size: 0.8rem;
	font-weight: 700;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: var(--twx-teal-dark);
}

.twx-ll-card {
	background-color: var(--twx-white);
	border: 1px solid var(--twx-border);
	border-radius: var(--twx-radius);
	box-shadow: var(--twx-shadow-sm);
}

/* Branded media placeholder used wherever a photo is missing. */
.twx-ll-media-placeholder {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	background:
		radial-gradient(120% 90% at 85% 10%, rgba(0, 168, 168, 0.35), transparent 55%),
		radial-gradient(100% 80% at 10% 90%, rgba(223, 248, 247, 0.18), transparent 50%),
		linear-gradient(145deg, var(--twx-teal) 0%, var(--twx-teal-dark) 55%, #036d6d 100%);
	overflow: hidden;
}

.twx-ll-media-placeholder--navy {
	background:
		radial-gradient(120% 90% at 85% 12%, rgba(0, 168, 168, 0.5), transparent 55%),
		radial-gradient(90% 70% at 12% 88%, rgba(0, 139, 139, 0.35), transparent 55%),
		linear-gradient(150deg, var(--twx-navy-2) 0%, var(--twx-navy) 70%);
}

.twx-ll-media-placeholder__mark {
	width: 3rem;
	height: 3rem;
	color: rgba(255, 255, 255, 0.85);
}

.twx-ll-media-placeholder__mark svg {
	width: 100%;
	height: 100%;
}

/* -------------------------------------------------------------------
 * 4. Buttons
 * ---------------------------------------------------------------- */

.twx-ll-button {
	display: inline-block;
	padding: 0.8rem 1.6rem;
	border: 2px solid transparent;
	border-radius: 999px;
	font-weight: 700;
	font-size: 0.95rem;
	line-height: 1.2;
	text-decoration: none;
	text-align: center;
	cursor: pointer;
	transition: background-color 0.15s ease, color 0.15s ease, border-color 0.15s ease, transform 0.15s ease, box-shadow 0.15s ease;
}

.twx-ll-button--lg {
	padding: 1rem 2.1rem;
	font-size: 1.05rem;
}

.twx-ll-button--primary {
	background-color: var(--twx-teal);
	color: var(--twx-white);
	box-shadow: 0 8px 22px rgba(0, 168, 168, 0.35);
}

.twx-ll-button--primary:hover,
.twx-ll-button--primary:focus {
	background-color: var(--twx-teal-dark);
	color: var(--twx-white);
	transform: translateY(-1px);
}

.twx-ll-button--secondary {
	background-color: transparent;
	color: var(--twx-teal-dark);
	border-color: var(--twx-teal);
}

.twx-ll-button--secondary:hover,
.twx-ll-button--secondary:focus {
	background-color: var(--twx-aqua);
}

/* Ghost: for dark/hero backgrounds. */
.twx-ll-button--ghost {
	background-color: rgba(255, 255, 255, 0.08);
	color: var(--twx-white);
	border-color: rgba(255, 255, 255, 0.65);
	backdrop-filter: blur(2px);
}

.twx-ll-button--ghost:hover,
.twx-ll-button--ghost:focus {
	background-color: rgba(255, 255, 255, 0.18);
	border-color: var(--twx-white);
	color: var(--twx-white);
}

/* -------------------------------------------------------------------
 * 5. Header / navigation
 * ---------------------------------------------------------------- */

.twx-ll-header {
	position: sticky;
	top: 0;
	z-index: 50;
	background-color: var(--twx-navy);
	color: var(--twx-white);
	box-shadow: 0 2px 14px rgba(6, 27, 51, 0.35);
}

.twx-ll-header__inner {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: var(--twx-space-sm);
	padding-block: 0.9rem;
}

.twx-ll-header__site-name {
	display: inline-flex;
	align-items: center;
	gap: 0.6rem;
	color: var(--twx-white);
	font-weight: 800;
	font-size: 1.05rem;
	letter-spacing: 0.01em;
	text-decoration: none;
}

.twx-ll-header__mark {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 2.25rem;
	height: 2.25rem;
	border-radius: 50%;
	background: linear-gradient(145deg, var(--twx-teal), var(--twx-teal-dark));
	color: var(--twx-white);
	flex-shrink: 0;
}

.twx-ll-header__mark svg {
	width: 1.2rem;
	height: 1.2rem;
}

.twx-ll-nav-toggle {
	display: inline-flex;
	flex-direction: column;
	gap: 5px;
	background: none;
	border: 0;
	padding: var(--twx-space-xs);
	cursor: pointer;
}

.twx-ll-nav-toggle__bar {
	width: 24px;
	height: 2px;
	border-radius: 2px;
	background-color: var(--twx-white);
	transition: transform 0.2s ease, opacity 0.2s ease;
}

.twx-ll-nav-toggle[aria-expanded="true"] .twx-ll-nav-toggle__bar:nth-child(1) {
	transform: translateY(7px) rotate(45deg);
}

.twx-ll-nav-toggle[aria-expanded="true"] .twx-ll-nav-toggle__bar:nth-child(2) {
	opacity: 0;
}

.twx-ll-nav-toggle[aria-expanded="true"] .twx-ll-nav-toggle__bar:nth-child(3) {
	transform: translateY(-7px) rotate(-45deg);
}

.twx-ll-nav {
	display: none;
	width: 100%;
}

.twx-ll-nav.is-open {
	display: block;
}

.twx-ll-nav__list {
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: var(--twx-space-xs);
	padding-block: var(--twx-space-sm);
}

.twx-ll-nav__list a {
	display: block;
	padding: 0.4rem 0;
	color: rgba(255, 255, 255, 0.88);
	font-weight: 600;
	font-size: 0.95rem;
	text-decoration: none;
	transition: color 0.15s ease;
}

.twx-ll-nav__list a:hover,
.twx-ll-nav__list a:focus {
	color: var(--twx-aqua);
}

.twx-ll-header__cta {
	margin-top: var(--twx-space-xs);
}

@media (min-width: 56em) {
	.twx-ll-nav-toggle {
		display: none;
	}

	.twx-ll-nav {
		display: flex;
		align-items: center;
		gap: var(--twx-space-lg);
		width: auto;
	}

	.twx-ll-nav__list {
		flex-direction: row;
		gap: var(--twx-space-md);
		padding-block: 0;
	}

	.twx-ll-header__cta {
		margin-top: 0;
	}
}

/* -------------------------------------------------------------------
 * 6. Hero
 * ---------------------------------------------------------------- */

.twx-ll-hero {
	position: relative;
	overflow: hidden;
	color: var(--twx-white);
	background-color: var(--twx-navy);
	background-size: cover;
	background-position: center;
	padding-block: clamp(4rem, 10vw, 7.5rem) clamp(5rem, 11vw, 8.5rem);
}

/* Graceful gradient treatment while the hero photo is missing. */
.twx-ll-hero--placeholder {
	background:
		radial-gradient(110% 90% at 88% 8%, rgba(0, 168, 168, 0.55), transparent 55%),
		radial-gradient(80% 70% at 5% 95%, rgba(0, 139, 139, 0.45), transparent 55%),
		linear-gradient(160deg, var(--twx-navy-2) 0%, var(--twx-navy) 62%);
}

/* Readability overlay when a real photo is present. */
.twx-ll-hero--has-image::before {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(100deg, rgba(6, 27, 51, 0.88) 0%, rgba(6, 27, 51, 0.62) 45%, rgba(6, 27, 51, 0.25) 100%);
}

.twx-ll-hero__inner {
	position: relative;
	z-index: 1;
}

.twx-ll-hero__content {
	max-width: 38rem;
}

.twx-ll-hero__headline {
	color: var(--twx-white);
	font-size: clamp(2.1rem, 5.4vw, 3.4rem);
	margin-bottom: var(--twx-space-md);
	text-wrap: balance;
}

.twx-ll-hero__subheadline {
	color: rgba(255, 255, 255, 0.85);
	font-size: clamp(1rem, 1.6vw, 1.2rem);
	max-width: 34rem;
	margin-bottom: var(--twx-space-lg);
}

.twx-ll-hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: var(--twx-space-sm);
}

/* Wave divider into the trust strip. */
.twx-ll-hero__wave {
	position: absolute;
	left: 0;
	right: 0;
	bottom: -1px;
	color: var(--twx-white);
	line-height: 0;
}

.twx-ll-hero__wave svg {
	width: 100%;
	height: clamp(28px, 4.5vw, 64px);
}

/* -------------------------------------------------------------------
 * 7. Trust strip
 * ---------------------------------------------------------------- */

.twx-ll-trust {
	background-color: var(--twx-white);
	padding-block: var(--twx-space-lg) var(--twx-space-xl);
}

.twx-ll-trust__list {
	list-style: none;
	display: grid;
	gap: var(--twx-space-md);
	grid-template-columns: 1fr;
}

.twx-ll-trust__item {
	display: flex;
	align-items: flex-start;
	gap: 0.9rem;
}

.twx-ll-trust__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 3rem;
	height: 3rem;
	border-radius: 50%;
	background-color: var(--twx-aqua);
	color: var(--twx-teal-dark);
	flex-shrink: 0;
}

.twx-ll-trust__icon svg {
	width: 1.5rem;
	height: 1.5rem;
}

.twx-ll-trust__text {
	display: block;
}

.twx-ll-trust__title {
	display: block;
	color: var(--twx-navy);
	font-size: 1rem;
}

.twx-ll-trust__description {
	display: block;
	color: var(--twx-muted);
	font-size: 0.88rem;
	line-height: 1.45;
	margin-top: 0.15rem;
}

@media (min-width: 40em) {
	.twx-ll-trust__list {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (min-width: 64em) {
	.twx-ll-trust__list {
		grid-template-columns: repeat(4, 1fr);
	}
}

/* -------------------------------------------------------------------
 * 8. Services
 * ---------------------------------------------------------------- */

.twx-ll-services {
	background-color: var(--twx-light);
}

.twx-ll-services__grid {
	display: grid;
	gap: var(--twx-space-md);
	grid-template-columns: 1fr;
}

.twx-ll-service-card {
	display: flex;
	flex-direction: column;
	overflow: hidden;
	transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.twx-ll-service-card:hover {
	transform: translateY(-4px);
	box-shadow: var(--twx-shadow);
}

.twx-ll-service-card__media {
	aspect-ratio: 4 / 3;
	background-color: var(--twx-aqua);
}

.twx-ll-service-card__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.twx-ll-service-card__body {
	display: flex;
	flex-direction: column;
	flex-grow: 1;
	padding: var(--twx-space-md);
}

.twx-ll-service-card__title {
	font-size: 1.15rem;
	margin-bottom: 0.4rem;
}

.twx-ll-service-card__description {
	color: var(--twx-muted);
	font-size: 0.92rem;
	margin-bottom: var(--twx-space-md);
}

.twx-ll-service-card__link {
	margin-top: auto;
	display: inline-flex;
	align-items: center;
	gap: 0.35rem;
	color: var(--twx-teal-dark);
	font-weight: 700;
	font-size: 0.92rem;
	text-decoration: none;
}

.twx-ll-service-card__link:hover,
.twx-ll-service-card__link:focus {
	text-decoration: underline;
}

@media (min-width: 40em) {
	.twx-ll-services__grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (min-width: 64em) {
	.twx-ll-services__grid {
		grid-template-columns: repeat(4, 1fr);
	}
}

/* -------------------------------------------------------------------
 * 9. Why Choose Us
 * ---------------------------------------------------------------- */

.twx-ll-why-us {
	background-color: var(--twx-white);
}

.twx-ll-why-us__inner {
	display: grid;
	gap: var(--twx-space-lg);
	grid-template-columns: 1fr;
	align-items: center;
}

.twx-ll-why-us__media {
	border-radius: var(--twx-radius);
	overflow: hidden;
	min-height: 16rem;
	box-shadow: var(--twx-shadow);
}

.twx-ll-why-us__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.twx-ll-why-us__media-label {
	padding: var(--twx-space-md);
	color: var(--twx-white);
	font-weight: 800;
	font-size: 1.3rem;
	letter-spacing: 0.02em;
	text-align: center;
	text-shadow: 0 2px 12px rgba(6, 27, 51, 0.45);
}

.twx-ll-why-us__grid {
	list-style: none;
	display: grid;
	gap: var(--twx-space-md);
	grid-template-columns: 1fr;
}

.twx-ll-why-us__item {
	display: flex;
	align-items: flex-start;
	gap: 0.75rem;
}

.twx-ll-why-us__check {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 2rem;
	height: 2rem;
	border-radius: 50%;
	background-color: var(--twx-aqua);
	color: var(--twx-teal-dark);
	flex-shrink: 0;
	margin-top: 0.15rem;
}

.twx-ll-why-us__check svg {
	width: 1.1rem;
	height: 1.1rem;
}

.twx-ll-why-us__title {
	display: block;
	color: var(--twx-navy);
	font-size: 1rem;
}

.twx-ll-why-us__description {
	display: block;
	color: var(--twx-muted);
	font-size: 0.9rem;
	line-height: 1.5;
	margin-top: 0.15rem;
}

@media (min-width: 40em) {
	.twx-ll-why-us__grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (min-width: 60em) {
	.twx-ll-why-us__inner {
		grid-template-columns: 5fr 6fr;
		gap: var(--twx-space-xl);
	}

	.twx-ll-why-us__media {
		min-height: 24rem;
	}
}

/* -------------------------------------------------------------------
 * 10. Gallery (before/after)
 * ---------------------------------------------------------------- */

.twx-ll-gallery {
	background-color: var(--twx-light);
}

.twx-ll-gallery__grid {
	display: grid;
	gap: var(--twx-space-md);
	grid-template-columns: 1fr;
}

.twx-ll-gallery__item {
	margin: 0;
}

.twx-ll-gallery__media {
	position: relative;
	display: flex;
	aspect-ratio: 4 / 3;
	border-radius: var(--twx-radius-sm);
	overflow: hidden;
	box-shadow: var(--twx-shadow-sm);
}

.twx-ll-gallery__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

/* Split two-tone placeholder: grimy "before" left, clean "after" right. */
.twx-ll-gallery__half {
	flex: 1 1 50%;
}

.twx-ll-gallery__half--before {
	background: linear-gradient(160deg, #5b6a72 0%, #46545c 55%, #39454d 100%);
}

.twx-ll-gallery__half--after {
	background: linear-gradient(160deg, var(--twx-aqua) 0%, #b8ecea 50%, #8fdedd 100%);
}

.twx-ll-badge {
	position: absolute;
	top: 0.6rem;
	padding: 0.22rem 0.65rem;
	border-radius: 999px;
	font-size: 0.68rem;
	font-weight: 800;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.twx-ll-badge--before {
	left: 0.6rem;
	background-color: rgba(6, 27, 51, 0.82);
	color: var(--twx-white);
}

.twx-ll-badge--after {
	right: 0.6rem;
	background-color: var(--twx-teal);
	color: var(--twx-white);
}

.twx-ll-gallery__caption {
	margin-top: 0.6rem;
	color: var(--twx-muted);
	font-size: 0.85rem;
	text-align: center;
}

@media (min-width: 40em) {
	.twx-ll-gallery__grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (min-width: 64em) {
	.twx-ll-gallery__grid {
		grid-template-columns: repeat(4, 1fr);
	}
}

/* -------------------------------------------------------------------
 * 11. Testimonials
 * ---------------------------------------------------------------- */

.twx-ll-testimonials {
	background-color: var(--twx-white);
}

.twx-ll-testimonials__grid {
	display: grid;
	gap: var(--twx-space-md);
	grid-template-columns: 1fr;
}

.twx-ll-testimonial {
	margin: 0;
	padding: var(--twx-space-lg);
	display: flex;
	flex-direction: column;
}

.twx-ll-testimonial__rating {
	color: var(--twx-star);
	font-size: 1.05rem;
	letter-spacing: 0.15em;
	margin-bottom: var(--twx-space-sm);
}

.twx-ll-testimonial__quote {
	font-size: 0.97rem;
	color: var(--twx-text);
	flex-grow: 1;
}

.twx-ll-testimonial__meta {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	margin-top: var(--twx-space-sm);
}

.twx-ll-testimonial__avatar {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 2.6rem;
	height: 2.6rem;
	border-radius: 50%;
	background: linear-gradient(145deg, var(--twx-teal), var(--twx-teal-dark));
	color: var(--twx-white);
	font-weight: 800;
	flex-shrink: 0;
}

.twx-ll-testimonial__author {
	display: block;
	font-style: normal;
	font-weight: 700;
	color: var(--twx-navy);
	font-size: 0.95rem;
}

.twx-ll-testimonial__location {
	display: block;
	color: var(--twx-muted);
	font-size: 0.82rem;
}

@media (min-width: 56em) {
	.twx-ll-testimonials__grid {
		grid-template-columns: repeat(3, 1fr);
	}
}

/* -------------------------------------------------------------------
 * 12. Service areas
 * ---------------------------------------------------------------- */

.twx-ll-areas {
	background-color: var(--twx-sand);
	padding-block: var(--twx-space-lg);
}

.twx-ll-areas__title {
	text-align: center;
	margin-bottom: var(--twx-space-md);
}

.twx-ll-areas__list {
	list-style: none;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: var(--twx-space-sm);
}

.twx-ll-areas__item {
	display: inline-flex;
	align-items: center;
	gap: 0.45rem;
	padding: 0.55rem 1.1rem;
	background-color: var(--twx-white);
	border: 1px solid var(--twx-border);
	border-radius: 999px;
	box-shadow: var(--twx-shadow-sm);
	color: var(--twx-navy);
	font-weight: 600;
	font-size: 0.92rem;
}

.twx-ll-areas__pin {
	display: inline-flex;
	color: var(--twx-teal);
}

.twx-ll-areas__pin svg {
	width: 1rem;
	height: 1rem;
}

/* -------------------------------------------------------------------
 * 13. Quote / contact CTA + form
 * ---------------------------------------------------------------- */

.twx-ll-quote {
	background:
		radial-gradient(100% 80% at 90% 5%, rgba(0, 168, 168, 0.28), transparent 55%),
		linear-gradient(155deg, var(--twx-navy-2) 0%, var(--twx-navy) 65%);
	color: var(--twx-white);
}

.twx-ll-quote__inner {
	display: grid;
	gap: var(--twx-space-lg);
	grid-template-columns: 1fr;
	align-items: start;
}

.twx-ll-quote__heading {
	color: var(--twx-white);
	font-size: clamp(1.7rem, 3.4vw, 2.4rem);
	margin-bottom: 0.3rem;
}

.twx-ll-quote__subheading {
	color: var(--twx-aqua);
	font-weight: 700;
	font-size: 1.15rem;
	margin-bottom: var(--twx-space-sm);
}

.twx-ll-quote__text {
	color: rgba(255, 255, 255, 0.82);
	max-width: 30rem;
}

.twx-ll-quote__contact {
	list-style: none;
	display: grid;
	gap: var(--twx-space-sm);
	margin-top: var(--twx-space-lg);
}

.twx-ll-quote__contact li {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	font-size: 1rem;
}

.twx-ll-quote__contact a {
	color: var(--twx-white);
	font-weight: 700;
	text-decoration: none;
}

.twx-ll-quote__contact a:hover,
.twx-ll-quote__contact a:focus {
	color: var(--twx-aqua);
	text-decoration: underline;
}

.twx-ll-quote__contact-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 2.4rem;
	height: 2.4rem;
	border-radius: 50%;
	background-color: rgba(255, 255, 255, 0.1);
	color: var(--twx-aqua);
	flex-shrink: 0;
}

.twx-ll-quote__contact-icon svg {
	width: 1.2rem;
	height: 1.2rem;
}

/* Form card */
.twx-ll-quote__form-wrap {
	background-color: var(--twx-white);
	border-radius: var(--twx-radius);
	box-shadow: var(--twx-shadow);
	padding: var(--twx-space-lg);
	color: var(--twx-text);
}

.twx-ll-quote-form {
	display: grid;
	gap: var(--twx-space-sm);
	grid-template-columns: 1fr;
}

.twx-ll-field {
	margin: 0;
}

.twx-ll-field label {
	display: block;
	font-weight: 600;
	font-size: 0.88rem;
	color: var(--twx-navy);
	margin-bottom: 0.3rem;
}

.twx-ll-field input,
.twx-ll-field select,
.twx-ll-field textarea {
	width: 100%;
	padding: 0.7rem 0.85rem;
	border: 1px solid var(--twx-border);
	border-radius: var(--twx-radius-sm);
	font: inherit;
	font-size: 0.95rem;
	color: var(--twx-text);
	background-color: var(--twx-light);
	transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.twx-ll-field input:focus,
.twx-ll-field select:focus,
.twx-ll-field textarea:focus {
	outline: none;
	border-color: var(--twx-teal);
	box-shadow: 0 0 0 3px rgba(0, 168, 168, 0.18);
	background-color: var(--twx-white);
}

.twx-ll-field textarea {
	resize: vertical;
	min-height: 6rem;
}

.twx-ll-required {
	color: var(--twx-teal-dark);
}

.twx-ll-submit {
	margin: 0.25rem 0 0;
}

.twx-ll-submit .twx-ll-button {
	width: 100%;
	border: 0;
	font-size: 1rem;
	padding: 0.95rem 1.5rem;
}

/* Honeypot: visually removed but still in the DOM for bots. */
.twx-ll-hp {
	position: absolute !important;
	left: -9999px !important;
	width: 1px;
	height: 1px;
	overflow: hidden;
	margin: 0;
}

/* Validation + success messages */
.twx-ll-form-errors {
	background-color: #fdf0ef;
	border: 1px solid #f0b8b4;
	border-radius: var(--twx-radius-sm);
	padding: var(--twx-space-md);
	margin-bottom: var(--twx-space-md);
	color: #8a2a23;
	font-size: 0.92rem;
}

.twx-ll-form-errors__title {
	font-weight: 700;
	margin-bottom: 0.4rem;
}

.twx-ll-form-errors__list {
	list-style: disc;
	padding-left: 1.2rem;
	display: grid;
	gap: 0.25rem;
	margin: 0;
}

.twx-ll-form-success {
	background-color: var(--twx-aqua);
	border: 1px solid var(--twx-teal);
	border-radius: var(--twx-radius-sm);
	padding: var(--twx-space-lg);
	text-align: center;
}

.twx-ll-form-success__title {
	color: var(--twx-navy);
	font-weight: 800;
	font-size: 1.1rem;
	margin-bottom: 0.4rem;
}

.twx-ll-form-success__text {
	color: var(--twx-muted);
	font-size: 0.95rem;
	margin: 0;
}

/* Fallback CTA (plugin inactive) */
.twx-ll-quote__fallback-actions {
	display: flex;
	flex-wrap: wrap;
	gap: var(--twx-space-sm);
}

@media (min-width: 40em) {
	.twx-ll-quote-form {
		grid-template-columns: repeat(2, 1fr);
	}

	/* Service select, message, and submit span the full card. */
	.twx-ll-quote-form .twx-ll-field:has(select),
	.twx-ll-quote-form .twx-ll-field:has(textarea),
	.twx-ll-quote-form .twx-ll-submit {
		grid-column: 1 / -1;
	}
}

@media (min-width: 60em) {
	.twx-ll-quote__inner {
		grid-template-columns: 5fr 6fr;
		gap: var(--twx-space-xl);
	}
}

/* -------------------------------------------------------------------
 * 14. Footer
 * ---------------------------------------------------------------- */

.twx-ll-footer {
	background-color: var(--twx-navy);
	color: rgba(255, 255, 255, 0.78);
	border-top: 1px solid var(--twx-navy-2);
}

.twx-ll-footer__inner {
	display: grid;
	gap: var(--twx-space-lg);
	grid-template-columns: 1fr;
	padding-block: var(--twx-space-xl) var(--twx-space-lg);
}

.twx-ll-footer__heading {
	color: var(--twx-white);
	font-size: 1rem;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	margin-bottom: var(--twx-space-sm);
}

.twx-ll-footer__about p {
	font-size: 0.92rem;
	max-width: 18rem;
}

.twx-ll-footer__list {
	list-style: none;
	display: grid;
	gap: 0.45rem;
	font-size: 0.92rem;
}

.twx-ll-footer a {
	color: rgba(255, 255, 255, 0.78);
	text-decoration: none;
	transition: color 0.15s ease;
}

.twx-ll-footer a:hover,
.twx-ll-footer a:focus {
	color: var(--twx-aqua);
	text-decoration: underline;
}

.twx-ll-footer__bottom {
	border-top: 1px solid rgba(255, 255, 255, 0.08);
	padding-block: var(--twx-space-md);
	font-size: 0.82rem;
	color: rgba(255, 255, 255, 0.55);
}

.twx-ll-footer__bottom p {
	margin: 0;
}

.twx-ll-footer__credit {
	display: inline-block;
	margin-left: 0.35rem;
	color: rgba(255, 255, 255, 0.4);
}

@media (min-width: 48em) {
	.twx-ll-footer__inner {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (min-width: 64em) {
	.twx-ll-footer__inner {
		grid-template-columns: 1.4fr 1fr 1fr 1fr;
	}
}

/* -------------------------------------------------------------------
 * 15. Content templates (page/single/index)
 * ---------------------------------------------------------------- */

.twx-ll-content {
	background-color: var(--twx-white);
}

.twx-ll-entry__title {
	font-size: clamp(1.6rem, 3.2vw, 2.25rem);
}

.twx-ll-entry__title a {
	color: inherit;
	text-decoration: none;
}

.twx-ll-entry__meta {
	color: var(--twx-muted);
	font-size: 0.88rem;
}

.twx-ll-entry__content {
	max-width: 46rem;
}

/* -------------------------------------------------------------------
 * 16. Restaurant-flavor sections (menu, story, catering, hours)
 *
 * Shared sections any starter can use; warm accents keep food
 * businesses appetizing while staying on the navy/teal foundation.
 * ---------------------------------------------------------------- */

/* Warm variants of shared pieces */
.twx-ll-eyebrow--warm {
	color: var(--twx-warm-dark);
}

.twx-ll-media-placeholder--warm {
	background:
		radial-gradient(120% 90% at 85% 10%, rgba(245, 166, 35, 0.4), transparent 55%),
		radial-gradient(100% 80% at 10% 90%, rgba(251, 245, 234, 0.22), transparent 50%),
		linear-gradient(145deg, var(--twx-warm) 0%, var(--twx-warm-dark) 60%, #94492a 100%);
}

/* Warmer dusk tint on the gradient hero for restaurant starters. */
.twx-ll-starter-restaurant .twx-ll-hero--placeholder {
	background:
		radial-gradient(110% 90% at 88% 8%, rgba(217, 127, 78, 0.5), transparent 55%),
		radial-gradient(80% 70% at 5% 95%, rgba(0, 139, 139, 0.4), transparent 55%),
		linear-gradient(160deg, var(--twx-navy-2) 0%, var(--twx-navy) 62%);
}

/* Menu highlights */
.twx-ll-menu {
	background-color: var(--twx-cream);
}

.twx-ll-menu__grid {
	display: grid;
	gap: var(--twx-space-md);
	grid-template-columns: 1fr;
}

.twx-ll-menu-card {
	display: flex;
	flex-direction: column;
	overflow: hidden;
	transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.twx-ll-menu-card:hover {
	transform: translateY(-4px);
	box-shadow: var(--twx-shadow);
}

.twx-ll-menu-card__media {
	aspect-ratio: 16 / 10;
	background-color: var(--twx-sand);
}

.twx-ll-menu-card__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.twx-ll-menu-card__body {
	display: flex;
	flex-direction: column;
	flex-grow: 1;
	padding: var(--twx-space-md);
}

.twx-ll-menu-card__title {
	font-size: 1.2rem;
	margin-bottom: 0.35rem;
}

.twx-ll-menu-card__description {
	color: var(--twx-muted);
	font-size: 0.92rem;
	margin-bottom: var(--twx-space-md);
}

.twx-ll-menu-card__items {
	list-style: none;
	display: grid;
	gap: 0.5rem;
	margin-top: auto;
}

.twx-ll-menu-card__item {
	display: flex;
	align-items: baseline;
	gap: 0.5rem;
	font-size: 0.94rem;
}

/* Dotted leader between dish and price. */
.twx-ll-menu-card__item::after {
	content: "";
	order: 2;
	flex-grow: 1;
	border-bottom: 2px dotted var(--twx-border);
	transform: translateY(-3px);
}

.twx-ll-menu-card__item-name {
	order: 1;
	font-weight: 600;
	color: var(--twx-navy);
}

.twx-ll-menu-card__item-price {
	order: 3;
	font-weight: 700;
	color: var(--twx-warm-dark);
}

@media (min-width: 56em) {
	.twx-ll-menu__grid {
		grid-template-columns: repeat(3, 1fr);
	}
}

/* Story */
.twx-ll-story {
	background-color: var(--twx-white);
}

.twx-ll-story__inner {
	display: grid;
	gap: var(--twx-space-lg);
	grid-template-columns: 1fr;
	align-items: center;
}

.twx-ll-story__media {
	border-radius: var(--twx-radius);
	overflow: hidden;
	min-height: 16rem;
	box-shadow: var(--twx-shadow);
}

.twx-ll-story__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.twx-ll-story__media-label {
	padding: var(--twx-space-md);
	color: var(--twx-white);
	font-weight: 800;
	font-size: 1.3rem;
	text-align: center;
	text-shadow: 0 2px 12px rgba(6, 27, 51, 0.45);
}

.twx-ll-story__paragraph {
	color: var(--twx-muted);
	max-width: 36rem;
}

@media (min-width: 60em) {
	.twx-ll-story__inner {
		grid-template-columns: 5fr 6fr;
		gap: var(--twx-space-xl);
	}

	.twx-ll-story__media {
		min-height: 22rem;
	}
}

/* Catering */
.twx-ll-catering {
	background-color: var(--twx-sand);
}

.twx-ll-catering__inner {
	display: grid;
	gap: var(--twx-space-lg);
	grid-template-columns: 1fr;
	align-items: center;
}

.twx-ll-catering__text {
	color: var(--twx-muted);
	max-width: 34rem;
}

.twx-ll-catering__bullets {
	list-style: none;
	display: grid;
	gap: 0.6rem;
	margin-bottom: var(--twx-space-lg);
}

.twx-ll-catering__bullet {
	display: flex;
	align-items: center;
	gap: 0.6rem;
	font-weight: 600;
	color: var(--twx-navy);
	font-size: 0.95rem;
}

.twx-ll-catering__check {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 1.6rem;
	height: 1.6rem;
	border-radius: 50%;
	background-color: rgba(217, 127, 78, 0.16);
	color: var(--twx-warm-dark);
	flex-shrink: 0;
}

.twx-ll-catering__check svg {
	width: 0.95rem;
	height: 0.95rem;
}

.twx-ll-catering__action {
	margin: 0;
}

.twx-ll-catering__media {
	border-radius: var(--twx-radius);
	overflow: hidden;
	min-height: 16rem;
	box-shadow: var(--twx-shadow);
}

.twx-ll-catering__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

@media (min-width: 60em) {
	.twx-ll-catering__inner {
		grid-template-columns: 6fr 5fr;
		gap: var(--twx-space-xl);
	}

	.twx-ll-catering__media {
		min-height: 22rem;
	}
}

/* Hours & location */
.twx-ll-hours-loc {
	background-color: var(--twx-light);
}

.twx-ll-hours-loc__grid {
	display: grid;
	gap: var(--twx-space-md);
	grid-template-columns: 1fr;
}

.twx-ll-hours-loc__card {
	padding: var(--twx-space-lg);
	text-align: center;
}

.twx-ll-hours-loc__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 3rem;
	height: 3rem;
	border-radius: 50%;
	background-color: var(--twx-aqua);
	color: var(--twx-teal-dark);
	margin-bottom: var(--twx-space-sm);
}

.twx-ll-hours-loc__icon svg {
	width: 1.5rem;
	height: 1.5rem;
}

.twx-ll-hours-loc__title {
	font-size: 1.05rem;
	margin-bottom: 0.35rem;
}

.twx-ll-hours-loc__detail {
	color: var(--twx-muted);
	font-size: 0.95rem;
	margin: 0;
}

.twx-ll-hours-loc__detail a {
	color: var(--twx-teal-dark);
	font-weight: 600;
	text-decoration: none;
}

.twx-ll-hours-loc__detail a:hover,
.twx-ll-hours-loc__detail a:focus {
	text-decoration: underline;
}

.twx-ll-hours-loc__note {
	text-align: center;
	color: var(--twx-muted);
	font-size: 0.9rem;
	margin: var(--twx-space-md) 0 0;
}

@media (min-width: 56em) {
	.twx-ll-hours-loc__grid {
		grid-template-columns: repeat(3, 1fr);
	}
}

/* -------------------------------------------------------------------
 * 17. Utilities
 * ---------------------------------------------------------------- */

.screen-reader-text {
	position: absolute !important;
	width: 1px;
	height: 1px;
	margin: -1px;
	padding: 0;
	overflow: hidden;
	clip: rect(0 0 0 0);
	white-space: nowrap;
	border: 0;
}

.twx-ll-skip-link {
	position: absolute;
	left: -9999px;
	top: 0;
	background-color: var(--twx-teal);
	color: var(--twx-white);
	padding: var(--twx-space-xs) var(--twx-space-md);
	z-index: 100;
}

.twx-ll-skip-link:focus {
	left: 0;
}
