:root {
	--bg: #050403;
	--bg-soft: #0b0908;
	--panel: rgba(12, 10, 9, 0.78);
	--panel-strong: #100d0b;
	--text: #f1ece2;
	--muted: #a69b8e;
	--line: rgba(255, 255, 255, 0.12);
	--ember: #ff6428;
	--ember-2: #ff9a4b;
	--gold: #d7a55b;
	--teal: #64d7cf;
	--violet: #9f6cff;
	--shadow: 0 22px 80px rgba(0, 0, 0, 0.55);
	--max: 1180px;
}

* {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	background:
		radial-gradient(circle at 72% 8%, rgba(255, 100, 40, 0.12), transparent 28rem),
		linear-gradient(180deg, #000, var(--bg) 34rem, #020202);
	color: var(--text);
	font-family: Inter, "Segoe UI", Arial, sans-serif;
	line-height: 1.6;
	overflow-x: hidden;
}

body.menu-open,
body.modal-open {
	overflow: hidden;
}

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

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

button,
input {
	font: inherit;
}

.screen-reader-text,
.skip-link {
	position: absolute;
	overflow: hidden;
	clip: rect(1px, 1px, 1px, 1px);
	width: 1px;
	height: 1px;
	word-wrap: normal;
}

.skip-link:focus {
	z-index: 10000;
	top: 1rem;
	left: 1rem;
	clip: auto;
	width: auto;
	height: auto;
	padding: 0.75rem 1rem;
	background: var(--ember);
	color: #160604;
}

.site-header {
	position: fixed;
	z-index: 1000;
	top: 0;
	left: 0;
	right: 0;
	background: linear-gradient(180deg, rgba(0, 0, 0, 0.88), rgba(0, 0, 0, 0.42), transparent);
	transition: background 180ms ease, border-color 180ms ease;
}

.site-header.is-scrolled {
	border-bottom: 1px solid var(--line);
	background: rgba(3, 3, 3, 0.9);
	backdrop-filter: blur(16px);
}

.header-shell {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: min(var(--max), calc(100% - 2rem));
	min-height: 86px;
	margin: 0 auto;
	gap: 1rem;
}

.brand-mark {
	display: inline-flex;
	align-items: center;
	gap: 0.7rem;
	min-width: 0;
}

.brand-sigil {
	position: relative;
	display: inline-block;
	width: 26px;
	height: 44px;
	flex: 0 0 auto;
}

.brand-sigil::before,
.brand-sigil::after {
	content: "";
	position: absolute;
	left: 50%;
	top: 50%;
	background: linear-gradient(180deg, var(--ember-2), var(--ember));
	box-shadow: 0 0 24px rgba(255, 100, 40, 0.72);
	transform: translate(-50%, -50%);
}

.brand-sigil::before {
	width: 2px;
	height: 42px;
}

.brand-sigil::after {
	width: 24px;
	height: 2px;
}

.brand-copy {
	display: grid;
	line-height: 1;
	text-transform: uppercase;
}

.brand-title {
	font-family: Georgia, "Times New Roman", serif;
	font-size: clamp(0.96rem, 1.8vw, 1.32rem);
	letter-spacing: 0.12em;
}

.brand-subtitle,
.eyebrow {
	color: var(--ember-2);
	font-size: 0.64rem;
	font-weight: 800;
	letter-spacing: 0.22em;
	text-transform: uppercase;
}

.chromatic-menu,
.footer-menu {
	display: flex;
	align-items: center;
	gap: clamp(0.9rem, 2vw, 1.55rem);
	margin: 0;
	padding: 0;
	list-style: none;
}

.chromatic-menu a {
	position: relative;
	display: inline-flex;
	padding: 0.4rem 0;
	color: var(--text);
	font-size: 0.72rem;
	font-weight: 800;
	letter-spacing: 0.1em;
	text-transform: uppercase;
}

.chromatic-menu a::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: 0;
	width: 0;
	height: 1px;
	background: var(--ember);
	box-shadow: 0 0 16px var(--ember);
	transition: width 180ms ease;
}

.chromatic-menu a:hover::after,
.chromatic-menu a:focus-visible::after {
	width: 100%;
}

.header-actions {
	display: inline-flex;
	align-items: center;
	gap: 0.65rem;
}

