:root {
	--att-bg: #f3f7f3;
	--att-surface: #ffffff;
	--att-ink: #0f241a;
	--att-soft: #587065;
	--att-faint: #96a89e;
	--att-primary: #187a4c;
	--att-primary-dark: #0f5b38;
	--att-primary-tint: #e3f3e8;
	--att-line: #dce7de;
	--att-tag: #eaf6ee;
	--att-shadow: 0 1px 2px rgba(15, 36, 26, 0.04), 0 10px 28px rgba(15, 36, 26, 0.07);
}

.att-page,
.att-page * {
	box-sizing: border-box;
}

.att-page {
	background:
		radial-gradient(circle at 8% 0%, #e7f3ea 0%, transparent 42%),
		var(--att-bg);
	color: var(--att-ink);
	font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	margin: 0 calc(50% - 50vw);
	min-height: 70vh;
	padding: 42px 18px 70px;
	width: 100vw;
}

.att-host-main {
	max-width: none !important;
	padding: 0 !important;
	width: 100% !important;
}

.att-host-panel {
	background: transparent !important;
	border: 0 !important;
	border-radius: 0 !important;
	box-shadow: none !important;
	margin: 0 !important;
	padding: 0 !important;
}

.att-host-panel > h1 {
	display: none !important;
}

.att-host-panel > .entry-content {
	margin: 0 !important;
	padding: 0 !important;
}

.att-shell {
	margin: 0 auto;
	max-width: 1120px;
}

.att-hero {
	border-bottom: 1px solid var(--att-line);
	padding: 18px 0 26px;
}

.att-hero h1 {
	font-size: clamp(28px, 5vw, 58px);
	font-weight: 800;
	letter-spacing: 0;
	line-height: 1.04;
	margin: 0;
	max-width: 820px;
}

.att-hero h1 span {
	color: var(--att-primary);
}

.att-cta,
.att-submit,
.att-contact a {
	align-items: center;
	background: var(--att-primary);
	border: 0;
	border-radius: 12px;
	box-shadow: 0 10px 20px -8px rgba(24, 122, 76, 0.7);
	color: #fff;
	cursor: pointer;
	display: inline-flex;
	font-size: 15px;
	font-weight: 800;
	gap: 8px;
	justify-content: center;
	line-height: 1;
	margin-top: 22px;
	min-height: 48px;
	padding: 14px 22px;
	text-decoration: none;
}

.att-cta:hover,
.att-submit:hover,
.att-contact a:hover {
	background: var(--att-primary-dark);
	color: #fff;
	text-decoration: none;
}

.att-cta span {
	font-size: 21px;
	line-height: 0;
}

.att-notice {
	border: 1px solid var(--att-line);
	border-radius: 12px;
	color: var(--att-ink);
	font-weight: 700;
	margin-top: 16px;
	padding: 12px 14px;
}

.att-notice--success {
	background: var(--att-primary-tint);
	border-color: #c7e6d2;
}

.att-notice--error {
	background: #fff4f3;
	border-color: #f0c7c2;
}

.att-list-section {
	padding-top: 26px;
}

.att-grid {
	display: grid;
	gap: 14px;
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.att-ticket {
	background: var(--att-surface);
	border: 1px solid var(--att-line);
	border-radius: 14px;
	box-shadow: var(--att-shadow);
	color: inherit;
	display: flex;
	gap: 12px;
	min-height: 106px;
	padding: 12px;
	position: relative;
	text-decoration: none;
}

.att-ticket::before,
.att-ticket::after {
	background: var(--att-bg);
	border: 1px solid var(--att-line);
	border-radius: 50%;
	content: "";
	height: 14px;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 14px;
}

.att-ticket::before {
	border-left: 0;
	left: -8px;
}

.att-ticket::after {
	border-right: 0;
	right: -8px;
}

.att-ticket:hover {
	border-color: #b9d8c4;
	color: inherit;
	text-decoration: none;
	transform: translateY(-1px);
}

.att-thumb {
	background: linear-gradient(135deg, #dcefe2, #b7dec4);
	border-radius: 10px;
	flex: 0 0 72px;
	height: 72px;
	overflow: hidden;
}

.att-thumb img,
.att-detail-media img,
.att-upload img {
	display: block;
	height: 100%;
	object-fit: cover;
	width: 100%;
}

.att-thumb--empty::after {
	color: var(--att-primary-dark);
	content: "Tap";
	display: grid;
	font-weight: 800;
	height: 100%;
	place-items: center;
}

.att-card-copy {
	display: flex;
	flex: 1;
	flex-direction: column;
	min-width: 0;
}

.att-card-copy strong {
	color: var(--att-ink);
	font-size: 15px;
	font-weight: 800;
	line-height: 1.25;
}

.att-card-copy em {
	color: var(--att-soft);
	display: block;
	font-size: 13px;
	font-style: normal;
	line-height: 1.4;
	margin-top: 4px;
}

.att-chips {
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
	margin-top: auto;
	padding-top: 9px;
}

.att-chips span {
	background: var(--att-tag);
	border: 1px solid #cfe9d6;
	border-radius: 7px;
	color: var(--att-primary-dark);
	font-size: 11px;
	font-weight: 800;
	line-height: 1;
	padding: 5px 8px;
}

.att-empty {
	background: var(--att-surface);
	border: 1px solid var(--att-line);
	border-radius: 14px;
	box-shadow: var(--att-shadow);
	display: grid;
	gap: 6px;
	padding: 24px;
}

.att-empty strong {
	font-size: 18px;
}

.att-empty span {
	color: var(--att-soft);
}

.att-pagination {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	justify-content: center;
	margin-top: 28px;
}

.att-pagination .page-numbers {
	background: var(--att-surface);
	border: 1px solid var(--att-line);
	border-radius: 10px;
	color: var(--att-ink);
	font-weight: 800;
	padding: 9px 12px;
	text-decoration: none;
}

.att-pagination .current {
	background: var(--att-primary);
	border-color: var(--att-primary);
	color: #fff;
}

.att-form-shell {
	max-width: 680px;
}

.att-form-head {
	align-items: center;
	display: flex;
	gap: 12px;
	margin-bottom: 18px;
}

.att-form-head h1 {
	font-size: clamp(22px, 4vw, 32px);
	font-weight: 800;
	letter-spacing: 0;
	margin: 0;
}

.att-back,
.att-detail-back {
	align-items: center;
	color: var(--att-ink);
	display: inline-flex;
	font-size: 32px;
	font-weight: 600;
	height: 38px;
	justify-content: center;
	text-decoration: none;
	width: 38px;
}

.att-form {
	background: var(--att-surface);
	border: 1px solid var(--att-line);
	border-radius: 16px;
	box-shadow: var(--att-shadow);
	display: grid;
	gap: 14px;
	padding: 18px;
}

.att-upload {
	align-items: center;
	background: var(--att-tag);
	border: 2px dashed #a9d3b7;
	border-radius: 14px;
	color: var(--att-primary-dark);
	cursor: pointer;
	display: flex;
	flex-direction: column;
	gap: 7px;
	height: 170px;
	justify-content: center;
	overflow: hidden;
	position: relative;
	text-align: center;
}

.att-upload input {
	height: 1px;
	opacity: 0;
	position: absolute;
	width: 1px;
}

.att-upload-icon {
	align-items: center;
	background: var(--att-primary);
	border-radius: 50%;
	color: #fff;
	display: flex;
	font-size: 22px;
	font-weight: 800;
	height: 38px;
	justify-content: center;
	width: 38px;
}

.att-upload strong,
.att-upload small {
	position: relative;
	z-index: 1;
}

.att-upload small {
	color: var(--att-soft);
}

.att-upload.has-preview {
	border-style: solid;
}

.att-upload.has-preview strong,
.att-upload.has-preview small,
.att-upload.has-preview .att-upload-icon {
	display: none;
}

.att-upload img {
	inset: 0;
	position: absolute;
}

.att-field {
	display: grid;
	gap: 6px;
}

.att-field span {
	color: var(--att-soft);
	font-size: 11px;
	font-weight: 800;
	letter-spacing: 0;
	text-transform: uppercase;
}

.att-field input,
.att-field select,
.att-field textarea {
	background: var(--att-surface);
	border: 1px solid var(--att-line);
	border-radius: 10px;
	color: var(--att-ink);
	font: inherit;
	min-height: 46px;
	outline: 0;
	padding: 11px 12px;
	width: 100%;
}

.att-field textarea {
	line-height: 1.5;
	min-height: 126px;
	resize: vertical;
}

.att-field input:focus,
.att-field select:focus,
.att-field textarea:focus {
	border-color: var(--att-primary);
	box-shadow: 0 0 0 3px rgba(24, 122, 76, 0.12);
}

.att-row {
	display: grid;
	gap: 12px;
	grid-template-columns: 1fr 1fr;
}

.att-submit {
	margin-top: 4px;
	width: 100%;
}

.att-detail {
	max-width: 1120px;
}

.att-detail-head {
	align-items: start;
	border-bottom: 1px solid var(--att-line);
	display: block;
	gap: 18px;
	margin-bottom: 24px;
	padding: 6px 0 22px;
}

.att-detail-kicker {
	align-items: center;
	color: var(--att-ink);
	display: inline-flex;
	font-size: 15px;
	font-weight: 900;
	gap: 10px;
	margin-bottom: 14px;
}

.att-detail-kicker i {
	background: var(--att-primary);
	border-radius: 50%;
	box-shadow: 0 0 0 10px var(--att-primary-tint);
	display: block;
	height: 9px;
	width: 9px;
}

.att-detail-head h1 {
	font-size: clamp(32px, 4.2vw, 54px);
	font-weight: 950;
	letter-spacing: 0;
	line-height: 1.04;
	margin: 0;
	max-width: 760px;
}

.att-detail-call {
	align-items: center;
	background: var(--att-primary);
	border-radius: 12px;
	box-shadow: 0 12px 24px -10px rgba(24, 122, 76, 0.75);
	color: #fff;
	display: inline-flex;
	font-size: 15px;
	font-weight: 900;
	justify-content: center;
	min-height: 48px;
	padding: 0 22px;
	text-decoration: none;
	white-space: nowrap;
}

.att-detail-call:hover {
	background: var(--att-primary-dark);
	color: #fff;
	text-decoration: none;
}

.att-detail-layout {
	align-items: start;
	display: grid;
	gap: 22px;
	grid-template-columns: minmax(280px, 0.7fr) minmax(0, 1.3fr);
}

.att-detail-media {
	aspect-ratio: 4 / 3;
	background: linear-gradient(135deg, #cfe9d8, #9ad1af);
	border: 1px solid var(--att-line);
	border-radius: 16px;
	box-shadow: var(--att-shadow);
	max-height: 360px;
	overflow: hidden;
	width: 100%;
}

.att-detail-media img {
	background: #fff;
	object-fit: cover;
}

.att-detail-media--empty {
	align-items: center;
	color: var(--att-primary-dark);
	display: flex;
	font-size: 34px;
	font-weight: 900;
	justify-content: center;
}

.att-detail-copy {
	background: var(--att-surface);
	border: 1px solid var(--att-line);
	border-radius: 16px;
	box-shadow: var(--att-shadow);
	display: flex;
	flex-direction: column;
	gap: 18px;
	min-height: 360px;
	padding: 24px;
}

.att-detail-section h2 {
	font-size: 15px;
	font-weight: 950;
	letter-spacing: 0;
	margin: 0 0 10px;
}

.att-detail-meta {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-top: 16px;
}

.att-detail-meta span {
	background: var(--att-tag);
	border: 1px solid #cfe9d6;
	border-radius: 8px;
	color: var(--att-primary-dark);
	font-size: 13px;
	font-weight: 800;
	padding: 7px 9px;
}

.att-detail-desc {
	color: var(--att-soft);
	font-size: 16px;
	line-height: 1.7;
}

.att-detail-desc p {
	margin: 0 0 12px;
}

.att-contact {
	align-items: center;
	background: var(--att-primary-tint);
	border: 1px solid #cfe9d6;
	border-radius: 14px;
	display: flex;
	gap: 14px;
	justify-content: space-between;
	margin-top: auto;
	padding: 16px;
}

.att-contact strong {
	display: block;
	font-size: 18px;
}

.att-contact small {
	color: var(--att-soft);
	display: block;
	font-weight: 700;
	margin-bottom: 4px;
}

.att-contact a {
	background: var(--att-primary-dark);
	color: #fff !important;
	margin: 0;
	min-width: 130px;
}

.att-page .att-cta,
.att-page .att-submit,
.att-page .att-contact a {
	color: #fff !important;
}

.att-request-detail {
	max-width: 1120px;
}

.att-request-grid {
	align-items: stretch;
	display: grid;
	gap: 22px;
	grid-template-columns: minmax(300px, 0.92fr) minmax(0, 1.08fr);
}

.att-request-gallery,
.att-request-info {
	min-width: 0;
}

.att-request-photo {
	aspect-ratio: 4 / 3;
	background: linear-gradient(135deg, #cfe9d8, #8fcba6);
	border: 1px solid var(--att-line);
	border-radius: 16px;
	box-shadow: var(--att-shadow);
	max-height: 390px;
	overflow: hidden;
	position: relative;
}

.att-request-photo img {
	background: #fff;
	display: block;
	height: 100%;
	object-fit: cover;
	width: 100%;
}

.att-request-photo.is-empty {
	align-items: center;
	color: var(--att-primary-dark);
	display: flex;
	font-size: 34px;
	font-weight: 950;
	justify-content: center;
}

.att-photo-count {
	background: rgba(15, 36, 26, 0.52);
	border-radius: 999px;
	bottom: 12px;
	color: #fff;
	font-size: 11px;
	font-weight: 800;
	line-height: 1;
	padding: 6px 9px;
	position: absolute;
	right: 12px;
}

.att-request-thumbs {
	display: flex;
	gap: 8px;
	margin-top: 10px;
}

.att-request-thumbs span {
	background: var(--att-tag);
	border: 2px solid transparent;
	border-radius: 10px;
	display: block;
	height: 64px;
	overflow: hidden;
	width: 64px;
}

.att-request-thumbs span.is-active {
	border-color: var(--att-primary);
}

.att-request-thumbs img {
	display: block;
	height: 100%;
	object-fit: cover;
	width: 100%;
}

.att-request-info {
	background: var(--att-surface);
	border: 1px solid var(--att-line);
	border-radius: 16px;
	box-shadow: var(--att-shadow);
	display: flex;
	flex-direction: column;
	gap: 14px;
	padding: 24px;
}

.att-status-badge {
	align-items: center;
	align-self: flex-start;
	background: transparent;
	border: 0;
	border-radius: 999px;
	color: var(--att-soft);
	display: inline-flex;
	font-size: 12px;
	font-weight: 800;
	gap: 7px;
	letter-spacing: 0;
	line-height: 1;
	padding: 0;
	text-transform: none;
}

.att-status-badge i {
	background: var(--att-primary);
	border-radius: 50%;
	display: block;
	height: 7px;
	width: 7px;
}

.att-request-title {
	align-items: start;
	display: grid;
	gap: 10px;
	grid-template-columns: minmax(0, 1fr) auto;
}

.att-request-title h1 {
	color: var(--att-ink);
	font-size: clamp(26px, 2.8vw, 38px);
	font-weight: 900;
	letter-spacing: 0;
	line-height: 1.12;
	margin: 0;
}

.att-budget-pill {
	background: #fff3de;
	border: 1px solid #f3d9a0;
	border-radius: 10px;
	color: var(--att-ink);
	display: inline-flex;
	font-size: 13px;
	font-weight: 850;
	line-height: 1;
	padding: 9px 11px;
	white-space: nowrap;
}

.att-request-meta {
	color: var(--att-soft);
	display: flex;
	flex-wrap: wrap;
	font-size: 12.5px;
	font-weight: 700;
	gap: 12px;
}

.att-request-meta span {
	align-items: center;
	display: inline-flex;
	gap: 5px;
}

.att-stub-divider {
	background: var(--att-line);
	height: 1px;
	margin: 2px 0;
	position: relative;
}

.att-stub-divider::before,
.att-stub-divider::after {
	background: var(--att-surface);
	border-radius: 50%;
	content: "";
	height: 12px;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 12px;
}

.att-stub-divider::before {
	left: -6px;
}

.att-stub-divider::after {
	right: -6px;
}

.att-request-section h2 {
	color: var(--att-ink);
	font-size: 13px;
	font-weight: 850;
	letter-spacing: 0;
	margin: 0 0 8px;
	text-transform: none;
}

.att-request-desc {
	color: var(--att-soft);
	font-size: 14.5px;
	line-height: 1.68;
}

.att-request-desc p {
	margin: 0 0 10px;
}

.att-requester {
	align-items: center;
	background: var(--att-surface);
	border: 1px solid var(--att-line);
	border-radius: 14px;
	display: flex;
	gap: 10px;
	padding: 12px;
}

.att-requester-avatar {
	align-items: center;
	background: linear-gradient(135deg, #cdebd8, #8fcba6);
	border-radius: 50%;
	color: var(--att-primary-dark);
	display: flex;
	flex: 0 0 38px;
	font-size: 14px;
	font-weight: 950;
	height: 38px;
	justify-content: center;
	width: 38px;
}

.att-requester strong,
.att-requester small {
	display: block;
}

.att-requester strong {
	color: var(--att-ink);
	font-size: 13px;
	font-weight: 850;
}

.att-requester small {
	color: var(--att-soft);
	font-size: 11.5px;
	margin-top: 2px;
}

.att-request-actions {
	display: flex;
	flex-direction: column;
	gap: 10px;
	margin-top: auto;
}

.att-call-cta {
	align-items: center;
	background: var(--att-primary-tint);
	border: 1px solid #cfe9d6;
	border-radius: 14px;
	display: flex;
	gap: 12px;
	justify-content: space-between;
	padding: 12px;
}

.att-call-cta strong,
.att-call-cta small {
	display: block;
}

.att-call-cta strong {
	color: var(--att-ink);
	font-size: 16px;
	font-weight: 850;
}

.att-call-cta small {
	color: var(--att-soft);
	font-size: 11.5px;
	margin-top: 3px;
}

.att-call-round {
	align-items: center;
	background: var(--att-primary);
	border-radius: 50%;
	box-shadow: 0 8px 18px -6px rgba(24, 122, 76, 0.65);
	color: #fff !important;
	display: flex;
	flex: 0 0 42px;
	font-size: 18px;
	height: 42px;
	justify-content: center;
	line-height: 1;
	text-decoration: none;
	width: 42px;
}

.att-have-it {
	align-items: center;
	background: var(--att-primary-dark);
	border-radius: 12px;
	color: #fff !important;
	display: flex;
	font-size: 14px;
	font-weight: 850;
	justify-content: center;
	min-height: 48px;
	padding: 0 16px;
	text-decoration: none;
	width: 100%;
}

.att-call-round:hover,
.att-have-it:hover {
	background: var(--att-primary-dark);
	color: #fff !important;
	text-decoration: none;
}

/* Theme isolation: Spring/Elementor loads broad form rules after plugins on some pages. */
.att-form-page .att-form-shell {
	display: block !important;
	max-width: 680px !important;
	width: 100% !important;
}

.att-form-page .att-form {
	display: grid !important;
	gap: 14px !important;
	grid-template-columns: minmax(0, 1fr) !important;
	width: 100% !important;
}

.att-form-page .att-upload,
.att-form-page .att-field,
.att-form-page .att-row,
.att-form-page .att-submit {
	float: none !important;
	position: relative;
	width: 100% !important;
}

.att-form-page .att-field {
	display: grid !important;
	grid-template-columns: minmax(0, 1fr) !important;
}

.att-form-page .att-row {
	display: grid !important;
	gap: 12px !important;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) !important;
}

.att-form-page .att-field input,
.att-form-page .att-field select,
.att-form-page .att-field textarea {
	box-sizing: border-box !important;
	display: block !important;
	line-height: 1.4 !important;
	max-width: none !important;
	width: 100% !important;
}

.att-form-page .att-field input,
.att-form-page .att-field select {
	height: 46px !important;
}

.att-form-page .att-field textarea {
	height: auto !important;
	min-height: 126px !important;
}

@media (max-width: 900px) {
	.att-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.att-request-grid {
		grid-template-columns: 1fr;
	}

	.att-request-photo {
		aspect-ratio: 16 / 10;
		max-height: none;
	}

	.att-detail-layout {
		grid-template-columns: 1fr;
	}

	.att-detail-media {
		aspect-ratio: 16 / 10;
		max-height: none;
	}
}

@media (max-width: 640px) {
	.att-page {
		padding: 22px 14px 54px;
	}

	.att-hero {
		padding-top: 8px;
	}

	.att-cta {
		width: 100%;
	}

	.att-grid,
	.att-row {
		grid-template-columns: 1fr;
	}

	.att-form-page .att-row {
		grid-template-columns: 1fr !important;
	}

	.att-request-info {
		border-radius: 14px;
		padding: 18px;
	}

	.att-request-title {
		grid-template-columns: 1fr;
	}

	.att-request-title h1 {
		font-size: 26px;
	}

	.att-budget-pill {
		justify-self: start;
	}

	.att-request-thumbs {
		display: none;
	}

	.att-call-cta {
		padding: 13px;
	}

	.att-have-it {
		min-height: 50px;
	}

	.att-detail-page {
		padding-bottom: 170px;
	}

	.att-request-actions {
		background: rgba(255, 255, 255, 0.94);
		border: 1px solid var(--att-line);
		border-radius: 16px;
		bottom: 12px;
		box-shadow: 0 14px 34px rgba(15, 36, 26, 0.16);
		left: 12px;
		padding: 10px;
		position: fixed;
		right: 12px;
		z-index: 50;
	}

	.att-call-cta {
		padding: 10px 12px;
	}

	.att-ticket {
		min-height: 96px;
		padding: 10px;
	}

	.att-thumb {
		flex-basis: 62px;
		height: 62px;
	}

	.att-form {
		border-radius: 14px;
		padding: 14px;
	}

	.att-upload {
		height: 140px;
	}

	.att-detail-head {
		align-items: start;
		margin-bottom: 18px;
		padding-bottom: 18px;
	}

	.att-detail-head h1 {
		font-size: 29px;
		line-height: 1.05;
	}

	.att-detail-copy {
		padding: 18px;
	}

	.att-contact {
		align-items: stretch;
		flex-direction: column;
	}

	.att-contact a {
		width: 100%;
	}
}

/* --------------------------------------------------------------------------
   Create form: three image slots + buy/sell choice.
   -------------------------------------------------------------------------- */

.att-uploads {
	display: grid;
	grid-template-columns: 1.6fr 1fr 1fr;
	gap: 8px;
}

/* The first slot is the cover, so it gets the room and the instructions. */
.att-uploads .att-upload {
	height: 132px;
	gap: 4px;
	padding: 8px;
}

.att-uploads .att-upload:not(.is-primary) .att-upload-icon {
	height: 30px;
	width: 30px;
	font-size: 18px;
}

.att-uploads .att-upload:not(.is-primary) strong {
	font-size: 12px;
}

.att-uploads .att-upload.has-preview .att-upload-icon,
.att-uploads .att-upload.has-preview strong,
.att-uploads .att-upload.has-preview small {
	display: none;
}

/* An author-set `display` beats the UA stylesheet's [hidden] rule, so restore it for both
   the preview (`.att-upload img { display: block }` earlier in this file) and the button. */
.att-upload img[hidden],
.att-upload-clear[hidden] {
	display: none;
}

.att-upload-clear {
	align-items: center;
	background: rgba(9, 30, 18, 0.62);
	border: 0;
	border-radius: 50%;
	color: #fff;
	cursor: pointer;
	display: flex;
	font-size: 18px;
	height: 28px;
	justify-content: center;
	line-height: 1;
	padding: 0;
	position: absolute;
	right: 6px;
	top: 6px;
	width: 28px;
	z-index: 2;
}

.att-upload-hint {
	color: #6b7c72;
	font-size: 12px;
	font-weight: 600;
	margin: -4px 0 0;
}

.att-deal-type {
	border: 0;
	margin: 0;
	padding: 0;
}

.att-deal-type legend {
	color: var(--att-primary-dark);
	font-size: 12px;
	font-weight: 800;
	letter-spacing: 0.04em;
	margin-bottom: 8px;
	padding: 0;
	text-transform: uppercase;
}

.att-deal-type__options {
	display: grid;
	gap: 8px;
	grid-template-columns: 1fr 1fr;
}

/* Segmented control: the whole tile is the target, not a 20px radio dot. */
.att-deal-type__option {
	cursor: pointer;
	position: relative;
}

.att-deal-type__option input {
	height: 1px;
	opacity: 0;
	position: absolute;
	width: 1px;
}

.att-deal-type__option span {
	align-items: center;
	background: #fff;
	border: 1px solid #d5e3da;
	border-radius: 12px;
	color: #3c4a42;
	display: flex;
	font-size: 15px;
	font-weight: 800;
	justify-content: center;
	min-height: 50px;
	transition: border-color 0.15s ease, background-color 0.15s ease, color 0.15s ease;
}

.att-deal-type__option input:checked + span {
	background: var(--att-tag);
	border-color: var(--att-primary);
	color: var(--att-primary-dark);
}

.att-deal-type__option input:focus-visible + span {
	outline: 2px solid var(--att-primary);
	outline-offset: 2px;
}

/* Deal badge on the detail screen. */
.att-deal-badge {
	background: var(--att-tag);
	border: 1px solid var(--att-primary);
	border-radius: 999px;
	color: var(--att-primary-dark);
	display: inline-flex;
	font-size: 13px;
	font-weight: 800;
	padding: 5px 12px;
}

@media (max-width: 420px) {
	.att-uploads {
		grid-template-columns: 1fr 1fr 1fr;
	}

	.att-uploads .att-upload {
		height: 104px;
	}

	.att-uploads .att-upload small {
		display: none;
	}
}

/* Thumb strip is hidden on mobile for single-image requests; with a real gallery it is the
   only way to reach images 2 and 3, so bring it back. */
@media (max-width: 760px) {
	.att-request-thumbs.is-multi {
		display: flex;
	}
}

.att-request-thumbs button {
	background: var(--att-tag);
	border: 2px solid transparent;
	border-radius: 10px;
	cursor: pointer;
	display: block;
	height: 64px;
	overflow: hidden;
	padding: 0;
	width: 64px;
	-webkit-tap-highlight-color: transparent;
}

.att-request-thumbs button.is-active {
	border-color: var(--att-primary);
}

/* --------------------------------------------------------------------------
   Detail screen refresh: prominent deal badge, icon meta row, description card,
   single reveal-then-call button.
   -------------------------------------------------------------------------- */

/* Was a quiet outlined pill and easy to miss; now it is filled and carries an icon,
   and buying vs selling are different colours so they read apart at a glance. */
.att-deal-badge {
	align-items: center;
	align-self: flex-start;
	border: 0;
	border-radius: 999px;
	display: inline-flex;
	font-size: 13px;
	font-weight: 900;
	gap: 7px;
	letter-spacing: 0.02em;
	padding: 8px 15px;
	text-transform: uppercase;
}

.att-deal-badge svg {
	height: 15px;
	width: 15px;
}

.att-deal-badge--buy {
	background: var(--att-primary);
	color: #fff;
}

.att-deal-badge--sell {
	background: #f5a524;
	color: #3a2500;
}

/* City and date: icons instead of bare text, with breathing room between them. */
.att-request-meta {
	font-size: 13.5px;
	gap: 8px 18px;
}

.att-request-meta span {
	gap: 7px;
}

.att-request-meta svg {
	color: var(--att-faint);
	flex: none;
	height: 16px;
	width: 16px;
}

/* Description sits in its own soft card rather than floating between divider lines. */
.att-request-section--desc {
	background: #f7faf8;
	border: 1px solid var(--att-line);
	border-radius: 14px;
	padding: 16px;
}

.att-request-section--desc h2 {
	color: var(--att-faint);
	font-size: 11px;
	font-weight: 800;
	letter-spacing: 0.06em;
	margin-bottom: 8px;
	text-transform: uppercase;
}

/* The generic theme wrapper sets font-weight: 100 on the page, and the description was the
   only text here without a weight of its own — it rendered in Inter Thin. */
.att-request-section--desc .att-request-desc,
.att-request-section--desc .att-request-desc p,
.att-request-section--desc .att-request-desc li {
	color: var(--att-ink);
	font-size: 15px;
	font-weight: 500;
	line-height: 1.65;
}

.att-request-section--desc .att-request-desc p:last-child {
	margin-bottom: 0;
}

.att-contact-btn {
	align-items: center;
	background: var(--att-primary);
	border-radius: 12px;
	box-shadow: 0 10px 20px -8px rgba(24, 122, 76, 0.7);
	color: #fff;
	display: flex;
	font-size: 16px;
	font-weight: 800;
	gap: 9px;
	justify-content: center;
	min-height: 54px;
	padding: 14px 22px;
	text-decoration: none;
	width: 100%;
}

.att-contact-btn:hover {
	background: var(--att-primary-dark);
	color: #fff;
	text-decoration: none;
}

.att-contact-btn svg {
	height: 18px;
	width: 18px;
}

/* Once revealed the label is a phone number, so let it breathe. */
.att-contact-btn.is-revealed span {
	font-size: 18px;
	letter-spacing: 0.02em;
}

/* --------------------------------------------------------------------------
   Tap Tap detail, mobile: flat instead of card-in-card.
   The photo card, the info card and the description card were three nested boxes,
   each with its own border and padding, inside a page that already has padding.
   -------------------------------------------------------------------------- */

@media (max-width: 760px) {
	.att-detail-page.att-page {
		padding-inline: 0;
		padding-top: 0;
	}

	.att-detail-page .att-request-detail,
	.att-detail-page .att-request-grid {
		gap: 0;
	}

	/* Photo runs to both edges and drops its rounding — it reads as the screen, not a tile. */
	.att-detail-page .att-request-photo {
		border-inline: 0;
		border-radius: 0;
		border-top: 0;
		box-shadow: none;
		max-height: none;
	}

	.att-detail-page .att-request-thumbs {
		padding: 10px 16px 0;
	}

	.att-detail-page .att-request-info {
		background: none;
		border: 0;
		border-radius: 0;
		box-shadow: none;
		padding: 18px 16px 24px;
	}

	/* Description keeps a light tint for separation but loses the border and rounding,
	   so it no longer looks like a card sitting inside another card. */
	.att-detail-page .att-request-section--desc {
		background: none;
		border: 0;
		border-radius: 0;
		border-top: 1px solid var(--att-line);
		padding: 16px 0 0;
	}
}

@media (max-width: 760px) {
	/* The action bar was a floating rounded card — the last nested box on the screen.
	   Make it a plain bar pinned to the edges, matching the flattened page above it. */
	.att-detail-page .att-request-actions {
		background: rgba(255, 255, 255, 0.97);
		border: 0;
		border-radius: 0;
		border-top: 1px solid var(--att-line);
		bottom: 0;
		box-shadow: 0 -6px 20px rgba(15, 36, 26, 0.07);
		left: 0;
		padding: 12px 16px calc(12px + env(safe-area-inset-bottom));
		right: 0;
	}

	/* Clear the pinned bar so the description never ends underneath it. */
	.att-detail-page .att-request-info {
		padding-bottom: 104px;
	}
}

/* Budget: numbers only, with a fixed currency sitting inside the field. */
.att-budget-input {
	display: block;
	position: relative;
}

.att-budget-input input {
	padding-right: 58px;
	width: 100%;
}

.att-budget-currency {
	color: var(--att-soft);
	font-size: 14px;
	font-weight: 800;
	pointer-events: none;
	position: absolute;
	right: 14px;
	top: 50%;
	transform: translateY(-50%);
}

.att-field-hint {
	color: var(--att-faint);
	font-size: 12px;
	font-weight: 600;
	line-height: 1.4;
}

.att-field-hint.is-warning {
	color: #b6541f;
}

.att-field-hint.is-ok {
	color: var(--att-primary);
}

/* Phone: fixed +994 prefix sitting inside the field. */
.att-phone-input {
	align-items: center;
	background: #fff;
	border: 1px solid var(--att-line);
	border-radius: 12px;
	display: flex;
	gap: 8px;
	overflow: hidden;
	padding-left: 14px;
}

.att-phone-prefix {
	color: var(--att-ink);
	flex: none;
	font-size: 15px;
	font-weight: 800;
}

.att-phone-input input {
	background: none;
	border: 0;
	border-radius: 0;
	flex: 1;
	min-width: 0;
	padding-left: 0;
}

.att-phone-input input:focus {
	box-shadow: none;
	outline: 0;
}

.att-phone-input:focus-within {
	border-color: var(--att-primary);
}
