/* ===========================================================
   Princemakes — Main stylesheet
   Purple × gold × warm off-white, conversion-focused.
   =========================================================== */
/* ─────────── Tokens ─────────── */
:root {
	--paper: #FDFCFA;
	--paper-tint: #F5F0FF;
	--surface: #FFFFFF;
	--ink: #0F0A1F;
	--ink-2: #1F1435;
	--muted: #6B6478;
	--hairline: #EAE6EF;
	--hairline-strong: #D4CDDF;
	--purple: #5B21B6;
	--purple-hover: #4C1D95;
	--purple-soft: #EDE4FF;
	--gold: #ffc02e;
	--gold-hover: #ffb600;
	--gold-soft: #FBF3DD;
	--focus: #0047FF;
	--radius-sm: 6px;
	--radius-md: 12px;
	--radius-lg: 20px;
	--shadow-sm: 0 1px 2px rgba(15, 10, 31, 0.04), 0 2px 6px rgba(15, 10, 31, 0.04);
	--shadow-md: 0 4px 12px rgba(15, 10, 31, 0.06), 0 12px 32px rgba(15, 10, 31, 0.06);
	--shadow-lg: 0 10px 40px rgba(91, 33, 182, 0.12), 0 20px 60px rgba(15, 10, 31, 0.08);
	--container: 1440px;
	--gutter: 24px;
	--sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
	--mono: 'JetBrains Mono', ui-monospace, 'SF Mono', Menlo, monospace;
	--ease: cubic-bezier(0.2, 0.8, 0.2, 1);
}

/* ─────────── Reset & base ─────────── */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
	margin: 0;
	font-family: var(--sans);
	font-size: 17px;
	line-height: 1.6;
	color: var(--ink);
	background: var(--paper);
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	text-rendering: optimizeLegibility;
}
img, picture, svg, video { max-width: 100%; height: auto; display: block; }
a { color: var(--purple); text-decoration: none; transition: color .18s var(--ease); }
a:hover { color: var(--purple-hover); }
button { font: inherit; cursor: pointer; }

::selection { background: var(--gold-soft); color: var(--ink); }

:focus-visible {
	outline: 2px solid var(--focus);
	outline-offset: 3px;
	border-radius: 3px;
}
.mt-0{
    margin-top: 0;    
}
.pt-0{
    padding-top: 0;
}
/* ─────────── Container ─────────── */
.pm-container {
	width: 100%;
	max-width: var(--container);
	margin: 0 auto;
	padding: 0 var(--gutter);
}

/* ─────────── Type scale ─────────── */
.pm-h1, .pm-h2, .pm-h3, .pm-h4 {  font-weight: 500; letter-spacing: -0.015em; color: var(--ink); margin: 0; font-variation-settings: "opsz" 96; }
.pm-h1 { font-size: clamp(2.6rem, 6vw, 5rem); line-height: 1.02; letter-spacing: -0.025em; }
.pm-h2 { font-size: clamp(2rem, 4vw, 3.25rem); }
.pm-h3 { font-size: clamp(1.5rem, 2.4vw, 2rem); }
.pm-h4 { font-size: clamp(1.15rem, 1.6vw, 1.35rem); font-weight: 600; letter-spacing: -0.01em; }

.pm-eyebrow {
	font-family: var(--mono);
	font-size: 11px;
	font-weight: 500;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--muted);
	display: inline-flex;
	align-items: center;
	gap: 8px;
}
.pm-eyebrow::before {
	content: '';
	width: 24px;
	height: 1px;
	background: var(--purple);
	display: inline-block;
}
.pm-lede { font-size: clamp(1.05rem, 1.3vw, 1.2rem);}

/* Serif italic accent — used sparingly on key words */
.pm-accent-italic {
	font-style: italic;
	font-weight: 400;
	color: var(--purple);
	font-variation-settings: "opsz" 144, "SOFT" 100;
}

/* ─────────── Buttons — conversion critical ─────────── */
.pm-btn {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 14px 22px;
	border-radius: 999px;
	font-weight: 600;
	font-size: 15px;
	letter-spacing: -0.005em;
	line-height: 1;
	border: 1.5px solid transparent;
	cursor: pointer;
	transition: transform .18s var(--ease), background .18s var(--ease), border-color .18s var(--ease), color .18s var(--ease), box-shadow .18s var(--ease);
	white-space: nowrap;
}
.pm-btn__arrow { transition: transform .2s var(--ease); }
.pm-btn:hover .pm-btn__arrow { transform: translate(2px, -2px); }