.icon-button,
.mobile-toggle {
	display: inline-grid;
	place-items: center;
	width: 42px;
	height: 42px;
	border: 1px solid var(--line);
	background: rgba(0, 0, 0, 0.36);
	color: var(--text);
	cursor: pointer;
	transition: border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.icon-button:hover,
.mobile-toggle:hover {
	border-color: rgba(255, 100, 40, 0.7);
	background: rgba(255, 100, 40, 0.1);
	transform: translateY(-1px);
}

.icon-search,
.icon-grid,
.icon-close {
	position: relative;
	display: inline-block;
	width: 16px;
	height: 16px;
}

.icon-search {
	border: 2px solid currentColor;
	border-radius: 999px;
}

.icon-search::after {
	content: "";
	position: absolute;
	right: -6px;
	bottom: -4px;
	width: 8px;
	height: 2px;
	background: currentColor;
	transform: rotate(45deg);
}

.icon-grid {
	background:
		linear-gradient(currentColor 0 0) 0 0 / 6px 6px,
		linear-gradient(currentColor 0 0) 10px 0 / 6px 6px,
		linear-gradient(currentColor 0 0) 0 10px / 6px 6px,
		linear-gradient(currentColor 0 0) 10px 10px / 6px 6px;
	background-repeat: no-repeat;
}

.icon-close::before,
.icon-close::after {
	content: "";
	position: absolute;
	top: 7px;
	left: 0;
	width: 18px;
	height: 2px;
	background: currentColor;
}

.icon-close::before {
	transform: rotate(45deg);
}

.icon-close::after {
	transform: rotate(-45deg);
}

.mobile-toggle {
	display: none;
	gap: 4px;
}

.mobile-toggle span {
	display: block;
	width: 18px;
	height: 2px;
	background: currentColor;
}

.button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 44px;
	padding: 0 1.15rem;
	border: 1px solid var(--line);
	color: var(--text);
	font-size: 0.72rem;
	font-weight: 900;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	cursor: pointer;
	transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, color 180ms ease;
}

.button:hover,
.button:focus-visible {
	transform: translateY(-2px);
	border-color: var(--ember);
}

.button-primary {
	border-color: var(--ember);
	background: var(--ember);
	color: #170604;
	box-shadow: 0 0 28px rgba(255, 100, 40, 0.36);
}

.button-primary:hover {
	background: var(--ember-2);
	color: #170604;
}

.button-dark,
.button-ghost {
	background: rgba(0, 0, 0, 0.34);
}

.site-main {
	min-height: 60vh;
}

.hero-section {
	position: relative;
	min-height: 100svh;
	padding: 9rem 0 2rem;
	border-bottom: 1px solid var(--line);
	isolation: isolate;
}

.hero-section::before {
	content: "";
	position: absolute;
	inset: 0;
	z-index: -2;
	background:
		linear-gradient(90deg, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.72) 37%, rgba(0, 0, 0, 0.2) 68%, rgba(0, 0, 0, 0.9) 100%),
		var(--hero-image) center right / cover no-repeat;
	opacity: 0.74;
}

.hero-section::after {
	content: "";
	position: absolute;
	inset: auto 0 0;
	z-index: -1;
	height: 38%;
	background: linear-gradient(180deg, transparent, #030303 78%);
}

.hero-shell {
	position: relative;
	display: grid;
	grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.9fr) auto;
	align-items: center;
	gap: clamp(1.5rem, 4vw, 4rem);
	width: min(var(--max), calc(100% - 2rem));
	margin: 0 auto;
}

.hero-copy {
	max-width: 570px;
}

.hero-copy h1,
.section-heading h2,
.about-copy h2,
.blog-strip h2,
.page-header h1,
.archive-header h1,
.not-found-shell h1 {
	margin: 0;
	font-family: Georgia, "Times New Roman", serif;
	font-weight: 900;
	line-height: 0.95;
	text-transform: uppercase;
}

.hero-copy h1 {
	max-width: 9ch;
	margin: 1rem 0;
	font-size: clamp(3.2rem, 8.1vw, 7.75rem);
	text-shadow: 0 10px 24px rgba(0, 0, 0, 0.55);
}

.hero-copy h1::first-line {
	color: var(--text);
}

.hero-copy h1 {
	color: var(--ember);
}

.hero-copy p:not(.eyebrow) {
	max-width: 450px;
	color: var(--muted);
}

