:root {
	--ink: #0b1b2a;
	--ink-soft: #142d40;
	--paper: #f6f3ec;
	--white: #fff;
	--accent: #62dcc9;
	--accent-dark: #087e73;
	--accent-warm: #f1a875;
	--muted: #5f6e79;
	--line: rgba(11, 27, 42, 0.14);
	--line-dark: rgba(255, 255, 255, 0.14);
	--shadow: 0 24px 70px rgba(8, 25, 38, 0.15);
	--radius-lg: 30px;
	--radius-md: 18px;
	--container: 1180px;
}

* {
	box-sizing: border-box;
}

[hidden] {
	display: none !important;
}

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	background: var(--paper);
	color: var(--ink);
	font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	font-size: 16px;
	line-height: 1.65;
	-webkit-font-smoothing: antialiased;
}

body.nav-open {
	overflow: hidden;
}

button,
input,
textarea {
	font: inherit;
}

button,
a {
	-webkit-tap-highlight-color: transparent;
}

a {
	color: inherit;
}

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

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

h1,
h2,
h3,
.brand-copy {
	letter-spacing: -0.025em;
}

h2 {
	font-size: clamp(2.2rem, 5vw, 4.7rem);
	line-height: 1.03;
	margin-bottom: 1.5rem;
}

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

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

.skip-link {
	position: fixed;
	top: 12px;
	left: 12px;
	z-index: 1000;
	padding: 10px 16px;
	background: var(--accent);
	color: var(--ink);
	font-weight: 800;
	transform: translateY(-160%);
	transition: transform 0.2s ease;
}

.skip-link:focus {
	transform: translateY(0);
}

.site-header {
	position: fixed;
	inset: 0 0 auto;
	z-index: 500;
	color: var(--white);
	transition: background-color 0.25s ease, box-shadow 0.25s ease;
}

.site-header.scrolled {
	background: rgba(11, 27, 42, 0.92);
	box-shadow: 0 12px 30px rgba(0, 0, 0, 0.13);
	backdrop-filter: blur(16px);
}

.header-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	min-height: 84px;
}

.brand {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	color: inherit;
	text-decoration: none;
}

.brand-mark {
	display: grid;
	width: 44px;
	height: 44px;
	place-items: center;
	border: 1px solid rgba(255, 255, 255, 0.5);
	border-radius: 14px;
	color: var(--accent);
	font-size: 0.78rem;
	font-weight: 900;
	letter-spacing: 0.08em;
}

.brand-copy {
	display: flex;
	flex-direction: column;
	line-height: 1.25;
}

.brand-copy strong {
	font-size: 0.98rem;
}

