/*
Theme Name: Axtrey
Theme URI: https://www.effethemes.com/themes/axtrey/
Author: Effe Themes
Author URI: https://www.effethemes.com/
Description: Axtrey is a premium Full Site Editing theme for creative agencies and modern studios. Features a bold editorial aesthetic with asymmetric layouts, dramatic typography using Syne display font, and choreographed GSAP scroll animations. Includes sections for Hero, About, Features, Portfolio, Testimonials, and CTA — all built with native WordPress blocks.
Requires at least: 6.4
Tested up to: 6.7
Requires PHP: 7.4
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: axtrey
Tags: full-site-editing, block-styles, custom-colors, custom-typography, wide-blocks, one-column, two-columns, portfolio, blog, editor-style, featured-images, full-width-template, translation-ready, dark-color-scheme
*/

/* ─── Google Fonts ─────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Syne:wght@400;500;600;700;800&family=DM+Sans:ital,wght@0,300;0,400;0,500;1,400&display=swap');

/* ─── Reset & Base ─────────────────────────────────── */
*,
*::before,
*::after {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

html,
body {
	overflow-x: hidden;
}

body {
	background: var(--wp--preset--color--background-primary);
	color: var(--wp--preset--color--text-dark);
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

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

a {
	color: inherit;
	transition:
		color 0.25s ease,
		opacity 0.25s ease;
}

ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	overflow-wrap: break-word;
}

:where(.wp-site-blocks) > * {
	margin-block-start: 0;
}

/* ─── Loading Screen ───────────────────────────────── */
.axtrey-loader {
	position: fixed;
	inset: 0;
	z-index: 9999;
	background: var(--wp--preset--color--background-dark);
	display: flex;
	align-items: center;
	justify-content: center;
	transition:
		opacity 0.8s ease,
		visibility 0.8s ease;
}

.axtrey-loader.is-hidden {
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
}

/* Push below WP admin bar when logged in */
.admin-bar .axtrey-loader {
	top: 32px;
}
@media screen and (max-width: 782px) {
	.admin-bar .axtrey-loader {
		top: 46px;
	}
}

.loader-wordmark {
	font-family: var(--wp--preset--font-family--syne), 'Syne', sans-serif;
	font-size: clamp(32px, 5vw, 60px);
	font-weight: 800;
	color: #fff;
	letter-spacing: -0.03em;
	overflow: hidden;
}

.loader-wordmark span {
	display: inline-block;
	transform: translateY(110%);
	transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.loader-wordmark span.reveal {
	transform: translateY(0);
}

.loader-bar {
	position: absolute;
	bottom: 0;
	left: 0;
	height: 3px;
	width: 0%;
	background: var(--wp--preset--color--accent-orange);
	transition: width 2.8s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ─── Global Utilities ─────────────────────────────── */
.section-label {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	font-family: var(--wp--preset--font-family--dm-sans), 'DM Sans', sans-serif;
	font-size: 11px;
	font-weight: 500;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--wp--preset--color--accent-orange);
}

.section-label::before {
	content: '';
	display: block;
	width: 28px;
	height: 1.5px;
	background: currentColor;
	flex-shrink: 0;
}

.grain-overlay {
	position: relative;
}

.grain-overlay::after {
	content: '';
	position: absolute;
	inset: 0;
	background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
	pointer-events: none;
	z-index: 1;
}

/* ─── Header ───────────────────────────────────────── */
.site-header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 1000;
	padding: 20px clamp(24px, 4vw, 60px);
	display: flex;
	align-items: center;
	justify-content: space-between;
	transition:
		background 0.4s ease,
		backdrop-filter 0.4s ease,
		box-shadow 0.4s ease;
}

.site-header.scrolled {
	background: rgba(10, 10, 10, 0.92);
	backdrop-filter: blur(16px);
	-webkit-backdrop-filter: blur(16px);
	box-shadow: 0 1px 0 rgba(255, 255, 255, 0.06);
}

.site-header .wp-block-site-title a {
	text-decoration: none;
	font-family: var(--wp--preset--font-family--syne), 'Syne', sans-serif;
	font-weight: 800;
	font-size: 22px;
	letter-spacing: -0.04em;
	color: #fff !important;
}

.site-header .wp-block-navigation a {
	color: rgba(255, 255, 255, 0.75) !important;
	font-size: 14px;
	font-weight: 400;
	transition: color 0.2s ease;
}

.site-header .wp-block-navigation a:hover {
	color: #fff !important;
}

.header-cta-btn {
	background: var(--wp--preset--color--accent-orange) !important;
	color: #fff !important;
	padding: 10px 22px !important;
	border-radius: 100px !important;
	font-size: 13px !important;
	font-weight: 500 !important;
	text-decoration: none !important;
	white-space: nowrap;
	transition:
		opacity 0.2s ease,
		transform 0.2s ease !important;
}

.header-cta-btn:hover {
	opacity: 0.85;
	transform: translateY(-1px);
}

/* ─── Hero Section ─────────────────────────────────── */
.hero-section {
	min-height: 100vh;
	display: grid;
	grid-template-columns: 1fr;
	position: relative;
	overflow: hidden;
}

.hero-left {
	background: var(--wp--preset--color--background-dark);
	padding: clamp(120px, 14vh, 180px) clamp(32px, 5vw, 80px) clamp(80px, 10vh, 120px);
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	position: relative;
	z-index: 2;
}

.hero-eyebrow {
	margin-bottom: 28px;
}

.hero-title {
	font-family: var(--wp--preset--font-family--syne), 'Syne', sans-serif !important;
	font-size: clamp(52px, 7vw, 100px) !important;
	font-weight: 800 !important;
	line-height: 1 !important;
	letter-spacing: -0.03em !important;
	color: #ffffff !important;
	margin: 0 0 32px !important;
	overflow: hidden;
}

.hero-title .word {
	display: inline-block;
	overflow: hidden;
}

.hero-title .char {
	display: inline-block;
	transform: translateY(115%);
}

.hero-title em {
	font-style: normal;
	color: var(--wp--preset--color--accent-orange);
}

.hero-subtitle {
	font-size: clamp(15px, 1.4vw, 17px) !important;
	line-height: 1.7 !important;
	color: rgba(255, 255, 255, 0.55) !important;
	max-width: 420px !important;
	margin: 0 0 44px !important;
}

.hero-actions {
	display: flex;
	align-items: center;
	gap: 24px;
	flex-wrap: wrap;
}

.hero-btn-primary {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	background: var(--wp--preset--color--accent-orange) !important;
	color: #fff !important;
	padding: 16px 32px !important;
	border-radius: 100px !important;
	font-size: 15px !important;
	font-weight: 500 !important;
	text-decoration: none !important;
	transition:
		transform 0.25s ease,
		box-shadow 0.25s ease !important;
}

.hero-btn-primary:hover {
	transform: translateY(-2px);
	box-shadow: 0 12px 32px rgba(232, 75, 38, 0.35);
}

.hero-btn-secondary {
	font-size: 14px !important;
	color: rgba(255, 255, 255, 0.6) !important;
	text-decoration: none !important;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.2);
	padding-bottom: 2px;
	transition:
		color 0.2s,
		border-color 0.2s !important;
}