.hero-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.85rem;
	margin-top: 1.75rem;
}

.hero-media {
	position: relative;
	min-width: 0;
}

.orbital-card {
	position: relative;
	overflow: hidden;
	max-height: 640px;
	border: 1px solid rgba(255, 255, 255, 0.08);
	box-shadow: var(--shadow);
	clip-path: polygon(5% 0, 100% 0, 96% 100%, 0 96%);
}

.orbital-card img {
	width: 100%;
	height: min(64vw, 640px);
	object-fit: cover;
	object-position: 73% 24%;
	filter: contrast(1.12) saturate(1.06);
}

.watch-reel {
	position: absolute;
	right: -1rem;
	bottom: 15%;
	display: inline-flex;
	align-items: center;
	gap: 0.75rem;
	border: 0;
	background: transparent;
	color: var(--text);
	font-size: 0.74rem;
	font-weight: 900;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	cursor: pointer;
}

.play-ring {
	display: inline-grid;
	place-items: center;
	width: 50px;
	height: 50px;
	border: 1px solid var(--ember);
	border-radius: 999px;
	background: rgba(0, 0, 0, 0.4);
	box-shadow: 0 0 24px rgba(255, 100, 40, 0.3);
}

.play-ring::before {
	content: "";
	width: 0;
	height: 0;
	border-top: 7px solid transparent;
	border-bottom: 7px solid transparent;
	border-left: 11px solid var(--ember);
	margin-left: 3px;
}

.quick-social {
	display: grid;
	gap: 0.5rem;
	padding: 0.7rem;
	border: 1px solid var(--line);
	background: rgba(0, 0, 0, 0.35);
}

.quick-social a {
	display: grid;
	place-items: center;
	width: 32px;
	height: 32px;
	color: var(--muted);
	font-size: 0.72rem;
	font-weight: 800;
}

.quick-social a:hover {
	color: var(--ember);
}

.side-scroll {
	position: absolute;
	left: max(1rem, calc((100vw - var(--max)) / 2 - 4.6rem));
	top: 48%;
	display: flex;
	align-items: center;
	gap: 0.75rem;
	color: var(--muted);
	font-size: 0.64rem;
	font-weight: 900;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	writing-mode: vertical-rl;
	transform: translateY(-50%) rotate(180deg);
}

.side-scroll span {
	width: 1px;
	height: 54px;
	background: var(--line);
}

.thumb-strip {
	display: grid;
	grid-template-columns: repeat(6, 1fr);
	gap: 0.75rem;
	width: min(var(--max), calc(100% - 2rem));
	margin: 2rem auto 0;
}

.thumb-card {
	position: relative;
	overflow: hidden;
	border: 1px solid var(--line);
	background: var(--panel-strong);
}

.thumb-card::after {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	height: 2px;
	background: var(--ember);
	box-shadow: 0 0 22px var(--ember);
}

.thumb-card img {
	width: 100%;
	aspect-ratio: 1 / 1.25;
	object-fit: cover;
	transition: transform 260ms ease, opacity 260ms ease;
}

.thumb-card:nth-child(odd) img {
	object-position: 38% 45%;
}

.thumb-card:hover img {
	opacity: 0.82;
	transform: scale(1.08);
}

.section-shell {
	width: min(var(--max), calc(100% - 2rem));
	margin: 0 auto;
	padding: clamp(4rem, 8vw, 7rem) 0;
}

.section-heading {
	display: flex;
	align-items: end;
	justify-content: space-between;
	gap: 1.5rem;
	margin-bottom: 2rem;
}

.section-heading h2,
.about-copy h2,
.blog-strip h2 {
	font-size: clamp(2.4rem, 5vw, 4.25rem);
}

.section-heading h2 span {
	color: var(--ember);
}

.filter-row {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-end;
	gap: 0.45rem;
}

.filter-button {
	border: 1px solid transparent;
	background: transparent;
	color: var(--muted);
	padding: 0.55rem 0.7rem;
	font-size: 0.62rem;
	font-weight: 900;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	cursor: pointer;
}

.filter-button.is-active,
.filter-button:hover {
	border-color: rgba(255, 100, 40, 0.55);
	color: var(--ember);
}

.portfolio-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	grid-auto-rows: 230px;
	gap: 0.75rem;
}

