/* Teach Me Ju Custom Styles — flat brand palette */

:root {
	/* Brand */
	--tmj-green: #009B3A;
	--tmj-yellow: #FEDF00;
	--tmj-blue: #002776;
	--tmj-white: #FFFFFF;

	/* Neutrals */
	--tmj-ink: #0A0E14;
	--tmj-muted: #5B6673;
	--tmj-line: #E3E6EA;
	--tmj-surface: #F7F8FA;

	/* Derived */
	--tmj-green-dark: color-mix(in srgb, var(--tmj-green) 85%, #000);
	--tmj-blue-dark: color-mix(in srgb, var(--tmj-blue) 80%, #000);

	/* Legacy aliases (hero + untouched blocks) */
	--tmj-text: var(--tmj-ink);
	--tmj-gray: var(--tmj-muted);
	--tmj-light: var(--tmj-surface);

	--tmj-radius: 14px;
	--tmj-shadow: 0 1px 2px rgba(10, 14, 20, 0.04);
	--tmj-font-heading: 'Space Grotesk', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
	--tmj-font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

body.teachmeju-theme {
	font-family: var(--tmj-font-body);
	color: var(--tmj-ink);
	line-height: 1.6;
}

h1, h2, h3, h4, h5, h6,
.wp-block-heading {
	font-family: var(--tmj-font-heading);
	letter-spacing: -0.02em;
}

/* ── Focus & motion ── */
:focus-visible {
	outline: 2px solid var(--tmj-yellow);
	outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
	*,
	*::before,
	*::after {
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: 0.01ms !important;
		scroll-behavior: auto !important;
	}

	.tmj-offer-card:hover,
	.tmj-card:hover {
		transform: none;
	}
}

/* ── Header ── */
.tmj-header {
	background: var(--tmj-white);
	border-bottom: 1px solid var(--tmj-line);
	position: sticky;
	top: 0;
	z-index: 100;
}

body.admin-bar .tmj-header {
	top: 32px;
}

@media screen and (max-width: 782px) {
	body.admin-bar .tmj-header {
		top: 46px;
	}
}

.tmj-header-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1.5rem;
	padding: 0.875rem 0;
	flex-wrap: wrap;
	max-width: 1200px;
	margin: 0 auto;
	padding-right: 4.5rem;
}

.tmj-logo {
	margin: 0;
	line-height: 0;
	flex-shrink: 0;
}

.tmj-logo a {
	display: inline-block;
	text-decoration: none;
	line-height: 0;
}

.tmj-logo img {
	display: block;
	height: 56px;
	width: auto;
	max-width: min(220px, 52vw);
	object-fit: contain;
}

.tmj-nav .wp-block-navigation-item__content {
	color: var(--tmj-ink);
	font-weight: 500;
	font-size: 0.9375rem;
	letter-spacing: -0.01em;
}

.tmj-nav .wp-block-navigation-item__content:hover {
	color: var(--tmj-green);
}

.tmj-nav-toggle {
	display: none;
	background: none;
	border: 1px solid var(--tmj-line);
	border-radius: 10px;
	padding: 0.4rem 0.6rem;
	cursor: pointer;
	color: var(--tmj-ink);
	font-size: 1.25rem;
	line-height: 1;
}

.tmj-lang-switcher {
	position: absolute;
	top: 50%;
	right: 1.25rem;
	transform: translateY(-50%);
	z-index: 110;
	pointer-events: auto;
}

.tmj-lang-switcher ul {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	gap: 0.5rem;
	align-items: center;
}

.tmj-lang-switcher a {
	display: block;
	padding: 2px;
	line-height: 0;
	opacity: 0.55;
	filter: grayscale(30%);
	transition: opacity 0.2s ease, filter 0.2s ease, transform 0.2s ease;
}

.tmj-lang-switcher a:hover {
	opacity: 0.85;
	filter: grayscale(0%);
}

.tmj-lang-switcher .tmj-lang-item.is-current a {
	opacity: 1;
	filter: none;
	transform: scale(1.08);
}

.tmj-lang-switcher img {
	display: block;
	width: 26px;
	height: auto;
	border-radius: 2px;
	box-shadow: var(--tmj-shadow);
}

/* ── Buttons ── */
.tmj-btn-primary .wp-block-button__link,
.tmj-btn-primary.wp-block-button__link {
	background: var(--tmj-green) !important;
	color: var(--tmj-white) !important;
	border: 1px solid var(--tmj-green) !important;
	border-radius: 10px !important;
	font-weight: 600;
	padding: 0.75rem 1.5rem !important;
	transition: background 0.2s ease, border-color 0.2s ease;
}

.tmj-btn-primary .wp-block-button__link:hover,
.tmj-btn-primary.wp-block-button__link:hover {
	background: var(--tmj-green-dark) !important;
	border-color: var(--tmj-green-dark) !important;
}

.tmj-btn-secondary .wp-block-button__link,
.tmj-btn-secondary.wp-block-button__link {
	background: transparent !important;
	color: var(--tmj-white) !important;
	border: 1px solid rgba(255, 255, 255, 0.6) !important;
	border-radius: 10px !important;
	font-weight: 600;
	padding: 0.75rem 1.5rem !important;
}

.tmj-btn-secondary .wp-block-button__link:hover {
	background: var(--tmj-white) !important;
	color: var(--tmj-blue) !important;
	border-color: var(--tmj-white) !important;
}

.tmj-btn-outline .wp-block-button__link {
	background: transparent !important;
	color: var(--tmj-green) !important;
	border: 1px solid var(--tmj-green) !important;
	border-radius: 10px !important;
	font-weight: 600;
	padding: 0.75rem 1.5rem !important;
}

.tmj-btn-outline .wp-block-button__link:hover {
	background: var(--tmj-green) !important;
	color: var(--tmj-white) !important;
}

/* ── Hero (untouched layout + photo masks) ── */
.tmj-hero-split {
	padding: 0;
	background: var(--tmj-white);
	overflow: hidden;
}

.tmj-hero-split .tmj-hero-inner {
	display: grid;
	grid-template-columns: 29fr 10fr;
	min-height: 266px;
	max-width: none;
}

.tmj-hero-text {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: flex-start;
	text-align: left;
	padding: clamp(2rem, 5vw, 5rem);
	color: var(--tmj-text);
	max-width: 640px;
	margin: 0 auto;
	position: relative;
	z-index: 2;
}

.tmj-hero-text h2 {
	color: var(--tmj-text) !important;
	font-weight: 400;
	font-size: clamp(1.75rem, 3.5vw, 2.5rem);
	line-height: 1.25;
	margin-bottom: 1.25rem;
}

.tmj-hero-text p {
	color: var(--tmj-gray);
	font-size: clamp(1rem, 1.5vw, 1.125rem);
	line-height: 1.7;
	margin: 0;
}

.tmj-hero-photo {
	position: relative;
	overflow: hidden;
	min-height: 100%;
	margin-left: -8%;
}

.tmj-hero-photo::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(
		to right,
		var(--tmj-white) 0%,
		rgba(255, 255, 255, 0.92) 12%,
		rgba(255, 255, 255, 0.45) 28%,
		transparent 52%
	);
	pointer-events: none;
	z-index: 1;
}

.tmj-hero-photo img {
	display: block;
	width: 100%;
	height: 100%;
	min-height: 266px;
	object-fit: cover;
	object-position: center 18%;
}

.tmj-hero-buttons {
	display: flex;
	gap: 1rem;
	justify-content: flex-start;
	flex-wrap: wrap;
	margin-top: 2rem;
}

.tmj-hero-buttons .wp-block-button__link {
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	padding: 0.85rem 2rem !important;
}

/* ── Sections ── */
.tmj-section {
	padding: clamp(3.5rem, 7vw, 6rem) 1.5rem;
	max-width: 1200px;
	margin: 0 auto;
}

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

.tmj-section-title {
	text-align: center;
	margin-bottom: 3rem;
}

.tmj-section-title h2 {
	font-size: clamp(1.75rem, 4vw, 2.5rem);
	letter-spacing: -0.02em;
	font-weight: 600;
}

.tmj-section-title .tmj-section-eyebrow {
	display: block;
	font-family: var(--tmj-font-body);
	font-size: 0.75rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.12em;
	color: var(--tmj-green);
	margin-bottom: 0.75rem;
}

.tmj-accent-line {
	width: 40px;
	height: 2px;
	background: var(--tmj-green);
	margin: 0 auto 1rem;
	border-radius: 1px;
}

/* ── Offer Cards (3-column) ── */
.tmj-offer-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.5rem;
}