.brand-copy small {
	max-width: 230px;
	overflow: hidden;
	color: rgba(255, 255, 255, 0.66);
	font-size: 0.7rem;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.site-nav {
	display: flex;
	align-items: center;
	gap: 30px;
}

.site-nav a {
	position: relative;
	color: rgba(255, 255, 255, 0.74);
	font-size: 0.83rem;
	font-weight: 700;
	text-decoration: none;
}

.site-nav a:not(.nav-contact)::after {
	position: absolute;
	right: 0;
	bottom: -7px;
	left: 0;
	height: 2px;
	background: var(--accent);
	content: "";
	transform: scaleX(0);
	transition: transform 0.2s ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
	color: var(--white);
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
	transform: scaleX(1);
}

.nav-contact {
	padding: 10px 18px;
	border: 1px solid rgba(255, 255, 255, 0.35);
	border-radius: 999px;
}

.nav-toggle {
	display: none;
	width: 46px;
	height: 46px;
	padding: 10px;
	border: 0;
	background: transparent;
	color: var(--white);
	cursor: pointer;
}

.nav-toggle span:not(.sr-only) {
	display: block;
	width: 100%;
	height: 2px;
	margin: 5px 0;
	background: currentColor;
	transition: transform 0.2s ease, opacity 0.2s ease;
}

.hero {
	position: relative;
	overflow: hidden;
	min-height: 100vh;
	padding: 160px 0 76px;
	background:
		linear-gradient(115deg, rgba(11, 27, 42, 0.98) 18%, rgba(11, 27, 42, 0.93) 58%, rgba(11, 27, 42, 0.85)),
		url("../../images/bg.jpg") center / cover;
	color: var(--white);
}

.hero::before {
	position: absolute;
	inset: 0;
	background-image:
		linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
		linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
	background-size: 56px 56px;
	content: "";
	mask-image: linear-gradient(to bottom, black, transparent 84%);
}

.hero-glow {
	position: absolute;
	border-radius: 50%;
	filter: blur(3px);
	opacity: 0.28;
	pointer-events: none;
}

.hero-glow-one {
	top: 8%;
	right: -10%;
	width: 560px;
	height: 560px;
	background: radial-gradient(circle, var(--accent), transparent 66%);
}

.hero-glow-two {
	bottom: -24%;
	left: 25%;
	width: 460px;
	height: 460px;
	background: radial-gradient(circle, var(--accent-warm), transparent 69%);
	opacity: 0.12;
}

.hero-grid {
	position: relative;
	display: grid;
	grid-template-columns: minmax(0, 1.25fr) minmax(310px, 0.75fr);
	column-gap: clamp(50px, 8vw, 110px);
	row-gap: 52px;
	align-items: center;
}

.eyebrow {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 22px;
	color: var(--accent);
	font-size: 0.75rem;
	font-weight: 900;
	letter-spacing: 0.16em;
	text-transform: uppercase;
}

.eyebrow-dark {
	color: var(--accent-dark);
}

.status-dot {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: var(--accent);
	box-shadow: 0 0 0 6px rgba(98, 220, 201, 0.13);
	animation: pulse 2.4s infinite;
}

@keyframes pulse {
	50% { box-shadow: 0 0 0 10px rgba(98, 220, 201, 0); }
}

.hero h1 {
	margin-bottom: 26px;
	font-size: clamp(3.4rem, 7.5vw, 7.4rem);
	font-weight: 750;
	line-height: 0.92;
}

.hero-name,
.hero-role {
	display: block;
}

.hero-role {
	max-width: 870px;
	margin-top: 18px;
	color: rgba(255, 255, 255, 0.56);
	font-size: 0.36em;
	font-weight: 520;
	line-height: 1.12;
	letter-spacing: -0.035em;
}

.hero-summary {
	max-width: 720px;
	margin-bottom: 32px;
	color: rgba(255, 255, 255, 0.7);
	font-size: clamp(1.03rem, 2vw, 1.22rem);
}

.hero-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-bottom: 46px;
}

.button {
	display: inline-flex;
	min-height: 52px;
	align-items: center;
	justify-content: center;
	gap: 11px;
	padding: 0 23px;
	border: 1px solid transparent;
	border-radius: 999px;
	font-size: 0.86rem;
	font-weight: 850;
	text-decoration: none;
	cursor: pointer;
	transition: transform 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}

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

.button-primary {
	background: var(--accent);
	color: var(--ink);
}

.button-primary:hover {
	background: #82e8d8;
}

.button-ghost {
	border-color: rgba(255, 255, 255, 0.25);
	color: var(--white);
}

.button-ghost:hover {
	border-color: rgba(255, 255, 255, 0.55);
	background: rgba(255, 255, 255, 0.06);
}

.play-icon {
	display: inline-block;
	width: 0;
	height: 0;
	margin-left: 3px;
	border-top: 6px solid transparent;
	border-bottom: 6px solid transparent;
	border-left: 9px solid currentColor;
}

.quick-facts {
	grid-column: 1 / -1;
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	width: 100%;
	margin: 0;
	padding: 0;
	list-style: none;
}

.quick-facts li {
	padding: 0 28px;
	border-left: 1px solid rgba(255, 255, 255, 0.18);
}

.quick-facts li:first-child {
	padding-left: 0;
	border-left: 0;
}

.fact-label {
	display: block;
	margin-bottom: 2px;
	color: rgba(255, 255, 255, 0.42);
	font-size: 0.68rem;
	font-weight: 800;
	letter-spacing: 0.09em;
	text-transform: uppercase;
}

.quick-facts strong {
	display: block;
	font-size: 0.88rem;
	line-height: 1.45;
	overflow-wrap: anywhere;
}

.profile-card {
	position: relative;
	overflow: hidden;
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: var(--radius-lg);
	background: rgba(255, 255, 255, 0.07);
	box-shadow: var(--shadow);
	backdrop-filter: blur(15px);
}