.portfolio-card {
	position: relative;
	overflow: hidden;
	border: 1px solid var(--line);
	background: var(--panel-strong);
	transition: opacity 180ms ease, transform 180ms ease;
}

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

.portfolio-card.large {
	grid-column: span 2;
	grid-row: span 2;
}

.portfolio-card img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	filter: contrast(1.15) saturate(1.08);
	transition: transform 360ms ease;
}

.portfolio-card:nth-child(1) img {
	object-position: 18% 42%;
}

.portfolio-card:nth-child(2) img {
	object-position: 56% 46%;
}

.portfolio-card:nth-child(3) img {
	object-position: 73% 48%;
}

.portfolio-card:nth-child(4) img {
	object-position: 92% 52%;
}

.portfolio-card:nth-child(5) img {
	object-position: 44% 72%;
}

.portfolio-card:nth-child(6) img {
	object-position: 82% 72%;
}

.portfolio-card-overlay {
	position: absolute;
	inset: auto 0 0;
	padding: 1rem;
	background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.88));
	opacity: 0;
	transform: translateY(14px);
	transition: opacity 220ms ease, transform 220ms ease;
}

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

.portfolio-card:hover .portfolio-card-overlay,
.portfolio-card:focus-within .portfolio-card-overlay {
	opacity: 1;
	transform: translateY(0);
}

.portfolio-card-overlay p {
	margin: 0 0 0.25rem;
	color: var(--ember);
	font-size: 0.64rem;
	font-weight: 900;
	text-transform: uppercase;
}

.portfolio-card-overlay h3 {
	margin: 0;
	font-family: Georgia, "Times New Roman", serif;
	font-size: clamp(1.25rem, 2vw, 2rem);
	text-transform: uppercase;
}

.portfolio-card-overlay a {
	display: inline-flex;
	margin-top: 0.65rem;
	color: var(--text);
	font-size: 0.68rem;
	font-weight: 900;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.center-action {
	display: flex;
	justify-content: center;
	margin-top: 2rem;
}

.about-section {
	display: grid;
	grid-template-columns: minmax(180px, 0.65fr) minmax(260px, 1fr) minmax(250px, 0.8fr) minmax(220px, 0.7fr);
	align-items: stretch;
	gap: 1rem;
	border-top: 1px solid var(--line);
	border-bottom: 1px solid var(--line);
}

.about-portrait,
.skills-panel,
.tools-panel,
.service-card,
.mini-post,
.post-card,
.comments-area {
	border: 1px solid var(--line);
	background: rgba(12, 10, 9, 0.62);
}

.about-portrait {
	overflow: hidden;
	min-height: 300px;
}

.about-portrait img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: 8% 64%;
}

.about-copy {
	padding: 0.75rem 1rem;
}

.about-copy p:not(.eyebrow) {
	color: var(--muted);
}

.signature {
	display: inline-block;
	margin-top: 0.5rem;
	color: var(--ember);
	font-family: Georgia, "Times New Roman", serif;
	font-style: italic;
}

.skills-panel,
.tools-panel {
	padding: 1rem;
}

.skills-panel h3,
.tools-panel h3,
.service-card h3,
.footer-shell h2,
.mini-post h3 {
	margin-top: 0;
	font-family: Georgia, "Times New Roman", serif;
	text-transform: uppercase;
}

.skill-bar {
	position: relative;
	display: grid;
	grid-template-columns: 1fr auto;
	gap: 0.6rem;
	margin-top: 0.9rem;
	padding-bottom: 0.65rem;
	color: var(--muted);
	font-size: 0.7rem;
	font-weight: 900;
	text-transform: uppercase;
}

.skill-bar::before,
.skill-bar i {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	height: 3px;
	background: rgba(255, 255, 255, 0.12);
}

.skill-bar i {
	right: auto;
	background: linear-gradient(90deg, var(--ember), var(--ember-2));
	box-shadow: 0 0 16px rgba(255, 100, 40, 0.45);
}

.tool-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 0.75rem;
	margin: 1rem 0 1.2rem;
}

.tool-grid span {
	display: grid;
	place-items: center;
	aspect-ratio: 1;
	border: 1px solid var(--line);
	color: var(--muted);
	font-weight: 900;
}

.tool-grid span:nth-child(1) {
	color: #68a4ff;
}

