/*
Theme Name: Toukir Ahmed
Theme URI: https://toukirahmed.com
Author: Toukir Ahmed
Author URI: https://toukirahmed.com
Description: Custom hand-coded theme for toukirahmed.com. Cold email infrastructure, B2B outreach and outbound automation. No page builder required.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.8
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: toukirahmed
Tags: business, one-column, custom-menu, custom-logo, featured-images, translation-ready
*/

/* ==========================================================================
   1. Tokens
   ========================================================================== */

:root {
	--ta-orange: #f8981d;
	--ta-orange-dark: #d97d0a;
	--ta-black: #020101;
	--ta-ink: #101010;
	--ta-body: #4a4a4a;
	--ta-muted: #7c7c7c;
	--ta-line: #e6e6e6;
	--ta-soft: #f7f7f5;
	--ta-white: #ffffff;

	--ta-font-display: "Amazon Ember", "Poppins", "Segoe UI", system-ui, -apple-system, sans-serif;
	--ta-font-body: "Poppins", "Segoe UI", system-ui, -apple-system, sans-serif;

	--ta-wrap: 1180px;
	--ta-gap: 28px;
	--ta-radius: 10px;
	--ta-shadow: 0 18px 48px rgba(0, 0, 0, .08);
	--ta-header-h: 84px;
}

/* ==========================================================================
   2. Reset / base
   ========================================================================== */

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

html { scroll-behavior: smooth; }

body {
	margin: 0;
	background: var(--ta-white);
	color: var(--ta-body);
	font-family: var(--ta-font-body);
	font-size: 17px;
	line-height: 1.75;
	-webkit-font-smoothing: antialiased;
}

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

a { color: var(--ta-ink); text-decoration: none; }
a:hover { color: var(--ta-orange); }

h1, h2, h3, h4, h5, h6 {
	font-family: var(--ta-font-display);
	color: var(--ta-ink);
	margin: 0 0 .6em;
	line-height: 1.22;
	font-weight: 600;
}

h1 { font-size: clamp(34px, 5vw, 48px); font-weight: 500; line-height: 1.25; }
h2 { font-size: clamp(27px, 3.6vw, 38px); }
h3 { font-size: clamp(21px, 2.4vw, 26px); }

p { margin: 0 0 1.1em; }

ul, ol { margin: 0 0 1.1em; padding-left: 1.2em; }

blockquote {
	margin: 1.6em 0;
	padding: 4px 0 4px 24px;
	border-left: 3px solid var(--ta-orange);
	font-size: 19px;
	color: var(--ta-ink);
}

:focus-visible {
	outline: 3px solid var(--ta-orange);
	outline-offset: 3px;
}

.ta-wrap {
	width: 100%;
	max-width: var(--ta-wrap);
	margin: 0 auto;
	padding: 0 24px;
}

.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;
}

.skip-link {
	position: absolute;
	left: -9999px;
	top: 0;
	z-index: 999;
	background: var(--ta-ink);
	color: #fff;
	padding: 12px 20px;
}
.skip-link:focus { left: 12px; top: 12px; color: #fff; }

/* ==========================================================================
   3. Buttons
   ========================================================================== */

.ta-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	font-family: var(--ta-font-display);
	font-size: 15px;
	font-weight: 600;
	letter-spacing: .3px;
	padding: 15px 32px;
	border: 2px solid var(--ta-orange);
	border-radius: 4px;
	background: var(--ta-orange);
	color: #fff;
	cursor: pointer;
	transition: background .22s ease, color .22s ease, transform .22s ease, border-color .22s ease;
}
.ta-btn:hover {
	background: var(--ta-orange-dark);
	border-color: var(--ta-orange-dark);
	color: #fff;
	transform: translateY(-2px);
}

.ta-btn--ghost {
	background: transparent;
	color: var(--ta-ink);
	border-color: var(--ta-ink);
}
.ta-btn--ghost:hover {
	background: var(--ta-ink);
	border-color: var(--ta-ink);
	color: #fff;
}