.profile-image {
	position: relative;
	display: grid;
	aspect-ratio: 1.45 / 1;
	place-items: center;
	overflow: hidden;
	background:
		linear-gradient(145deg, rgba(98, 220, 201, 0.18), rgba(241, 168, 117, 0.12)),
		url("../../images/fulls/03.jpg") center / cover;
}

.profile-image img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: var(--profile-image-position, center center);
}

.profile-image::before {
	position: absolute;
	inset: 0;
	z-index: 1;
	background:
		linear-gradient(120deg, transparent 28%, rgba(255, 255, 255, 0.13) 49%, transparent 68%),
		linear-gradient(to top, rgba(11, 27, 42, 0.48), transparent 60%);
	content: "";
}

.profile-image.has-profile-photo::before {
	background: linear-gradient(to top, rgba(11, 27, 42, 0.2), transparent 42%);
	pointer-events: none;
}

.profile-image-fallback {
	position: relative;
	z-index: 2;
	display: grid;
	width: 116px;
	height: 116px;
	place-items: center;
	border: 1px solid rgba(255, 255, 255, 0.3);
	border-radius: 34px;
	background: rgba(11, 27, 42, 0.52);
	color: var(--accent);
	font-size: 1.8rem;
	font-weight: 900;
	letter-spacing: 0.12em;
	backdrop-filter: blur(10px);
}

.profile-image.has-profile-photo .profile-image-fallback {
	display: none;
}

.profile-body {
	padding: 30px;
}

.profile-kicker {
	margin-bottom: 7px;
	color: var(--accent);
	font-size: 0.68rem;
	font-weight: 900;
	letter-spacing: 0.14em;
	text-transform: uppercase;
}

.profile-body h2 {
	margin-bottom: 10px;
	font-size: 1.55rem;
}

.profile-body > p:not(.profile-kicker) {
	color: rgba(255, 255, 255, 0.62);
	font-size: 0.9rem;
}

.profile-meta {
	display: grid;
	gap: 8px;
	margin: 22px 0;
	color: rgba(255, 255, 255, 0.74);
	font-size: 0.82rem;
}

.profile-meta > span {
	display: flex;
	align-items: center;
	gap: 10px;
}

.profile-meta i {
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: var(--accent);
}

.text-link {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	color: var(--white);
	font-size: 0.85rem;
	font-weight: 800;
	text-decoration-color: rgba(255, 255, 255, 0.4);
	text-underline-offset: 6px;
}

.profile-actions {
	display: flex;
	min-height: 42px;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
}

.profile-linkedin {
	display: grid;
	flex: 0 0 42px;
	width: 42px;
	height: 42px;
	place-items: center;
	border: 1px solid rgba(98, 220, 201, 0.48);
	border-radius: 50%;
	background: rgba(98, 220, 201, 0.1);
	color: var(--accent);
	transition: transform 0.2s ease, background-color 0.2s ease, color 0.2s ease;
}

.profile-linkedin:hover {
	transform: translateY(-2px);
	background: var(--accent);
	color: var(--ink);
}

.profile-linkedin:focus-visible {
	outline: 3px solid rgba(98, 220, 201, 0.42);
	outline-offset: 3px;
}

.profile-linkedin svg {
	width: 23px;
	height: 23px;
	fill: currentColor;
}

.metric-grid {
	position: relative;
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	margin-top: 80px;
	border-top: 1px solid var(--line-dark);
	border-bottom: 1px solid var(--line-dark);
}

.metric {
	padding: 29px 28px;
	border-left: 1px solid var(--line-dark);
}

.metric:first-child {
	border-left: 0;
}

.metric strong {
	display: block;
	margin-bottom: 7px;
	color: var(--accent);
	font-size: clamp(1.65rem, 3vw, 2.4rem);
	line-height: 1;
}

.metric span {
	color: rgba(255, 255, 255, 0.59);
	font-size: 0.78rem;
}

.section {
	padding: clamp(90px, 12vw, 150px) 0;
}

.section-light {
	background: var(--paper);
}

.section-ink {
	background: var(--ink);
	color: var(--white);
}

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

.section-heading > p:last-child {
	max-width: 680px;
	color: var(--muted);
	font-size: 1.05rem;
}