.tmj-offer-card {
	background: var(--tmj-white);
	border: 1px solid var(--tmj-line);
	border-radius: var(--tmj-radius);
	padding: 2rem 1.75rem;
	text-align: center;
	transition: border-color 0.2s ease, transform 0.2s ease;
}

.tmj-offer-card:hover {
	border-color: var(--tmj-green);
	transform: translateY(-2px);
}

.tmj-offer-card h4 {
	font-size: 1.0625rem;
	font-weight: 600;
	letter-spacing: -0.01em;
	margin-bottom: 0.75rem;
}

.tmj-offer-card h4 a {
	color: var(--tmj-ink);
	text-decoration: none;
	transition: color 0.2s;
}

.tmj-offer-card h4 a:hover {
	color: var(--tmj-green);
}

.tmj-offer-card p {
	color: var(--tmj-muted);
	font-size: 0.9375rem;
	margin-bottom: 0;
	line-height: 1.6;
}

/* ── CTA Band ── */
.tmj-cta-band,
.tmj-cta-banner {
	background: var(--tmj-green);
	color: var(--tmj-white);
	text-align: center;
	padding: clamp(3rem, 6vw, 4.5rem) 2rem;
}

.tmj-cta-banner {
	border-radius: var(--tmj-radius);
}

.tmj-cta-band h2,
.tmj-cta-banner h2 {
	color: var(--tmj-white) !important;
	font-size: clamp(1.5rem, 3vw, 2.25rem);
	margin-bottom: 1.5rem;
	font-weight: 600;
	letter-spacing: -0.02em;
}

