:root {
	--ink: #0e1b28;
	--ink-soft: #53606c;
	--orange: #efa73f;
	--orange-dark: #dc8e22;
	--cream: #fff9f0;
	--paper: #ffffff;
	--line: #e9edf0;
	--dark: #0a151f;
	--radius: 24px;
	--shadow: 0 24px 70px rgba(14, 27, 40, 0.1);
	--container: 1360px;
}

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

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	color: var(--ink);
	background: var(--paper);
	font-family: "Asap", Arial, sans-serif;
	font-size: 17px;
	line-height: 1.7;
	-webkit-font-smoothing: antialiased;
}

body.menu-open {
	overflow: hidden;
}

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

a {
	color: inherit;
	text-decoration: none;
}

button,
input,
textarea,
select {
	font: inherit;
}

h1,
h2,
h3,
h4,
p {
	margin-top: 0;
}

h1,
h2,
h3,
h4 {
	font-family: "Asap", Arial, sans-serif;
	line-height: 1.12;
	letter-spacing: -0.035em;
}

h1 {
	font-size: clamp(3.3rem, 6.5vw, 6.8rem);
	font-weight: 800;
}

h2 {
	font-size: clamp(2.4rem, 4vw, 4.5rem);
	font-weight: 700;
}

h3 {
	font-size: clamp(1.45rem, 2vw, 2rem);
}

.container {
	width: min(calc(100% - 48px), var(--container));
	margin-inline: auto;
}

.content-narrow {
	max-width: 850px;
}

.section {
	padding: clamp(88px, 10vw, 150px) 0;
}

.screen-reader-text,
.skip-link {
	position: absolute;
	width: 1px;
	height: 1px;
	overflow: hidden;
	clip: rect(0 0 0 0);
	white-space: nowrap;
}

.skip-link:focus {
	z-index: 10000;
	top: 12px;
	left: 12px;
	width: auto;
	height: auto;
	clip: auto;
	padding: 12px 18px;
	background: #fff;
	border-radius: 8px;
}

.eyebrow {
	margin-bottom: 20px;
	color: var(--orange-dark);
	font-size: 0.78rem;
	font-weight: 800;
	letter-spacing: 0.17em;
	text-transform: uppercase;
}

.large {
	font-size: clamp(1.25rem, 1.8vw, 1.55rem);
	line-height: 1.55;
}

.button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 18px;
	min-height: 58px;
	padding: 15px 28px;
	color: #fff;
	background: var(--orange);
	border: 0;
	border-radius: 100px;
	font-weight: 700;
	transition: transform 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}

.button:hover,
.button:focus-visible {
	color: #fff;
	background: var(--orange-dark);
	box-shadow: 0 18px 35px rgba(239, 167, 63, 0.27);
	transform: translateY(-3px);
}

.button--small {
	min-height: 48px;
	padding: 10px 24px;
	font-size: 0.9rem;
}

.button--light {
	flex: 0 0 auto;
	color: var(--ink);
	background: #fff;
}

.button--light:hover,
.button--light:focus-visible {
	color: var(--ink);
	background: var(--cream);
}

.text-link {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	color: var(--ink);
	font-weight: 700;
}

.text-link span {
	color: var(--orange);
	transition: transform 0.2s ease;
}

.text-link:hover span {
	transform: translateX(5px);
}

.site-header {
	position: relative;
	z-index: 100;
	width: 100%;
	height: 104px;
	background: rgba(255, 255, 255, 0.94);
	border-bottom: 1px solid rgba(14, 27, 40, 0.06);
	backdrop-filter: blur(14px);
}

.site-header.is-sticky {
	position: fixed;
	top: 0;
	height: 82px;
	box-shadow: 0 10px 30px rgba(14, 27, 40, 0.06);
	animation: header-in 0.35s ease both;
}

.site-header__inner {
	display: flex;
	align-items: center;
	gap: 38px;
	height: 100%;
}

.site-logo {
	flex: 0 0 auto;
}

.site-logo img {
	width: 190px;
}

.site-logo .custom-logo-link {
	display: block;
}

.site-nav {
	margin-left: auto;
}

