:root {
	--rrd-magenta: #e91e63;
	--rrd-blue: #0066ff;
	--rrd-green: #10b981;
	--rrd-black: #050505;
	--rrd-white: #ffffff;
	--rrd-ink: #111827;
	--rrd-muted: #6b7280;
	--rrd-border: rgba(17, 24, 39, 0.08);
	--rrd-shadow: 0 24px 60px rgba(15, 23, 42, 0.12);
	--rrd-radius: 28px;
	--rrd-container: 1280px;
}

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

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	font-family: 'Inter', sans-serif;
	color: var(--rrd-ink);
	background: var(--rrd-white);
	line-height: 1.6;
}

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

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

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

.container {
	width: min(100% - 2rem, var(--rrd-container));
	margin: 0 auto;
}

.site-header {
	position: fixed;
	inset: 0 0 auto;
	z-index: 1000;
	padding: 1rem 0;
	transition: background-color 0.3s ease, box-shadow 0.3s ease, backdrop-filter 0.3s ease;
}

.site-header.is-scrolled {
	background: rgba(5, 5, 5, 0.92);
	backdrop-filter: blur(20px);
	box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
}

.site-nav {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1.5rem;
}

.site-brand {
	position: relative;
	z-index: 2;
	font-size: 1.5rem;
	font-weight: 800;
	color: var(--rrd-white);
}

.site-brand strong,
.footer-brand span,
.hero-content h1 span,
.section-heading h2 span {
	color: var(--rrd-magenta);
}

.site-brand img {
	max-height: 56px;
	width: auto;
}

.menu-toggle {
	display: none;
	align-items: center;
	justify-content: center;
	width: 52px;
	height: 52px;
	border: 1px solid rgba(255, 255, 255, 0.15);
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.08);
	color: var(--rrd-white);
	cursor: pointer;
}

.menu-toggle .icon {
	width: 24px;
	height: 24px;
}

.menu-toggle .icon-close {
	display: none;
}

.menu-toggle[aria-expanded='true'] .icon-menu {
	display: none;
}

.menu-toggle[aria-expanded='true'] .icon-close {
	display: inline-flex;
}

.menu,
.menu-fallback {
	display: flex;
	align-items: center;
	gap: 2rem;
	padding: 0;
	margin: 0;
	list-style: none;
}

.menu a,
.menu-fallback a {
	position: relative;
	font-size: 1rem;
	font-weight: 600;
	color: rgba(255, 255, 255, 0.88);
	transition: color 0.25s ease;
}

.menu a::after,
.menu-fallback a::after {
	content: '';
	position: absolute;
	left: 0;
	right: 0;
	bottom: -0.45rem;
	height: 2px;
	background: var(--rrd-magenta);
	transform: scaleX(0);
	transform-origin: left;
	transition: transform 0.25s ease;
}

.menu a:hover,
.menu a.is-active,
.menu-fallback a:hover,
.menu-fallback a.is-active {
	color: var(--rrd-magenta);
}

.menu a:hover::after,
.menu a.is-active::after,
.menu-fallback a:hover::after,
.menu-fallback a.is-active::after {
	transform: scaleX(1);
}

.hero-section {
	position: relative;
	display: flex;
	align-items: center;
	min-height: 100vh;
	padding: 8rem 0 4rem;
	overflow: hidden;
	background: var(--rrd-black);
}

.hero-media,
.hero-overlay,
.hero-glow {
	position: absolute;
	inset: 0;
}

.hero-media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.hero-overlay {
	background:
		linear-gradient(135deg, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.72)),
		linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.55));
}

.hero-glow {
	filter: blur(90px);
	opacity: 0.35;
}

.hero-glow-left {
	top: 14%;
	left: -10%;
	width: 28rem;
	height: 28rem;
	background: rgba(233, 30, 99, 0.45);
	border-radius: 999px;
}

.hero-glow-right {
	top: auto;
	right: -6%;
	bottom: 12%;
	width: 32rem;
	height: 32rem;
	background: rgba(0, 102, 255, 0.32);
	border-radius: 999px;
}