.ta-btn--light {
	background: transparent;
	color: #fff;
	border-color: #fff;
}
.ta-btn--light:hover { background: #fff; color: var(--ta-ink); }

/* ==========================================================================
   4. Header
   ========================================================================== */

.ta-header {
	position: sticky;
	top: 0;
	z-index: 100;
	background: #fff;
	border-bottom: 1px solid var(--ta-line);
}
.ta-header__inner {
	min-height: var(--ta-header-h);
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
}

.ta-logo img { max-height: 46px; width: auto; }
.ta-logo__text {
	font-family: var(--ta-font-display);
	font-size: 22px;
	font-weight: 700;
	color: var(--ta-ink);
}

.ta-nav ul {
	list-style: none;
	display: flex;
	align-items: center;
	gap: 30px;
	margin: 0;
	padding: 0;
}
.ta-nav a {
	font-family: var(--ta-font-display);
	font-size: 15px;
	font-weight: 500;
	color: var(--ta-ink);
	position: relative;
	padding: 6px 0;
}
.ta-nav a::after {
	content: "";
	position: absolute;
	left: 0; bottom: 0;
	width: 0; height: 2px;
	background: var(--ta-orange);
	transition: width .25s ease;
}
.ta-nav a:hover::after,
.ta-nav .current-menu-item > a::after { width: 100%; }

.ta-nav .sub-menu {
	display: none;
	position: absolute;
	top: 100%;
	left: 0;
	min-width: 220px;
	flex-direction: column;
	gap: 0;
	background: #fff;
	border: 1px solid var(--ta-line);
	box-shadow: var(--ta-shadow);
	padding: 8px 0;
}
.ta-nav li { position: relative; }
.ta-nav li:hover > .sub-menu,
.ta-nav li:focus-within > .sub-menu { display: flex; }
.ta-nav .sub-menu a { display: block; padding: 9px 18px; }
.ta-nav .sub-menu a::after { display: none; }
.ta-nav .sub-menu a:hover { background: var(--ta-soft); color: var(--ta-orange); }

.ta-header__cta { display: flex; align-items: center; gap: 14px; }

.ta-burger {
	display: none;
	width: 44px; height: 44px;
	border: 1px solid var(--ta-line);
	border-radius: 4px;
	background: #fff;
	cursor: pointer;
	padding: 0;
	position: relative;
}
.ta-burger span {
	position: absolute;
	left: 12px;
	width: 20px; height: 2px;
	background: var(--ta-ink);
	transition: transform .25s ease, opacity .2s ease;
}
.ta-burger span:nth-child(1) { top: 15px; }
.ta-burger span:nth-child(2) { top: 21px; }
.ta-burger span:nth-child(3) { top: 27px; }
.ta-burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.ta-burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.ta-burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* ==========================================================================
   5. Sections
   ========================================================================== */

.ta-section { padding: 92px 0; }
.ta-section--soft { background: var(--ta-soft); }
.ta-section--tight { padding: 64px 0; }

.ta-eyebrow {
	font-family: var(--ta-font-display);
	font-size: 18px;
	color: var(--ta-ink);
	margin-bottom: 10px;
	display: block;
}
.ta-eyebrow::after {
	content: "";
	display: block;
	width: 340px;
	max-width: 100%;
	height: 3px;
	background: var(--ta-orange);
	margin-top: 12px;
}
.ta-eyebrow--center { text-align: center; }
.ta-eyebrow--center::after { margin: 12px auto 0; }

.ta-section__head { max-width: 720px; margin: 0 auto 54px; text-align: center; }
.ta-section__head p { color: var(--ta-muted); }

/* ---- Hero ---- */

.ta-hero { padding: 78px 0 64px; background: #fff; overflow: hidden; }
.ta-hero__grid {
	display: grid;
	grid-template-columns: 1.05fr .95fr;
	gap: 56px;
	align-items: center;
}
.ta-hero__title { margin-bottom: 18px; }
.ta-hero__lead { font-size: 19px; color: var(--ta-body); max-width: 52ch; }
.ta-hero__actions { display: flex; flex-wrap: wrap; gap: 16px; margin: 30px 0 42px; }

.ta-stats {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 18px;
	border-top: 1px solid var(--ta-line);
	padding-top: 30px;
}
.ta-stat__num {
	font-family: var(--ta-font-display);
	font-size: 40px;
	font-weight: 700;
	color: var(--ta-ink);
	line-height: 1.1;
	display: block;
}
.ta-stat__label {
	font-size: 13px;
	letter-spacing: 1.4px;
	text-transform: uppercase;
	color: var(--ta-muted);
	line-height: 1.5;
}

.ta-hero__media { position: relative; }
.ta-hero__media img { border-radius: var(--ta-radius); width: 100%; }
.ta-hero__media::before {
	content: "";
	position: absolute;
	inset: 22px -22px -22px 22px;
	border: 3px solid var(--ta-orange);
	border-radius: var(--ta-radius);
	z-index: -1;
}

.ta-social { display: flex; align-items: center; gap: 16px; margin-top: 26px; flex-wrap: wrap; }
.ta-social__label { font-size: 14px; color: var(--ta-muted); }
.ta-social a {
	width: 40px; height: 40px;
	display: inline-flex;
	align-items: center; justify-content: center;
	border: 1px solid var(--ta-line);
	border-radius: 50%;
	color: var(--ta-ink);
	transition: background .2s ease, color .2s ease, border-color .2s ease;
}
.ta-social a:hover { background: var(--ta-orange); border-color: var(--ta-orange); color: #fff; }
.ta-social svg { width: 17px; height: 17px; fill: currentColor; }

/* ---- About ---- */

.ta-about__grid {
	display: grid;
	grid-template-columns: .9fr 1.1fr;
	gap: 60px;
	align-items: center;
}
.ta-about__media img { border-radius: var(--ta-radius); }

/* ---- Services ---- */

.ta-cards {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
	gap: var(--ta-gap);
}
.ta-card {
	background: #fff;
	border: 1px solid var(--ta-line);
	border-radius: var(--ta-radius);
	padding: 34px 30px;
	transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.ta-card:hover {
	transform: translateY(-6px);
	box-shadow: var(--ta-shadow);
	border-color: transparent;
}
.ta-card__icon {
	width: 52px; height: 52px;
	display: inline-flex;
	align-items: center; justify-content: center;
	border-radius: 8px;
	background: rgba(248, 152, 29, .12);
	color: var(--ta-orange);
	margin-bottom: 20px;
}
.ta-card__icon svg { width: 24px; height: 24px; fill: currentColor; }
.ta-card h3 { font-size: 21px; margin-bottom: 10px; }
.ta-card p { margin-bottom: 0; font-size: 16px; }
.ta-card__list { list-style: none; padding: 0; margin: 16px 0 0; }
.ta-card__list li {
	position: relative;
	padding-left: 24px;
	font-size: 15px;
	margin-bottom: 8px;
}
.ta-card__list li::before {
	content: "";
	position: absolute;
	left: 0; top: 11px;
	width: 8px; height: 8px;
	border-radius: 50%;
	background: var(--ta-orange);
}

/* ---- Testimonials ---- */

.ta-quotes {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: var(--ta-gap);
}
.ta-quote {
	background: #fff;
	border-radius: var(--ta-radius);
	padding: 34px 30px;
	box-shadow: var(--ta-shadow);
	display: flex;
	flex-direction: column;
}
.ta-quote__mark {
	font-family: Georgia, serif;
	font-size: 54px;
	line-height: .8;
	color: var(--ta-orange);
	margin-bottom: 12px;
}
.ta-quote__text { font-size: 16px; flex: 1; }
.ta-quote__person { display: flex; align-items: center; gap: 14px; margin-top: 18px; }
.ta-quote__avatar {
	width: 46px; height: 46px;
	border-radius: 50%;
	object-fit: cover;
	background: var(--ta-soft);
}
.ta-quote__name {
	font-family: var(--ta-font-display);
	font-weight: 600;
	color: var(--ta-ink);
	display: block;
	line-height: 1.3;
}
.ta-quote__role { font-size: 13px; color: var(--ta-muted); }

/* ---- Client logos ---- */

.ta-logos {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
	gap: 34px;
	align-items: center;
}
.ta-logos img {
	max-height: 54px;
	width: auto;
	margin: 0 auto;
	filter: grayscale(1);
	opacity: .65;
	transition: filter .25s ease, opacity .25s ease;
}
.ta-logos img:hover { filter: none; opacity: 1; }

/* ---- CTA band ---- */

.ta-cta {
	background: var(--ta-black);
	color: rgba(255, 255, 255, .78);
	padding: 84px 0;
	text-align: center;
}
.ta-cta h2 { color: #fff; }
.ta-cta .ta-eyebrow { color: rgba(255, 255, 255, .7); }
.ta-cta p { max-width: 640px; margin: 0 auto 30px; }
.ta-cta__actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ==========================================================================
   6. Page / post content
   ========================================================================== */

.ta-pagehead {
	background: var(--ta-soft);
	padding: 64px 0;
	border-bottom: 1px solid var(--ta-line);
}
.ta-pagehead h1 { margin-bottom: 6px; }
.ta-crumbs { font-size: 14px; color: var(--ta-muted); }

.ta-content { padding: 72px 0; }
.ta-content .ta-wrap { max-width: 820px; }
.ta-content img { border-radius: var(--ta-radius); margin: 1.6em 0; }
.ta-content ul li, .ta-content ol li { margin-bottom: 8px; }

.ta-postmeta { font-size: 14px; color: var(--ta-muted); margin-bottom: 26px; }

.ta-postgrid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: var(--ta-gap);
}
.ta-postcard {
	border: 1px solid var(--ta-line);
	border-radius: var(--ta-radius);
	overflow: hidden;
	background: #fff;
	transition: transform .25s ease, box-shadow .25s ease;
}
.ta-postcard:hover { transform: translateY(-5px); box-shadow: var(--ta-shadow); }
.ta-postcard__body { padding: 26px 24px; }
.ta-postcard h3 { font-size: 20px; }

.ta-pagination { display: flex; gap: 8px; margin-top: 46px; flex-wrap: wrap; }
.ta-pagination .page-numbers {
	padding: 9px 15px;
	border: 1px solid var(--ta-line);
	border-radius: 4px;
	font-size: 15px;
}
.ta-pagination .current,
.ta-pagination .page-numbers:hover {
	background: var(--ta-orange);
	border-color: var(--ta-orange);
	color: #fff;
}

/* ==========================================================================
   7. Forms
   ========================================================================== */

.ta-form { display: grid; gap: 18px; max-width: 620px; }
.ta-form__row { display: grid; gap: 18px; grid-template-columns: 1fr 1fr; }
.ta-field label {
	display: block;
	font-size: 14px;
	font-weight: 600;
	color: var(--ta-ink);
	margin-bottom: 7px;
}
.ta-field input,
.ta-field textarea,
.ta-field select {
	width: 100%;
	font-family: inherit;
	font-size: 16px;
	color: var(--ta-ink);
	padding: 13px 16px;
	border: 1px solid var(--ta-line);
	border-radius: 6px;
	background: #fff;
	transition: border-color .2s ease, box-shadow .2s ease;
}
.ta-field input:focus,
.ta-field textarea:focus,
.ta-field select:focus {
	border-color: var(--ta-orange);
	box-shadow: 0 0 0 3px rgba(248, 152, 29, .18);
	outline: none;
}
.ta-field textarea { min-height: 150px; resize: vertical; }
.ta-hp { position: absolute; left: -9999px; }

.ta-notice {
	padding: 14px 18px;
	border-radius: 6px;
	font-size: 15px;
	margin-bottom: 20px;
}
.ta-notice--ok { background: #eaf7ec; color: #1e6b2c; border: 1px solid #bfe4c6; }
.ta-notice--err { background: #fdecec; color: #9b1c1c; border: 1px solid #f3c4c4; }

/* ---- Contact details list ---- */

.ta-contactlist { list-style: none; padding: 0; margin: 0; }
.ta-contactlist li {
	display: flex;
	align-items: flex-start;
	gap: 14px;
	margin-bottom: 18px;
}
.ta-contactlist__icon {
	flex: 0 0 auto;
	width: 40px; height: 40px;
	display: inline-flex;
	align-items: center; justify-content: center;
	border-radius: 8px;
	background: rgba(248, 152, 29, .12);
	color: var(--ta-orange);
}
.ta-contactlist__icon svg { width: 18px; height: 18px; fill: currentColor; }
.ta-contactlist__label {
	display: block;
	font-size: 12px;
	letter-spacing: 1.2px;
	text-transform: uppercase;
	color: var(--ta-muted);
	line-height: 1.6;
}
.ta-contactlist a, .ta-contactlist span span { color: var(--ta-ink); font-weight: 500; word-break: break-word; }
.ta-contactlist a:hover { color: var(--ta-orange); }

/* ---- Booking page ---- */

.ta-booking {
	display: grid;
	grid-template-columns: 320px 1fr;
	gap: 44px;
	align-items: start;
}
.ta-booking__side {
	background: var(--ta-soft);
	border-radius: var(--ta-radius);
	padding: 30px 28px;
	position: sticky;
	top: calc(var(--ta-header-h) + 20px);
}
.ta-booking__cal {
	border: 1px solid var(--ta-line);
	border-radius: var(--ta-radius);
	overflow: hidden;
	min-height: 700px;
}

@media (max-width: 900px) {
	.ta-booking { grid-template-columns: 1fr; gap: 28px; }
	.ta-booking__side { position: static; }
}

/* ==========================================================================
   Emergency contact card
   ========================================================================== */

.ta-ice-lock {
	text-align: center;
	background: #fff;
	border: 1px solid var(--ta-line);
	border-radius: var(--ta-radius);
	padding: 44px 32px;
	box-shadow: var(--ta-shadow);
}
.ta-ice-lock__icon {
	display: inline-flex;
	align-items: center; justify-content: center;
	width: 60px; height: 60px;
	border-radius: 50%;
	background: rgba(248, 152, 29, .12);
	color: var(--ta-orange);
	margin-bottom: 18px;
}
.ta-ice-lock__icon svg { width: 26px; height: 26px; }
.ta-ice-form { margin-top: 22px; display: grid; gap: 14px; }
.ta-ice-form input { text-align: center; font-size: 17px; letter-spacing: .5px; }
.ta-ice-hint { font-size: 13px; color: var(--ta-muted); margin: 22px 0 0; }

.ta-ice-head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	flex-wrap: wrap;
	padding-bottom: 20px;
	border-bottom: 2px solid var(--ta-orange);
	margin-bottom: 8px;
}

.ta-ice-list { list-style: none; padding: 0; margin: 0; }
.ta-ice-item {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	flex-wrap: wrap;
	padding: 20px 0;
	border-bottom: 1px solid var(--ta-line);
}
.ta-ice-item__who { display: flex; flex-direction: column; }
.ta-ice-item__name {
	font-family: var(--ta-font-display);
	font-size: 18px;
	font-weight: 600;
	color: var(--ta-ink);
	line-height: 1.3;
}
.ta-ice-item__rel {
	font-size: 12px;
	letter-spacing: 1.2px;
	text-transform: uppercase;
	color: var(--ta-muted);
}
.ta-ice-item__note { font-size: 14px; color: var(--ta-body); margin-top: 4px; }
.ta-ice-item__actions { display: flex; align-items: center; gap: 14px; }
.ta-ice-num {
	font-family: var(--ta-font-display);
	font-size: 17px;
	font-weight: 500;
	color: var(--ta-ink);
	letter-spacing: .4px;
	white-space: nowrap;
}
.ta-ice-call { padding: 11px 24px; font-size: 14px; }

.ta-ice-notes { list-style: none; padding: 0; margin: 0; }
.ta-ice-notes li {
	display: flex;
	justify-content: space-between;
	gap: 16px;
	padding: 13px 0;
	border-bottom: 1px solid var(--ta-line);
	font-size: 15px;
}
.ta-ice-notes__label { color: var(--ta-muted); }
.ta-ice-notes__value { font-weight: 600; color: var(--ta-ink); text-align: right; }

@media (max-width: 520px) {
	.ta-ice-item { flex-direction: column; align-items: flex-start; gap: 12px; }
	.ta-ice-item__actions { width: 100%; justify-content: space-between; }
}

/* ==========================================================================
   8. Footer
   ========================================================================== */

.ta-footer {
	background: #fff;
	border-top: 1px solid var(--ta-line);
	padding: 68px 0 0;
}
.ta-footer__grid {
	display: grid;
	grid-template-columns: 1.5fr 1fr 1fr 1fr;
	gap: 44px;
}
.ta-footer h4 {
	font-size: 16px;
	margin-bottom: 16px;
	text-transform: none;
}
.ta-footer ul { list-style: none; padding: 0; margin: 0; }
.ta-footer li { margin-bottom: 9px; font-size: 15px; }
.ta-footer a { color: var(--ta-body); }
.ta-footer a:hover { color: var(--ta-orange); }
.ta-footer__logo { max-height: 48px; margin-bottom: 18px; }

.ta-subscribe { display: flex; gap: 10px; margin-top: 8px; flex-wrap: wrap; }
.ta-subscribe input {
	flex: 1 1 180px;
	padding: 12px 14px;
	border: 1px solid var(--ta-line);
	border-radius: 6px;
	font-family: inherit;
	font-size: 15px;
}
.ta-subscribe .ta-btn { padding: 12px 22px; }

.ta-footer__bottom {
	margin-top: 52px;
	border-top: 1px solid var(--ta-line);
	padding: 22px 0 28px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 18px;
	flex-wrap: wrap;
	font-size: 14px;
	color: var(--ta-muted);
}
.ta-footer__bottom ul { display: flex; gap: 20px; }
.ta-footer__bottom li { margin: 0; }

.ta-top {
	position: fixed;
	right: 22px; bottom: 22px;
	width: 46px; height: 46px;
	border-radius: 50%;
	border: none;
	background: var(--ta-orange);
	color: #fff;
	cursor: pointer;
	opacity: 0;
	visibility: hidden;
	transition: opacity .25s ease, visibility .25s ease, transform .25s ease;
	z-index: 90;
}
.ta-top.is-visible { opacity: 1; visibility: visible; }
.ta-top:hover { transform: translateY(-3px); }

/* ==========================================================================
   9. Reveal animation
   ========================================================================== */

.ta-reveal {
	opacity: 0;
	transform: translateY(22px);
	transition: opacity .6s ease, transform .6s ease;
}
.ta-reveal.is-in { opacity: 1; transform: none; }

/* ==========================================================================
   10. WordPress core classes
   ========================================================================== */

.alignleft { float: left; margin: 0 1.5em 1em 0; }
.alignright { float: right; margin: 0 0 1em 1.5em; }
.aligncenter { margin-left: auto; margin-right: auto; }
.wp-caption-text, .wp-block-image figcaption { font-size: 14px; color: var(--ta-muted); text-align: center; }
.sticky, .gallery-caption, .bypostauthor { display: block; }

/* ==========================================================================
   11. Responsive
   ========================================================================== */

@media (max-width: 1024px) {
	.ta-hero__grid,
	.ta-about__grid { grid-template-columns: 1fr; gap: 42px; }
	.ta-hero__media::before { display: none; }
	.ta-footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 860px) {
	.ta-burger { display: block; }
	.ta-header__cta .ta-btn { display: none; }
	.ta-nav {
		position: fixed;
		top: var(--ta-header-h);
		left: 0;
		width: 100%;
		max-height: calc(100vh - var(--ta-header-h));
		overflow-y: auto;
		background: #fff;
		border-top: 1px solid var(--ta-line);
		box-shadow: var(--ta-shadow);
		transform: translateY(-12px);
		opacity: 0;
		visibility: hidden;
		transition: opacity .22s ease, transform .22s ease, visibility .22s ease;
	}
	.ta-nav.is-open { opacity: 1; visibility: visible; transform: none; }
	.ta-nav ul { flex-direction: column; align-items: stretch; gap: 0; padding: 10px 24px 24px; }
	.ta-nav li { border-bottom: 1px solid var(--ta-line); }
	.ta-nav a { display: block; padding: 14px 0; }
	.ta-nav a::after { display: none; }
	.ta-nav .sub-menu {
		display: flex;
		position: static;
		border: none;
		box-shadow: none;
		padding: 0 0 8px 14px;
	}
	.ta-section { padding: 66px 0; }
	.ta-form__row { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
	body { font-size: 16px; }
	.ta-stats { grid-template-columns: 1fr; text-align: left; gap: 22px; }
	.ta-stat { display: flex; align-items: baseline; gap: 12px; }
	.ta-stat__num { font-size: 32px; }
	.ta-footer__grid { grid-template-columns: 1fr; gap: 32px; }
	.ta-footer__bottom { flex-direction: column; align-items: flex-start; }
	.ta-eyebrow::after { width: 180px; }
}

@media (prefers-reduced-motion: reduce) {
	html { scroll-behavior: auto; }
	*, *::before, *::after {
		animation-duration: .01ms !important;
		transition-duration: .01ms !important;
	}
	.ta-reveal { opacity: 1; transform: none; }
}