.site-nav__list,
.site-nav ul {
	display: flex;
	align-items: center;
	gap: 36px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.site-nav li {
	position: relative;
}

.site-nav a {
	display: block;
	padding: 12px 0;
	font-size: 0.92rem;
	font-weight: 700;
}

.site-nav a::after {
	position: absolute;
	right: 0;
	bottom: 6px;
	left: 0;
	height: 2px;
	background: var(--orange);
	content: "";
	transform: scaleX(0);
	transform-origin: right;
	transition: transform 0.25s ease;
}

.site-nav a:hover::after,
.site-nav .current-menu-item > a::after {
	transform: scaleX(1);
	transform-origin: left;
}

.site-nav .sub-menu {
	position: absolute;
	top: calc(100% + 8px);
	left: -24px;
	display: block;
	min-width: 280px;
	padding: 14px 24px;
	visibility: hidden;
	background: #fff;
	border-radius: 14px;
	box-shadow: var(--shadow);
	opacity: 0;
	transform: translateY(10px);
	transition: 0.2s ease;
}

.site-nav li:hover > .sub-menu,
.site-nav li:focus-within > .sub-menu {
	visibility: visible;
	opacity: 1;
	transform: translateY(0);
}

.site-nav .sub-menu a {
	padding: 9px 0;
}

.header-cta {
	margin-left: 8px;
}

.menu-toggle {
	display: none;
	width: 46px;
	height: 46px;
	padding: 11px;
	background: transparent;
	border: 0;
}

.menu-toggle span:not(.screen-reader-text) {
	display: block;
	width: 100%;
	height: 2px;
	margin: 5px 0;
	background: var(--ink);
	transition: 0.2s ease;
}

.hero {
	position: relative;
	min-height: calc(100vh - 104px);
	padding-top: clamp(70px, 8vw, 120px);
	overflow: hidden;
	background:
		radial-gradient(circle at 8% 20%, rgba(239, 167, 63, 0.09), transparent 24%),
		linear-gradient(180deg, #fff 0%, #fffdf9 100%);
}

.hero::before {
	position: absolute;
	top: 80px;
	right: -100px;
	width: 440px;
	height: 440px;
	border: 1px solid rgba(239, 167, 63, 0.18);
	border-radius: 50%;
	content: "";
}

.hero__grid {
	display: grid;
	grid-template-columns: minmax(0, 1.1fr) minmax(430px, 0.9fr);
	align-items: center;
	gap: 70px;
}

.hero h1 {
	max-width: 820px;
	margin-bottom: 30px;
}

.hero h1 span {
	position: relative;
	color: var(--orange);
}

.hero h1 span::after {
	position: absolute;
	right: 2%;
	bottom: -4px;
	left: 0;
	height: 7px;
	background: url("data:image/svg+xml,%3Csvg width='300' height='10' viewBox='0 0 300 10' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M2 8C70 1 170 1 298 5' stroke='%23efa73f' stroke-width='4' fill='none' stroke-linecap='round'/%3E%3C/svg%3E") center / 100% 100% no-repeat;
	content: "";
}

.hero__lead {
	max-width: 690px;
	margin-bottom: 38px;
	color: var(--ink-soft);
	font-size: clamp(1.1rem, 1.6vw, 1.35rem);
	line-height: 1.65;
}

.hero__actions {
	display: flex;
	align-items: center;
	gap: 30px;
	margin-bottom: 55px;
}

.hero__facts {
	display: flex;
	gap: 52px;
}

.hero__facts div {
	display: flex;
	align-items: center;
	gap: 13px;
}

.hero__facts strong {
	font-family: "Poppins", sans-serif;
	font-size: 1.8rem;
}

.hero__facts span {
	max-width: 90px;
	color: var(--ink-soft);
	font-size: 0.8rem;
	line-height: 1.3;
}

.hero__visual {
	position: relative;
	align-self: end;
	min-height: 680px;
}

.hero__blob {
	position: absolute;
	right: 3%;
	bottom: 5%;
	width: 88%;
	aspect-ratio: 1;
	background: var(--orange);
	border-radius: 48% 52% 43% 57% / 53% 35% 65% 47%;
	opacity: 0.17;
	transform: rotate(-8deg);
}

.hero__portrait {
	position: absolute;
	z-index: 2;
	right: 5%;
	bottom: 0;
	width: 85%;
	filter: contrast(1.03);
}

.hero__rocket {
	position: absolute;
	z-index: 3;
	top: 5%;
	right: -3%;
	width: 32%;
	filter: drop-shadow(0 25px 24px rgba(14, 27, 40, 0.12));
	animation: float 4s ease-in-out infinite;
}

.hero__badge {
	position: absolute;
	z-index: 4;
	right: 2%;
	bottom: 18%;
	padding: 16px 22px;
	background: #fff;
	border-radius: 16px;
	box-shadow: var(--shadow);
	font-size: 0.9rem;
	font-weight: 700;
	line-height: 1.35;
	transform: rotate(3deg);
}

.hero__badge span {
	color: var(--orange);
}

.brand-strip {
	padding: 34px 0;
	border-top: 1px solid var(--line);
	border-bottom: 1px solid var(--line);
}

.brand-strip__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 35px;
}

.brand-strip span {
	color: var(--ink-soft);
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.brand-strip img {
	width: auto;
	max-width: 125px;
	max-height: 48px;
	filter: grayscale(1);
	opacity: 0.55;
	transition: 0.2s ease;
}

.brand-strip img:hover {
	filter: none;
	opacity: 1;
}

.section-heading {
	display: grid;
	grid-template-columns: 1.3fr 0.7fr;
	align-items: end;
	gap: 80px;
	margin-bottom: 70px;
}

.section-heading h2 {
	max-width: 850px;
	margin-bottom: 0;
}

.section-heading > p {
	max-width: 500px;
	margin-bottom: 8px;
	color: var(--ink-soft);
}

.section-heading--center {
	grid-template-columns: 1fr auto;
}

.services {
	background: #fbfcfd;
}

.services-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 22px;
}

.service-card {
	position: relative;
	min-height: 315px;
	padding: 42px;
	overflow: hidden;
	background: #fff;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	transition: transform 0.3s ease, border 0.3s ease, box-shadow 0.3s ease;
}

.service-card::before {
	position: absolute;
	right: -50px;
	bottom: -100px;
	width: 220px;
	height: 220px;
	background: var(--orange);
	border-radius: 50%;
	content: "";
	opacity: 0;
	transition: 0.35s ease;
}

.service-card:hover {
	border-color: transparent;
	box-shadow: var(--shadow);
	transform: translateY(-8px);
}

.service-card:hover::before {
	opacity: 0.1;
	transform: scale(1.35);
}

.service-card__number {
	display: block;
	margin-bottom: 40px;
	color: var(--orange);
	font-family: "Poppins", sans-serif;
	font-size: 0.85rem;
	font-weight: 700;
}

.service-card h3 {
	max-width: 400px;
	margin-bottom: 18px;
}

.service-card p {
	max-width: 520px;
	margin-bottom: 0;
	color: var(--ink-soft);
}

.service-card__arrow {
	position: absolute;
	top: 38px;
	right: 38px;
	display: grid;
	width: 48px;
	height: 48px;
	place-items: center;
	background: var(--cream);
	border-radius: 50%;
	font-size: 1.35rem;
	transition: 0.25s ease;
}

.service-card:hover .service-card__arrow {
	color: #fff;
	background: var(--orange);
	transform: rotate(45deg);
}

.about__grid {
	display: grid;
	grid-template-columns: 0.86fr 1.14fr;
	align-items: center;
	gap: clamp(70px, 10vw, 150px);
}

.about__image {
	position: relative;
}

.about__image::before {
	position: absolute;
	top: -25px;
	left: -25px;
	z-index: -1;
	width: 80%;
	height: 80%;
	background: var(--cream);
	border-radius: 50%;
	content: "";
}

.about__image img {
	width: 100%;
	border-radius: 46% 54% 48% 52% / 56% 45% 55% 44%;
}

.about__stamp {
	position: absolute;
	right: -34px;
	bottom: 40px;
	display: grid;
	width: 125px;
	height: 125px;
	padding: 20px;
	place-items: center;
	color: #fff;
	background: var(--orange);
	border: 8px solid #fff;
	border-radius: 50%;
	font-size: 0.68rem;
	font-weight: 800;
	letter-spacing: 0.12em;
	text-align: center;
	text-transform: uppercase;
	transform: rotate(-12deg);
}

.about__content h2 {
	margin-bottom: 30px;
}

.about__content p:not(.eyebrow) {
	color: var(--ink-soft);
}

.about__content .large {
	color: var(--ink);
}

.check-list {
	margin: 32px 0 36px;
	padding: 0;
	list-style: none;
}

.check-list li {
	position: relative;
	margin: 13px 0;
	padding-left: 35px;
	font-weight: 600;
}

.check-list li::before {
	position: absolute;
	top: 2px;
	left: 0;
	color: var(--orange);
	content: "✓";
	font-size: 1.15rem;
	font-weight: 800;
}

.portfolio {
	background: var(--dark);
	color: #fff;
}

.portfolio .eyebrow,
.portfolio .text-link,
.site-footer .eyebrow {
	color: var(--orange);
}

.portfolio .section-heading > p {
	color: rgba(255, 255, 255, 0.64);
}

.portfolio-filters {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin: -25px 0 42px;
}

.portfolio-filters button {
	padding: 9px 18px;
	color: rgba(255, 255, 255, 0.64);
	background: transparent;
	border: 1px solid rgba(255, 255, 255, 0.18);
	border-radius: 100px;
	cursor: pointer;
}

.portfolio-filters button:hover,
.portfolio-filters button.is-active {
	color: var(--dark);
	background: var(--orange);
	border-color: var(--orange);
}

.portfolio-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 28px;
}