.hero-btn-secondary:hover {
	color: #fff !important;
	border-color: rgba(255, 255, 255, 0.6);
}

.hero-right {
	position: relative;
	overflow: hidden;
	min-height: 400px;
	margin-top: 0;
}

.hero-right img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	/* position: absolute; */
	inset: 0;
	/* transform: scale(1.05); */
	/* transition: transform 0.8s ease; */
}

.hero-badge {
	position: absolute;
	bottom: 270px;
	left: 32px;
	z-index: 10;
	background: rgba(255, 255, 255, 0.1);
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
	border: 1px solid rgba(255, 255, 255, 0.15);
	border-radius: 16px;
	padding: 16px 20px;
	color: #fff;
}

.hero-badge-number {
	font-family: var(--wp--preset--font-family--syne), 'Syne', sans-serif;
	font-size: 32px;
	font-weight: 800;
	line-height: 1;
	letter-spacing: -0.03em;
	color: var(--wp--preset--color--accent-orange);
}

.hero-badge-text {
	font-size: 12px;
	color: rgba(255, 255, 255, 0.65);
	margin-top: 4px;
}

.hero-scroll-hint {
	position: absolute;
	bottom: 36px;
	right: 40px;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 8px;
	color: rgba(255, 255, 255, 0.4);
	font-size: 10px;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	z-index: 10;
	writing-mode: vertical-rl;
}