.tool-grid span:nth-child(2) {
	color: var(--ember-2);
}

.tool-grid span:nth-child(6) {
	color: var(--teal);
}

.services-section {
	position: relative;
}

.services-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 0.9rem;
}

.service-card {
	position: relative;
	min-height: 190px;
	padding: 1.35rem;
	overflow: hidden;
	transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.service-card:hover {
	transform: translateY(-4px);
	border-color: rgba(255, 100, 40, 0.62);
	background: rgba(255, 100, 40, 0.06);
}

.service-card > span {
	color: var(--ember);
	font-size: 2rem;
}

.service-card p,
.footer-brand p,
.footer-newsletter p,
.mini-post span,
.post-card p,
.entry-content,
.form-note {
	color: var(--muted);
}

.service-card a {
	position: absolute;
	inset: 0;
}

.blog-strip {
	display: grid;
	grid-template-columns: minmax(220px, 0.6fr) 1fr;
	gap: 1rem;
	border-top: 1px solid var(--line);
}

.blog-cards {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 0.9rem;
}

.mini-post a {
	display: block;
	min-height: 160px;
	padding: 1rem;
}

.mini-post:hover {
	border-color: rgba(255, 100, 40, 0.62);
}

.site-footer {
	border-top: 1px solid var(--line);
	background:
		linear-gradient(180deg, rgba(0, 0, 0, 0.2), #000),
		radial-gradient(circle at 20% 0, rgba(255, 100, 40, 0.12), transparent 28rem);
}

.footer-shell {
	display: grid;
	grid-template-columns: 1.2fr 0.7fr 1fr;
	gap: 2rem;
	width: min(var(--max), calc(100% - 2rem));
	margin: 0 auto;
	padding: 3.5rem 0 2rem;
}

.footer-menu {
	display: grid;
	align-items: start;
	gap: 0.4rem;
}

.footer-menu a {
	color: var(--muted);
	font-size: 0.82rem;
}

.footer-menu a:hover {
	color: var(--ember);
}

.social-row {
	display: flex;
	flex-wrap: wrap;
	gap: 0.55rem;
}

.social-row a {
	display: grid;
	place-items: center;
	min-width: 34px;
	height: 34px;
	border: 1px solid var(--line);
	color: var(--muted);
	font-size: 0.72rem;
	font-weight: 900;
}

.newsletter-form,
.search-form {
	display: flex;
	gap: 0.55rem;
}

.newsletter-form input,
.search-form input {
	width: 100%;
	min-height: 46px;
	border: 1px solid var(--line);
	background: rgba(0, 0, 0, 0.46);
	color: var(--text);
	padding: 0 0.85rem;
	outline: none;
}

.newsletter-form input:focus,
.search-form input:focus {
	border-color: var(--ember);
}

.icon-submit {
	min-width: 50px;
	padding: 0;
	font-size: 1.15rem;
}

.footer-bottom {
	display: flex;
	justify-content: space-between;
	gap: 1rem;
	width: min(var(--max), calc(100% - 2rem));
	margin: 0 auto;
	padding: 1rem 0 2rem;
	border-top: 1px solid var(--line);
	color: var(--muted);
	font-size: 0.78rem;
}

.footer-bottom a {
	color: var(--ember);
}

.search-overlay,
.reel-modal {
	position: fixed;
	z-index: 2000;
	inset: 0;
	display: none;
	place-items: center;
	padding: 1rem;
	background: rgba(0, 0, 0, 0.78);
	backdrop-filter: blur(18px);
}

.search-overlay.is-open,
.reel-modal.is-open {
	display: grid;
}

.search-card,
.reel-dialog {
	position: relative;
	width: min(720px, 100%);
	border: 1px solid rgba(255, 100, 40, 0.4);
	background: #090706;
	padding: clamp(1.2rem, 4vw, 2rem);
	box-shadow: var(--shadow);
}

.search-close,
.reel-close {
	position: absolute;
	top: 1rem;
	right: 1rem;
}

.search-card h2,
.reel-dialog h2 {
	margin-top: 0;
	padding-right: 3rem;
	font-family: Georgia, "Times New Roman", serif;
	font-size: clamp(2rem, 5vw, 3.5rem);
	text-transform: uppercase;
}

.reel-screen {
	position: relative;
	overflow: hidden;
	margin-bottom: 1rem;
	border: 1px solid var(--line);
	background: #000;
}

.reel-screen img {
	width: 100%;
	aspect-ratio: 16 / 8;
	object-fit: cover;
	object-position: center 24%;
	opacity: 0.85;
}

.scanline {
	position: absolute;
	inset: 0;
	background: repeating-linear-gradient(180deg, transparent 0 10px, rgba(255, 255, 255, 0.06) 11px 12px);
	animation: scanline 4s linear infinite;
}

@keyframes scanline {
	from {
		transform: translateY(-20px);
	}
	to {
		transform: translateY(20px);
	}
}

.page-shell,
.single-shell,
.archive-shell,
.not-found-shell {
	padding-top: 9rem;
}

.page-header,
.archive-header {
	margin-bottom: 2rem;
}

.page-header h1,
.archive-header h1,
.not-found-shell h1 {
	font-size: clamp(2.6rem, 6vw, 5rem);
}

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

.entry-content a {
	color: var(--ember);
}

.entry-content img,
.single-featured,
.post-card {
	border: 1px solid var(--line);
}

.post-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1rem;
}

.post-card a {
	display: block;
	padding: 1rem;
}

.post-card img {
	width: 100%;
	aspect-ratio: 16 / 10;
	object-fit: cover;
	margin-bottom: 1rem;
}

.elementor-friendly-template {
	width: 100%;
	padding-top: 86px;
}

.elementor-front-page-content {
	width: 100%;
	min-height: 60vh;
	padding-top: 86px;
}

.elementor-page .elementor-friendly-template,
.elementor-page .elementor-front-page-content,
.chromatic-canvas .elementor-friendly-template {
	padding-top: 0;
}

@media (max-width: 1080px) {
	.header-cta,
	.hide-sm {
		display: none;
	}

	.hero-shell {
		grid-template-columns: 1fr 0.92fr;
	}

	.quick-social,
	.side-scroll {
		display: none;
	}

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

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

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

@media (max-width: 860px) {
	.header-shell {
		min-height: 74px;
	}

	.mobile-toggle {
		display: inline-grid;
	}

	.primary-navigation {
		position: fixed;
		top: 74px;
		left: 1rem;
		right: 1rem;
		display: none;
		border: 1px solid var(--line);
		background: rgba(4, 3, 3, 0.96);
		padding: 1rem;
		box-shadow: var(--shadow);
	}

	.primary-navigation.is-open {
		display: block;
	}

	.chromatic-menu {
		display: grid;
		gap: 0.7rem;
	}

	.chromatic-menu a {
		font-size: 0.84rem;
	}

	.hero-section {
		padding-top: 7rem;
	}

	.hero-shell,
	.blog-strip {
		grid-template-columns: 1fr;
	}

	.hero-copy h1 {
		max-width: 11ch;
	}

	.hero-media {
		max-width: 620px;
	}

	.watch-reel {
		right: 1rem;
		bottom: 1rem;
	}

	.thumb-strip {
		grid-template-columns: repeat(3, 1fr);
	}

	.section-heading {
		display: grid;
		align-items: start;
	}

	.filter-row {
		justify-content: flex-start;
	}

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

	.portfolio-card.large {
		grid-column: span 1;
		grid-row: span 1;
	}

	.footer-shell,
	.post-grid {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 560px) {
	.header-shell,
	.hero-shell,
	.thumb-strip,
	.section-shell,
	.footer-shell,
	.footer-bottom {
		width: min(100% - 1rem, var(--max));
	}

	.brand-title {
		max-width: 12ch;
		font-size: 0.9rem;
	}

	.hero-copy h1 {
		font-size: clamp(2.7rem, 16vw, 4.5rem);
	}

	.hero-actions,
	.newsletter-form,
	.search-form,
	.footer-bottom {
		display: grid;
	}

	.button {
		width: 100%;
	}

	.orbital-card img {
		height: 440px;
	}

	.thumb-strip,
	.portfolio-grid,
	.about-section,
	.services-grid,
	.blog-cards {
		grid-template-columns: 1fr;
	}

	.portfolio-grid {
		grid-auto-rows: 280px;
	}

	.about-portrait {
		min-height: 260px;
	}

	.search-card,
	.reel-dialog {
		max-height: calc(100svh - 2rem);
		overflow: auto;
	}
}

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