.portfolio-card {
	transition: opacity 0.3s ease, transform 0.3s ease;
}

.portfolio-card.is-hidden {
	display: none;
}

.portfolio-card__image {
	aspect-ratio: 4 / 3;
	overflow: hidden;
	background: #182530;
	border-radius: 18px;
}

.portfolio-card__image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.55s cubic-bezier(0.2, 0.7, 0.2, 1);
}

.portfolio-card:hover img {
	transform: scale(1.045);
}

.portfolio-card__meta {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 22px 4px 6px;
}

.portfolio-card__meta h3 {
	margin-bottom: 5px;
	font-size: 1.25rem;
}

.portfolio-card__meta p {
	margin: 0;
	color: rgba(255, 255, 255, 0.52);
	font-size: 0.85rem;
}

.portfolio-card__meta > span {
	display: grid;
	width: 42px;
	height: 42px;
	place-items: center;
	border: 1px solid rgba(255, 255, 255, 0.22);
	border-radius: 50%;
}

.process-list {
	margin: 0;
	padding: 0;
	border-top: 1px solid var(--line);
	list-style: none;
}

.process-list li {
	display: grid;
	grid-template-columns: 110px 1fr;
	gap: 25px;
	padding: 38px 0;
	border-bottom: 1px solid var(--line);
}