.hero-scroll-hint::after {
	content: '';
	width: 1.5px;
	height: 40px;
	background: rgba(255, 255, 255, 0.2);
	margin-top: 6px;
	animation: scrollLine 1.8s ease infinite;
	transform-origin: top;
}

@keyframes scrollLine {
	0% {
		transform: scaleY(0);
		opacity: 0;
	}
	50% {
		transform: scaleY(1);
		opacity: 1;
	}
	100% {
		transform: scaleY(0) translateY(100%);
		opacity: 0;
	}
}

/* ─── Stats Bar ────────────────────────────────────── */
.stats-bar {
	background: var(--wp--preset--color--background-dark);
	padding: 40px clamp(32px, 5vw, 80px);
	border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.stats-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 0;
}

.stat-item {
	padding: 24px 32px;
	border-left: 1px solid rgba(255, 255, 255, 0.08);
	position: relative;
}

.stat-item:first-child {
	border-left: 0;
	padding-left: 0;
}

.stat-number {
	font-family: var(--wp--preset--font-family--syne), 'Syne', sans-serif;
	font-size: clamp(36px, 4vw, 54px);
	font-weight: 800;
	letter-spacing: -0.04em;
	color: #fff;
	line-height: 1;
	margin-bottom: 6px;
}

.stat-number span {
	color: var(--wp--preset--color--accent-orange);
}

.stat-label {
	font-size: 13px;
	color: rgba(255, 255, 255, 0.4);
	font-weight: 300;
}

/* ─── About Section ────────────────────────────────── */
.about-section {
	padding: clamp(80px, 10vw, 140px) clamp(32px, 5vw, 80px);
	background: var(--wp--preset--color--background-primary);
}

.about-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: clamp(40px, 6vw, 100px);
	align-items: center;
}

.about-image-wrap {
	position: relative;
}

.about-image-wrap > .wp-block-image img,
.about-image-wrap img {
	width: 100%;
	height: clamp(400px, 55vw, 600px);
	object-fit: cover;
	border-radius: 4px;
}

.about-accent-card {
	position: absolute;
	bottom: -32px;
	right: 20px;
	background: var(--wp--preset--color--accent-orange);
	color: #fff;
	padding: 28px 32px;
	border-radius: 4px;
	z-index: 10;
}

.about-accent-card .big-number {
	font-family: var(--wp--preset--font-family--syne), 'Syne', sans-serif;
	font-size: 48px;
	font-weight: 800;
	letter-spacing: -0.04em;
	line-height: 1;
}

.about-accent-card .small-label {
	font-size: 13px;
	opacity: 0.85;
	margin-top: 6px;
	font-weight: 300;
}

.about-content .section-label {
	margin-bottom: 20px;
}

.about-title {
	font-family: var(--wp--preset--font-family--syne), 'Syne', sans-serif !important;
	font-size: clamp(36px, 4vw, 56px) !important;
	font-weight: 800 !important;
	letter-spacing: -0.03em !important;
	line-height: 1.1 !important;
	color: var(--wp--preset--color--text-dark) !important;
	margin: 0 0 24px !important;
}