.section-heading-row {
	max-width: 850px;
}

.section-heading-row h2 {
	margin-bottom: 0;
}

.about-grid {
	display: grid;
	grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
	gap: clamp(50px, 9vw, 120px);
	align-items: start;
}

.about-copy {
	color: var(--muted);
	font-size: 1.11rem;
}

.about-copy p:first-child {
	color: var(--ink);
	font-size: 1.35rem;
	font-weight: 650;
}

.strength-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	grid-auto-rows: 1fr;
	gap: 18px;
}

.strength-card {
	display: grid;
	grid-template-rows: auto auto 1fr;
	min-height: 315px;
	height: 100%;
	padding: 28px;
	border: 1px solid var(--line);
	border-radius: var(--radius-md);
	background: rgba(255, 255, 255, 0.58);
}

.strength-number {
	display: block;
	margin-bottom: 32px;
	color: var(--accent-dark);
	font-size: 0.72rem;
	font-weight: 900;
	letter-spacing: 0.13em;
}

.strength-card h3 {
	margin-bottom: 12px;
	font-size: 1.16rem;
	line-height: 1.25;
}

.strength-card p {
	margin: 0;
	color: var(--muted);
	font-size: 0.88rem;
}

.timeline {
	position: relative;
}

.timeline::before {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 216px;
	width: 1px;
	background: var(--line-dark);
	content: "";
}

.timeline-item {
	position: relative;
	display: grid;
	grid-template-columns: 180px 1fr;
	gap: 74px;
	padding: 0 0 58px;
}

.timeline-item:last-child {
	padding-bottom: 0;
}

.timeline-item::before {
	position: absolute;
	top: 8px;
	left: 210px;
	width: 13px;
	height: 13px;
	border: 4px solid var(--ink);
	border-radius: 50%;
	background: var(--accent);
	box-shadow: 0 0 0 1px var(--accent);
	content: "";
}