.process-list > li > span {
	color: var(--orange);
	font-family: "Poppins", sans-serif;
	font-weight: 700;
}

.process-list h3 {
	margin-bottom: 10px;
}

.process-list p {
	margin: 0;
	color: var(--ink-soft);
}

.testimonials {
	background: var(--cream);
}

.testimonials__grid {
	display: grid;
	grid-template-columns: 0.65fr 1.35fr;
	align-items: center;
	gap: 90px;
}

.testimonials h2 {
	margin-bottom: 25px;
}

.testimonials__grid > div > p:last-child {
	color: var(--ink-soft);
}

.testimonial {
	margin: 0;
	padding: clamp(35px, 5vw, 65px);
	background: #fff;
	border-radius: var(--radius);
	box-shadow: 0 20px 60px rgba(14, 27, 40, 0.07);
}

.testimonial__stars {
	margin-bottom: 25px;
	color: var(--orange);
	letter-spacing: 0.25em;
}

.testimonial > p {
	font-size: clamp(1.35rem, 2.1vw, 2rem);
	font-weight: 600;
	line-height: 1.5;
}

.testimonial footer {
	display: flex;
	flex-direction: column;
	margin-top: 30px;
	font-size: 0.9rem;
}

.testimonial footer span {
	color: var(--ink-soft);
}

.cta {
	padding-top: 0;
}