.hero-content {
	position: relative;
	z-index: 1;
	text-align: center;
	color: var(--rrd-white);
}

.eyebrow {
	margin: 0 0 1rem;
	font-size: 0.9rem;
	font-weight: 700;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.72);
}

.section-heading .eyebrow {
	color: var(--rrd-magenta);
}

.hero-content h1,
.section-heading h2 {
	margin: 0;
	font-weight: 900;
	line-height: 0.95;
	letter-spacing: -0.04em;
}

.hero-content h1 {
	font-size: clamp(3.5rem, 9vw, 7.5rem);
}

.hero-copy {
	max-width: 52rem;
	margin: 1.5rem auto 0;
	font-size: clamp(1.15rem, 2vw, 1.8rem);
	color: rgba(255, 255, 255, 0.82);
}

.hero-actions {
	margin-top: 2rem;
}

.button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.9rem;
	padding: 1rem 1.8rem;
	border: 0;
	border-radius: 999px;
	font-weight: 800;
	font-size: 1rem;
	cursor: pointer;
	transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.button:hover {
	transform: translateY(-2px);
}

.button-primary {
	color: var(--rrd-white);
	background: linear-gradient(135deg, var(--rrd-magenta), #ff4e88);
	box-shadow: 0 18px 40px rgba(233, 30, 99, 0.35);
}

.button-block {
	width: 100%;
	border-radius: 18px;
}

.icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 1.25rem;
	height: 1.25rem;
}

.icon svg {
	width: 100%;
	height: 100%;
}

.scroll-indicator {
	display: inline-flex;
	align-items: flex-start;
	justify-content: center;
	width: 1.6rem;
	height: 2.75rem;
	margin-top: 3rem;
	padding: 0.35rem;
	border: 2px solid rgba(255, 255, 255, 0.55);
	border-radius: 999px;
}

.scroll-indicator span {
	display: block;
	width: 0.5rem;
	height: 0.5rem;
	background: var(--rrd-magenta);
	border-radius: 50%;
	animation: rrd-bounce 1.8s ease-in-out infinite;
}

.section-light,
.section-white,
.page-shell {
	position: relative;
	padding: 6rem 0;
	overflow: hidden;
}