.about-body {
	font-size: 16px !important;
	line-height: 1.8 !important;
	color: var(--wp--preset--color--text-muted) !important;
	margin-bottom: 20px !important;
}

.about-list {
	list-style: none !important;
	padding: 0 !important;
	margin: 28px 0 !important;
}

.about-list li {
	display: flex;
	align-items: flex-start;
	gap: 14px;
	padding: 14px 0;
	border-bottom: 1px solid rgba(0, 0, 0, 0.07);
	font-size: 15px;
	color: var(--wp--preset--color--text-dark);
}

.about-list li::before {
	content: '';
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: var(--wp--preset--color--accent-orange);
	flex-shrink: 0;
	margin-top: 8px;
}

/* ─── Features Section ─────────────────────────────── */
.features-section {
	background: var(--wp--preset--color--background-dark);
	padding: clamp(80px, 10vw, 140px) clamp(32px, 5vw, 80px);
	position: relative;
	overflow: hidden;
}

.features-section::before {
	content: 'FEATURES';
	position: absolute;
	top: 40px;
	right: -20px;
	font-family: var(--wp--preset--font-family--syne), 'Syne', sans-serif;
	font-size: clamp(80px, 12vw, 160px);
	font-weight: 800;
	color: rgba(255, 255, 255, 0.02);
	pointer-events: none;
	white-space: nowrap;
	user-select: none;
}

.features-header {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	margin-bottom: 64px;
	gap: 32px;
	flex-wrap: wrap;
}

.features-title {
	font-family: var(--wp--preset--font-family--syne), 'Syne', sans-serif !important;
	font-size: clamp(36px, 4.5vw, 60px) !important;
	font-weight: 800 !important;
	letter-spacing: -0.03em !important;
	line-height: 1.05 !important;
	color: #fff !important;
	margin: 0 !important;
}

.features-desc {
	font-size: 15px !important;
	line-height: 1.7 !important;
	color: rgba(255, 255, 255, 0.45) !important;
	max-width: 320px !important;
	margin: 0 !important;
}

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

.feature-card {
	background: rgba(255, 255, 255, 0.03);
	border: 1px solid rgba(255, 255, 255, 0.06);
	padding: 44px 36px;
	position: relative;
	overflow: hidden;
	transition: background 0.35s ease;
	cursor: default;
}

.feature-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 0;
	height: 2px;
	background: var(--wp--preset--color--accent-orange);
	transition: width 0.4s ease;
}

.feature-card:hover {
	background: rgba(255, 255, 255, 0.055);
}

.feature-card:hover::before {
	width: 100%;
}

.feature-icon {
	width: 48px;
	height: 48px;
	border-radius: 12px;
	background: rgba(232, 75, 38, 0.12);
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 28px;
}