.tmj-cta-band .wp-block-button__link,
.tmj-cta-banner .wp-block-button__link {
	background: var(--tmj-yellow) !important;
	color: var(--tmj-blue) !important;
	border: none !important;
	border-radius: 10px !important;
	font-weight: 600;
	padding: 0.75rem 1.5rem !important;
}

.tmj-cta-band .wp-block-button__link:hover,
.tmj-cta-banner .wp-block-button__link:hover {
	background: var(--tmj-white) !important;
}

/* ── About Section ── */
.tmj-about-section {
	display: grid;
	grid-template-columns: 2fr 3fr;
	gap: 3rem;
	align-items: center;
	padding: clamp(3.5rem, 7vw, 6rem) 1.5rem;
	max-width: 1200px;
	margin: 0 auto;
}

.tmj-about-blurbs {
	display: flex;
	flex-direction: column;
	gap: 1.25rem;
}

.tmj-about-blurb {
	display: flex;
	align-items: flex-start;
	gap: 1rem;
	padding: 1rem 0;
	border-bottom: 1px solid var(--tmj-line);
}

.tmj-about-blurb:last-child {
	border-bottom: none;
}

.tmj-about-blurb-icon {
	font-size: 1.25rem;
	flex-shrink: 0;
	width: 36px;
	height: 36px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--tmj-surface);
	border: 1px solid var(--tmj-line);
	border-radius: 10px;
	text-align: center;
}

.tmj-about-blurb h4 {
	margin: 0 0 0.25rem;
	font-size: 1rem;
	font-weight: 600;
}

.tmj-about-blurb h4 a {
	color: var(--tmj-ink);
	text-decoration: none;
}

.tmj-about-blurb h4 a:hover {
	color: var(--tmj-green);
}

.tmj-about-blurb p {
	margin: 0;
	font-size: 0.9rem;
	color: var(--tmj-muted);
	line-height: 1.6;
}

.tmj-about-text h2 {
	font-size: clamp(1.75rem, 3vw, 2.25rem);
	margin-bottom: 1rem;
	font-weight: 600;
}

.tmj-about-text p {
	color: var(--tmj-muted);
	line-height: 1.7;
}

.tmj-about-photo {
	display: block;
	border-radius: var(--tmj-radius);
	box-shadow: var(--tmj-shadow);
	object-fit: cover;
}

.tmj-about-text .tmj-about-photo {
	width: 300px;
	height: 300px;
	max-width: 300px;
	margin-top: 1.25rem;
	aspect-ratio: 1 / 1;
}

.tmj-about-grid .tmj-about-photo {
	width: 100%;
	max-width: none;
	margin-top: 0;
	aspect-ratio: 3 / 4;
}