.cta__box {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 60px;
	padding: clamp(50px, 7vw, 90px);
	color: #fff;
	background:
		radial-gradient(circle at 90% 10%, rgba(255, 255, 255, 0.2), transparent 28%),
		var(--orange);
	border-radius: 30px;
}

.cta__box h2 {
	max-width: 850px;
	margin-bottom: 0;
}

.cta__box .eyebrow {
	color: #fff;
	opacity: 0.75;
}

.page-hero,
.article-header {
	padding: clamp(90px, 11vw, 155px) 0;
	background:
		radial-gradient(circle at 75% 15%, rgba(239, 167, 63, 0.14), transparent 24%),
		#fbfcfd;
}

.page-hero h1,
.article-header h1 {
	max-width: 1050px;
	margin-bottom: 22px;
	font-size: clamp(3rem, 6vw, 6rem);
}

.page-hero > .container > p:last-child {
	max-width: 720px;
	color: var(--ink-soft);
	font-size: 1.25rem;
}

.page-content h2,
.entry-content h2 {
	margin-top: 55px;
}

.page-content h3,
.entry-content h3 {
	margin-top: 40px;
}

.page-content p,
.entry-content p {
	margin-bottom: 25px;
}

.page-content a:not(.button),
.entry-content a:not(.button) {
	color: var(--orange-dark);
	text-decoration: underline;
}

.generic-benefits {
	display: grid;
	gap: 0;
	margin-top: 70px;
	border-top: 1px solid var(--line);
}

.generic-benefits > div {
	display: grid;
	grid-template-columns: 55px 1fr;
	padding: 32px 0;
	border-bottom: 1px solid var(--line);
}

.generic-benefits strong {
	grid-row: 1 / 3;
	color: var(--orange);
	font-family: "Poppins", sans-serif;
	font-size: 0.75rem;
}

.generic-benefits h2 {
	margin: 0 0 10px;
	font-size: 1.65rem;
}

.generic-benefits p {
	margin: 0;
	color: var(--ink-soft);
}

.generic-cta {
	margin-top: 70px;
	padding: clamp(30px, 5vw, 55px);
	background: var(--cream);
	border-radius: var(--radius);
}

.generic-cta h2 {
	margin-top: 0;
}

.service-list {
	border-top: 1px solid var(--line);
}

.service-row {
	position: relative;
	display: grid;
	grid-template-columns: 60px 1fr 220px 50px;
	align-items: center;
	gap: 35px;
	padding: 38px 0;
	border-bottom: 1px solid var(--line);
}

.service-row > span {
	align-self: start;
	color: var(--orange);
	font-family: "Poppins", sans-serif;
	font-size: 0.8rem;
	font-weight: 700;
}

.service-row h2 {
	margin-bottom: 10px;
	font-size: clamp(1.8rem, 3vw, 2.8rem);
}

.service-row p {
	max-width: 630px;
	margin: 0;
	color: var(--ink-soft);
}

.service-row img {
	width: 220px;
	aspect-ratio: 4 / 3;
	object-fit: cover;
	border-radius: 14px;
	transition: transform 0.3s ease;
}

.service-row b {
	display: grid;
	width: 48px;
	height: 48px;
	place-items: center;
	background: var(--cream);
	border-radius: 50%;
	font-size: 1.3rem;
	transition: 0.25s ease;
}

.service-row:hover img {
	transform: scale(1.04) rotate(1deg);
}

.service-row:hover b {
	color: #fff;
	background: var(--orange);
	transform: rotate(45deg);
}

.portfolio--page {
	margin-top: 0;
}

.pricing-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 24px;
}

.price-card {
	padding: clamp(32px, 5vw, 55px);
	background: #fff;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	transition: 0.25s ease;
}

.price-card:hover {
	box-shadow: var(--shadow);
	transform: translateY(-7px);
}

.price-card h2 {
	margin-bottom: 12px;
	font-size: clamp(2rem, 3vw, 3rem);
}

.price-card__price {
	margin-bottom: 30px;
	color: var(--orange-dark);
	font-family: "Poppins", sans-serif;
	font-size: 1.4rem;
	font-weight: 700;
}