.feature-icon svg {
	width: 22px;
	height: 22px;
	stroke: var(--wp--preset--color--accent-orange);
	fill: none;
	stroke-width: 1.5;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.feature-number {
	position: absolute;
	top: 28px;
	right: 28px;
	font-family: var(--wp--preset--font-family--syne), 'Syne', sans-serif;
	font-size: 12px;
	font-weight: 600;
	color: rgba(255, 255, 255, 0.12);
	letter-spacing: 0.06em;
}

.feature-title {
	font-family: var(--wp--preset--font-family--syne), 'Syne', sans-serif !important;
	font-size: 20px !important;
	font-weight: 700 !important;
	color: #fff !important;
	margin: 0 0 14px !important;
	letter-spacing: -0.02em !important;
}

.feature-body {
	font-size: 14px !important;
	line-height: 1.75 !important;
	color: rgba(255, 255, 255, 0.42) !important;
	margin: 0 !important;
}

/* ─── Portfolio Section ────────────────────────────── */
.portfolio-section {
	padding: clamp(80px, 10vw, 140px) clamp(32px, 5vw, 80px);
	background: var(--wp--preset--color--background-primary);
}

.portfolio-header {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	margin-bottom: 56px;
	flex-wrap: wrap;
	gap: 24px;
}

.portfolio-title {
	font-family: var(--wp--preset--font-family--syne), 'Syne', sans-serif !important;
	font-size: clamp(36px, 4.5vw, 60px) !important;
	font-weight: 800 !important;
	letter-spacing: -0.03em !important;
	line-height: 1.05 !important;
	color: var(--wp--preset--color--text-dark) !important;
	margin: 0 !important;
}

.portfolio-link {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-size: 14px;
	color: var(--wp--preset--color--accent-orange);
	text-decoration: none;
	font-weight: 500;
	transition: gap 0.2s ease;
}

.portfolio-link:hover {
	gap: 14px;
}
.portfolio-link:hover {
	color: var(--wp--preset--color--accent-orange) !important;
}

.portfolio-link::after {
	content: '→';
	font-size: 16px;
}

.portfolio-grid {
	display: grid;
	grid-template-columns: 1.4fr 1fr;
	grid-template-rows: auto auto;
	gap: 12px;
}

.portfolio-item {
	position: relative;
	overflow: hidden;
	cursor: pointer;
	border-radius: 4px;
	background: #e8e5de;
}

.portfolio-item:nth-child(1) {
	grid-row: 1 / 3;
}
.portfolio-item:nth-child(3) {
}
.portfolio-item:nth-child(4) {
}

.portfolio-item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	min-height: 280px;
	transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.portfolio-item:nth-child(1) img {
	min-height: 580px;
}

.portfolio-item:hover img {
	transform: scale(1.04);
}

.portfolio-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(to top, rgba(10, 10, 10, 0.8) 0%, transparent 55%);
	opacity: 0;
	transition: opacity 0.4s ease;
	display: flex;
	align-items: flex-end;
	padding: 32px;
}

.portfolio-item:hover .portfolio-overlay {
	opacity: 1;
}

.portfolio-info {
}
.portfolio-cat {
	font-size: 11px;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--wp--preset--color--accent-orange);
	margin-bottom: 6px;
}

.portfolio-name {
	font-family: var(--wp--preset--font-family--syne), 'Syne', sans-serif;
	font-size: 20px;
	font-weight: 700;
	color: #fff;
	letter-spacing: -0.02em;
}

/* ─── Gallery ──────────────────────────────────────── */
.gallery-section {
	padding: clamp(60px, 8vw, 100px) 0;
	background: var(--wp--preset--color--background-primary);
	overflow: hidden;
}

.gallery-track {
	display: flex !important;
	flex-wrap: nowrap !important;
	gap: 16px;
	width: max-content;
	will-change: transform;
}

.gallery-track .wp-block-image {
	flex-shrink: 0;
	display: block;
}

.gallery-img,
.gallery-track .wp-block-image img {
	height: 260px !important;
	width: auto !important;
	max-width: none !important;
	border-radius: 4px;
	object-fit: cover;
	flex-shrink: 0;
	display: block;
}

/* ─── Testimonials Section ─────────────────────────── */
.testimonials-section {
	background: var(--wp--preset--color--background-dark);
	padding: clamp(80px, 10vw, 140px) clamp(32px, 5vw, 80px);
}

.testimonials-header {
	text-align: center;
	margin-bottom: 64px;
}

.testimonials-title {
	font-family: var(--wp--preset--font-family--syne), 'Syne', sans-serif !important;
	font-size: clamp(32px, 4vw, 54px) !important;
	font-weight: 800 !important;
	letter-spacing: -0.03em !important;
	line-height: 1.1 !important;
	color: #fff !important;
	margin: 0 0 16px !important;
}