/* ── Community / Instagram ── */
.tmj-community {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 3rem;
	align-items: center;
	padding: clamp(3.5rem, 7vw, 6rem) 1.5rem;
	max-width: 1200px;
	margin: 0 auto;
	background: var(--tmj-surface);
}

.tmj-community h2 {
	font-size: clamp(1.75rem, 3vw, 2.25rem);
	font-weight: 600;
	letter-spacing: -0.02em;
}

.tmj-community-media {
	background: var(--tmj-surface);
	border: 1px solid var(--tmj-line);
	border-radius: var(--tmj-radius);
	min-height: 320px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--tmj-muted);
	font-size: 3rem;
}

/* ── Testimonials Slider ── */
.tmj-testimonials-section {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 3rem;
	align-items: center;
	padding: clamp(3.5rem, 7vw, 6rem) 1.5rem;
	max-width: 1200px;
	margin: 0 auto;
}

.tmj-testimonials-intro h4 {
	color: var(--tmj-green);
	text-transform: uppercase;
	letter-spacing: 0.12em;
	font-family: var(--tmj-font-body);
	font-size: 0.75rem;
	font-weight: 600;
	margin-bottom: 0.5rem;
}

.tmj-testimonials-intro h1,
.tmj-testimonials-intro h2 {
	font-size: clamp(1.75rem, 3vw, 2.5rem);
	margin-bottom: 1.5rem;
	font-weight: 600;
}

.tmj-testimonial-slider {
	position: relative;
	overflow: hidden;
}

.tmj-testimonial-slides {
	position: relative;
	min-height: 220px;
}

.tmj-testimonial-slide {
	display: none;
	padding: 2rem;
	background: var(--tmj-white);
	border-radius: var(--tmj-radius);
	border: 1px solid var(--tmj-line);
	transition: border-color 0.2s ease;
}

.tmj-testimonial-slide.is-active {
	display: block;
}

.tmj-testimonial-slide blockquote {
	font-style: normal;
	color: var(--tmj-ink);
	margin: 0 0 1rem;
	font-size: 1.0625rem;
	line-height: 1.65;
}

.tmj-testimonial-slide cite {
	color: var(--tmj-muted);
	font-size: 0.875rem;
	font-style: normal;
	font-weight: 500;
}

.tmj-slider-controls {
	display: flex;
	gap: 0.5rem;
	margin-top: 1rem;
}

.tmj-slider-btn {
	background: transparent;
	color: var(--tmj-ink);
	border: 1px solid var(--tmj-line);
	width: 36px;
	height: 36px;
	border-radius: 10px;
	cursor: pointer;
	font-size: 1.1rem;
	line-height: 1;
	transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.tmj-slider-btn:hover {
	background: var(--tmj-green);
	border-color: var(--tmj-green);
	color: var(--tmj-white);
}

.tmj-slider-dots {
	display: flex;
	gap: 0.5rem;
	margin-top: 1rem;
	justify-content: center;
	align-items: center;
}

.tmj-slider-dot {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: var(--tmj-line);
	border: none;
	cursor: pointer;
	padding: 0;
	transition: width 0.2s ease, background 0.2s ease, border-radius 0.2s ease;
}

.tmj-slider-dot.is-active {
	width: 20px;
	border-radius: 4px;
	background: var(--tmj-green);
}

/* ── Newsletter ── */
.tmj-newsletter {
	background: var(--tmj-blue);
	color: var(--tmj-white);
	padding: clamp(3rem, 6vw, 4.5rem) 2rem;
	text-align: center;
}

.tmj-newsletter h2 {
	color: var(--tmj-white) !important;
	margin-bottom: 0.5rem;
	font-weight: 600;
	letter-spacing: -0.02em;
}

.tmj-newsletter > p {
	color: rgba(255, 255, 255, 0.85);
	margin-bottom: 2rem;
}

.tmj-newsletter-form {
	max-width: 480px;
	margin: 0 auto;
}

.tmj-newsletter-form .wpcf7-form {
	display: flex;
	flex-direction: column;
	gap: 1rem;
	text-align: left;
}

.tmj-newsletter-form input[type="text"],
.tmj-newsletter-form input[type="email"] {
	width: 100%;
	padding: 0.75rem 1rem;
	border: 1px solid rgba(255, 255, 255, 0.3);
	border-radius: 10px;
	background: rgba(255, 255, 255, 0.08);
	color: var(--tmj-white);
	font-size: 1rem;
	font-family: inherit;
	transition: border-color 0.2s ease, background 0.2s ease;
}

.tmj-newsletter-form input[type="text"]:focus,
.tmj-newsletter-form input[type="email"]:focus {
	border-color: var(--tmj-yellow);
	background: rgba(255, 255, 255, 0.12);
	outline: none;
}

.tmj-newsletter-form input::placeholder {
	color: rgba(255, 255, 255, 0.6);
}

.tmj-newsletter-form input[type="submit"] {
	background: var(--tmj-yellow) !important;
	color: var(--tmj-blue) !important;
	border: none;
	padding: 0.75rem 1.5rem;
	border-radius: 10px;
	font-weight: 600;
	cursor: pointer;
	width: 100%;
	font-family: inherit;
}

.tmj-newsletter-form input[type="submit"]:hover {
	background: var(--tmj-white) !important;
}

/* ── Cards (generic) ── */
.tmj-card-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 1.5rem;
}

