/* =============================================================
   WBA — CONTACT PAGE
   Accent: WBA Red (default per header/hero consistency rule)
   Hero + anchor nav copied from page-wheelchair-hoops.css spec,
   accent + content only changed.
   ============================================================= */

.ct-page {
	--ct-accent: var(--wba-red, #C1272D);
	--ct-accent-rgb: 193, 39, 45;
}

/* -------------------------------------------------------------
   Shared bits
   ------------------------------------------------------------- */
.ct-container {
	max-width: 1240px;
	margin: 0 auto;
	padding: 0 var(--gutter-d, 40px);
}
.ct-eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-size: 0.62rem;
	font-weight: 700;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: var(--wba-muted, #888888);
	margin-bottom: 14px;
}
.ct-eyebrow--dark { color: rgba(255,255,255,0.55); }
.ct-h2 {
	font-size: clamp(1.7rem, 3.4vw, 2.5rem);
	font-weight: 800;
	letter-spacing: -0.015em;
	color: var(--wba-dark, #1A1A1A);
	margin: 0 0 18px;
	line-height: 1.12;
}
.ct-h2 em {
	font-weight: 300;
	font-style: italic;
}
.ct-h2--dark { color: var(--wba-white, #FFFFFF); }

/* -------------------------------------------------------------
   BUTTONS — exact .ah-btn spec
   ------------------------------------------------------------- */
.ct-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 15px 28px;
	font-family: inherit;
	font-size: 0.78rem;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: lowercase;
	text-decoration: none;
	border-radius: 4px;
	border: 1px solid transparent;
	cursor: pointer;
	transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.2s;
}
.ct-btn--primary {
	background: var(--ct-accent);
	color: var(--wba-white, #FFFFFF);
	border-color: var(--ct-accent);
}
.ct-btn--primary:hover,
.ct-btn--primary:focus-visible {
	background: var(--wba-dark, #1A1A1A);
	border-color: var(--wba-dark, #1A1A1A);
	transform: translateY(-2px);
}
.ct-btn--ghost {
	background: transparent;
	color: var(--wba-white, #FFFFFF);
	border-color: rgba(255,255,255,0.55);
}
.ct-btn--ghost:hover,
.ct-btn--ghost:focus-visible {
	background: var(--wba-white, #FFFFFF);
	color: var(--wba-dark, #1A1A1A);
	border-color: var(--wba-white, #FFFFFF);
	transform: translateY(-2px);
}

/* -------------------------------------------------------------
   HERO — per consistency rule
   ------------------------------------------------------------- */
.ct-hero {
	position: relative;
	height: 58vh;
	min-height: 480px;
	display: flex;
	align-items: center;
	background: var(--wba-dark, #1A1A1A) url('../img/contact-hero.jpg') center / cover no-repeat;
	color: var(--wba-white, #FFFFFF);
	overflow: hidden;
}
.ct-hero__overlay {
	position: absolute;
	inset: 0;
	background:
		radial-gradient(circle at 78% 50%, rgba(var(--ct-accent-rgb), 0.28), transparent 55%),
		linear-gradient(105deg, rgba(26,26,26,0.92) 0%, rgba(26,26,26,0.72) 48%, rgba(26,26,26,0.40) 100%);
}
.ct-hero__inner {
	position: relative;
	z-index: 1;
	width: 100%;
	max-width: 1240px;
	margin: 0 auto;
	padding: 0 var(--gutter-d, 40px);
}
.ct-hero__eyebrow {
	display: inline-block;
	font-size: 0.7rem;
	font-weight: 700;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	padding: 9px 18px;
	border: 1px solid rgba(var(--ct-accent-rgb), 0.55);
	background: rgba(var(--ct-accent-rgb), 0.16);
	border-radius: 100px;
	margin-bottom: 22px;
}
.ct-hero__title {
	font-size: clamp(2.6rem, 6.2vw, 4.4rem);
	font-weight: 800;
	letter-spacing: -0.02em;
	line-height: 1.02;
	margin: 0 0 20px;
}
.ct-hero__title em {
	font-weight: 300;
	font-style: italic;
}
.ct-hero__lede {
	max-width: 600px;
	margin: 0 0 36px;
	font-size: 1rem;
	line-height: 1.7;
	color: rgba(255,255,255,0.85);
}
.ct-hero__lede em { font-style: italic; }
.ct-hero__ctas {
	display: flex;
	gap: 14px;
	flex-wrap: wrap;
}

/* -------------------------------------------------------------
   ANCHOR NAV — per consistency rule
   ------------------------------------------------------------- */
.ct-anchors {
	position: sticky;
	top: 0;
	z-index: 40;
	background: var(--wba-white, #FFFFFF);
	border-top: 3px solid var(--ct-accent);
	border-bottom: 1px solid var(--wba-border, #E6E6E2);
}
.ct-anchors__inner {
	max-width: 1240px;
	margin: 0 auto;
	padding: 0 var(--gutter-d, 40px);
	display: flex;
	align-items: center;
	gap: 28px;
	overflow-x: auto;
	-webkit-overflow-scrolling: touch;
}
.ct-anchors__inner > a {
	position: relative;
	padding: 18px 2px;
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: lowercase;
	color: var(--wba-dark, #1A1A1A);
	text-decoration: none;
	white-space: nowrap;
}
.ct-anchors__inner > a:not(.ct-anchors__cta)::after {
	content: "";
	position: absolute;
	left: 0; right: 0; bottom: 12px;
	height: 2px;
	background: var(--ct-accent);
	transform: scaleX(0);
	transform-origin: left;
	transition: transform 0.25s ease;
}
.ct-anchors__inner > a:not(.ct-anchors__cta):hover::after,
.ct-anchors__inner > a:not(.ct-anchors__cta):focus-visible::after {
	transform: scaleX(1);
}
.ct-anchors__cta {
	margin-left: auto;
	background: var(--ct-accent);
	color: var(--wba-white, #FFFFFF) !important;
	border-radius: 4px;
	padding: 10px 20px !important;
	transition: background 0.2s;
}
.ct-anchors__cta:hover,
.ct-anchors__cta:focus-visible {
	background: var(--wba-dark, #1A1A1A);
}

/* -------------------------------------------------------------
   WAYS TO REACH US
   ------------------------------------------------------------- */
.ct-reach {
	padding: 96px 0;
	background: var(--wba-white, #FFFFFF);
}
.ct-reach__grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 22px;
	margin-top: 40px;
}
.ct-card {
	border: 1px solid var(--wba-border, #E6E6E2);
	border-radius: 14px;
	padding: 30px 26px;
	display: flex;
	flex-direction: column;
	gap: 12px;
	transition: transform 0.25s ease, box-shadow 0.25s ease;
	background: var(--wba-white, #FFFFFF);
}
.ct-card:hover {
	transform: translateY(-3px);
	box-shadow: 0 16px 36px rgba(26,26,26,0.08);
}
.ct-card__icon {
	width: 44px;
	height: 44px;
	border-radius: 10px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: var(--wba-cream, #F8F8F6);
	color: var(--ct-accent);
}
.ct-card__icon svg { width: 20px; height: 20px; }
.ct-card__title {
	font-size: 0.95rem;
	font-weight: 800;
	letter-spacing: 0.04em;
	text-transform: lowercase;
	margin: 0;
	color: var(--wba-dark, #1A1A1A);
}
.ct-card__desc {
	font-size: 0.85rem;
	line-height: 1.65;
	color: var(--wba-muted, #888888);
	margin: 0;
	flex-grow: 1;
}
.ct-card__address {
	font-style: normal;
	font-size: 0.88rem;
	line-height: 1.6;
	color: var(--wba-dark, #1A1A1A);
	font-weight: 600;
}
.ct-card__link {
	font-size: 0.8rem;
	font-weight: 700;
	letter-spacing: 0.05em;
	color: var(--ct-accent);
	text-decoration: none;
	word-break: break-all;
	border-bottom: 1px solid transparent;
	align-self: flex-start;
	transition: border-color 0.2s;
}
.ct-card__link:hover,
.ct-card__link:focus-visible {
	border-bottom-color: var(--ct-accent);
}
.ct-card__note {
	font-size: 0.66rem;
	font-weight: 700;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: var(--wba-muted, #888888);
}

/* Socials strip */
.ct-socials {
	margin-top: 44px;
	padding-top: 30px;
	border-top: 1px solid var(--wba-border, #E6E6E2);
	display: flex;
	align-items: center;
	gap: 26px;
	flex-wrap: wrap;
}
.ct-socials__label {
	font-size: 0.66rem;
	font-weight: 700;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: var(--wba-muted, #888888);
}
.ct-socials__link {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-size: 0.8rem;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: lowercase;
	color: var(--wba-dark, #1A1A1A);
	text-decoration: none;
	transition: color 0.2s;
}
.ct-socials__link svg { width: 12px; height: 12px; }
.ct-socials__link:hover,
.ct-socials__link:focus-visible { color: var(--ct-accent); }

/* -------------------------------------------------------------
   FIND US — map split
   ------------------------------------------------------------- */
.ct-find {
	padding: 96px 0;
	background: var(--wba-cream, #F8F8F6);
}
.ct-find__grid {
	display: grid;
	grid-template-columns: 5fr 7fr;
	gap: 56px;
	align-items: center;
}
.ct-find__body {
	font-size: 0.95rem;
	line-height: 1.75;
	color: #3a3a3a;
	margin: 0 0 26px;
}
.ct-find__body em { font-style: italic; }
.ct-find__body a {
	color: var(--ct-accent);
	font-weight: 600;
	text-decoration: none;
	border-bottom: 1px solid rgba(var(--ct-accent-rgb), 0.35);
}
.ct-find__body a:hover { border-bottom-color: var(--ct-accent); }
.ct-find__facts {
	margin: 0 0 30px;
	display: grid;
	gap: 14px;
}
.ct-find__facts div {
	display: grid;
	grid-template-columns: 90px 1fr;
	gap: 14px;
	align-items: baseline;
	padding-bottom: 14px;
	border-bottom: 1px solid var(--wba-border, #E6E6E2);
}
.ct-find__facts dt {
	font-size: 0.64rem;
	font-weight: 700;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: var(--wba-muted, #888888);
}
.ct-find__facts dd {
	margin: 0;
	font-size: 0.9rem;
	font-weight: 600;
	color: var(--wba-dark, #1A1A1A);
}
.ct-find__map {
	border-radius: 14px;
	overflow: hidden;
	border: 1px solid var(--wba-border, #E6E6E2);
	box-shadow: 0 20px 48px rgba(26,26,26,0.10);
	aspect-ratio: 4 / 3;
}
.ct-find__map iframe {
	display: block;
	width: 100%;
	height: 100%;
	border: 0;
}

/* -------------------------------------------------------------
   ENQUIRY — dark section (page's one dark moment)
   ------------------------------------------------------------- */
.ct-enquiry {
	padding: 110px 0;
	background:
		radial-gradient(circle at 82% 12%, rgba(var(--ct-accent-rgb), 0.18), transparent 46%),
		var(--wba-dark, #1A1A1A);
}
.ct-enquiry__head { max-width: 640px; margin-bottom: 46px; }
.ct-enquiry__lede {
	font-size: 0.92rem;
	line-height: 1.75;
	color: rgba(255,255,255,0.65);
	margin: 0;
}

.ct-form {
	background: rgba(255,255,255,0.045);
	border: 1px solid rgba(255,255,255,0.10);
	border-radius: 14px;
	padding: 44px;
	max-width: 860px;
	backdrop-filter: blur(6px);
}

/* Success / error states */
.ct-form__success,
.ct-form__error {
	border-radius: 8px;
	padding: 16px 20px;
	font-size: 0.88rem;
	line-height: 1.6;
	margin-bottom: 26px;
}
.ct-form__success {
	background: rgba(46, 160, 90, 0.14);
	border: 1px solid rgba(46, 160, 90, 0.45);
	color: #9fe0ba;
}
.ct-form__error {
	background: rgba(var(--ct-accent-rgb), 0.14);
	border: 1px solid rgba(var(--ct-accent-rgb), 0.5);
	color: #f2b7ba;
}

/* Honeypot — off-screen, not display:none */
.form__honeypot {
	position: absolute !important;
	left: -10000px !important;
	top: auto !important;
	width: 1px !important;
	height: 1px !important;
	overflow: hidden !important;
}

/* Enquiry-type pills */
.ct-form__types {
	border: 0;
	padding: 0;
	margin: 0 0 30px;
}
.ct-form__pills {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-top: 12px;
}
.ct-pill { position: relative; }
.ct-pill input {
	position: absolute;
	opacity: 0;
	width: 100%;
	height: 100%;
	inset: 0;
	cursor: pointer;
	margin: 0;
}
.ct-pill span {
	display: inline-block;
	padding: 11px 20px;
	border: 1px solid rgba(255,255,255,0.25);
	border-radius: 100px;
	font-size: 0.74rem;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: lowercase;
	color: rgba(255,255,255,0.8);
	transition: background 0.2s, border-color 0.2s, color 0.2s;
	user-select: none;
}
.ct-pill:hover span { border-color: rgba(255,255,255,0.55); }
.ct-pill input:checked + span {
	background: var(--ct-accent);
	border-color: var(--ct-accent);
	color: var(--wba-white, #FFFFFF);
}
.ct-pill input:focus-visible + span {
	outline: 2px solid var(--wba-white, #FFFFFF);
	outline-offset: 2px;
}

/* Fields */
.ct-form__row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 22px;
	margin-bottom: 22px;
}
.ct-form__field { display: flex; flex-direction: column; gap: 8px; }
.ct-form__field--full { margin-bottom: 26px; }
.ct-form__label {
	font-size: 0.68rem;
	font-weight: 700;
	letter-spacing: 0.16em;
	text-transform: lowercase;
	color: rgba(255,255,255,0.7);
}
.ct-form__label span[aria-hidden] { color: var(--wba-orange, #F7931E); }
.ct-form__optional {
	font-weight: 400;
	letter-spacing: 0.04em;
	color: rgba(255,255,255,0.4);
	text-transform: none;
}
.ct-form input[type="text"],
.ct-form input[type="email"],
.ct-form input[type="tel"],
.ct-form textarea {
	width: 100%;
	box-sizing: border-box;
	background: rgba(255,255,255,0.06);
	border: 1px solid rgba(255,255,255,0.18);
	border-radius: 8px;
	padding: 14px 16px;
	font-family: inherit;
	font-size: 0.9rem;
	color: var(--wba-white, #FFFFFF);
	transition: border-color 0.2s, background 0.2s;
}
.ct-form input::placeholder,
.ct-form textarea::placeholder { color: rgba(255,255,255,0.35); }
.ct-form input:focus,
.ct-form textarea:focus {
	outline: none;
	border-color: var(--ct-accent);
	background: rgba(255,255,255,0.09);
}
.ct-form textarea { resize: vertical; min-height: 140px; }

.ct-form__actions {
	display: flex;
	align-items: center;
	gap: 22px;
	flex-wrap: wrap;
}
.ct-form__actions .ct-btn:disabled {
	opacity: 0.6;
	cursor: not-allowed;
	transform: none;
}
.ct-form__hint {
	font-size: 0.8rem;
	color: rgba(255,255,255,0.5);
}
.ct-form__hint a {
	color: rgba(255,255,255,0.85);
	font-weight: 600;
	text-decoration: none;
	border-bottom: 1px solid rgba(255,255,255,0.3);
}
.ct-form__hint a:hover { border-bottom-color: rgba(255,255,255,0.85); }

/* -------------------------------------------------------------
   RESPONSIVE
   ------------------------------------------------------------- */
@media (max-width: 1100px) {
	.ct-reach__grid { grid-template-columns: repeat(2, 1fr); }
	.ct-find__grid { grid-template-columns: 1fr; gap: 36px; }
}

@media (max-width: 700px) {
	.ct-hero { min-height: 440px; }
	.ct-hero__ctas { flex-direction: column; }
	.ct-hero__ctas .ct-btn { width: 100%; }

	.ct-anchors__cta { margin-left: 0; }

	.ct-reach,
	.ct-find { padding: 64px 0; }
	.ct-enquiry { padding: 70px 0; }

	.ct-container { padding: 0 var(--gutter-m, 20px); }
	.ct-hero__inner { padding: 0 var(--gutter-m, 20px); }
	.ct-anchors__inner { padding: 0 var(--gutter-m, 20px); gap: 18px; }

	.ct-reach__grid { grid-template-columns: 1fr; }
	.ct-form { padding: 28px 20px; }
	.ct-form__row { grid-template-columns: 1fr; }
	.ct-find__map { aspect-ratio: 4 / 3.4; }
}

@media (prefers-reduced-motion: reduce) {
	.ct-btn,
	.ct-card,
	.ct-anchors__inner > a::after { transition: none; }
}