.testimonials-sub {
	font-size: 16px !important;
	color: rgba(255, 255, 255, 0.4) !important;
	margin: 0 auto !important;
	max-width: 400px !important;
}

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

.testimonial-card {
	background: rgba(255, 255, 255, 0.04);
	border: 1px solid rgba(255, 255, 255, 0.07);
	border-radius: 4px;
	padding: 36px;
	position: relative;
	overflow: hidden;
	transition:
		border-color 0.3s ease,
		transform 0.3s ease;
}

.testimonial-card:hover {
	border-color: rgba(232, 75, 38, 0.3);
	transform: translateY(-4px);
}

.testimonial-quote-icon {
	font-family: Georgia, serif;
	font-size: 72px;
	line-height: 0.7;
	color: var(--wp--preset--color--accent-orange);
	opacity: 0.3;
	margin-bottom: 20px;
	display: block;
}

.testimonial-text {
	font-size: 15px !important;
	line-height: 1.75 !important;
	color: rgba(255, 255, 255, 0.7) !important;
	margin: 0 0 28px !important;
	font-style: italic !important;
}

.testimonial-author {
	display: flex;
	align-items: center;
	gap: 14px;
}

.testimonial-avatar {
	width: 44px;
	height: 44px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.1);
	flex-shrink: 0;
	overflow: hidden;
}

.testimonial-avatar img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.testimonial-name {
	font-family: var(--wp--preset--font-family--syne), 'Syne', sans-serif;
	font-size: 15px;
	font-weight: 700;
	color: #fff;
	letter-spacing: -0.01em;
}

.testimonial-role {
	font-size: 12px;
	color: rgba(255, 255, 255, 0.35);
	margin-top: 2px;
}

/* ─── CTA Section ──────────────────────────────────── */
.cta-section {
	background: var(--wp--preset--color--accent-orange);
	padding: clamp(80px, 10vw, 120px) clamp(32px, 5vw, 80px);
	position: relative;
	overflow: hidden;
}

.cta-section::before {
	content: 'START';
	position: absolute;
	top: 50%;
	right: 40px;
	transform: translateY(-50%);
	font-family: var(--wp--preset--font-family--syne), 'Syne', sans-serif;
	font-size: clamp(100px, 16vw, 220px);
	font-weight: 800;
	color: rgba(0, 0, 0, 0.06);
	white-space: nowrap;
	pointer-events: none;
	line-height: 1;
}

.cta-inner {
	position: relative;
	z-index: 2;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 48px;
	flex-wrap: wrap;
}

.cta-title {
	font-family: var(--wp--preset--font-family--syne), 'Syne', sans-serif !important;
	font-size: clamp(40px, 5.5vw, 76px) !important;
	font-weight: 800 !important;
	letter-spacing: -0.03em !important;
	line-height: 1 !important;
	color: #fff !important;
	margin: 0 !important;
	max-width: 700px;
}

.cta-btn {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	background: #fff !important;
	color: var(--wp--preset--color--accent-orange) !important;
	padding: 20px 36px !important;
	border-radius: 100px !important;
	font-size: 16px !important;
	font-weight: 700 !important;
	text-decoration: none !important;
	white-space: nowrap;
	transition:
		transform 0.25s ease,
		box-shadow 0.25s ease !important;
	flex-shrink: 0;
}