.tmj-card {
	background: var(--tmj-white);
	border-radius: var(--tmj-radius);
	padding: 2rem;
	border: 1px solid var(--tmj-line);
	transition: border-color 0.2s ease, transform 0.2s ease;
}

.tmj-card:hover {
	border-color: var(--tmj-green);
	transform: translateY(-2px);
}

.tmj-card h3 {
	color: var(--tmj-ink);
	font-size: 1.125rem;
	font-weight: 600;
}

.tmj-card p {
	color: var(--tmj-muted);
	font-size: 0.9375rem;
}

.tmj-card-icon {
	font-size: 1.5rem;
	margin-bottom: 1rem;
	width: 40px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--tmj-surface);
	border: 1px solid var(--tmj-line);
	border-radius: 10px;
}

.tmj-badge {
	display: inline-block;
	background: var(--tmj-yellow);
	color: var(--tmj-blue);
	font-size: 0.6875rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	padding: 0.25rem 0.625rem;
	border-radius: 6px;
}

.tmj-testimonial {
	text-align: center;
}

.tmj-testimonial-avatar {
	width: 56px;
	height: 56px;
	border-radius: 50%;
	background: var(--tmj-green);
	color: var(--tmj-white);
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 600;
	font-size: 1.125rem;
	margin: 0 auto 1rem;
}

.tmj-testimonial blockquote {
	font-style: normal;
	color: var(--tmj-ink);
	margin: 0 0 0.75rem;
}

.tmj-testimonial cite {
	color: var(--tmj-muted);
	font-size: 0.875rem;
}

/* ── FAQ ── */
.tmj-faq-item {
	border-bottom: 1px solid var(--tmj-line);
}

.tmj-faq-question {
	width: 100%;
	background: none;
	border: none;
	padding: 1.25rem 0;
	text-align: left;
	font-size: 1.0625rem;
	font-weight: 600;
	color: var(--tmj-ink);
	cursor: pointer;
	display: flex;
	justify-content: space-between;
	font-family: inherit;
}

.tmj-faq-question::after {
	content: '+';
	font-size: 1.5rem;
	color: var(--tmj-green);
	font-weight: 400;
}

.tmj-faq-item.active .tmj-faq-question::after {
	content: '−';
}

.tmj-faq-answer {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.3s ease;
	color: var(--tmj-muted);
}

.tmj-faq-item.active .tmj-faq-answer {
	max-height: 500px;
	padding-bottom: 1.25rem;
}

/* ── Blog ── */
.tmj-blog-item {
	padding: 2rem;
	background: var(--tmj-white);
	border-radius: var(--tmj-radius);
	border: 1px solid var(--tmj-line);
	margin-bottom: 1.5rem;
	transition: border-color 0.2s ease;
}

.tmj-blog-item:hover {
	border-color: var(--tmj-green);
}

.tmj-placeholder-img {
	background: var(--tmj-surface);
	border: 1px solid var(--tmj-line);
	border-radius: var(--tmj-radius);
	min-height: 300px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--tmj-muted);
	text-align: center;
	padding: 2rem;
	outline: 1px dashed var(--tmj-line);
	outline-offset: -12px;
}

/* ── Footer ── */
.tmj-footer {
	background: var(--tmj-blue);
	color: rgba(255, 255, 255, 0.85);
	padding: 0;
}