.section-light {
	background: linear-gradient(180deg, #f8fafc, #ffffff);
}

.section-white,
.page-shell {
	background: linear-gradient(180deg, #ffffff, #f8fafc);
}

.section-heading {
	position: relative;
	z-index: 1;
	max-width: 46rem;
	margin: 0 auto 3.5rem;
	text-align: center;
}

.section-heading h2 {
	font-size: clamp(2.5rem, 6vw, 4.5rem);
	color: var(--rrd-ink);
}

.section-heading p {
	margin: 1rem 0 0;
	font-size: 1.15rem;
	color: var(--rrd-muted);
}

.section-pattern,
.section-orb,
.footer-pattern {
	position: absolute;
	inset: 0;
	pointer-events: none;
}

.section-pattern-lines {
	opacity: 0.05;
	background-image: repeating-linear-gradient(45deg, #000 0, #000 1px, transparent 1px, transparent 22px);
}

.section-pattern-dots {
	opacity: 0.06;
	background-image: radial-gradient(circle, #000 1px, transparent 1px);
	background-size: 28px 28px;
}

.section-orb-left,
.section-orb-right {
	width: 28rem;
	height: 28rem;
	border-radius: 50%;
	filter: blur(90px);
	opacity: 0.18;
}

.section-orb-left {
	top: 6rem;
	left: -8rem;
	background: var(--rrd-magenta);
}

.section-orb-right {
	right: -8rem;
	bottom: 4rem;
	background: var(--rrd-blue);
}

.service-grid,
.project-grid,
.contact-grid,
.footer-grid {
	position: relative;
	z-index: 1;
	display: grid;
	gap: 1.75rem;
}

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

.service-card,
.project-card,
.contact-panel,
.info-card,
.entry-card {
	position: relative;
	border: 1px solid var(--rrd-border);
	border-radius: var(--rrd-radius);
	background: rgba(255, 255, 255, 0.9);
	box-shadow: var(--rrd-shadow);
}

.service-card {
	padding: 2rem;
	overflow: hidden;
	transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.service-card:hover,
.project-card:hover {
	transform: translateY(-8px);
}

.service-card::before {
	content: '';
	position: absolute;
	inset: 0;
	opacity: 0.85;
}

.service-card-magenta::before {
	background: linear-gradient(135deg, rgba(233, 30, 99, 0.08), rgba(255, 255, 255, 0));
}

.service-card-green::before {
	background: linear-gradient(135deg, rgba(16, 185, 129, 0.1), rgba(255, 255, 255, 0));
}

.service-card-blue::before {
	background: linear-gradient(135deg, rgba(0, 102, 255, 0.08), rgba(255, 255, 255, 0));
}

.service-card > * {
	position: relative;
	z-index: 1;
}

.service-icon,
.info-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 4.25rem;
	height: 4.25rem;
	border-radius: 1.25rem;
	color: var(--rrd-magenta);
	background: rgba(233, 30, 99, 0.12);
}

.service-icon .icon,
.info-icon .icon {
	width: 2rem;
	height: 2rem;
}

.service-card h3,
.project-body h3,
.info-card h3,
.contact-socials h3,
.site-footer h3,
.entry-title {
	margin: 1.25rem 0 0.8rem;
	font-size: 1.6rem;
	font-weight: 800;
	line-height: 1.15;
}

.service-card p,
.project-body p,
.info-card p,
.contact-socials p,
.portfolio-footnote,
.footer-copy,
.footer-links,
.entry-content {
	color: var(--rrd-muted);
}

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

.project-card {
	overflow: hidden;
}

.project-media {
	position: relative;
	aspect-ratio: 4 / 3;
	overflow: hidden;
}

.project-media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.5s ease;
}

.project-card:hover .project-media img {
	transform: scale(1.08);
}

.project-body {
	padding: 1.5rem;
}

.project-body h3 {
	margin-top: 0;
}

.project-tags {
	display: flex;
	flex-wrap: wrap;
	gap: 0.6rem;
	margin: 1rem 0 1.2rem;
}

.project-tags span {
	display: inline-flex;
	padding: 0.45rem 0.8rem;
	border-radius: 999px;
	background: rgba(0, 102, 255, 0.08);
	color: var(--rrd-blue);
	font-size: 0.9rem;
	font-weight: 700;
}

.project-link {
	display: inline-flex;
	align-items: center;
	gap: 0.55rem;
	font-weight: 800;
	color: var(--rrd-magenta);
}

.portfolio-footnote {
	margin: 2.5rem 0 0;
	text-align: center;
	font-size: 1.05rem;
}

.portfolio-footnote a {
	color: var(--rrd-magenta);
	font-weight: 700;
}

.contact-grid {
	grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
	align-items: start;
}

.contact-panel,
.info-card {
	padding: 2rem;
}

.contact-form {
	display: grid;
	gap: 0.75rem;
}

.contact-form label {
	font-weight: 700;
	color: var(--rrd-ink);
}

.contact-form input,
.contact-form textarea {
	width: 100%;
	padding: 0.95rem 1rem;
	border: 2px solid rgba(148, 163, 184, 0.25);
	border-radius: 18px;
	font: inherit;
	color: var(--rrd-ink);
	background: #fff;
	transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
	outline: none;
	border-color: rgba(233, 30, 99, 0.8);
	box-shadow: 0 0 0 4px rgba(233, 30, 99, 0.12);
}

.contact-sidebar {
	display: grid;
	gap: 1.5rem;
}

.info-card-magenta {
	background: linear-gradient(180deg, rgba(233, 30, 99, 0.08), rgba(255, 255, 255, 0.98));
}

.info-card-blue {
	background: linear-gradient(180deg, rgba(0, 102, 255, 0.08), rgba(255, 255, 255, 0.98));
}

.info-row {
	display: flex;
	align-items: center;
	gap: 1rem;
	margin-top: 1.5rem;
}

.info-label {
	margin: 0 0 0.2rem;
	font-size: 0.9rem;
	font-weight: 700;
	color: var(--rrd-muted);
}

.contact-socials {
	padding: 0.5rem 0;
}

.social-list {
	display: flex;
	flex-wrap: wrap;
	gap: 0.9rem;
	margin-top: 1rem;
}

.social-list a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 3.25rem;
	height: 3.25rem;
	border: 1px solid rgba(148, 163, 184, 0.24);
	border-radius: 1rem;
	background: rgba(255, 255, 255, 0.95);
	color: var(--rrd-ink);
	transition: transform 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.social-list a:hover {
	transform: translateY(-4px);
	border-color: rgba(233, 30, 99, 0.4);
	color: var(--rrd-magenta);
}

.notice {
	margin: 0 auto 1.75rem;
	padding: 1rem 1.2rem;
	max-width: 44rem;
	border-radius: 18px;
	font-weight: 700;
}

.notice-success {
	background: rgba(16, 185, 129, 0.12);
	color: #047857;
}

.notice-error {
	background: rgba(239, 68, 68, 0.1);
	color: #b91c1c;
}

.site-footer {
	position: relative;
	padding: 4rem 0 2rem;
	background: #050505;
	color: rgba(255, 255, 255, 0.8);
	overflow: hidden;
}

.footer-pattern {
	opacity: 0.05;
	background-image: repeating-linear-gradient(90deg, #fff 0, #fff 1px, transparent 1px, transparent 22px);
}

.footer-grid {
	grid-template-columns: 1.2fr 0.8fr 0.8fr;
	margin-bottom: 2rem;
}

.footer-brand {
	margin: 0 0 1rem;
	font-size: 2rem;
	font-weight: 800;
	color: var(--rrd-white);
}

.footer-copy {
	max-width: 24rem;
}

.footer-links {
	list-style: none;
	padding: 0;
	margin: 1rem 0 0;
	display: grid;
	gap: 0.6rem;
}

.footer-links a:hover {
	color: var(--rrd-magenta);
}

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

.footer-made-with {
	display: inline-flex;
	align-items: center;
	gap: 0.45rem;
}

.icon-heart {
	color: var(--rrd-magenta);
}

.page-shell {
	padding-top: 10rem;
	min-height: 60vh;
}

.content-narrow {
	max-width: 52rem;
}

.entry-card {
	padding: 2.5rem;
}

.entry-title {
	margin-top: 0;
}

@keyframes rrd-bounce {
	0%,
	100% {
		transform: translateY(0);
	}
	50% {
		transform: translateY(0.65rem);
	}
}

@media (max-width: 980px) {
	.menu-toggle {
		display: inline-flex;
	}

	.nav-panel {
		position: absolute;
		top: calc(100% + 0.75rem);
		right: 1rem;
		left: 1rem;
		padding: 1rem 1.2rem;
		border-radius: 1.5rem;
		background: rgba(5, 5, 5, 0.94);
		border: 1px solid rgba(255, 255, 255, 0.08);
		box-shadow: 0 20px 50px rgba(0, 0, 0, 0.28);
		opacity: 0;
		visibility: hidden;
		transform: translateY(-8px);
		transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
	}

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

	.menu,
	.menu-fallback {
		flex-direction: column;
		align-items: flex-start;
		gap: 1rem;
	}

	.service-grid,
	.project-grid,
	.contact-grid,
	.footer-grid {
		grid-template-columns: 1fr;
	}

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

@media (max-width: 640px) {
	.hero-section {
		padding-top: 7rem;
	}

	.container {
		width: min(100% - 1.25rem, var(--rrd-container));
	}

	.service-card,
	.project-body,
	.contact-panel,
	.info-card,
	.entry-card {
		padding: 1.4rem;
	}

	.site-brand {
		font-size: 1.2rem;
	}
}