.cta-btn:hover {
	transform: translateY(-3px) scale(1.02);
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.cta-btn:hover {
	color: var(--wp--preset--color--accent-orange) !important;
}

/* ─── Footer ───────────────────────────────────────── */
.site-footer {
	background: var(--wp--preset--color--background-dark);
	padding: clamp(60px, 8vw, 100px) clamp(32px, 5vw, 80px) 40px;
	border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-top {
	display: grid;
	grid-template-columns: 1.6fr 1fr 1fr 1fr;
	gap: 48px;
	margin-bottom: 60px;
}

.footer-brand .site-title {
	font-family: var(--wp--preset--font-family--syne), 'Syne', sans-serif;
	font-size: 22px;
	font-weight: 800;
	letter-spacing: -0.04em;
	color: #fff;
	margin-bottom: 16px;
	text-decoration: none;
}

.footer-tagline {
	font-size: 14px;
	line-height: 1.7;
	color: rgba(255, 255, 255, 0.35);
	max-width: 260px;
}

.footer-col-title {
	font-family: var(--wp--preset--font-family--syne), 'Syne', sans-serif;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.5);
	margin-bottom: 20px;
}

.footer-links a {
	display: block;
	font-size: 14px;
	color: rgba(255, 255, 255, 0.45);
	text-decoration: none;
	padding: 6px 0;
	transition: color 0.2s ease;
}

.footer-links a:hover {
	color: #fff;
}

.footer-bottom {
	border-top: 1px solid rgba(255, 255, 255, 0.06);
	padding-top: 28px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	flex-wrap: wrap;
}

.footer-copy {
	font-size: 13px;
	color: rgba(255, 255, 255, 0.25);
}

.footer-copy a {
	color: rgba(255, 255, 255, 0.45);
	text-decoration: none;
}

.footer-copy a:hover {
	color: #fff;
}

.footer-social {
	display: flex;
	gap: 16px;
}

.footer-social a {
	width: 36px;
	height: 36px;
	border-radius: 50%;
	border: 1px solid rgba(255, 255, 255, 0.1);
	display: flex;
	align-items: center;
	justify-content: center;
	color: rgba(255, 255, 255, 0.4);
	font-size: 13px;
	text-decoration: none;
	transition:
		border-color 0.2s,
		color 0.2s,
		background 0.2s;
}

.footer-social a:hover {
	border-color: var(--wp--preset--color--accent-orange);
	color: var(--wp--preset--color--accent-orange);
}

/* ─── WP Blocks Overrides ──────────────────────────── */
.wp-block-site-title a {
	text-decoration: none;
}

.wp-block-navigation a {
	text-decoration: none;
}

.wp-block-button__link {
	transition:
		transform 0.25s ease,
		box-shadow 0.25s ease;
}

:root {
	--wp--preset--font-family--syne: 'Syne', sans-serif;
	--wp--preset--font-family--dm-sans: 'DM Sans', sans-serif;
}

/* ─── Media Queries ────────────────────────────────── */
@media (min-width: 768px) {
	.hero-section {
		grid-template-columns: 45% 65%;
		min-height: 100vh;
	}

	.hero-right {
		min-height: unset;
	}
}

@media (max-width: 1100px) {
	.testimonials-grid {
		grid-template-columns: repeat(2, 1fr);
	}
	.footer-top {
		grid-template-columns: 1fr 1fr;
		gap: 32px;
	}
}

@media (max-width: 900px) {
	.about-grid {
		grid-template-columns: 1fr;
	}
	.about-image-wrap {
		order: -1;
	}
	.about-accent-card {
		right: 16px;
		bottom: -24px;
	}
	.features-grid {
		grid-template-columns: 1fr;
	}
	.portfolio-grid {
		grid-template-columns: 1fr;
	}
	.portfolio-item:nth-child(1) {
		grid-row: unset;
	}
	.stats-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 768px) {
	.hero-badge {
		bottom: 0;
	}
}

@media (max-width: 640px) {
	.hero-section {
		grid-template-columns: 1fr;
	}
	.hero-right {
		min-height: 50vw;
	}
	.testimonials-grid {
		grid-template-columns: 1fr;
	}
	.footer-top {
		grid-template-columns: 1fr;
	}
	.cta-inner {
		flex-direction: column;
		align-items: flex-start;
	}
	.stats-grid {
		grid-template-columns: 1fr 1fr;
	}
	.features-header {
		flex-direction: column;
		align-items: flex-start;
	}
}