.tmj-footer-columns {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 2rem;
	padding: 3rem 1.5rem;
	max-width: 1200px;
	margin: 0 auto;
}

.tmj-footer-col h4 {
	color: var(--tmj-white);
	font-family: var(--tmj-font-body);
	font-size: 0.8125rem;
	font-weight: 600;
	letter-spacing: 0.04em;
	margin-bottom: 1rem;
}

.tmj-footer-col ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

.tmj-footer-col li {
	margin-bottom: 0.5rem;
}

.tmj-footer-col a {
	color: rgba(255, 255, 255, 0.9);
	text-decoration: none;
	font-size: 0.9375rem;
}

.tmj-footer-col a:hover {
	color: var(--tmj-yellow);
}

.tmj-social {
	display: flex;
	gap: 0.75rem;
	margin-top: 1rem;
}

.tmj-social a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	border-radius: 10px;
	background: transparent;
	border: 1px solid rgba(255, 255, 255, 0.25);
	color: var(--tmj-white);
	font-size: 1.1rem;
	text-decoration: none;
	transition: border-color 0.2s ease, background 0.2s ease;
}

.tmj-social a:hover {
	background: var(--tmj-green);
	border-color: var(--tmj-green);
	color: var(--tmj-white);
}

.tmj-footer-bottom {
	background: var(--tmj-blue-dark);
	padding: 1.25rem 1.5rem;
	text-align: center;
}

.tmj-footer-bottom p {
	margin: 0;
	font-size: 0.8125rem;
	color: rgba(255, 255, 255, 0.7);
	letter-spacing: 0.01em;
}

.tmj-footer a {
	color: rgba(255, 255, 255, 0.9);
}

.tmj-footer a:hover {
	color: var(--tmj-yellow);
}

.tmj-about-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 3rem;
	align-items: center;
}

.tmj-contact-form .wpcf7-form label {
	display: block;
	margin-bottom: 1rem;
	font-weight: 600;
	color: var(--tmj-ink);
}

.tmj-contact-form input,
.tmj-contact-form textarea,
.tmj-contact-form select {
	width: 100%;
	padding: 0.75rem 1rem;
	border: 1px solid var(--tmj-line);
	border-radius: 10px;
	font-family: inherit;
	transition: border-color 0.2s ease;
}

.tmj-contact-form input:focus,
.tmj-contact-form textarea:focus,
.tmj-contact-form select:focus {
	border-color: var(--tmj-green);
	outline: none;
	box-shadow: 0 0 0 2px rgba(254, 223, 0, 0.35);
}

.tmj-contact-form input[type="submit"] {
	background: var(--tmj-green);
	color: var(--tmj-white);
	border: none;
	padding: 0.75rem 1.5rem;
	border-radius: 10px;
	font-weight: 600;
	cursor: pointer;
	width: auto;
	font-family: inherit;
}

.tmj-contact-form input[type="submit"]:hover {
	background: var(--tmj-green-dark);
}

/* ── Responsive ── */
@media (max-width: 900px) {
	.tmj-offer-grid,
	.tmj-about-section,
	.tmj-community,
	.tmj-testimonials-section,
	.tmj-footer-columns {
		grid-template-columns: 1fr;
	}

	.tmj-nav-toggle {
		display: block;
	}

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

	.tmj-nav.is-open {
		display: block;
	}

	.tmj-header-inner {
		flex-wrap: wrap;
		padding-right: 5rem;
	}

	.tmj-logo img {
		height: 44px;
	}

	.tmj-nav-toggle {
		margin-left: auto;
	}
}

@media (max-width: 768px) {
	.tmj-about-grid {
		grid-template-columns: 1fr;
	}

	.tmj-hero-split .tmj-hero-inner {
		grid-template-columns: 1fr;
		min-height: auto;
	}

	.tmj-hero-photo {
		order: -1;
		margin-left: 0;
	}

	.tmj-hero-photo::after {
		background: linear-gradient(
			to bottom,
			transparent 55%,
			rgba(255, 255, 255, 0.7) 80%,
			var(--tmj-white) 100%
		);
	}

	.tmj-hero-photo img {
		min-height: 164px;
		object-position: center 15%;
	}

	.tmj-hero-text {
		padding: 2.5rem 1.5rem 3rem;
		max-width: none;
	}
}