.price-card ul {
	min-height: 175px;
	margin: 0 0 30px;
	padding: 0;
	list-style: none;
}

.price-card li {
	position: relative;
	margin: 11px 0;
	padding-left: 28px;
	color: var(--ink-soft);
}

.price-card li::before {
	position: absolute;
	left: 0;
	color: var(--orange);
	content: "✓";
	font-weight: 800;
}

.pricing-note {
	max-width: 750px;
	margin: 36px auto 0;
	color: var(--ink-soft);
	font-size: 0.85rem;
	text-align: center;
}

.contact-section {
	background: #fbfcfd;
}

.contact-grid {
	display: grid;
	grid-template-columns: 0.75fr 1.25fr;
	gap: clamp(60px, 9vw, 130px);
}

.contact-info h2 {
	margin-bottom: 25px;
}

.contact-info > p:not(.eyebrow) {
	color: var(--ink-soft);
}

.contact-details {
	margin-top: 45px;
	border-top: 1px solid var(--line);
}

.contact-details > * {
	display: flex;
	flex-direction: column;
	padding: 20px 0;
	border-bottom: 1px solid var(--line);
}

.contact-details span {
	color: var(--ink-soft);
	font-size: 0.8rem;
}

.contact-details strong {
	font-size: 1.15rem;
}

.contact-form-wrap {
	padding: clamp(30px, 5vw, 55px);
	background: #fff;
	border-radius: var(--radius);
	box-shadow: 0 20px 70px rgba(14, 27, 40, 0.07);
}

.contact-form label {
	display: block;
	margin-bottom: 22px;
	font-size: 0.85rem;
	font-weight: 700;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
	width: 100%;
	margin-top: 8px;
	padding: 15px 17px;
	color: var(--ink);
	background: #fbfcfd;
	border: 1px solid #dfe5e9;
	border-radius: 10px;
	outline: 0;
	transition: 0.2s ease;
}

.contact-form textarea {
	resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
	background: #fff;
	border-color: var(--orange);
	box-shadow: 0 0 0 4px rgba(239, 167, 63, 0.12);
}

.form-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 18px;
}

.contact-form .form-consent {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	font-weight: 400;
}

.contact-form .form-consent input {
	width: auto;
	margin-top: 5px;
}

.form-hp {
	position: absolute !important;
	left: -9999px !important;
}

.form-message {
	margin-bottom: 25px;
	padding: 16px 20px;
	border-radius: 10px;
}

.form-message--success {
	color: #176b39;
	background: #e9f8ef;
}

.form-message--error {
	color: #8e2e24;
	background: #fcebea;
}

.posts-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 32px;
}

.post-card {
	overflow: hidden;
	background: #fff;
	border: 1px solid var(--line);
	border-radius: 18px;
	transition: 0.25s ease;
}

.post-card:hover {
	box-shadow: var(--shadow);
	transform: translateY(-6px);
}

.post-card__image {
	display: block;
	aspect-ratio: 16 / 10;
	overflow: hidden;
	background: #f2f2f2;
}

.post-card__image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.4s ease;
}

.post-card:hover .post-card__image img {
	transform: scale(1.04);
}

.post-card__body {
	padding: 30px;
}