.pm-btn--primary { background: var(--purple); color: #fff; box-shadow: 0 6px 16px rgba(91, 33, 182, 0.22); }
.pm-btn--primary:hover { background: var(--purple-hover); color: #fff; transform: translateY(-1px); box-shadow: 0 10px 24px rgba(91, 33, 182, 0.28); }

.pm-btn--gold { background: var(--gold); color: #1a1108; box-shadow: 0 6px 16px rgba(201, 154, 46, 0.22); }
.pm-btn--gold:hover { background: var(--gold-hover); color: #1a1108; transform: translateY(-1px); }

.pm-btn--ghost { background: transparent; color: var(--ink); border-color: var(--hairline-strong); }
.pm-btn--ghost:hover { border-color: var(--ink); color: var(--ink); background: var(--surface); }

.pm-btn--mono { font-family: var(--mono); font-size: 13px; letter-spacing: 0.02em; text-transform: uppercase; }

/* ─────────── Header / nav ─────────── */
.pm-header {
	position: sticky;
	top: 0;
	z-index: 100;
	background: rgba(253, 252, 250, 0.85);
	backdrop-filter: saturate(180%) blur(14px);
	-webkit-backdrop-filter: saturate(180%) blur(14px);
	border-bottom: 1px solid transparent;
	transition: border-color .2s var(--ease), background .2s var(--ease);
}
.pm-header.is-scrolled { border-bottom-color: var(--hairline); background: rgba(253, 252, 250, 0.94); }

.pm-header__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 10px 20px;
	gap: 24px;
}
.pm-brand {
	display: inline-flex;
	align-items: baseline;
	gap: 8px;
	font-weight: 500;
	font-size: 22px;
	letter-spacing: -0.02em;
	color: var(--ink);
	font-variation-settings: "opsz" 96;
}
.pm-brand:hover { color: var(--ink); }
.pm-brand__dot { width: 8px; height: 8px; border-radius: 50%; background: var(--gold); display: inline-block; align-self: center; }
.pm-brand__mark { font-style: italic; color: var(--purple); }
.pm-brand__logo {max-width: 220px; }

.pm-nav { display: flex; align-items: center; gap: 4px; }
.pm-nav__panel { display: flex; align-items: center; gap: 4px; }
.pm-nav__panel-head { display: none; }
.pm-nav__list { display: flex; align-items: center; gap: 6px; list-style: none; padding: 0; margin: 0; }
.pm-nav__list a {
	display: inline-block;
	padding: 8px 14px;
	color: var(--ink-2);
	font-size: 15px;
	font-weight: 500;
	border-radius: 999px;
	transition: background .16s var(--ease), color .16s var(--ease);
}
.pm-nav__list a:hover, .pm-nav__list .current-menu-item > a { background: var(--purple-soft); color: var(--purple); }

.pm-nav__cta { margin-left: 12px; }

.pm-nav__toggle {
	display: none;
	background: transparent;
	border: 1.5px solid var(--hairline-strong);
	width: 44px; height: 44px;
	border-radius: 6px;
	align-items: center; justify-content: center;
}
.pm-nav__toggle span, .pm-nav__toggle span::before, .pm-nav__toggle span::after {
	content: '';
	display: block;
	width: 18px;
	height: 1.5px;
	background: var(--ink);
	position: relative;
	transition: transform .2s var(--ease);
}
.pm-nav__toggle span::before { position: absolute; top: -6px; }
.pm-nav__toggle span::after { position: absolute; top: 6px; }

.pm-nav__close {
	display: none;
	background: transparent;
	border: none;
	color: var(--ink);
	width: 36px; height: 36px;
	align-items: center; justify-content: center;
	border-radius: 999px;
}
.pm-nav__close:hover { background: var(--purple-soft); color: var(--purple); }

.pm-nav__backdrop { display: none; }

/* ─────────── Hero ─────────── */
.pm-hero {
	padding: 72px 0 96px;
	position: relative;
	overflow: hidden;
}
.pm-hero::before {
	/* Subtle radial gold glow — atmospheric, not loud */
	content: '';
	position: absolute;
	top: -20%;
	right: -10%;
	width: 60%;
	height: 100%;
	background: radial-gradient(ellipse at center, rgba(201, 154, 46, 0.08) 0%, transparent 60%);
	pointer-events: none;
	z-index: 0;
}
.pm-hero__inner {
	display: grid;
	grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
	gap: 64px;
	align-items: start;
	position: relative;
	z-index: 1;
}
.pm-hero__lead { display: flex; flex-direction: column; gap: 28px; }
.pm-hero__ctas { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-image img{
    border-radius: 20px;
}

.hero-image {
    margin: 0 auto;
    text-align: center;
}
/* ─────────── Stats strip ─────────── */
.pm-stats__grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 32px;
}
.pm-stat__num {
	font-size: clamp(2rem, 3.5vw, 3rem);
	font-weight: 500;
	letter-spacing: -0.03em;
	line-height: 1;
	color: var(--purple);
	font-variation-settings: "opsz" 144;
}
.pm-stat__num .pm-plus { color: var(--gold); font-style: italic; }
.pm-stat__lbl {
	font-family: var(--mono);
	font-size: 12px;
	color: var(--muted);
	text-transform: uppercase;
	letter-spacing: 0.1em;
	margin-top: 8px;
}

/* ─────────── Section base ─────────── */
.pm-section { padding: 96px 0; }
.pm-section--tight { padding: 64px 0; }
.pm-section__head { max-width: 720px; margin-bottom: 56px; display: flex; flex-direction: column; gap: 16px; }
.pm-section__head--split { display: flex; flex-direction: row; justify-content: space-between; align-items: flex-end; max-width: none; gap: 32px; flex-wrap: wrap; }

/* ─────────── Pillars ─────────── */
.pm-pillars { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.pm-pillar {
	background: var(--surface);
	border: 1px solid var(--hairline);
	border-radius: var(--radius-md);
	padding: 32px 28px;
	display: flex;
	flex-direction: column;
	gap: 16px;
	transition: transform .25s var(--ease), border-color .25s var(--ease), box-shadow .25s var(--ease);
	position: relative;
	overflow: hidden;
}
.pm-pillar::after {
	content: '';
	position: absolute;
	inset: auto 0 0 0;
	height: 3px;
	background: linear-gradient(90deg, var(--purple) 0%, var(--gold) 100%);
	transform: translateX(-100%);
	transition: transform .3s var(--ease);
}
.pm-pillar:hover { transform: translateY(-4px); border-color: var(--hairline-strong); box-shadow: var(--shadow-md); }
.pm-pillar:hover::after { transform: translateX(0); }
.pm-pillar__icon {
	width: 44px; height: 44px;
	border-radius: 12px;
	background: var(--purple-soft);
	color: var(--purple);
	display: flex; align-items: center; justify-content: center;
	font-family: var(--mono);
	font-weight: 500;
	font-size: 14px;
}
.pm-pillar__title {font-size: 1.35rem; font-weight: 500; line-height: 1.2; letter-spacing: -0.01em; color: var(--ink); font-variation-settings: "opsz" 96; }
.pm-pillar__desc { color: var(--muted); font-size: 14.5px; line-height: 1.55; }
.pm-pillar__proof {
	margin-top: auto;
	padding-top: 16px;
	border-top: 1px dashed var(--hairline);
	font-family: var(--mono);
	font-size: 11.5px;
	color: var(--ink-2);
	letter-spacing: 0.02em;
}
.pm-pillar__proof strong { color: var(--purple); font-weight: 500; }

/* ─────────── Selected work grid ─────────── */
.pm-work-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 24px; }
.pm-work-card {
	grid-column: span 3;
	background: var(--surface);
	border: 1px solid var(--hairline);
	border-radius: var(--radius-md);
	overflow: hidden;
	transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
	display: flex;
	flex-direction: column;
	position: relative;
}
.pm-work-card:hover { transform: translateY(-4px); border-color: var(--hairline-strong); box-shadow: var(--shadow-md); }
.pm-work-card--feature { grid-column: span 4; }
.pm-work-card--half { grid-column: span 2; }
.pm-work-card__media {
    position: relative;
    overflow: hidden;
}
.pm-work-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.pm-work-card:hover .pm-work-card__media img { transform: scale(1.03); }
.pm-work-card__body { padding: 22px 24px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.pm-work-card__meta { display: flex; gap: 10px; font-family: var(--mono); font-size: 11px; color: var(--muted); letter-spacing: 0.08em; text-transform: uppercase; }
.pm-work-card__meta span:not(:last-child)::after { content: '·'; margin-left: 10px; color: var(--hairline-strong); }
.pm-work-card__title {
    font-size: 1.4rem;
    font-weight: 500;
    margin: 0;
}
.pm-work-card__desc { font-size: 14.5px; }
.pm-work-card__foot {
	margin-top: auto;
	padding-top: 16px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 12px;
}
.pm-work-card__link {
	font-family: var(--mono);
	font-size: 12px;
	color: var(--purple);
	letter-spacing: 0.06em;
	text-transform: uppercase;
	display: inline-flex;
	align-items: center;
	gap: 6px;
}
.pm-work-card__link:hover { color: var(--purple-hover); }
.pm-tag {
	display: inline-block;
	padding: 4px 10px;
	background: var(--gold-soft);
	color: #6d4c0f;
	font-family: var(--mono);
	font-size: 10.5px;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	border-radius: 999px;
}

/* ─────────── About preview ─────────── */
.pm-about-preview { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.pm-about-preview__body { display: flex; flex-direction: column; gap: 24px; }
.pm-about-preview__image {
	background: linear-gradient(135deg, var(--purple-soft) 0%, var(--gold-soft) 100%);
	border-radius: var(--radius-lg);
	overflow: hidden;
	position: relative;
}
.pm-about-preview__image img { width: 100%; height: 100%; object-fit: cover; }
.pm-about-preview__image::after {
	content: '';
	position: absolute;
	inset: 0;
	border: 1px solid rgba(15, 10, 31, 0.05);
	border-radius: var(--radius-lg);
	pointer-events: none;
}

/* ─────────── Contact band ─────────── */

/* Contact form */
.pm-form {
    display: flex;
    flex-direction: column;
    gap: 14px;
    background-color: #ede4ff;
    padding: 30px;
    border-radius: 20px;
    max-width: 700px;
}
.pm-field { display: flex; flex-direction: column; gap: 6px; }
.pm-field label { font-family: var(--mono);  }
.pm-input, .pm-textarea, .pm-select {
	border: 1px solid rgba(255, 255, 255, 0.15);
	border-radius: 10px;
	padding: 14px 16px;
	color: var(--paper);
	font-size: 15px;
	transition: border-color .18s var(--ease), background .18s var(--ease);
}
.pm-input:focus, .pm-textarea:focus, .pm-select:focus { outline: none; border-color: var(--gold); background: rgba(255, 255, 255, 0.08); }  
.pm-textarea { min-height: 120px; resize: vertical; }
.pm-honeypot { position: absolute; left: -9999px; opacity: 0; pointer-events: none; }
.pm-form__submit { align-self: flex-start; margin-top: 6px; }
.pm-form__msg { padding: 12px 16px; border-radius: 10px; font-size: 14px; }
.pm-form__msg--ok { background: rgba(201, 154, 46, 0.15); color: var(--gold-soft); border: 1px solid rgba(201, 154, 46, 0.3); }
.pm-form__msg--err { background: rgba(220, 38, 38, 0.15); color: #fca5a5; border: 1px solid rgba(220, 38, 38, 0.3); }

/* ─────────── Services page ─────────── */
.pm-services-approach {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
	margin-bottom: 72px;
}
.pm-approach {
	padding: 28px;
	border: 1px solid var(--hairline);
	border-radius: var(--radius-md);
	background: var(--surface);
}
.pm-approach__num {
	font-family: var(--mono);
	font-size: 12px;
	color: var(--gold);
	letter-spacing: 0.1em;
	margin-bottom: 10px;
}
.pm-approach__title { font-size: 1.25rem; font-weight: 500; margin: 0 0 8px; letter-spacing: -0.01em; font-variation-settings: "opsz" 96; }
.pm-approach__desc { color: var(--muted); font-size: 14.5px; line-height: 1.55; }

.pm-services-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.pm-service {
	background: var(--surface);
	border: 1px solid var(--hairline);
	border-radius: var(--radius-md);
	padding: 32px;
	display: flex;
	flex-direction: column;
	gap: 16px;
	transition: transform .25s var(--ease), border-color .25s var(--ease), box-shadow .25s var(--ease);
}
.pm-service:hover { transform: translateY(-3px); border-color: var(--hairline-strong); box-shadow: var(--shadow-md); }
.pm-service__head { display: flex; justify-content: space-between; align-items: flex-start; gap: 16px; }
.pm-service__title {  font-size: 1.35rem; font-weight: 500; line-height: 1.2; letter-spacing: -0.01em; margin: 0; font-variation-settings: "opsz" 96; }
.pm-service__price {
	font-family: var(--mono);
	font-size: 12px;
	color: var(--ink);
	background: var(--gold-soft);
	padding: 6px 12px;
	border-radius: 999px;
	white-space: nowrap;
	letter-spacing: 0.02em;
}
.pm-service__desc { color: var(--muted); font-size: 15px; line-height: 1.6; flex: 1; }
.pm-service__cta { align-self: flex-start; }

/* ─────────── About page ─────────── */
.pm-timeline { display: flex; flex-direction: column; gap: 0; margin: 48px 0; }
.pm-timeline__item {
	display: grid;
	grid-template-columns: 200px 1fr;
	gap: 48px;
	padding: 32px 0;
	border-top: 1px solid var(--hairline);
	align-items: start;
}
.pm-timeline__item:last-child { border-bottom: 1px solid var(--hairline); }
.pm-timeline__date {
	font-family: var(--mono);
	font-size: 12px;
	letter-spacing: 0.08em;
	color: var(--muted);
	text-transform: uppercase;
	padding-top: 6px;
}
.pm-timeline__role { font-size: 1.35rem; font-weight: 500; margin: 0 0 4px; letter-spacing: -0.01em; font-variation-settings: "opsz" 96; }
.pm-timeline__company { color: var(--purple); font-weight: 500; margin-bottom: 12px; font-size: 15px; }

/* ─────────── Portfolio page filters ─────────── */
.pm-filter-bar {
	display: flex;
	gap: 8px;
	flex-wrap: wrap;
	margin-bottom: 40px;
	padding-bottom: 24px;
	border-bottom: 1px solid var(--hairline);
}
.pm-filter {
	padding: 8px 16px;
	border-radius: 999px;
	background: transparent;
	border: 1px solid var(--hairline-strong);
	font-family: var(--mono);
	font-size: 12px;
	color: var(--ink-2);
	letter-spacing: 0.06em;
	text-transform: uppercase;
	cursor: pointer;
	transition: all .18s var(--ease);
}
.pm-filter:hover { border-color: var(--purple); color: var(--purple); }
.pm-filter.is-active { background: var(--ink); color: var(--paper); border-color: var(--ink); }

/* ─────────── Footer ─────────── */
.pm-footer {
    background: var(--paper);
    padding: 64px 0 32px;
}
.pm-footer__grid {
	display: grid;
	grid-template-columns: 1.4fr 1fr 1fr 1fr;
	gap: 48px;
	margin-bottom: 48px;
}
.pm-footer__brand-block { max-width: 380px; }
.pm-footer__desc { color: var(--muted); font-size: 14px; line-height: 1.6; margin-top: 12px; }
.pm-footer h5 {  font-size: 20px; margin-top:0; }
.pm-footer ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.pm-footer ul a { color: var(--ink-2); font-size: 14.5px; }
.pm-footer ul a:hover { color: var(--purple); }
.pm-footer__base {
	padding-top: 24px;
	border-top: 1px solid var(--hairline);
	display: flex;
	justify-content: space-between;
	gap: 24px;
	flex-wrap: wrap;
	font-family: var(--mono);
	font-size: 12px;
	color: var(--muted);
	letter-spacing: 0.04em;
}

/* ─────────── Floating WhatsApp ─────────── */
.pm-whatsapp {
	position: fixed;
	right: 20px;
	bottom: 20px;
	z-index: 90;
	width: 56px;
	height: 56px;
	border-radius: 50%;
	background: #25D366;
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 8px 24px rgba(37, 211, 102, 0.35);
	transition: transform .2s var(--ease), box-shadow .2s var(--ease);
}
.pm-whatsapp:hover { transform: translateY(-2px) scale(1.05); color: #fff; box-shadow: 0 12px 28px rgba(37, 211, 102, 0.45); }
.pm-whatsapp svg { width: 28px; height: 28px; }

/* ─────────── Utility ─────────── */
.pm-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;
}
.pm-flex { display: flex; }
.pm-gap-3 { gap: 12px; }
.pm-gap-4 { gap: 16px; }

/* ─────────── Person Profile Template ─────────── */

.pm-person-hero {
	background: var(--ink);
	position: relative;
	overflow: hidden;
	padding: 0 0 48px;
}
.pm-person-hero__bg {
	position: absolute;
	inset: 0;
	background:
		radial-gradient(ellipse at 20% 50%, rgba(91, 33, 182, 0.55) 0%, transparent 55%),
		radial-gradient(ellipse at 80% 20%, rgba(201, 154, 46, 0.18) 0%, transparent 45%),
		radial-gradient(ellipse at 60% 90%, rgba(91, 33, 182, 0.25) 0%, transparent 40%);
	pointer-events: none;
}
.pm-person-hero__inner { position: relative; z-index: 1; }

.pm-person-breadcrumb {
	display: flex;
	align-items: center;
	gap: 8px;
	padding: 20px 0 32px;
	font-family: var(--mono);
	font-size: 12px;
	letter-spacing: 0.06em;
	color: rgba(253, 252, 250, 0.5);
}
.pm-person-breadcrumb a { color: rgba(253, 252, 250, 0.6); transition: color .18s var(--ease); }
.pm-person-breadcrumb a:hover { color: var(--gold); }
.pm-person-breadcrumb span[aria-current] { color: var(--gold); }
.pm-person-breadcrumb span[aria-hidden] { color: rgba(253, 252, 250, 0.3); }

.pm-person-identity {
	display: flex;
	align-items: center;
	gap: 36px;
	flex-wrap: wrap;
}

.pm-person-avatar {
	flex-shrink: 0;
	width: 140px;
	height: 140px;
	border-radius: 50%;
	overflow: hidden;
	border: 3px solid var(--purple);
	box-shadow: 0 0 0 4px rgba(91, 33, 182, 0.25), 0 0 32px rgba(91, 33, 182, 0.35);
}
.pm-person-avatar__img { width: 100%; height: 100%; object-fit: cover; }
.pm-person-avatar__placeholder {
	width: 100%;
	height: 100%;
	background: linear-gradient(135deg, var(--purple) 0%, #3730A3 100%);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 52px;
	font-weight: 700;
	color: rgba(255, 255, 255, 0.9);
}

.pm-person-meta { display: flex; flex-direction: column; gap: 10px; padding-top: 8px; }

.pm-person-tag {
	display: inline-flex;
	align-items: center;
	padding: 4px 12px;
	background: rgba(201, 154, 46, 0.15);
	border: 1px solid rgba(201, 154, 46, 0.35);
	border-radius: 999px;
	font-family: var(--mono);
	font-size: 11px;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--gold);
	width: fit-content;
}

.pm-person-name {
	font-family: var(--sans);
	font-size: clamp(2rem, 5vw, 3.5rem);
	font-weight: 700;
	letter-spacing: -0.02em;
	line-height: 1.05;
	color: #fff;
	margin: 0;
}

.pm-person-role { font-size: 17px; color: rgba(253, 252, 250, 0.7); margin: 0; line-height: 1.4; }

.pm-person-details { display: flex; gap: 20px; flex-wrap: wrap; }
.pm-person-detail {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-family: var(--mono);
	font-size: 12px;
	color: rgba(253, 252, 250, 0.55);
	letter-spacing: 0.04em;
}
.pm-person-detail svg { flex-shrink: 0; }

.pm-person-socials { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 4px; }
.pm-person-social {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 38px;
	height: 38px;
	border-radius: 10px;
	background: rgba(255, 255, 255, 0.06);
	border: 1px solid rgba(255, 255, 255, 0.12);
	color: rgba(253, 252, 250, 0.65);
	transition: background .18s var(--ease), border-color .18s var(--ease), color .18s var(--ease), transform .18s var(--ease);
}
.pm-person-social:hover {
	background: rgba(91, 33, 182, 0.3);
	border-color: var(--purple);
	color: #fff;
	transform: translateY(-2px);
}

.pm-person-content { padding: 72px 0; background: var(--paper); }

.pm-person-body { font-size: 17px; line-height: 1.75; color: var(--ink-2); }
.pm-person-body h2 { font-family: var(--sans); font-size: clamp(1.5rem, 2.4vw, 2rem); font-weight: 700; letter-spacing: -0.015em; color: var(--ink); margin: 48px 0 16px; }
.pm-person-body h3 { font-family: var(--sans); font-size: clamp(1.2rem, 1.8vw, 1.4rem); font-weight: 600; letter-spacing: -0.01em; color: var(--ink); margin: 36px 0 12px; }
.pm-person-body p { margin: 0 0 20px; }
.pm-person-body ul, .pm-person-body ol { padding-left: 24px; margin: 0 0 20px; }
.pm-person-body li { margin-bottom: 8px; }
.pm-person-body strong { font-weight: 600; color: var(--ink); }
.pm-person-body a { color: var(--purple); border-bottom: 1px solid rgba(91, 33, 182, 0.25); transition: border-color .18s; }
.pm-person-body a:hover { border-color: var(--purple); }
.pm-person-body img { border-radius: var(--radius-md); max-width: 100%; margin: 24px 0; }
.pm-person-body blockquote {
	border-left: 3px solid var(--gold);
	margin: 32px 0;
	padding: 16px 24px;
	background: var(--gold-soft);
	border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
	font-style: italic;
	color: var(--ink-2);
}
.pm-person-body table { width: 100%; border-collapse: collapse; margin: 24px 0; font-size: 15px; }
.pm-person-body th { background: var(--purple-soft); color: var(--purple); font-weight: 600; padding: 12px 16px; text-align: left; }
.pm-person-body td { padding: 12px 16px; border-bottom: 1px solid var(--hairline); }
.pm-person-body tr:last-child td { border-bottom: none; }

.pm-person-cta { padding: 56px 0; background: var(--paper-tint); border-top: 1px solid var(--hairline); }
.pm-person-cta__inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.pm-person-cta__inner p { font-size: 18px; color: var(--ink-2); margin: 0; font-weight: 500; }

/* ─────────── Person Page — Enhanced Layout ─────────── */

/* Better hero spacing */
.pm-person-hero {
	padding: 0 0 56px;
}
.pm-person-avatar {
	width: 160px;
	height: 160px;
}
.pm-person-identity {
	gap: 40px;
	align-items: center;
}
.pm-person-name {
	font-size: clamp(2.2rem, 5vw, 3.8rem);
}

/* ── Section headings inside person body ── */
.pm-person-body h2 {
	font-size: clamp(1.6rem, 2.6vw, 2.1rem);
	font-weight: 700;
	color: var(--ink);
	margin: 56px 0 20px;
	padding-bottom: 12px;
	border-bottom: 2px solid var(--hairline);
	position: relative;
}
.pm-person-body h2::after {
	content: '';
	position: absolute;
	bottom: -2px;
	left: 0;
	width: 48px;
	height: 2px;
	background: linear-gradient(90deg, var(--purple), var(--gold));
}
.pm-person-body h2:first-child {
	margin-top: 0;
}
.pm-person-body h3 {
	font-size: 1.1rem;
	font-weight: 700;
	color: var(--ink);
	margin: 32px 0 12px;
	padding: 10px 16px;
	background: var(--purple-soft);
	border-left: 3px solid var(--purple);
	border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

/* ── Lists — clean styled bullets ── */
.pm-person-body ul {
	list-style: none;
	padding: 0;
	margin: 0 0 24px;
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 8px 24px;
}
.pm-person-body ul li {
	padding: 8px 12px 8px 32px;
	position: relative;
	font-size: 15px;
	color: var(--ink-2);
	background: var(--surface);
	border: 1px solid var(--hairline);
	border-radius: var(--radius-sm);
	margin: 0;
}
.pm-person-body ul li::before {
	content: '';
	position: absolute;
	left: 12px;
	top: 50%;
	transform: translateY(-50%);
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: var(--gold);
}

/* ── Skills — pill style ── */
/* Wrap skills ul in a div with class pm-skills in the editor,
   OR this targets the ul that comes right after the Skills h2 */
.pm-person-body h2 + ul,
.pm-person-skills ul {
	display: flex !important;
	flex-wrap: wrap !important;
	gap: 10px !important;
	grid-template-columns: none !important;
}
.pm-person-body h2 + ul li,
.pm-person-skills ul li {
	background: var(--purple-soft) !important;
	border-color: rgba(91, 33, 182, 0.2) !important;
	color: var(--purple) !important;
	font-weight: 600 !important;
	font-size: 13px !important;
	padding: 6px 16px !important;
	border-radius: 999px !important;
	width: auto !important;
}
.pm-person-body h2 + ul li::before,
.pm-person-skills ul li::before {
	display: none !important;
}

/* ── Experience — horizontal card row ── */
.pm-person-body h2:has(+ ul) + ul {
	grid-template-columns: repeat(2, 1fr);
}

/* ── Education block ── */
.pm-person-body h2 + ul li strong {
	display: block;
	font-size: 15px;
	color: var(--ink);
	margin-bottom: 4px;
}

/* ── Certifications + Achievements — gold accent ── */
.pm-person-body ul li:has(strong) {
	background: var(--gold-soft);
	border-color: rgba(201, 154, 46, 0.25);
}
.pm-person-body ul li:has(strong)::before {
	background: var(--purple);
}

/* ── Blockquote — tagline ── */
.pm-person-body blockquote {
	margin: 40px 0 0;
	padding: 20px 28px;
	background: linear-gradient(135deg, var(--purple-soft) 0%, var(--gold-soft) 100%);
	border-left: 4px solid var(--purple);
	border-radius: 0 var(--radius-md) var(--radius-md) 0;
	font-size: 17px;
	font-weight: 600;
	font-style: normal;
	color: var(--ink);
	letter-spacing: -0.01em;
}
.pm-person-body blockquote::before {
	content: '"';
	font-size: 48px;
	line-height: 1;
	color: var(--purple);
	opacity: 0.3;
	font-family: Georgia, serif;
	display: block;
	margin-bottom: -12px;
}

/* ── Intro paragraphs — better spacing ── */
.pm-person-body > p:first-child {
	font-size: 18px;
	line-height: 1.8;
	color: var(--ink);
}
.pm-person-body > p {
	font-size: 16px;
	line-height: 1.8;
}

/* ─────────── Mobile responsive — Person Page ─────────── */
@media (max-width: 960px) {
	.pm-person-body ul {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 640px) {
	/* Hero */
	.pm-person-hero { padding: 0 0 40px; }
	.pm-person-identity {
		flex-direction: column;
		gap: 20px;
		align-items: center;
		text-align: center;
	}
	.pm-person-avatar {
		width: 120px;
		height: 120px;
	}
	.pm-person-name { font-size: 2rem; }
	.pm-person-role { font-size: 15px; }
	.pm-person-details { justify-content: center; }
	.pm-person-socials { justify-content: center; }
	.pm-person-tag { align-self: center; }
	.pm-person-breadcrumb { flex-wrap: wrap; font-size: 11px; }

	/* Content */
	.pm-person-content { padding: 40px 0; }

	.pm-person-body h2 { font-size: 1.4rem; margin: 40px 0 16px; }
	.pm-person-body h3 { font-size: 1rem; }

	/* Lists — single column on mobile */
	.pm-person-body ul {
		grid-template-columns: 1fr !important;
		gap: 8px;
	}

	/* Skills pills wrap naturally */
	.pm-person-body h2 + ul,
	.pm-person-skills ul {
		gap: 8px !important;
	}
	.pm-person-body h2 + ul li,
	.pm-person-skills ul li {
		font-size: 12px !important;
		padding: 5px 14px !important;
	}

	.pm-person-body blockquote {
		font-size: 15px;
		padding: 16px 20px;
	}
	.pm-person-body > p:first-child { font-size: 16px; }

	/* CTA */
	.pm-person-cta { padding: 40px 0; }
	.pm-person-cta__inner {
		flex-direction: column;
		align-items: flex-start;
		gap: 16px;
	}
	.pm-person-cta__inner p { font-size: 16px; }
}

@media (max-width: 400px) {
	.pm-person-avatar { width: 100px; height: 100px; }
	.pm-person-name { font-size: 1.7rem; }
	.pm-container { padding: 0 16px; }
}

@media (max-width: 640px) {
	.pm-person-identity { flex-direction: column; gap: 24px; align-items: center; text-align: center; }
	.pm-person-avatar { width: 110px; height: 110px; }
	.pm-person-details { justify-content: center; }
	.pm-person-socials { justify-content: center; }
	.pm-person-tag { align-self: center; }
	.pm-person-cta__inner { flex-direction: column; align-items: flex-start; }
	.pm-person-breadcrumb { flex-wrap: wrap; }
}

/* ─────────── Responsive ─────────── */
@media (max-width: 960px) {
	.pm-hero__inner { grid-template-columns: 1fr; gap: 40px; }
	.pm-hero { padding: 48px 0 64px; }
	.pm-pillars { grid-template-columns: repeat(2, 1fr); }
	.pm-stats__grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
	.pm-work-grid { grid-template-columns: repeat(2, 1fr); }
	.pm-work-card, .pm-work-card--feature, .pm-work-card--half { grid-column: span 2; }
	.pm-about-preview { grid-template-columns: 1fr; gap: 40px; }
	.pm-contact-band__inner { grid-template-columns: 1fr; }
	.pm-services-approach { grid-template-columns: 1fr; }
	.pm-services-grid { grid-template-columns: 1fr; }
	.pm-footer__grid { grid-template-columns: 1fr 1fr; gap: 32px; }
	.pm-section { padding: 64px 0; }
	.pm-section__head { margin-bottom: 40px; }
	.pm-timeline__item { grid-template-columns: 1fr; gap: 12px; }
}

/* Nav breakpoint — offcanvas menu kicks in starting at 991px */
@media (max-width: 991px) {
	.pm-nav__toggle { display: inline-flex; }

	.pm-nav__panel {
		position: fixed;
		top: 0;
		right: 0;
		bottom: 0;
		width: 100%;
		max-width: 100%;
		flex-direction: column;
		align-items: stretch;
		gap: 0;
		background: var(--paper);
		box-shadow: -12px 0 32px rgba(20, 14, 8, 0.14);
		transform: translateX(100%);
		visibility: hidden;
		transition: transform .3s var(--ease), visibility 0s linear .3s;
		z-index: 210;
		overflow-y: auto;
		padding: 8px 20px 24px;
		height: 100vh;
	}
	.pm-nav.is-open .pm-nav__panel {
		transform: translateX(0);
		visibility: visible;
		transition: transform .3s var(--ease);
	}

	.pm-nav__panel-head {
		display: flex;
		align-items: center;
		justify-content: space-between;
		padding: 14px 4px 18px;
		border-bottom: 1px solid var(--hairline);
		margin-bottom: 12px;
	}
	.pm-nav__panel-title {
		font-size: 18px;
		color: var(--ink);
	}
	.pm-nav__close { display: inline-flex; }

	.pm-nav__list {
		flex-direction: column;
		align-items: stretch;
	}
	.pm-nav__list a {
		padding: 5px 14px;
	}

	.pm-nav__cta { margin: 16px 4px 0; }
	.pm-nav__cta .pm-btn { width: 100%; justify-content: center; }

	.pm-nav__backdrop {
		display: block;
		position: fixed;
		inset: 0;
		background: rgba(20, 14, 8, 0.4);
		opacity: 0;
		pointer-events: none;
		transition: opacity .3s var(--ease);
		z-index: 200;
	}
	.pm-nav__backdrop.is-visible { opacity: 1; pointer-events: auto; }

	body.pm-nav-open { overflow: hidden; }
}

@media (max-width: 640px) {
	body { font-size: 16px; }
	.pm-pillars { grid-template-columns: 1fr; }
	.pm-stats__grid { grid-template-columns: repeat(2, 1fr); }
	.pm-work-grid { grid-template-columns: 1fr; }
	.pm-work-card, .pm-work-card--feature, .pm-work-card--half { grid-column: span 1; }
	.pm-footer__grid { grid-template-columns: 1fr; }
	.pm-hero__ctas { flex-direction: column; align-items: stretch; }
	.pm-hero__ctas .pm-btn { justify-content: center; }
	.pm-service__head { flex-direction: column; align-items: flex-start; gap: 8px; }
}

@media (prefers-reduced-motion: reduce) {
	*, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; scroll-behavior: auto !important; }
}