.timeline-date {
	color: var(--accent);
	font-size: 0.78rem;
	font-weight: 900;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.timeline-content {
	padding-bottom: 40px;
	border-bottom: 1px solid var(--line-dark);
}

.timeline-item:last-child .timeline-content {
	padding-bottom: 0;
	border-bottom: 0;
}

.timeline-content h3 {
	margin-bottom: 5px;
	font-size: clamp(1.35rem, 3vw, 2.05rem);
}

.timeline-company {
	margin-bottom: 16px;
	color: rgba(255, 255, 255, 0.52);
	font-weight: 700;
}

.timeline-content > p:last-child {
	max-width: 760px;
	margin-bottom: 0;
	color: rgba(255, 255, 255, 0.68);
}

.leadership-section {
	position: relative;
	overflow: hidden;
	border-top: 1px solid rgba(98, 220, 201, 0.18);
	background:
		radial-gradient(circle at 12% 10%, rgba(98, 220, 201, 0.16), transparent 32%),
		linear-gradient(145deg, #0e2435 0%, #081623 100%);
	color: var(--white);
}

.leadership-section::after {
	position: absolute;
	right: -220px;
	bottom: -260px;
	width: 560px;
	height: 560px;
	border: 1px solid rgba(98, 220, 201, 0.16);
	border-radius: 50%;
	box-shadow: 0 0 0 84px rgba(98, 220, 201, 0.025);
	content: "";
}

.leadership-section .container {
	position: relative;
	z-index: 1;
}

.leadership-section .section-heading > p:last-child {
	color: rgba(255, 255, 255, 0.62);
}

.leadership-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	grid-auto-rows: 1fr;
	gap: 20px;
}

.leadership-card {
	display: grid;
	grid-template-rows: auto auto auto 1fr;
	min-height: 300px;
	height: 100%;
	padding: 30px;
	border: 1px solid rgba(255, 255, 255, 0.13);
	border-radius: var(--radius-md);
	background: rgba(255, 255, 255, 0.065);
	box-shadow: 0 22px 70px rgba(0, 0, 0, 0.18);
	backdrop-filter: blur(12px);
	transition: transform 0.25s ease, border-color 0.25s ease;
}

.leadership-card:hover {
	border-color: rgba(98, 220, 201, 0.36);
	transform: translateY(-6px);
}

.leadership-card-top {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 18px;
	margin-bottom: 36px;
}

.leadership-index,
.leadership-period {
	color: var(--accent);
	font-size: 0.72rem;
	font-weight: 900;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.leadership-period {
	max-width: 170px;
	color: rgba(255, 255, 255, 0.52);
	text-align: right;
}

.leadership-card h3 {
	margin-bottom: 9px;
	font-size: clamp(1.32rem, 2.4vw, 1.85rem);
	line-height: 1.12;
}

.leadership-context {
	margin-bottom: 18px;
	color: rgba(255, 255, 255, 0.54);
	font-size: 0.88rem;
	font-weight: 760;
}

.leadership-card > p:last-child {
	margin: 0;
	color: rgba(255, 255, 255, 0.68);
	font-size: 0.92rem;
}

.achievement-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	grid-auto-rows: 1fr;
	gap: 20px;
}

.achievement-card {
	display: grid;
	grid-template-rows: auto auto 1fr;
	min-height: 360px;
	height: 100%;
	padding: 34px;
	border: 1px solid var(--line);
	border-radius: var(--radius-md);
	background: var(--white);
	box-shadow: 0 15px 42px rgba(11, 27, 42, 0.06);
	transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.achievement-card:hover {
	transform: translateY(-7px);
	box-shadow: 0 24px 60px rgba(11, 27, 42, 0.11);
}

.achievement-top {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 20px;
}

.achievement-index {
	color: var(--accent-dark);
	font-size: 0.72rem;
	font-weight: 900;
	letter-spacing: 0.13em;
}

.achievement-result {
	max-width: 220px;
	color: var(--ink);
	font-size: clamp(1.7rem, 3vw, 2.6rem);
	font-weight: 800;
	line-height: 0.95;
	text-align: right;
	white-space: nowrap;
}

.achievement-card h3 {
	margin: 42px 0 12px;
	font-size: 1.28rem;
	line-height: 1.25;
}

.achievement-card p {
	margin: 0;
	color: var(--muted);
	font-size: 0.91rem;
}

.skills-panel {
	display: grid;
	grid-template-columns: 0.55fr 1.45fr;
	gap: 60px;
	align-items: center;
	margin-top: 80px;
	padding-top: 64px;
	border-top: 1px solid var(--line);
}

.skills-panel h2 {
	margin: 0;
	font-size: clamp(2rem, 4vw, 3.5rem);
}

.tag-list {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

.tag {
	padding: 10px 16px;
	border: 1px solid var(--line);
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.55);
	color: #3c4b56;
	font-size: 0.82rem;
	font-weight: 750;
}

.video-section {
	position: relative;
	overflow: hidden;
	background:
		linear-gradient(105deg, rgba(11, 27, 42, 0.95), rgba(11, 27, 42, 0.81)),
		url("../../images/fulls/04.jpg") center / cover;
	color: var(--white);
}

.video-section::after {
	position: absolute;
	top: -60%;
	right: -15%;
	width: 640px;
	height: 640px;
	border: 1px solid rgba(98, 220, 201, 0.19);
	border-radius: 50%;
	box-shadow: 0 0 0 90px rgba(98, 220, 201, 0.03), 0 0 0 180px rgba(98, 220, 201, 0.025);
	content: "";
}

.video-grid {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: 0.7fr 1.3fr;
	gap: clamp(50px, 8vw, 100px);
	align-items: center;
}

.video-copy h2 {
	font-size: clamp(2.5rem, 5vw, 4.7rem);
}

.video-copy > p:not(.eyebrow) {
	color: rgba(255, 255, 255, 0.65);
}

.check-list {
	display: grid;
	gap: 10px;
	margin: 28px 0 0;
	padding: 0;
	list-style: none;
	color: rgba(255, 255, 255, 0.78);
	font-size: 0.88rem;
}

.check-list li::before {
	margin-right: 11px;
	color: var(--accent);
	content: "✓";
	font-weight: 900;
}

.video-shell {
	position: relative;
	overflow: hidden;
	aspect-ratio: 16 / 9;
	border: 1px solid rgba(255, 255, 255, 0.16);
	border-radius: var(--radius-lg);
	background: #07121c;
	box-shadow: 0 30px 80px rgba(0, 0, 0, 0.32);
}

.video-shell iframe,
.video-shell video {
	width: 100%;
	height: 100%;
	border: 0;
	object-fit: cover;
}

.video-placeholder {
	display: flex;
	height: 100%;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding: 30px;
	background:
		linear-gradient(rgba(11, 27, 42, 0.66), rgba(11, 27, 42, 0.9)),
		url("../../images/fulls/05.jpg") center / cover;
	text-align: center;
}

.video-placeholder-icon {
	display: grid;
	width: 72px;
	height: 72px;
	place-items: center;
	margin-bottom: 21px;
	border: 1px solid rgba(255, 255, 255, 0.45);
	border-radius: 50%;
	color: var(--accent);
}

.video-placeholder strong {
	margin-bottom: 6px;
	font-size: 1.1rem;
}

.video-placeholder p {
	margin: 0;
	color: rgba(255, 255, 255, 0.58);
	font-size: 0.82rem;
}

.video-placeholder code {
	color: rgba(255, 255, 255, 0.82);
}

.contact-section {
	background: var(--accent);
}

.contact-grid {
	display: grid;
	grid-template-columns: 0.75fr 1.25fr;
	gap: clamp(50px, 9vw, 120px);
	align-items: start;
}

.contact-copy h2 {
	font-size: clamp(2.5rem, 5vw, 4.8rem);
}

.contact-copy > p:not(.eyebrow) {
	max-width: 530px;
	color: rgba(11, 27, 42, 0.7);
}

.contact-links {
	display: grid;
	margin-top: 40px;
	border-top: 1px solid rgba(11, 27, 42, 0.18);
}

.contact-links a {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	padding: 17px 0;
	border-bottom: 1px solid rgba(11, 27, 42, 0.18);
	text-decoration: none;
}

.contact-links a span {
	color: rgba(11, 27, 42, 0.58);
	font-size: 0.72rem;
	font-weight: 850;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.contact-links a strong {
	font-size: 0.86rem;
}

.contact-form {
	padding: clamp(28px, 5vw, 48px);
	border-radius: var(--radius-lg);
	background: var(--paper);
	box-shadow: var(--shadow);
}

.contact-form label {
	display: block;
	margin-bottom: 20px;
}

.contact-form label > span {
	display: block;
	margin-bottom: 7px;
	color: #384955;
	font-size: 0.72rem;
	font-weight: 850;
}

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

.contact-form input,
.contact-form textarea {
	width: 100%;
	border: 1px solid rgba(11, 27, 42, 0.17);
	border-radius: 11px;
	outline: none;
	background: rgba(255, 255, 255, 0.8);
	color: var(--ink);
	transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.contact-form input {
	height: 50px;
	padding: 0 15px;
}

.contact-form textarea {
	min-height: 140px;
	padding: 13px 15px;
	resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
	border-color: var(--accent-dark);
	box-shadow: 0 0 0 3px rgba(8, 126, 115, 0.11);
}

.form-footer {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 25px;
}

.form-footer p {
	max-width: 300px;
	margin: 0;
	color: var(--muted);
	font-size: 0.72rem;
}

.site-footer {
	padding: 70px 0 30px;
	background: #07131e;
	color: var(--white);
}

.footer-inner {
	display: grid;
	grid-template-columns: 1fr auto;
	gap: 55px;
	align-items: start;
}

.footer-brand {
	margin-bottom: 19px;
}

.footer-inner > div:first-child > p {
	color: rgba(255, 255, 255, 0.45);
	font-size: 0.82rem;
}

.footer-links {
	display: grid;
	grid-template-columns: repeat(2, auto);
	gap: 14px 40px;
}

.footer-links a {
	color: rgba(255, 255, 255, 0.67);
	font-size: 0.83rem;
	font-weight: 750;
	text-decoration: none;
}

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

.copyright {
	grid-column: 1 / -1;
	margin: 35px 0 0;
	padding-top: 25px;
	border-top: 1px solid var(--line-dark);
	color: rgba(255, 255, 255, 0.35);
	font-size: 0.7rem;
}

.copyright a {
	color: rgba(255, 255, 255, 0.56);
}

.toast {
	position: fixed;
	right: 20px;
	bottom: 20px;
	z-index: 200;
	max-width: min(360px, calc(100% - 40px));
	padding: 14px 18px;
	border-radius: 12px;
	background: var(--ink);
	box-shadow: var(--shadow);
	color: var(--white);
	font-size: 0.85rem;
	opacity: 0;
	pointer-events: none;
	transform: translateY(15px);
	transition: opacity 0.2s ease, transform 0.2s ease;
}

.toast.visible {
	opacity: 1;
	transform: translateY(0);
}

.reveal {
	opacity: 0;
	transform: translateY(20px);
	transition: opacity 0.65s ease, transform 0.65s ease;
}

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

@media (max-width: 980px) {
	.site-nav {
		position: fixed;
		inset: 0;
		z-index: 520;
		display: flex;
		flex-direction: column;
		align-items: flex-start;
		justify-content: center;
		gap: 24px;
		min-height: 100vh;
		min-height: 100dvh;
		padding: 12vw;
		overflow-y: auto;
		background: rgba(7, 19, 30, 0.98);
		opacity: 0;
		overscroll-behavior: contain;
		pointer-events: none;
		-webkit-overflow-scrolling: touch;
		transform: translateY(-10px);
		transition: opacity 0.2s ease, transform 0.2s ease;
	}

	body.nav-open .site-nav {
		opacity: 1;
		pointer-events: auto;
		transform: translateY(0);
	}

	.site-nav a {
		font-size: clamp(1.5rem, 6vw, 2.5rem);
	}

	.nav-contact {
		padding: 8px 0;
		border: 0;
	}

	.nav-toggle {
		position: relative;
		z-index: 540;
		display: block;
		touch-action: manipulation;
	}

	body.nav-open .nav-toggle span:nth-child(2) {
		transform: translateY(7px) rotate(45deg);
	}

	body.nav-open .nav-toggle span:nth-child(3) {
		opacity: 0;
	}

	body.nav-open .nav-toggle span:nth-child(4) {
		transform: translateY(-7px) rotate(-45deg);
	}

	.hero-grid,
	.about-grid,
	.video-grid,
	.contact-grid {
		grid-template-columns: 1fr;
	}

	.profile-card {
		max-width: 600px;
	}

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

	.metric:nth-child(3) {
		border-top: 1px solid var(--line-dark);
		border-left: 0;
	}

	.metric:nth-child(4) {
		border-top: 1px solid var(--line-dark);
	}

	.section-heading-row {
		grid-template-columns: 1fr;
		gap: 22px;
	}

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

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

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

@media (max-width: 680px) {
	.container {
		width: min(calc(100% - 28px), var(--container));
	}

	.header-inner {
		min-height: 70px;
	}

	.brand-copy small {
		max-width: 145px;
	}

	.hero {
		min-height: auto;
		padding: 125px 0 55px;
	}

	.hero h1 {
		font-size: clamp(3rem, 16vw, 4.7rem);
	}

	.hero-role {
		font-size: 0.4em;
	}

	.hero-actions {
		align-items: stretch;
		flex-direction: column;
	}

	.hero-actions .button {
		width: 100%;
	}

	.quick-facts {
		display: grid;
		grid-template-columns: 1fr 1fr;
		gap: 20px;
	}

	.quick-facts li,
	.quick-facts li:first-child {
		min-width: 0;
		padding: 0;
		border: 0;
	}

	.profile-body {
		padding: 24px;
	}

	.metric-grid {
		margin-top: 55px;
	}

	.metric {
		padding: 23px 18px;
	}

	.strength-grid,
	.leadership-grid,
	.achievement-grid,
	.field-row {
		grid-template-columns: 1fr;
	}

	.strength-card:nth-child(2) {
		transform: none;
	}

	.timeline::before {
		left: 6px;
	}

	.timeline-item {
		grid-template-columns: 1fr;
		gap: 12px;
		padding-left: 32px;
	}

	.timeline-item::before {
		top: 5px;
		left: 0;
	}

	.achievement-card {
		min-height: 330px;
	}

	.leadership-card {
		min-height: 0;
		padding: 26px;
	}

	.leadership-card-top {
		margin-bottom: 28px;
	}

	.skills-panel {
		margin-top: 55px;
		padding-top: 50px;
	}

	.video-shell {
		border-radius: var(--radius-md);
	}

	.contact-form {
		padding: 24px;
	}

	.form-footer {
		align-items: stretch;
		flex-direction: column;
	}

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

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

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