.post-card__date {
	color: var(--orange-dark);
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.post-card h2 {
	margin-bottom: 18px;
	font-size: 1.55rem;
}

.post-card__body > p:not(.post-card__date) {
	color: var(--ink-soft);
}

.pagination {
	margin-top: 50px;
}

.article-featured {
	margin-top: -70px;
}

.article-featured img {
	width: 100%;
	max-height: 720px;
	object-fit: cover;
	border-radius: var(--radius);
}

.error-page {
	min-height: 70vh;
	display: grid;
	align-items: center;
	text-align: center;
}

.error-code {
	margin-bottom: 0;
	color: var(--orange);
	font-family: "Poppins", sans-serif;
	font-size: clamp(5rem, 12vw, 10rem);
	font-weight: 700;
	line-height: 1;
}

.site-footer {
	padding: 90px 0 25px;
	color: rgba(255, 255, 255, 0.66);
	background: var(--dark);
}

.footer-grid {
	display: grid;
	grid-template-columns: 1.5fr repeat(3, 1fr);
	gap: 60px;
	padding-bottom: 70px;
}

.footer-logo {
	width: 190px;
	margin-bottom: 26px;
	filter: brightness(0) invert(1);
}

.footer-lead {
	max-width: 360px;
}

.footer-heading {
	margin-bottom: 24px;
	color: #fff;
	font-weight: 800;
}

.footer-grid a {
	display: block;
	margin: 5px 0;
}

.footer-grid a:hover,
.footer-bottom a:hover {
	color: var(--orange);
}

.social-links a {
	margin-bottom: 10px;
}

.footer-bottom {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding-top: 25px;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	font-size: 0.85rem;
}

.footer-bottom p {
	margin: 0;
}

.footer-bottom a {
	color: #fff;
	font-weight: 700;
}

.reveal {
	opacity: 0;
	transform: translateY(30px);
	transition: opacity 0.75s ease, transform 0.75s cubic-bezier(0.2, 0.7, 0.2, 1);
}

.reveal.is-visible {
	opacity: 1;
	transform: translateY(0);
}

@keyframes float {
	0%,
	100% { transform: translateY(0) rotate(4deg); }
	50% { transform: translateY(-18px) rotate(1deg); }
}

@keyframes header-in {
	from { transform: translateY(-100%); }
	to { transform: translateY(0); }
}

@media (max-width: 1120px) {
	.site-nav__list,
	.site-nav ul {
		gap: 22px;
	}

	.hero__grid {
		grid-template-columns: 1fr 0.8fr;
		gap: 25px;
	}

	.hero__visual {
		min-height: 570px;
	}

	.portfolio-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.posts-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 900px) {
	.site-header,
	.site-header.is-sticky {
		height: 78px;
	}

	.site-header.is-sticky {
		position: fixed;
	}

	.site-logo img {
		width: 155px;
	}

	.menu-toggle {
		display: block;
		margin-left: auto;
	}

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

	.menu-toggle[aria-expanded="true"] span:nth-child(2) {
		opacity: 0;
	}

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

	.site-nav {
		position: fixed;
		inset: 78px 0 0;
		display: block;
		padding: 30px 24px;
		visibility: hidden;
		background: #fff;
		opacity: 0;
		transform: translateX(100%);
		transition: 0.3s ease;
	}

	.site-nav.is-open {
		visibility: visible;
		opacity: 1;
		transform: translateX(0);
	}

	.site-nav__list,
	.site-nav ul {
		display: block;
	}

	.site-nav a {
		padding: 13px 0;
		font-size: 1.25rem;
	}

	.site-nav a::after,
	.site-nav .sub-menu {
		display: none;
	}

	.header-cta {
		display: none;
	}

	.hero {
		min-height: auto;
	}

	.hero__grid {
		grid-template-columns: 1fr;
	}

	.hero__content {
		position: relative;
		z-index: 5;
	}

	.hero__visual {
		min-height: 620px;
	}

	.hero__portrait {
		right: 12%;
		width: 70%;
	}

	.hero__rocket {
		right: 10%;
		width: 24%;
	}

	.brand-strip__inner {
		flex-wrap: wrap;
		justify-content: center;
	}

	.brand-strip span {
		flex: 0 0 100%;
		text-align: center;
	}

	.section-heading,
	.section-heading--center {
		grid-template-columns: 1fr;
		gap: 25px;
	}

	.about__grid {
		grid-template-columns: 1fr;
	}

	.service-row {
		grid-template-columns: 45px 1fr 150px 45px;
		gap: 20px;
	}

	.service-row img {
		width: 150px;
	}

	.about__image {
		max-width: 570px;
		margin-inline: auto;
	}

	.testimonials__grid {
		grid-template-columns: 1fr;
		gap: 50px;
	}

	.contact-grid {
		grid-template-columns: 1fr;
	}

	.cta__box {
		align-items: flex-start;
		flex-direction: column;
	}

	.footer-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 640px) {
	body {
		font-size: 16px;
	}

	.container {
		width: min(calc(100% - 32px), var(--container));
	}

	.section {
		padding: 78px 0;
	}

	h1 {
		font-size: clamp(2.8rem, 14vw, 4.2rem);
	}

	h2 {
		font-size: clamp(2.1rem, 11vw, 3.2rem);
	}

	.hero {
		padding-top: 65px;
	}

	.hero__actions {
		align-items: flex-start;
		flex-direction: column;
	}

	.hero__facts {
		gap: 25px;
	}

	.hero__facts div {
		align-items: flex-start;
		flex-direction: column;
		gap: 3px;
	}

	.hero__visual {
		min-height: 470px;
		margin-top: -15px;
	}

	.hero__portrait {
		right: 2%;
		width: 95%;
	}

	.hero__rocket {
		top: 0;
		right: 0;
		width: 29%;
	}

	.hero__badge {
		right: 0;
		bottom: 9%;
	}

	.brand-strip img {
		max-width: 90px;
		max-height: 36px;
	}

	.services-grid,
	.portfolio-grid,
	.posts-grid,
	.pricing-grid {
		grid-template-columns: 1fr;
	}

	.service-row {
		grid-template-columns: 38px 1fr 42px;
	}

	.service-row img {
		display: none;
	}

	.service-card {
		min-height: 285px;
		padding: 32px;
	}

	.about__stamp {
		right: -5px;
		width: 105px;
		height: 105px;
	}

	.portfolio-filters {
		margin-top: 0;
	}

	.process-list li {
		grid-template-columns: 55px 1fr;
	}

	.cta__box {
		padding: 45px 28px;
		border-radius: 22px;
	}

	.footer-grid {
		grid-template-columns: 1fr;
		gap: 35px;
	}

	.footer-bottom {
		align-items: flex-start;
		flex-direction: column;
		gap: 14px;
	}

	.form-row {
		grid-template-columns: 1fr;
		gap: 0;
	}
}

@media (prefers-reduced-motion: reduce) {
	html {
		scroll-behavior: auto;
	}

	*,
	*::before,
	*::after {
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
		scroll-behavior: auto !important;
		transition-duration: 0.01ms !important;
	}

	.reveal {
		opacity: 1;
		transform: none;
	}
}
.legacy-content > * + * {
	margin-top: 1.25rem;
}

.legacy-content h2 {
	margin-top: 3.5rem;
}

.legacy-content h3 {
	margin-top: 2rem;
}

.legacy-content__image {
	margin: 2.5rem 0;
}

.legacy-content__image img {
	display: block;
	width: 100%;
	height: auto;
	border-radius: 18px;
}

.legacy-content__group {
	padding: 1.5rem 0;
	border-top: 1px solid rgba(14, 27, 40, .12);
}

.local-offer-intro {
	padding: 1.5rem;
	margin-bottom: 2.5rem;
	border-left: 4px solid var(--orange);
	background: rgba(239, 167, 63, .1);
	border-radius: 0 14px 14px 0;
}

.price-tables {
	display: grid;
	gap: 4rem;
}

.price-table h2 {
	margin-bottom: 1.4rem;
}

.price-table__scroll {
	overflow-x: auto;
	border: 1px solid rgba(14, 27, 40, .12);
	border-radius: 18px;
}

.price-table table {
	width: 100%;
	min-width: 720px;
	border-collapse: collapse;
}

.price-table th,
.price-table td {
	padding: 1rem 1.2rem;
	text-align: left;
	vertical-align: top;
	border-bottom: 1px solid rgba(14, 27, 40, .1);
}

.price-table th {
	color: #fff;
	background: var(--ink);
}

.price-table th:last-child,
.price-table td:last-child {
	width: 150px;
	white-space: nowrap;
}

.price-table tbody tr:last-child td {
	border-bottom: 0;
}

.price-table tbody tr:nth-child(even) {
	background: rgba(14, 27, 40, .025);
}

.service-details {
	padding: 2rem;
	margin-top: 3.5rem;
	background: var(--cream);
	border-radius: 20px;
}

.service-details h2 {
	margin-bottom: 1rem;
}

.service-details ul {
	display: grid;
	gap: .7rem;
	padding: 0;
	margin: 1.5rem 0 0;
	list-style: none;
}

.service-details li {
	position: relative;
	padding-left: 1.5rem;
}

.service-details li::before {
	position: absolute;
	left: 0;
	color: var(--orange);
	content: "✓";
}
