@font-face {
	font-family: "Roboto";
	font-style: normal;
	font-weight: 400;
	font-display: swap;
	src: url("../fonts/roboto-latin-400.woff2") format("woff2");
}
@font-face {
	font-family: "Roboto";
	font-style: normal;
	font-weight: 500;
	font-display: swap;
	src: url("../fonts/roboto-latin-500.woff2") format("woff2");
}
@font-face {
	font-family: "Roboto";
	font-style: normal;
	font-weight: 700;
	font-display: swap;
	src: url("../fonts/roboto-latin-700.woff2") format("woff2");
}

:root {
	--pas-bg: #09080a;
	--pas-panel: #111014;
	--pas-soft: #0d0c10;
	--pas-text: #f8f7f4;
	--pas-muted: #b9b4b2;
	--pas-faint: #767174;
	--pas-line: rgba(255, 255, 255, 0.1);
	--pas-gold: #d6aa55;
	--pas-red: #75530f;
	--pas-radius: 8px;
	--pas-container: 1280px;
}

* { box-sizing: border-box; }
[hidden] { display: none !important; }
html { background: var(--pas-bg); scroll-behavior: smooth; }
body {
	margin: 0;
	background: radial-gradient(circle at 18% 0%, rgba(181, 22, 42, 0.18), transparent 34rem), linear-gradient(180deg, #09080a 0%, #0d0b0e 45%, #080709 100%);
	color: var(--pas-text);
	font-family: Manrope, Arial, sans-serif;
}
body.rtl, [dir="rtl"] body { direction: rtl; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button, input, select, textarea { font: inherit; }
.screen-reader-text { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0, 0, 0, 0); }
.pas-container { width: min(var(--pas-container), calc(100% - 32px)); margin-inline: auto; }
.pas-main { min-height: 70vh; }
.pas-section { padding: 88px 0; }
.pas-section--soft { background: rgba(0, 0, 0, 0.18); }
.pas-eyebrow { margin: 0 0 18px; color: var(--pas-gold); font-size: 12px; font-weight: 800; letter-spacing: .32em; text-transform: uppercase; }
.pas-section-heading { max-width: 780px; margin-bottom: 42px; }
.pas-section-heading--center { margin-inline: auto; text-align: center; }
.pas-section-heading h2, .pas-cta h2 {
	margin: 0;
	color: #fff;
	font-size: clamp(32px, 4vw, 56px);
	line-height: 1.03;
	font-weight: 800;
	letter-spacing: 0;
}
.pas-section-heading p, .pas-cta p { color: #d8d3d0; font-size: 17px; line-height: 1.85; }

.pas-header {
	position: fixed;
	inset: 0 0 auto;
	z-index: 50;
	padding: 18px 0;
	transition: .25s ease;
}
.pas-header.is-scrolled { padding: 9px 0; background: rgba(9, 8, 10, .86); box-shadow: 0 18px 60px rgba(0,0,0,.35); backdrop-filter: blur(18px); }
.pas-header__inner { width: min(var(--pas-container), calc(100% - 32px)); margin-inline: auto; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.pas-logo { display: inline-flex; align-items: center; gap: 12px; color: #fff; }
.pas-logo span { display: grid; place-items: center; width: 42px; height: 42px; border: 1px solid rgba(214,170,85,.55); border-radius: 999px; color: var(--pas-gold); background: rgba(255,255,255,.07); font-weight: 900; }
.pas-logo strong { font-size: 13px; letter-spacing: .24em; text-transform: uppercase; }
.pas-nav { display: flex; align-items: center; gap: 28px; }
.pas-nav__list { display: flex; align-items: center; gap: 28px; margin: 0; padding: 0; list-style: none; }
.pas-nav a { color: #ece8e4; font-size: 14px; font-weight: 700; }
.pas-nav a:hover { color: var(--pas-gold); }
.pas-btn, .pas-form button, .pas-cookie button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 50px;
	border: 0;
	border-radius: 999px;
	padding: 0 22px;
	background: var(--pas-red);
	color: #fff;
	font-size: 14px;
	font-weight: 800;
	box-shadow: 0 16px 50px rgba(181, 22, 42, .28);
	cursor: pointer;
	transition: .22s ease;
}
.pas-btn:hover, .pas-form button:hover { background: var(--pas-gold); color: #111014; transform: translateY(-1px); }
.pas-btn--secondary { border: 1px solid rgba(255,255,255,.18); background: rgba(255,255,255,.07); box-shadow: none; }
.pas-btn--secondary:hover { border-color: rgba(214,170,85,.7); background: rgba(214,170,85,.12); color: #fff; }
.pas-btn--small { min-height: 42px; padding-inline: 18px; }
.pas-menu-toggle { display: none; width: 46px; height: 46px; border: 1px solid rgba(255,255,255,.15); border-radius: 999px; background: rgba(255,255,255,.07); }
.pas-menu-toggle span:not(.screen-reader-text) { display: block; width: 18px; height: 2px; margin: 4px auto; background: #fff; }
.pas-mobile-menu { width: min(var(--pas-container), calc(100% - 32px)); margin: 12px auto 0; padding: 16px; border: 1px solid var(--pas-line); border-radius: 18px; background: rgba(17,16,20,.96); backdrop-filter: blur(20px); }
.pas-mobile-menu__list { display: grid; gap: 4px; margin: 0 0 12px; padding: 0; list-style: none; }
.pas-mobile-menu a { display: block; padding: 13px 14px; border-radius: 12px; color: #fff; font-weight: 700; }

.pas-hero { position: relative; min-height: 92svh; display: flex; align-items: center; overflow: hidden; padding: 140px 0 80px; }
.pas-hero__media, .pas-page-hero__media { position: absolute; inset: 0; background-size: cover; background-position: center; }
.pas-hero__overlay, .pas-page-hero__overlay { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(9,8,10,.96), rgba(9,8,10,.68), rgba(9,8,10,.42)); }
.pas-hero__content { position: relative; max-width: var(--pas-container); }
.pas-hero h1, .pas-page-hero h1, .pas-project-detail h1, .pas-not-found h1 {
	max-width: 920px;
	margin: 0;
	font-family: "Playfair Display", Georgia, serif;
	font-size: clamp(48px, 7vw, 86px);
	line-height: .96;
	font-weight: 700;
	letter-spacing: 0;
}
.pas-hero p:not(.pas-eyebrow), .pas-page-hero p:not(.pas-eyebrow), .pas-project-detail p { max-width: 820px; color: #ebe5df; font-size: 18px; line-height: 1.85; }
.pas-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }
.pas-page-hero { position: relative; padding: 150px 0 90px; overflow: hidden; }
.pas-page-hero .pas-container { position: relative; }
.pas-breadcrumb { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 28px; color: var(--pas-faint); font-size: 14px; }
.pas-breadcrumb a:hover { color: var(--pas-gold); }

.pas-intro { display: grid; grid-template-columns: .9fr 1.1fr; align-items: end; gap: 48px; }
.pas-benefits, .pas-chip-grid, .pas-feature-list { display: grid; gap: 14px; }
.pas-benefits { grid-template-columns: repeat(3, 1fr); }
.pas-benefits span, .pas-chip-grid span, .pas-feature-list span {
	border: 1px solid var(--pas-line);
	border-radius: var(--pas-radius);
	background: rgba(255,255,255,.045);
	padding: 18px;
	color: #fff;
	font-weight: 750;
}
.pas-service-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; margin-top: 42px; }
.pas-card, .pas-category-grid article, .pas-process article, .pas-two-cards article, .pas-team-grid article, .pas-info-card, .pas-form, .pas-detail-grid article {
	border: 1px solid var(--pas-line);
	border-radius: var(--pas-radius);
	background: rgba(255,255,255,.045);
}
.pas-card { padding: 26px; transition: .25s ease; }
.pas-card:hover { transform: translateY(-4px); border-color: rgba(214,170,85,.55); background: rgba(255,255,255,.075); }
.pas-card__icon { display: grid; place-items: center; width: 52px; height: 52px; margin-bottom: 22px; border-radius: 999px; background: rgba(181,22,42,.18); color: var(--pas-gold); font-size: 24px; }
.pas-card__eyebrow { margin: 0 0 12px; color: var(--pas-faint); font-size: 12px; font-weight: 800; letter-spacing: .2em; text-transform: uppercase; }
.pas-card h3 { margin: 0; color: #fff; font-size: 21px; }
.pas-card p { color: var(--pas-muted); line-height: 1.75; }
.pas-card a, .pas-project-card a:last-child { color: var(--pas-gold); font-weight: 800; }
.pas-process { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 42px; }
.pas-process--compact { grid-template-columns: repeat(4, 1fr); }
.pas-process article { padding: 26px; background: #0f0e12; }
.pas-process span { color: var(--pas-gold); font-weight: 900; }
.pas-process h3, .pas-two-cards h2 { margin: 18px 0 10px; color: #fff; }
.pas-process p, .pas-two-cards p { color: var(--pas-muted); line-height: 1.75; }
.pas-two-cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.pas-two-cards article { padding: 34px; }
.pas-split-heading { display: flex; align-items: end; justify-content: space-between; gap: 24px; }
.pas-project-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 36px; }
.pas-project-card { overflow: hidden; border: 1px solid var(--pas-line); border-radius: var(--pas-radius); background: rgba(255,255,255,.045); }
.pas-project-card img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; transition: .65s ease; }
.pas-project-card:hover img { transform: scale(1.05); }
.pas-project-card div { padding: 22px; }
.pas-project-card p { display: flex; justify-content: space-between; margin: 0 0 14px; color: var(--pas-faint); font-size: 12px; letter-spacing: .18em; text-transform: uppercase; }
.pas-project-card h3 { margin: 0; color: #fff; font-size: 22px; }
.pas-project-card small { display: block; margin: 12px 0 18px; color: var(--pas-muted); line-height: 1.6; }
.pas-stats { display: grid; grid-template-columns: repeat(5, 1fr); overflow: hidden; border: 1px solid var(--pas-line); border-radius: var(--pas-radius); background: var(--pas-line); gap: 1px; }
.pas-stats div { padding: 30px 18px; background: #0d0c10; text-align: center; }
.pas-stats strong { display: block; color: #fff; font-size: 38px; }
.pas-stats span { color: var(--pas-muted); font-size: 14px; }
.pas-why { display: grid; grid-template-columns: .9fr 1.1fr; gap: 48px; }
.pas-chip-grid { grid-template-columns: repeat(2, 1fr); }
.pas-pill-row { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; margin-top: 34px; }
.pas-pill-row span, .pas-filter-tabs button { border: 1px solid var(--pas-line); border-radius: 999px; background: rgba(255,255,255,.05); padding: 12px 18px; color: #d8d3d0; }
.pas-faq-wrap { display: grid; grid-template-columns: .8fr 1.2fr; gap: 48px; }
.pas-accordion { border: 1px solid var(--pas-line); border-radius: var(--pas-radius); background: rgba(255,255,255,.035); }
.pas-accordion details + details { border-top: 1px solid var(--pas-line); }
.pas-accordion summary { cursor: pointer; padding: 22px; color: #fff; font-weight: 800; }
.pas-accordion p { margin: 0; padding: 0 22px 22px; color: var(--pas-muted); line-height: 1.75; }
.pas-cta { border: 1px solid rgba(214,170,85,.32); border-radius: var(--pas-radius); padding: clamp(32px, 6vw, 72px); background: radial-gradient(circle at top left, rgba(214,170,85,.24), transparent 34%), linear-gradient(135deg, #161116, #09080a); }
.pas-category-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin: 34px 0 18px; }
.pas-category-grid article { padding: 24px; }
.pas-category-grid h2 { color: #fff; font-size: 20px; }
.pas-category-grid li { margin-bottom: 10px; color: var(--pas-muted); }
.pas-two-col { display: grid; grid-template-columns: .9fr 1.1fr; gap: 48px; align-items: start; }
.pas-feature-list { grid-template-columns: repeat(2, 1fr); }
.pas-feature-list--six { grid-template-columns: repeat(3, 1fr); }
.pas-image-strip { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; padding-bottom: 70px; }
.pas-image-strip img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; border-radius: var(--pas-radius); }
.pas-team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 34px; }
.pas-team-grid article { padding: 26px; }
.pas-team-grid h2 { margin: 0; color: #fff; }
.pas-team-grid strong { display: block; margin: 10px 0; color: var(--pas-gold); }
.pas-team-grid p { color: var(--pas-muted); line-height: 1.75; }
.pas-info-card, .pas-form { padding: 28px; }
.pas-info-card h2 { margin-top: 0; }
.pas-info-card dt { color: var(--pas-faint); margin-top: 18px; }
.pas-info-card dd { margin: 5px 0 0; color: #fff; }
.pas-form { display: grid; gap: 18px; }
.pas-form__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.pas-form label { display: grid; gap: 8px; color: #d8d3d0; font-size: 14px; font-weight: 700; }
.pas-form input, .pas-form select, .pas-form textarea {
	width: 100%;
	min-height: 50px;
	border: 1px solid var(--pas-line);
	border-radius: var(--pas-radius);
	background: #0b0a0d;
	color: #fff;
	padding: 12px 14px;
	outline: none;
}
.pas-form textarea { resize: vertical; }
.pas-form input:focus, .pas-form select:focus, .pas-form textarea:focus { border-color: var(--pas-gold); }
.pas-hidden-field { display: none !important; }
.pas-form__status { min-height: 24px; color: #86efac; }
.pas-form-container { max-width: 980px; }
.pas-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; margin-bottom: 16px; }
.pas-steps button { min-height: 46px; border: 0; border-radius: 999px; background: rgba(255,255,255,.08); color: #fff; font-weight: 800; }
.pas-steps button.is-active { background: var(--pas-gold); color: #111014; }
.pas-step { display: none; }
.pas-step.is-active { display: grid; gap: 16px; }
.pas-checkbox-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.pas-checkbox-grid label { display: flex; align-items: center; gap: 10px; min-height: 50px; border: 1px solid var(--pas-line); border-radius: var(--pas-radius); background: #0b0a0d; padding: 12px; }
.pas-checkbox-grid input { width: auto; min-height: 0; accent-color: var(--pas-gold); }
.pas-form__actions { display: flex; justify-content: space-between; gap: 12px; }
.pas-filter-tabs { display: flex; flex-wrap: wrap; gap: 10px; }
.pas-filter-tabs button { cursor: pointer; }
.pas-filter-tabs button.is-active { background: var(--pas-gold); color: #111014; border-color: var(--pas-gold); }
.pas-project-detail { padding: 150px 0 70px; }
.pas-project-detail__hero { display: grid; grid-template-columns: .9fr 1.1fr; gap: 48px; align-items: end; }
.pas-project-detail__hero img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; border-radius: var(--pas-radius); }
.pas-detail-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.pas-detail-grid article { padding: 26px; }
.pas-detail-grid p, .pas-richtext p { color: var(--pas-muted); line-height: 1.85; }
.pas-detail-grid dt { color: var(--pas-faint); margin-top: 12px; }
.pas-detail-grid dd { margin: 4px 0; color: #fff; }
.pas-testimonial { border: 1px solid rgba(214,170,85,.25); border-radius: var(--pas-radius); background: rgba(214,170,85,.1); padding: 34px; }
.pas-testimonial blockquote { margin: 0; color: #fff; font-size: 22px; line-height: 1.6; }
.pas-richtext { max-width: 820px; }
.pas-richtext h2 { color: #fff; }
.pas-not-found { min-height: 78svh; display: grid; place-items: center; text-align: center; padding: 140px 20px 80px; }
.pas-whatsapp { position: fixed; right: 22px; bottom: 22px; z-index: 45; display: grid; place-items: center; width: 56px; height: 56px; border-radius: 999px; background: #22c55e; color: #fff; font-size: 26px; box-shadow: 0 18px 50px rgba(0,0,0,.4); }
.pas-cookie { position: fixed; inset: auto 16px 16px; z-index: 60; display: none; align-items: center; justify-content: space-between; gap: 16px; width: min(760px, calc(100% - 32px)); margin-inline: auto; border: 1px solid var(--pas-line); border-radius: var(--pas-radius); background: rgba(17,16,20,.96); padding: 16px; color: var(--pas-muted); backdrop-filter: blur(18px); }
.pas-cookie.is-visible { display: flex; }
.pas-cookie p { margin: 0; }

@media (max-width: 1024px) {
	.pas-nav { display: none; }
	.pas-menu-toggle { display: block; }
	.pas-intro, .pas-why, .pas-faq-wrap, .pas-two-col, .pas-project-detail__hero { grid-template-columns: 1fr; }
	.pas-service-grid, .pas-project-grid, .pas-process, .pas-process--compact, .pas-category-grid, .pas-detail-grid { grid-template-columns: repeat(2, 1fr); }
	.pas-stats { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 700px) {
	.pas-section { padding: 64px 0; }
	.pas-hero { min-height: 88svh; padding-top: 120px; }
	.pas-hero h1, .pas-page-hero h1, .pas-project-detail h1 { font-size: 44px; }
	.pas-benefits, .pas-service-grid, .pas-project-grid, .pas-process, .pas-process--compact, .pas-category-grid, .pas-two-cards, .pas-stats, .pas-chip-grid, .pas-feature-list, .pas-feature-list--six, .pas-image-strip, .pas-team-grid, .pas-form__grid, .pas-checkbox-grid, .pas-detail-grid { grid-template-columns: 1fr; }
	.pas-split-heading, .pas-cookie { align-items: stretch; flex-direction: column; }
	.pas-steps { grid-template-columns: repeat(2, 1fr); }
	.pas-logo strong { max-width: 180px; line-height: 1.4; }
	.pas-form__actions { flex-direction: column; }
}

/* Editorial award identity, inspired by international photography institutions. */
:root {
	--pas-bg: #f5f3ee;
	--pas-panel: #ffffff;
	--pas-soft: #ebe8e0;
	--pas-text: #101010;
	--pas-muted: #5f5c56;
	--pas-faint: #8a857d;
	--pas-line: rgba(16, 16, 16, .14);
	--pas-gold: #b9913f;
	--pas-red: #75530f;
	--pas-radius: 0;
	--pas-container: 1320px;
}

html { background: var(--pas-bg); }
body { background: var(--pas-bg); color: var(--pas-text); }
.pas-main { overflow: hidden; }
.pas-section { padding: 120px 0; }
.pas-section--soft { background: #ece9e2; }
.pas-eyebrow, .pas-kicker { color: var(--pas-gold); font-size: 11px; font-weight: 800; letter-spacing: .28em; text-transform: uppercase; }
.pas-section-heading { max-width: 790px; margin-bottom: 52px; }
.pas-section-heading h2, .pas-cta h2 {
	color: #101010;
	font-family: "Playfair Display", Georgia, serif;
	font-size: clamp(40px, 5vw, 68px);
	font-weight: 600;
	line-height: 1.04;
}
.pas-section-heading p, .pas-cta p { color: var(--pas-muted); line-height: 1.8; }

.pas-header { position: fixed; padding: 20px 0; background: rgba(255,255,255,.96); border-bottom: 1px solid rgba(16,16,16,.09); }
.pas-header.is-scrolled { padding: 10px 0; background: rgba(255,255,255,.9); box-shadow: 0 12px 40px rgba(0,0,0,.08); }
.pas-logo { color: #111; }
.pas-logo span { width: 46px; height: 46px; border: 1px solid var(--pas-gold); border-radius: 0; background: var(--pas-gold); color: #fff; font-family: "Playfair Display", serif; font-size: 15px; }
.pas-logo strong { color: #141414; font-size: 12px; letter-spacing: .2em; }
.pas-nav a { color: #191919; font-size: 12px; letter-spacing: .08em; text-transform: uppercase; }
.pas-nav a:hover { color: var(--pas-gold); }
.pas-nav .pas-btn { color: #fff; }
.pas-nav .pas-btn:hover { color: #fff; }
.pas-nav .pas-btn { flex-shrink: 0; white-space: nowrap; }
.pas-btn, .pas-form button, .pas-cookie button { min-height: 48px; border-radius: 0; background: #111; box-shadow: none; letter-spacing: .08em; text-transform: uppercase; }
.pas-btn:hover, .pas-form button:hover { background: var(--pas-gold); color: #fff; }
.pas-btn--secondary { border: 1px solid rgba(16,16,16,.35); background: transparent; color: #111; }
.pas-btn--secondary:hover { border-color: #111; background: #111; color: #fff; }
.pas-menu-toggle { border-color: rgba(16,16,16,.2); border-radius: 0; background: transparent; }
.pas-menu-toggle span:not(.screen-reader-text) { background: #111; }
.pas-mobile-menu { border-radius: 0; background: rgba(255,255,255,.98); }
.pas-mobile-menu a { color: #111; }

.pas-hero--editorial { min-height: 100svh; align-items: flex-end; padding: 180px 0 90px; }
.pas-hero--editorial .pas-hero__media { background-position: center 38%; transform: scale(1.02); }
.pas-hero--editorial .pas-hero__overlay { background: linear-gradient(90deg, rgba(5,5,5,.82) 0%, rgba(5,5,5,.48) 58%, rgba(5,5,5,.2) 100%), linear-gradient(0deg, rgba(0,0,0,.5), transparent 50%); }
.pas-hero--editorial .pas-hero__content { padding-inline-end: 25%; }
.pas-hero--editorial h1 { max-width: 980px; color: #fff; font-size: clamp(58px, 7.5vw, 108px); line-height: .94; font-weight: 600; }
.pas-hero--editorial .pas-hero__lead { max-width: 720px; color: rgba(255,255,255,.85); font-size: 18px; }
.pas-hero--editorial .pas-btn { background: #fff; color: #111; }
.pas-hero--editorial .pas-btn:hover { background: var(--pas-gold); color: #fff; }
.pas-hero--editorial .pas-btn--secondary { border-color: rgba(255,255,255,.6); background: transparent; color: #fff; }
.pas-hero__scroll { position: absolute; right: 4vw; bottom: 42px; color: #fff; font-size: 11px; font-weight: 800; letter-spacing: .18em; text-transform: uppercase; writing-mode: vertical-rl; }
.pas-hero__scroll span { margin-top: 12px; color: var(--pas-gold); }

.pas-intro-band { padding: 120px 0; background: #fff; }
.pas-intro-band__grid { display: grid; grid-template-columns: .45fr 1.25fr .7fr; gap: 56px; align-items: start; }
.pas-intro-band h2 { margin: 0; font-family: "Playfair Display", Georgia, serif; font-size: clamp(38px, 4.4vw, 66px); font-weight: 600; line-height: 1.08; }
.pas-intro-band__copy p { margin-top: 0; color: var(--pas-muted); line-height: 1.85; }
.pas-text-link { display: inline-flex; gap: 20px; border-bottom: 1px solid #111; padding-bottom: 8px; font-size: 12px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.pas-text-link:hover { color: var(--pas-gold); border-color: var(--pas-gold); }

.pas-visual-story { display: grid; grid-template-columns: 1.55fr .72fr .72fr; min-height: 680px; background: #111; }
.pas-visual-story figure { position: relative; min-width: 0; margin: 0; overflow: hidden; border-inline-end: 1px solid rgba(255,255,255,.2); }
.pas-visual-story img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.75); transition: transform .9s ease, filter .4s ease; }
.pas-visual-story figure:hover img { transform: scale(1.035); filter: saturate(1); }
.pas-visual-story figcaption { position: absolute; inset: auto 28px 28px; color: #fff; font-size: 11px; font-weight: 800; letter-spacing: .18em; text-transform: uppercase; }

.pas-services-editorial { background: #f5f3ee; }
.pas-service-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0; border-top: 1px solid var(--pas-line); counter-reset: service; }
.pas-service-card { position: relative; min-height: 330px; padding: 42px 56px 42px 100px; border: 0; border-bottom: 1px solid var(--pas-line); background: transparent; counter-increment: service; }
.pas-service-card:nth-child(odd) { border-inline-end: 1px solid var(--pas-line); }
.pas-service-card::before { content: "0" counter(service); position: absolute; top: 44px; left: 24px; color: var(--pas-gold); font-size: 12px; font-weight: 800; letter-spacing: .15em; }
.pas-service-card:hover { transform: none; border-color: var(--pas-line); background: #fff; }
.pas-service-card .pas-card__icon { display: none; }
.pas-card__eyebrow { color: var(--pas-gold); }
.pas-card h3 { color: #101010; font-family: "Playfair Display", Georgia, serif; font-size: 32px; font-weight: 600; }
.pas-card p { color: var(--pas-muted); }
.pas-card a, .pas-project-card a:last-child { color: #111; border-bottom: 1px solid #111; padding-bottom: 5px; font-size: 12px; letter-spacing: .1em; text-transform: uppercase; }

.pas-feature-case { display: grid; grid-template-columns: 1.18fr .82fr; min-height: 760px; background: #0b0b0b; color: #fff; }
.pas-feature-case__image img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(.2); }
.pas-feature-case__content { display: flex; flex-direction: column; justify-content: center; padding: clamp(56px, 7vw, 110px); }
.pas-feature-case h2 { margin: 0; font-family: "Playfair Display", Georgia, serif; font-size: clamp(42px, 5vw, 70px); font-weight: 600; line-height: 1.04; }
.pas-feature-case p:not(.pas-eyebrow) { color: #bdbbb6; line-height: 1.85; }
.pas-feature-case__facts { display: grid; gap: 0; margin: 34px 0; border-top: 1px solid rgba(255,255,255,.18); }
.pas-feature-case__facts span { display: flex; gap: 20px; border-bottom: 1px solid rgba(255,255,255,.18); padding: 18px 0; }
.pas-feature-case__facts strong { color: var(--pas-gold); }
.pas-feature-case .pas-btn { align-self: flex-start; background: #fff; color: #111; }

.pas-process { grid-template-columns: repeat(6, 1fr); gap: 0; margin-top: 64px; border-top: 1px solid var(--pas-line); }
.pas-process article { min-height: 280px; padding: 32px 24px; border: 0; border-bottom: 1px solid var(--pas-line); border-inline-end: 1px solid var(--pas-line); background: transparent; }
.pas-process article:last-child { border-inline-end: 0; }
.pas-process h3 { color: #101010; font-family: "Playfair Display", Georgia, serif; font-size: 24px; font-weight: 600; }
.pas-process p { color: var(--pas-muted); }

.pas-work-section { background: #0b0b0b; }
.pas-work-section .pas-section-heading h2, .pas-work-section .pas-section-heading p { color: #fff; }
.pas-work-section .pas-section-heading p { color: #a9a6a0; }
.pas-work-section .pas-btn--secondary { border-color: rgba(255,255,255,.35); color: #fff; }
.pas-project-grid { grid-template-columns: repeat(12, 1fr); gap: 28px; }
.pas-project-card { grid-column: span 4; border: 0; background: transparent; }
.pas-project-card:nth-child(1), .pas-project-card:nth-child(4) { grid-column: span 7; }
.pas-project-card:nth-child(2), .pas-project-card:nth-child(3) { grid-column: span 5; }
.pas-project-card img { aspect-ratio: 5 / 4; filter: saturate(.82); }
.pas-project-card:nth-child(1) img, .pas-project-card:nth-child(4) img { aspect-ratio: 16 / 10; }
.pas-project-card div { padding: 22px 0 42px; }
.pas-project-card p { color: #928f89; }
.pas-project-card h3 { color: #fff; font-family: "Playfair Display", Georgia, serif; font-size: 28px; font-weight: 600; }
.pas-project-card small { color: #aaa7a0; }
.pas-project-card a:last-child { color: var(--pas-gold); border-color: var(--pas-gold); }

.pas-stats { border: 0; border-radius: 0; background: #d8d3c8; }
.pas-stats div { min-height: 190px; display: grid; align-content: center; background: #e8e4db; }
.pas-stats strong { color: #111; font-family: "Playfair Display", serif; font-size: 50px; font-weight: 600; }
.pas-stats span { color: var(--pas-muted); text-transform: uppercase; letter-spacing: .08em; }
.pas-why { align-items: start; }
.pas-chip-grid span, .pas-benefits span, .pas-feature-list span { border-radius: 0; background: #fff; color: #111; }
.pas-pill-row span, .pas-filter-tabs button { border-radius: 0; background: transparent; color: #444; }

.pas-quote-band { padding: 130px 0; background: var(--pas-gold); color: #fff; text-align: center; }
.pas-quote-band .pas-eyebrow { color: rgba(255,255,255,.75); }
.pas-quote-band blockquote { max-width: 1050px; margin: 24px auto; font-family: "Playfair Display", Georgia, serif; font-size: clamp(36px, 5vw, 68px); line-height: 1.12; }
.pas-placeholder-note { font-size: 11px; letter-spacing: .14em; text-transform: uppercase; }

.pas-accordion { border-radius: 0; background: #fff; }
.pas-accordion summary { color: #111; }
.pas-accordion p { color: var(--pas-muted); }
.pas-cta { border: 0; border-radius: 0; background: #111; }
.pas-cta h2 { color: #fff; }
.pas-cta p { color: #bbb7af; }
.pas-cta .pas-btn { background: #fff; color: #111; }
.pas-cta .pas-btn--secondary { border-color: rgba(255,255,255,.4); background: transparent; color: #fff; }

.pas-page-hero { min-height: 570px; display: flex; align-items: flex-end; padding: 170px 0 90px; }
.pas-page-hero__overlay { background: linear-gradient(90deg, rgba(0,0,0,.84), rgba(0,0,0,.3)); }
.pas-page-hero h1, .pas-project-detail h1, .pas-not-found h1 { color: #fff; font-size: clamp(52px, 7vw, 88px); }
.pas-page-hero p:not(.pas-eyebrow), .pas-project-detail p { color: rgba(255,255,255,.8); }
.pas-breadcrumb { color: rgba(255,255,255,.65); }
.pas-page-hero .pas-btn { background: #fff; color: #111; }
.pas-page-hero .pas-btn:hover { background: var(--pas-gold); color: #fff; }
.pas-page-hero .pas-btn--secondary { border-color: rgba(255,255,255,.55); background: transparent; color: #fff; }
.pas-page-hero .pas-btn--secondary:hover { border-color: #fff; background: #fff; color: #111; }
.pas-category-grid article, .pas-two-cards article, .pas-team-grid article, .pas-info-card, .pas-form, .pas-detail-grid article { border-radius: 0; background: #fff; }
.pas-category-grid h2, .pas-two-cards h2, .pas-team-grid h2, .pas-info-card h2, .pas-richtext h2 { color: #111; }
.pas-category-grid li, .pas-two-cards p, .pas-team-grid p, .pas-detail-grid p, .pas-richtext p { color: var(--pas-muted); }
.pas-form input, .pas-form select, .pas-form textarea, .pas-checkbox-grid label { background: #f5f3ee; color: #111; }
.pas-info-card dd, .pas-detail-grid dd { color: #111; }
.pas-project-detail { background: #111; }
.pas-project-detail + .pas-section { background: var(--pas-bg); }
.pas-testimonial { border-radius: 0; background: #e8e4db; }
.pas-testimonial blockquote { color: #111; }
.pas-footer { background: #0b0b0b; color: #fff; }
.pas-footer .pas-logo strong { color: #fff; }
.pas-footer { padding: 86px 0 26px; }
.pas-footer__grid { display: grid; grid-template-columns: 1.5fr repeat(3, 1fr); gap: 54px; }
.pas-footer__grid > div:first-child p { max-width: 370px; color: #9e9b95; line-height: 1.8; }
.pas-footer h3 { margin: 0 0 22px; color: var(--pas-gold); font-size: 11px; letter-spacing: .18em; text-transform: uppercase; }
.pas-footer__grid > div:not(:first-child) { display: flex; flex-direction: column; align-items: flex-start; gap: 12px; }
.pas-footer a:not(.pas-logo) { color: #c8c5bf; font-size: 14px; }
.pas-footer a:hover { color: #fff; }
.pas-footer__grid p { margin: 0; color: #9e9b95; }
.pas-footer__bottom { display: flex; justify-content: space-between; gap: 24px; margin-top: 70px; border-top: 1px solid rgba(255,255,255,.14); padding-top: 24px; color: #77746f; font-size: 12px; }
.pas-footer__bottom div { display: flex; gap: 24px; }
.pas-whatsapp { border-radius: 0; }
.pas-cookie { border-radius: 0; background: rgba(17,17,17,.96); }

@media (max-width: 1024px) {
	.pas-intro-band__grid { grid-template-columns: 1fr 2fr; }
	.pas-intro-band__copy { grid-column: 2; }
	.pas-visual-story { grid-template-columns: 1fr 1fr; min-height: 900px; }
	.pas-visual-story__large { grid-column: 1 / -1; }
	.pas-feature-case { grid-template-columns: 1fr; }
	.pas-feature-case__image { min-height: 620px; }
	.pas-process { grid-template-columns: repeat(3, 1fr); }
	.pas-project-card, .pas-project-card:nth-child(1), .pas-project-card:nth-child(2), .pas-project-card:nth-child(3), .pas-project-card:nth-child(4) { grid-column: span 6; }
	.pas-footer__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 700px) {
	.pas-section { padding: 82px 0; }
	.pas-header { padding: 10px 0; }
	.pas-logo span { width: 40px; height: 40px; }
	.pas-logo strong { max-width: 145px; font-size: 10px; }
	.pas-hero--editorial { min-height: 88svh; padding: 130px 0 60px; }
	.pas-hero--editorial .pas-hero__content { padding-inline-end: 0; }
	.pas-hero--editorial h1 { font-size: 50px; }
	.pas-hero__scroll { display: none; }
	.pas-intro-band { padding: 82px 0; }
	.pas-intro-band__grid { grid-template-columns: 1fr; gap: 30px; }
	.pas-intro-band__copy { grid-column: auto; }
	.pas-intro-band h2 { font-size: 42px; }
	.pas-visual-story { display: block; min-height: 0; }
	.pas-visual-story figure { height: 62svh; border: 0; border-bottom: 1px solid rgba(255,255,255,.25); }
	.pas-service-grid { grid-template-columns: 1fr; }
	.pas-service-card { min-height: 0; padding: 36px 24px 36px 70px; }
	.pas-service-card:nth-child(odd) { border-inline-end: 0; }
	.pas-service-card::before { left: 18px; top: 38px; }
	.pas-feature-case__image { min-height: 480px; }
	.pas-feature-case__content { padding: 62px 24px; }
	.pas-process { grid-template-columns: 1fr; }
	.pas-process article { min-height: 0; border-inline-end: 0; }
	.pas-project-grid { display: block; }
	.pas-project-card { margin-bottom: 36px; }
	.pas-project-card img, .pas-project-card:nth-child(1) img, .pas-project-card:nth-child(4) img { aspect-ratio: 4 / 5; }
	.pas-quote-band { padding: 92px 0; }
	.pas-footer__grid { grid-template-columns: 1fr; gap: 36px; }
	.pas-footer__bottom { align-items: flex-start; flex-direction: column; }
}

/* Stronger minimal editorial refinement. */
.pas-header { border-bottom: 1px solid #171717; }
.pas-header__inner { gap: 36px; }
.pas-logo span { width: 42px; height: 42px; }
.pas-nav__list { gap: 34px; }

.pas-hero--editorial .pas-hero__overlay { background: rgba(0, 0, 0, .48); }
.pas-hero--editorial .pas-hero__content {
	max-width: var(--pas-container);
	padding-inline: 30px 28%;
	border-inline-start: 2px solid var(--pas-gold);
}
.pas-hero__meta { display: flex; align-items: center; gap: 22px; margin-bottom: 22px; }
.pas-hero__meta .pas-eyebrow { margin: 0; }
.pas-hero__meta span { border-inline-start: 1px solid rgba(255,255,255,.5); padding-inline-start: 22px; color: rgba(255,255,255,.72); font-size: 10px; font-weight: 800; letter-spacing: .18em; text-transform: uppercase; }
.pas-hero--editorial h1 { max-width: 900px; font-size: clamp(58px, 7vw, 96px); }
.pas-hero__edition { position: absolute; right: 42px; top: 155px; display: flex; align-items: center; gap: 14px; color: rgba(255,255,255,.8); writing-mode: vertical-rl; transform: rotate(180deg); }
.pas-hero__edition span { font-size: 9px; font-weight: 800; letter-spacing: .28em; text-transform: uppercase; }
.pas-hero__edition strong { color: transparent; font-family: "Playfair Display", Georgia, serif; font-size: 46px; font-weight: 600; letter-spacing: .08em; -webkit-text-stroke: 1px rgba(255,255,255,.46); }
.pas-hero__scroll { display: none; }

.pas-capability-rail { background: var(--pas-gold); }
.pas-capability-rail .pas-container { display: grid; grid-template-columns: repeat(5, 1fr); }
.pas-capability-rail span { display: flex; align-items: center; gap: 14px; min-height: 82px; border-inline-end: 1px solid rgba(255,255,255,.32); padding: 0 22px; color: #111; font-size: 11px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.pas-capability-rail span:first-child { border-inline-start: 1px solid rgba(255,255,255,.32); }
.pas-capability-rail b { color: #fff; font-family: "Playfair Display", Georgia, serif; font-size: 20px; font-weight: 600; }

.pas-intro-band { padding: 105px 0; }
.pas-intro-band__grid { grid-template-columns: .35fr 1.35fr .65fr; }
.pas-intro-band h2 { max-width: 820px; }
.pas-kicker { position: relative; padding-top: 18px; }
.pas-kicker::before { content: ""; position: absolute; inset: 0 auto auto 0; width: 42px; height: 2px; background: var(--pas-gold); }

.pas-visual-story { grid-template-columns: 1.7fr .65fr .65fr; min-height: 640px; }
.pas-visual-story figure::after { content: ""; position: absolute; inset: 0; border: 0 solid var(--pas-gold); pointer-events: none; transition: border-width .25s ease; }
.pas-visual-story figure:hover::after { border-width: 6px; }
.pas-visual-story figcaption { display: flex; align-items: center; gap: 14px; inset: auto 0 0; min-height: 58px; background: rgba(8,8,8,.86); padding: 0 22px; }
.pas-visual-story figcaption b { color: var(--pas-gold); font-family: "Playfair Display", Georgia, serif; font-size: 18px; }

.pas-services-editorial { border-top: 1px solid #111; }
.pas-service-card { min-height: 285px; padding-top: 38px; padding-bottom: 38px; overflow: hidden; }
.pas-service-card::after { content: "0" counter(service); position: absolute; right: 20px; bottom: -32px; color: rgba(16,16,16,.035); font-family: "Playfair Display", Georgia, serif; font-size: 132px; line-height: 1; pointer-events: none; }
.pas-service-card:hover { box-shadow: inset 0 4px 0 var(--pas-gold); }
.pas-card h3 { max-width: 430px; }

.pas-feature-case { min-height: 700px; }
.pas-feature-case__image { position: relative; }
.pas-feature-case__image::after { content: "OBJECT / 01"; position: absolute; right: 22px; top: 22px; border: 1px solid rgba(255,255,255,.65); padding: 9px 12px; color: #fff; font-size: 9px; font-weight: 800; letter-spacing: .16em; }
.pas-feature-case__content { border-inline-start: 1px solid rgba(255,255,255,.2); }

.pas-process { counter-reset: process; }
.pas-process article { position: relative; overflow: hidden; }
.pas-process article::after { content: "+"; position: absolute; right: 15px; bottom: 9px; color: var(--pas-gold); font-size: 28px; font-weight: 300; }

.pas-stats { background: #111; }
.pas-stats div { background: #111; border-inline-end: 1px solid rgba(255,255,255,.15); }
.pas-stats strong { color: var(--pas-gold); font-size: 54px; }
.pas-stats span { color: rgba(255,255,255,.66); }
.pas-chip-grid { gap: 0; }
.pas-chip-grid span { border: 0; border-top: 1px solid var(--pas-line); background: transparent; padding: 21px 0; }
.pas-chip-grid span:last-child { border-bottom: 1px solid var(--pas-line); }

.pas-quote-band { background: #101010; text-align: start; }
.pas-quote-band blockquote { position: relative; max-width: 1120px; margin-inline: 0; padding-inline-start: 90px; }
.pas-quote-band blockquote::before { content: "“"; position: absolute; left: 0; top: -34px; color: var(--pas-gold); font-size: 112px; line-height: 1; }
.pas-quote-band .pas-placeholder-note { padding-inline-start: 90px; color: #8c8881; }

.pas-page-hero .pas-container { border-inline-start: 2px solid var(--pas-gold); padding-inline-start: 28px; }
.pas-cta { position: relative; overflow: hidden; box-shadow: inset 0 5px 0 var(--pas-gold); }
.pas-cta::after { content: "PAS"; position: absolute; right: 3%; bottom: -30%; color: transparent; font-family: "Playfair Display", Georgia, serif; font-size: clamp(120px, 20vw, 290px); line-height: 1; -webkit-text-stroke: 1px rgba(255,255,255,.08); pointer-events: none; }
.pas-cta > * { position: relative; z-index: 1; }

@media (max-width: 1024px) {
	.pas-hero--editorial .pas-hero__content { padding-inline-end: 18%; }
	.pas-capability-rail .pas-container { grid-template-columns: repeat(3, 1fr); }
	.pas-capability-rail span { border-bottom: 1px solid rgba(255,255,255,.32); }
	.pas-intro-band__grid { grid-template-columns: .35fr 1.65fr; }
}

@media (max-width: 700px) {
	.pas-header__inner { gap: 12px; }
	.pas-hero--editorial .pas-hero__content { padding-inline: 18px 0; }
	.pas-hero__meta { align-items: flex-start; flex-direction: column; gap: 8px; }
	.pas-hero__meta span { border-inline-start: 0; padding-inline-start: 0; }
	.pas-hero__edition { display: none; }
	.pas-capability-rail .pas-container { width: 100%; grid-template-columns: repeat(2, 1fr); }
	.pas-capability-rail span { min-height: 68px; padding: 0 14px; }
	.pas-capability-rail span:nth-child(5) { grid-column: 1 / -1; }
	.pas-intro-band__grid { grid-template-columns: 1fr; }
	.pas-visual-story figcaption { inset: auto 0 0; }
	.pas-service-card::after { font-size: 96px; }
	.pas-quote-band blockquote { padding-inline-start: 0; padding-top: 54px; }
	.pas-quote-band blockquote::before { top: -22px; }
	.pas-quote-band .pas-placeholder-note { padding-inline-start: 0; }
	.pas-page-hero .pas-container { padding-inline-start: 18px; }
}

/* Motion system and reduced home-page density. */
.home .pas-section { padding: 100px 0; }
.home .pas-visual-story { min-height: 580px; }
.home .pas-service-card { min-height: 250px; }
.home .pas-process article { min-height: 250px; }
.home .pas-quote-band { padding: 105px 0; }

.pas-motion-ready .pas-reveal {
	opacity: 0;
	transform: translate3d(0, 24px, 0);
	transition: opacity .72s cubic-bezier(.22, 1, .36, 1), transform .72s cubic-bezier(.22, 1, .36, 1);
	transition-delay: var(--pas-delay, 0ms);
	will-change: opacity, transform;
}
.pas-motion-ready .pas-reveal.is-visible { opacity: 1; transform: translate3d(0, 0, 0); }

.pas-motion-ready .pas-hero__meta,
.pas-motion-ready .pas-hero--editorial h1,
.pas-motion-ready .pas-hero__lead,
.pas-motion-ready .pas-hero .pas-actions,
.pas-motion-ready .pas-hero__edition {
	opacity: 0;
	transform: translate3d(0, 28px, 0);
	animation: pas-hero-enter .9s cubic-bezier(.22, 1, .36, 1) forwards;
}
.pas-motion-ready .pas-hero__meta { animation-delay: .12s; }
.pas-motion-ready .pas-hero--editorial h1 { animation-delay: .24s; }
.pas-motion-ready .pas-hero__lead { animation-delay: .38s; }
.pas-motion-ready .pas-hero .pas-actions { animation-delay: .5s; }
.pas-motion-ready .pas-hero__edition { animation-delay: .65s; }
.pas-motion-ready .pas-hero--editorial .pas-hero__media { animation: pas-hero-image 1.8s cubic-bezier(.22, 1, .36, 1) both; }

@keyframes pas-hero-enter {
	to { opacity: 1; transform: translate3d(0, 0, 0); }
}
@keyframes pas-hero-image {
	from { opacity: .55; transform: scale(1.08); }
	to { opacity: 1; transform: scale(1.02); }
}

.pas-btn, .pas-text-link, .pas-project-card img, .pas-visual-story img { transition-duration: .45s; transition-timing-function: cubic-bezier(.22, 1, .36, 1); }
.pas-btn:hover { transform: translateY(-3px); }
.pas-text-link span { display: inline-block; transition: transform .35s cubic-bezier(.22, 1, .36, 1); }
.pas-text-link:hover span { transform: translateX(6px); }

@media (max-width: 700px) {
	.home .pas-section { padding: 72px 0; }
	.home .pas-visual-story { display: flex; min-height: 0; overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-width: thin; }
	.home .pas-visual-story figure { flex: 0 0 86vw; height: 440px; scroll-snap-align: start; }
	.home .pas-process { display: flex; overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-width: thin; }
	.home .pas-process article { flex: 0 0 78vw; min-height: 230px; scroll-snap-align: start; }
	.home .pas-service-card { min-height: 0; }
	.home .pas-quote-band { padding: 82px 0; }
}

@media (prefers-reduced-motion: reduce) {
	html { scroll-behavior: auto; }
	*, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; scroll-behavior: auto !important; transition-duration: .01ms !important; }
	.pas-reveal { opacity: 1 !important; transform: none !important; }
}

/* Lightweight cinematic parallax. */
[data-parallax-bg] { will-change: background-position, transform; }
.pas-hero--editorial [data-parallax-bg] { background-position: center calc(38% + var(--pas-parallax-y, 0px)); }
.pas-page-hero [data-parallax-bg] { background-position: center calc(50% + var(--pas-parallax-y, 0px)); }
[data-parallax-media] img {
	height: calc(100% + 96px);
	margin-top: -48px;
	transform: translate3d(0, var(--pas-parallax-y, 0px), 0) scale(1.04);
	will-change: transform;
}
[data-parallax-media]:hover img { transform: translate3d(0, var(--pas-parallax-y, 0px), 0) scale(1.075); }
.pas-motion-ready .pas-hero--editorial .pas-hero__media,
.pas-motion-ready .pas-page-hero__media { animation: pas-cinematic-zoom 18s ease-in-out infinite alternate; }

@keyframes pas-cinematic-zoom {
	from { transform: scale(1.02); }
	to { transform: scale(1.075); }
}

@media (max-width: 700px) {
	[data-parallax-media] img { height: calc(100% + 56px); margin-top: -28px; }
}

@media (prefers-reduced-motion: reduce) {
	[data-parallax-bg] { background-position: center !important; }
	[data-parallax-media] img { height: 100%; margin-top: 0; transform: none !important; }
}

/* Version 2: cinematic, graphic and deliberately minimal. */
.pas-scroll-progress { position: absolute; inset: auto 0 -1px; z-index: 3; height: 2px; background: var(--pas-gold); transform: scaleX(0); transform-origin: left center; }
.home .pas-header { background: transparent; border-bottom-color: rgba(255,255,255,.22); }
.home .pas-header.is-scrolled { background: rgba(7,7,7,.9); border-bottom-color: rgba(255,255,255,.14); box-shadow: none; backdrop-filter: blur(18px); }
.home .pas-logo, .home .pas-logo strong, .home .pas-nav a { color: #fff; }
.home .pas-logo span { border-color: var(--pas-gold); background: var(--pas-gold); color: #111; }
.home .pas-nav .pas-btn { border: 1px solid rgba(255,255,255,.65); background: transparent; color: #fff; }
.home .pas-nav .pas-btn:hover { border-color: var(--pas-gold); background: var(--pas-gold); color: #111; }
.home .pas-menu-toggle { border-color: rgba(255,255,255,.45); }
.home .pas-menu-toggle span:not(.screen-reader-text) { background: #fff; }
.home .pas-mobile-menu { border-color: rgba(255,255,255,.18); background: rgba(8,8,8,.96); }
.home .pas-mobile-menu a { color: #fff; }
.home .pas-whatsapp { opacity: 0; pointer-events: none; transform: translateY(12px); transition: opacity .35s ease, transform .35s ease; }
.home.pas-page-scrolled .pas-whatsapp { opacity: 1; pointer-events: auto; transform: translateY(0); }

.pas-v2-hero { position: relative; min-height: 100svh; overflow: hidden; background: #050505; color: #fff; }
.pas-v2-hero__video { position: absolute; inset: -5%; width: 110%; height: 110%; object-fit: cover; filter: saturate(.72) contrast(1.1) brightness(.76); transform: translate3d(0,var(--pas-parallax-y,0),0) scale(1.04); will-change: transform; }
.pas-v2-hero__veil { position: absolute; inset: 0; background: rgba(0,0,0,.34); }
.pas-v2-hero::after { content: ""; position: absolute; inset: 90px auto 0 4vw; width: 1px; background: rgba(185,145,63,.8); }
.pas-v2-hero__content { position: relative; display: flex; flex-direction: column; justify-content: flex-end; min-height: 100svh; padding-top: 150px; padding-bottom: 62px; }
.pas-v2-hero__meta { display: flex; gap: 0; margin-bottom: 28px; }
.pas-v2-hero__meta span { border-inline-end: 1px solid rgba(255,255,255,.45); padding: 0 20px; color: rgba(255,255,255,.78); font-size: 9px; font-weight: 800; letter-spacing: .2em; text-transform: uppercase; }
.pas-v2-hero__meta span:first-child { padding-inline-start: 0; color: var(--pas-gold); }
.pas-v2-hero__meta span:last-child { border: 0; }
.pas-v2-hero h1 { margin: 0; font-family: "Playfair Display", Georgia, serif; font-size: clamp(64px, 9.2vw, 142px); font-weight: 600; line-height: .83; }
.pas-v2-hero h1 span { display: block; }
.pas-v2-hero h1 span:first-child { font-size: .55em; font-style: italic; }
.pas-v2-hero__outline { color: transparent; -webkit-text-stroke: 1px rgba(255,255,255,.85); }
.pas-v2-hero__footer { display: grid; grid-template-columns: minmax(0,620px) auto; align-items: end; justify-content: space-between; gap: 44px; margin-top: 34px; }
.pas-v2-hero__footer p { margin: 0; color: rgba(255,255,255,.78); font-size: 15px; line-height: 1.75; }
.pas-v2-hero .pas-actions { margin: 0; }
.pas-v2-hero .pas-btn { border: 1px solid #fff; background: #fff; color: #111; }
.pas-v2-hero .pas-btn:hover { border-color: var(--pas-gold); background: var(--pas-gold); }
.pas-v2-hero .pas-btn--secondary { background: transparent; color: #fff; }
.pas-v2-hero__index { position: absolute; right: 3vw; top: 120px; display: flex; align-items: center; gap: 14px; writing-mode: vertical-rl; color: rgba(255,255,255,.76); }
.pas-v2-hero__index span { font-size: 9px; font-weight: 800; letter-spacing: .22em; text-transform: uppercase; }
.pas-v2-hero__index strong { color: var(--pas-gold); font-family: "Playfair Display", Georgia, serif; font-size: 50px; font-weight: 600; }
.pas-video-toggle { position: absolute; right: 3vw; bottom: 28px; z-index: 3; display: grid; place-items: center; width: 48px; height: 48px; border: 1px solid rgba(255,255,255,.55); border-radius: 0; background: rgba(0,0,0,.28); color: #fff; cursor: pointer; }
.pas-video-toggle:hover { border-color: var(--pas-gold); color: var(--pas-gold); }
.pas-video-toggle span { font-size: 11px; font-weight: 900; letter-spacing: .05em; }
.pas-video-toggle span {
	position: relative;
	display: block;
	width: 12px;
	height: 14px;
}
.pas-video-toggle span[data-state="pause"]::before,
.pas-video-toggle span[data-state="pause"]::after {
	content: "";
	position: absolute;
	top: 1px;
	bottom: 1px;
	width: 3px;
	background: currentColor;
}
.pas-video-toggle span[data-state="pause"]::before { left: 1px; }
.pas-video-toggle span[data-state="pause"]::after { right: 1px; }
.pas-video-toggle span[data-state="play"] {
	width: 0;
	height: 0;
	border-top: 7px solid transparent;
	border-bottom: 7px solid transparent;
	border-left: 11px solid currentColor;
}

.pas-v2-ticker { overflow: hidden; border-block: 1px solid #111; background: #fff; }
.pas-v2-ticker__track { display: flex; align-items: center; width: max-content; min-height: 82px; animation: pas-v2-ticker 28s linear infinite; }
.pas-v2-ticker span { padding: 0 28px; color: #111; font-family: "Playfair Display", Georgia, serif; font-size: 27px; white-space: nowrap; }
.pas-v2-ticker i { color: var(--pas-gold); font-size: 26px; font-style: normal; }
@keyframes pas-v2-ticker { to { transform: translateX(-50%); } }

.pas-v2-statement { padding: 145px 0; background: #fff; }
.pas-v2-statement__grid { display: grid; grid-template-columns: .3fr 1.35fr .55fr; gap: 54px; align-items: start; }
.pas-v2-statement h2 { margin: 0; font-family: "Playfair Display", Georgia, serif; font-size: clamp(48px,6vw,86px); font-weight: 600; line-height: 1.02; }
.pas-v2-statement__grid > div p { margin-top: 0; color: var(--pas-muted); line-height: 1.9; }

.pas-v2-services { padding: 140px 0; background: #090909; color: #fff; }
.pas-v2-services__grid { display: grid; grid-template-columns: .72fr 1.28fr; gap: 90px; align-items: start; }
.pas-v2-services__intro { position: sticky; top: 125px; }
.pas-v2-services__intro h2 { max-width: 520px; margin: 0; font-family: "Playfair Display", Georgia, serif; font-size: clamp(48px,5.2vw,76px); font-weight: 600; line-height: 1.02; }
.pas-v2-services__intro > p:not(.pas-eyebrow) { max-width: 420px; color: #9b9892; line-height: 1.8; }
.pas-v2-services .pas-btn--secondary { border-color: rgba(255,255,255,.45); color: #fff; }
.pas-v2-services__list { border-top: 1px solid rgba(255,255,255,.28); }
.pas-v2-service-row { position: relative; display: grid; grid-template-columns: 52px 1fr auto; gap: 26px; align-items: start; min-height: 190px; border-bottom: 1px solid rgba(255,255,255,.28); padding: 32px 18px 32px 0; color: #fff; transition: padding .45s cubic-bezier(.22,1,.36,1), background .45s ease; }
.pas-v2-service-row > span { color: var(--pas-gold); font-family: "Playfair Display", Georgia, serif; font-size: 18px; }
.pas-v2-service-row h3 { margin: 0; font-family: "Playfair Display", Georgia, serif; font-size: 32px; font-weight: 600; }
.pas-v2-service-row p { max-width: 580px; margin-bottom: 0; color: #96928c; line-height: 1.7; }
.pas-v2-service-row b { color: var(--pas-gold); font-size: 25px; font-weight: 400; transition: transform .4s cubic-bezier(.22,1,.36,1); }
.pas-v2-service-row:hover { background: rgba(255,255,255,.045); padding-inline-start: 18px; }
.pas-v2-service-row:hover b { transform: translate(5px,-5px); }

.pas-v2-feature { display: grid; grid-template-columns: 1.22fr .78fr; min-height: 760px; background: var(--pas-gold); }
.pas-v2-feature__media { overflow: hidden; }
.pas-v2-feature__media img { width: 100%; object-fit: cover; }
.pas-v2-feature__content { display: flex; flex-direction: column; justify-content: center; padding: clamp(52px,7vw,105px); color: #111; }
.pas-v2-feature__content .pas-eyebrow { color: rgba(17,17,17,.64); }
.pas-v2-feature h2 { margin: 0; font-family: "Playfair Display", Georgia, serif; font-size: clamp(48px,5.2vw,78px); font-weight: 600; line-height: .98; }
.pas-v2-feature p { line-height: 1.8; }
.pas-v2-feature ul { margin: 22px 0 34px; padding: 0; list-style: none; }
.pas-v2-feature li { border-top: 1px solid rgba(17,17,17,.28); padding: 13px 0; }
.pas-v2-feature li:last-child { border-bottom: 1px solid rgba(17,17,17,.28); }
.pas-v2-feature .pas-btn { align-self: flex-start; }

.pas-v2-work { padding: 140px 0; background: #f5f3ee; }
.pas-v2-work__heading { display: flex; align-items: end; justify-content: space-between; gap: 40px; margin-bottom: 65px; }
.pas-v2-work__heading h2 { max-width: 850px; margin: 0; font-family: "Playfair Display", Georgia, serif; font-size: clamp(48px,6vw,84px); font-weight: 600; line-height: 1.01; }
.pas-v2-work .pas-project-card { grid-column: span 6 !important; background: transparent; }
.pas-v2-work .pas-project-card img { aspect-ratio: 16/10 !important; filter: saturate(.7) contrast(1.04); }
.pas-v2-work .pas-project-card:hover img { filter: saturate(1); }
.pas-v2-work .pas-project-card h3 { color: #111; font-size: 30px; }
.pas-v2-work .pas-project-card small { color: #66625d; }
.pas-v2-work .pas-project-card a:last-child { color: #111; border-color: #111; }

.pas-v2-manifesto { padding: 145px 0; background: #0a0a0a; color: #fff; }
.pas-v2-manifesto blockquote { max-width: 1120px; margin: 20px 0 38px; font-family: "Playfair Display", Georgia, serif; font-size: clamp(50px,7vw,98px); line-height: 1; }
.pas-v2-manifesto blockquote::first-letter { color: var(--pas-gold); }
.pas-v2-manifesto .pas-container > p:last-child { color: #78746e; font-size: 10px; letter-spacing: .14em; text-transform: uppercase; }

.pas-motion-ready .pas-v2-hero__meta,
.pas-motion-ready .pas-v2-hero h1 span,
.pas-motion-ready .pas-v2-hero__footer,
.pas-motion-ready .pas-v2-hero__index {
	opacity: 0;
	transform: translate3d(0,34px,0);
	animation: pas-hero-enter 1s cubic-bezier(.22,1,.36,1) forwards;
}
.pas-motion-ready .pas-v2-hero__meta { animation-delay: .15s; }
.pas-motion-ready .pas-v2-hero h1 span:nth-child(1) { animation-delay: .25s; }
.pas-motion-ready .pas-v2-hero h1 span:nth-child(2) { animation-delay: .36s; }
.pas-motion-ready .pas-v2-hero h1 span:nth-child(3) { animation-delay: .47s; }
.pas-motion-ready .pas-v2-hero__footer { animation-delay: .62s; }
.pas-motion-ready .pas-v2-hero__index { animation-delay: .75s; }
.pas-motion-ready .pas-v2-hero__video { animation: pas-v2-video-in 1.8s ease both; }
@keyframes pas-v2-video-in { from { opacity: 0; filter: saturate(.35) contrast(1.18) brightness(.48); } to { opacity: 1; } }

@media (max-width: 1024px) {
	.pas-v2-statement__grid { grid-template-columns: .35fr 1.65fr; }
	.pas-v2-statement__grid > div { grid-column: 2; }
	.pas-v2-services__grid { grid-template-columns: 1fr; gap: 60px; }
	.pas-v2-services__intro { position: static; }
	.pas-v2-feature { grid-template-columns: 1fr; }
	.pas-v2-feature__media { min-height: 650px; }
}

@media (max-width: 700px) {
	.home .pas-header { padding: 10px 0; }
	.pas-v2-hero::after { inset-inline-start: 16px; }
	.pas-v2-hero__content { padding: 125px 28px 48px 34px; }
	.pas-v2-hero__meta { flex-wrap: wrap; gap: 8px 0; margin-bottom: 22px; }
	.pas-v2-hero__meta span { padding: 0 10px; font-size: 8px; }
	.pas-v2-hero h1 { font-size: clamp(40px,14vw,58px); line-height: .9; }
	.pas-v2-hero h1 span:first-child { font-size: .62em; }
	.pas-v2-hero__footer { grid-template-columns: 1fr; gap: 24px; }
	.pas-v2-hero__footer p { font-size: 14px; }
	.pas-v2-hero__index { display: none; }
	.pas-video-toggle { right: 16px; bottom: 16px; width: 42px; height: 42px; }
	.pas-v2-ticker__track { min-height: 66px; }
	.pas-v2-ticker span { padding: 0 20px; font-size: 22px; }
	.pas-v2-statement, .pas-v2-services, .pas-v2-work, .pas-v2-manifesto { padding: 88px 0; }
	.pas-v2-statement__grid { grid-template-columns: 1fr; gap: 30px; }
	.pas-v2-statement__grid > div { grid-column: auto; }
	.pas-v2-statement h2 { font-size: 45px; }
	.pas-v2-services__grid { gap: 48px; }
	.pas-v2-services__intro h2 { font-size: 49px; }
	.pas-v2-service-row { grid-template-columns: 34px 1fr auto; gap: 14px; min-height: 0; padding: 26px 0; }
	.pas-v2-service-row h3 { font-size: 25px; }
	.pas-v2-service-row p { font-size: 14px; }
	.pas-v2-feature__media { min-height: 480px; }
	.pas-v2-feature__content { padding: 68px 24px; }
	.pas-v2-feature h2 { font-size: 50px; }
	.pas-v2-work__heading { align-items: flex-start; flex-direction: column; margin-bottom: 44px; }
	.pas-v2-work__heading h2 { font-size: 49px; }
	.pas-v2-work .pas-project-card { margin-bottom: 30px; }
	.pas-v2-manifesto blockquote { font-size: 51px; }
}

@media (prefers-reduced-motion: reduce) {
	.pas-v2-ticker__track { animation: none; }
	.pas-v2-hero__video { transform: none !important; }
}

/* Version 3 case-study data presentation. */
.pas-project-card__metric { display: flex; align-items: baseline; gap: 12px; border-top: 1px solid var(--pas-line); margin: 18px 0; padding: 14px 0 !important; }
.pas-project-card__metric strong { color: var(--pas-gold); font-family: "Playfair Display", Georgia, serif; font-size: 32px; font-weight: 600; }
.pas-project-card__metric span { color: var(--pas-muted); font-size: 11px; line-height: 1.45; text-transform: uppercase; letter-spacing: .08em; }
.pas-v3-sample-label { margin-top: 24px; color: var(--pas-gold) !important; font-size: 10px !important; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.pas-v3-case-facts { background: var(--pas-gold); color: #111; }
.pas-v3-case-facts .pas-container { display: grid; grid-template-columns: 1fr 1fr 1fr 1.2fr; }
.pas-v3-case-facts .pas-container > div { min-height: 170px; border-inline-end: 1px solid rgba(17,17,17,.25); padding: 28px; }
.pas-v3-case-facts .pas-container > div:first-child { border-inline-start: 1px solid rgba(17,17,17,.25); }
.pas-v3-case-facts span { display: block; margin-bottom: 18px; font-size: 9px; font-weight: 800; letter-spacing: .15em; text-transform: uppercase; }
.pas-v3-case-facts strong { display: block; font-family: "Playfair Display", Georgia, serif; font-size: 23px; font-weight: 600; line-height: 1.15; }
.pas-v3-case-facts__metric strong { font-size: 48px; line-height: .8; }
.pas-v3-case-facts__metric small { display: block; margin-top: 14px; font-size: 11px; line-height: 1.5; text-transform: uppercase; letter-spacing: .06em; }
.pas-v3-case-story { background: #fff; }
.pas-v3-case-story__intro { display: grid; grid-template-columns: .4fr 1.6fr; gap: 44px; margin-bottom: 75px; }
.pas-v3-case-story__intro h2 { max-width: 900px; margin: 0; font-family: "Playfair Display", Georgia, serif; font-size: clamp(50px,6vw,86px); font-weight: 600; line-height: 1; }
.pas-v3-case-story__grid { display: grid; grid-template-columns: repeat(3,1fr); border-top: 1px solid #111; }
.pas-v3-case-story article { min-height: 360px; border-inline-end: 1px solid #111; border-bottom: 1px solid #111; padding: 32px; }
.pas-v3-case-story article:first-child { border-inline-start: 1px solid #111; }
.pas-v3-case-story article > span { color: var(--pas-gold); font-family: "Playfair Display", Georgia, serif; }
.pas-v3-case-story h3 { margin: 70px 0 18px; font-family: "Playfair Display", Georgia, serif; font-size: 34px; font-weight: 600; }
.pas-v3-case-story p { color: var(--pas-muted); line-height: 1.8; }
.pas-v3-case-scope { padding: 110px 0; background: #ece9e2; }
.pas-v3-case-gallery { padding-top: 95px; }
.pas-v3-case-quote { padding: 135px 0; background: #0a0a0a; color: #fff; }
.pas-v3-case-quote blockquote { max-width: 1080px; margin: 0; font-family: "Playfair Display", Georgia, serif; font-size: clamp(44px,6vw,82px); line-height: 1.08; }
.pas-v3-case-quote p { margin-top: 34px; color: var(--pas-gold); font-size: 10px; letter-spacing: .14em; text-transform: uppercase; }

@media (max-width: 1024px) {
	.pas-v3-case-facts .pas-container { grid-template-columns: repeat(2,1fr); }
	.pas-v3-case-story__grid { grid-template-columns: 1fr; }
	.pas-v3-case-story article { min-height: 0; border-inline-start: 1px solid #111; }
	.pas-v3-case-story h3 { margin-top: 38px; }
}

@media (max-width: 700px) {
	.pas-v3-case-facts .pas-container { width: 100%; grid-template-columns: 1fr; }
	.pas-v3-case-facts .pas-container > div { min-height: 0; border-inline: 0; border-bottom: 1px solid rgba(17,17,17,.25); padding: 24px; }
	.pas-v3-case-facts .pas-container > div:first-child { border-inline-start: 0; }
	.pas-v3-case-story__intro { grid-template-columns: 1fr; margin-bottom: 48px; }
	.pas-v3-case-story__intro h2 { font-size: 48px; }
	.pas-v3-case-story article { padding: 25px; }
	.pas-v3-case-scope { padding: 78px 0; }
	.pas-v3-case-gallery { padding-top: 72px; }
	.pas-v3-case-quote { padding: 88px 0; }
	.pas-v3-case-quote blockquote { font-size: 45px; }
}

/* Version 4: client-provided public portfolio references. */
.pas-reference-showcase { padding: 145px 0; background: #090909; color: #fff; }
.pas-reference-showcase__heading { display: grid; grid-template-columns: 1.3fr .7fr; gap: 80px; align-items: end; margin-bottom: 72px; }
.pas-reference-showcase__heading h2 { max-width: 870px; margin: 0; font-family: "Playfair Display", Georgia, serif; font-size: clamp(52px,6.2vw,88px); font-weight: 600; line-height: .98; }
.pas-reference-showcase__heading > p { max-width: 470px; margin: 0 0 7px; color: #98958f; font-size: 14px; line-height: 1.85; }
.pas-reference-grid { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); border-top: 1px solid rgba(255,255,255,.25); border-inline-start: 1px solid rgba(255,255,255,.25); }
.pas-reference-card { display: block; border-inline-end: 1px solid rgba(255,255,255,.25); border-bottom: 1px solid rgba(255,255,255,.25); padding: 24px; color: #fff; }
.pas-reference-card figure { position: relative; overflow: hidden; aspect-ratio: 16/10; margin: 0; background: #181818; }
.pas-reference-card figure::after { content: ""; position: absolute; inset: 0; border: 1px solid rgba(255,255,255,.14); pointer-events: none; }
.pas-reference-card figure img { width: 100%; height: 100%; object-fit: cover; object-position: top center; filter: saturate(.72) contrast(1.04); transition: transform .8s cubic-bezier(.22,1,.36,1), filter .45s ease; }
.pas-reference-card figure span { position: absolute; right: 0; bottom: 0; min-width: 56px; padding: 13px 15px; background: var(--pas-gold); color: #111; font-family: "Playfair Display", Georgia, serif; font-size: 19px; text-align: center; }
.pas-reference-card__body { padding: 27px 4px 14px; }
.pas-reference-card__body > p { margin: 0 0 14px; color: var(--pas-gold); font-size: 9px; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.pas-reference-card h3 { max-width: 560px; margin: 0; font-family: "Playfair Display", Georgia, serif; font-size: 34px; font-weight: 600; line-height: 1.05; }
.pas-reference-card__body > div { display: grid; grid-template-columns: 1fr auto; gap: 34px; align-items: end; margin-top: 30px; }
.pas-reference-card__body span { max-width: 480px; color: #918e88; font-size: 12px; line-height: 1.7; }
.pas-reference-card__body strong { color: #fff; font-size: 10px; letter-spacing: .11em; text-transform: uppercase; white-space: nowrap; }
.pas-reference-card:hover figure img { filter: saturate(1); transform: scale(1.025); }
.pas-reference-card:hover .pas-reference-card__body strong { color: var(--pas-gold); }

@media (max-width: 1024px) {
	.pas-reference-showcase__heading { grid-template-columns: 1fr; gap: 28px; }
	.pas-reference-showcase__heading > p { max-width: 700px; }
	.pas-reference-card__body > div { grid-template-columns: 1fr; gap: 20px; }
}

@media (max-width: 700px) {
	.pas-reference-showcase { padding: 88px 0; }
	.pas-reference-showcase__heading { margin-bottom: 44px; }
	.pas-reference-showcase__heading h2 { font-size: 48px; }
	.pas-reference-grid { grid-template-columns: 1fr; }
	.pas-reference-card { padding: 14px; }
	.pas-reference-card h3 { font-size: 28px; }
	.pas-reference-card__body { padding: 23px 2px 12px; }
}

/* Version 5: high-key monochrome editorial direction. */
.home { background: #fff; }
.home .pas-main { overflow: visible; }
.home .pas-header { top: 28px; left: 28px; right: 28px; width: auto; border: 0; background: transparent; padding: 14px 20px; }
.home .pas-header.is-scrolled { top: 0; left: 0; right: 0; padding: 11px 28px; background: rgba(255,255,255,.93); border-bottom: 1px solid rgba(17,17,17,.12); backdrop-filter: blur(15px); }
.home .pas-header__inner { max-width: none; }
.home .pas-logo { color: #111; }
.home .pas-logo span { width: 46px; height: 32px; border: 0; background: #292929; color: #fff; font-family: Manrope,Arial,sans-serif; font-size: 10px; font-weight: 500; }
.home .pas-logo strong { color: #111; font-size: 10px; font-weight: 600; letter-spacing: .17em; }
.home .pas-nav a { color: #222; font-size: 10px; font-weight: 600; letter-spacing: .09em; }
.home .pas-nav .pas-btn { min-height: 38px; border: 1px solid #222; background: transparent; color: #111; padding: 0 18px; }
.home .pas-nav .pas-btn:hover { background: #222; color: #fff; }
.home .pas-menu-toggle { border: 0; }
.home .pas-menu-toggle span:not(.screen-reader-text) { background: #222; }
.home .pas-mobile-menu { background: rgba(255,255,255,.98); }
.home .pas-mobile-menu a { color: #111; }
.home .pas-scroll-progress { background: #111; }

.pas-v5-frame { margin: 28px; color: #252525; background: #f6f6f6; }
.pas-v5-hero { position: relative; min-height: calc(100svh - 56px); overflow: hidden; background: #eee; }
.pas-v5-hero__video { position: absolute; inset: -4%; width: 108%; height: 108%; object-fit: cover; object-position: center 46%; filter: grayscale(1) brightness(1.62) contrast(.62); opacity: .82; transform: translate3d(0,var(--pas-parallax-y,0),0) scale(1.03); }
.pas-v5-hero__wash { position: absolute; inset: 0; background: linear-gradient(90deg,rgba(255,255,255,.04) 0%,rgba(255,255,255,.25) 43%,rgba(255,255,255,.78) 100%); }
.pas-v5-hero__brand { position: absolute; left: 26px; top: 95px; color: rgba(20,20,20,.52); font-size: 9px; font-weight: 700; letter-spacing: .24em; text-transform: uppercase; writing-mode: vertical-rl; }
.pas-v5-hero__content { position: absolute; top: 50%; left: 54%; width: min(620px,42vw); transform: translateY(-45%); }
.pas-v5-hero__content > p { margin: 0 0 25px; color: #777; font-size: 9px; font-weight: 600; letter-spacing: .2em; text-transform: uppercase; }
.pas-v5-hero h1 { margin: 0 0 35px; color: #252525; font-family: Manrope,Arial,sans-serif; font-size: clamp(52px,6.2vw,98px); font-weight: 400; letter-spacing: 0; line-height: .88; }
.pas-v5-hero h1 span { color: transparent; -webkit-text-stroke: 1px rgba(37,37,37,.82); }
.pas-v5-line-link { display: inline-block; border-bottom: 1px solid currentColor; padding: 0 0 7px; color: #222; font-size: 10px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; }
.pas-v5-line-link:hover { color: #8b6b2c; padding-inline-start: 7px; }
.pas-v5-hero__caption { position: absolute; left: 28px; bottom: 24px; color: #555; font-size: 8px; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; }
.pas-v5-video-toggle { right: 22px; bottom: 18px; width: 42px; height: 42px; border-color: rgba(20,20,20,.35); background: rgba(255,255,255,.35); color: #222; }

.pas-v5-section { position: relative; display: grid; grid-template-columns: 165px minmax(0,1fr); min-height: 720px; padding: 110px 7vw 110px 0; background: #f8f8f8; }
.pas-v5-section:nth-of-type(odd) { background: #f1f1f1; }
.pas-v5-marker { display: flex; align-items: center; flex-direction: column; padding-top: 10px; color: #313131; }
.pas-v5-marker strong { font-size: 52px; font-weight: 400; line-height: 1; }
.pas-v5-marker i { width: 1px; height: 42px; margin: 20px 0; background: currentColor; }
.pas-v5-marker span { font-size: 9px; font-weight: 600; letter-spacing: .2em; text-transform: uppercase; writing-mode: vertical-rl; }
.pas-v5-marker--light { color: #fff; }
.pas-v5-section__body { min-width: 0; max-width: 1220px; }
.pas-v5-overline { margin: 0 0 18px; color: #8e8e8e; font-size: 9px; font-weight: 700; letter-spacing: .21em; text-transform: uppercase; }
.pas-v5-heading { display: grid; grid-template-columns: 1.2fr .8fr; gap: 70px; align-items: end; margin-bottom: 65px; }
.pas-v5-heading h2, .pas-v5-intro h2, .pas-v5-object h2, .pas-v5-contact h2 { margin: 0; color: #292929; font-family: Manrope,Arial,sans-serif; font-size: clamp(47px,5.2vw,76px); font-weight: 400; letter-spacing: 0; line-height: .98; }
.pas-v5-heading > p { max-width: 470px; margin: 0 0 7px; color: #767676; font-size: 13px; line-height: 1.9; }

.pas-v5-intro { align-items: center; background: #fff !important; }
.pas-v5-intro__body { display: grid; grid-template-columns: 1.35fr .65fr; gap: 80px; align-items: end; }
.pas-v5-intro__body > .pas-v5-overline { grid-column: 1/-1; margin-bottom: -35px; }
.pas-v5-intro h2 { max-width: 850px; }
.pas-v5-intro__copy { max-width: 450px; }
.pas-v5-intro__copy p { color: #747474; font-size: 14px; line-height: 1.9; }
.pas-v5-intro__copy .pas-v5-line-link { margin-top: 20px; }

.pas-v5-services { background: #f1f1f1; }
.pas-v5-service-list { border-top: 1px solid #b9b9b9; margin-bottom: 40px; }
.pas-v5-service-list a { position: relative; display: grid; grid-template-columns: 46px minmax(260px,.8fr) 1fr 34px; gap: 25px; align-items: start; min-height: 145px; border-bottom: 1px solid #b9b9b9; padding: 27px 16px 25px 0; color: #292929; transition: background .4s ease,padding .45s cubic-bezier(.22,1,.36,1); }
.pas-v5-service-list small { padding-top: 7px; color: #999; font-size: 9px; }
.pas-v5-service-list h3 { margin: 0; font-size: 26px; font-weight: 400; line-height: 1.2; }
.pas-v5-service-list p { max-width: 520px; margin: 5px 0 0; color: #7b7b7b; font-size: 12px; line-height: 1.75; }
.pas-v5-service-list b { font-size: 18px; font-weight: 400; }
.pas-v5-service-list a:hover { background: #fff; padding-inline-start: 18px; }

.pas-v5-work { background: #fafafa !important; }
.pas-v5-work__layout { display: grid; grid-template-columns: 155px 1fr; gap: 48px; align-items: start; }
.pas-v5-work__layout nav { position: sticky; top: 115px; display: flex; align-items: flex-start; flex-direction: column; gap: 20px; }
.pas-v5-work__layout nav span { margin-bottom: 10px; padding: 7px 11px; background: #282828; color: #fff; font-size: 9px; letter-spacing: .12em; text-transform: uppercase; }
.pas-v5-work__layout nav a { color: #777; font-size: 10px; line-height: 1.5; text-transform: uppercase; }
.pas-v5-work__layout nav a:hover { color: #111; }
.pas-v5-work__grid { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 30px; }
.pas-v5-work-card { color: #262626; }
.pas-v5-work-card figure { position: relative; overflow: hidden; aspect-ratio: 16/10; margin: 0; background: #ddd; }
.pas-v5-work-card img { width: 100%; height: 100%; object-fit: cover; object-position: top center; filter: grayscale(1) contrast(.9) brightness(1.1); transition: filter .45s ease,transform .8s cubic-bezier(.22,1,.36,1); }
.pas-v5-work-card figure span { position: absolute; right: 0; bottom: 0; padding: 10px 13px; background: #fff; font-size: 10px; }
.pas-v5-work-card > div { position: relative; min-height: 125px; padding: 18px 90px 25px 0; }
.pas-v5-work-card h3 { margin: 0; font-size: 20px; font-weight: 400; line-height: 1.25; }
.pas-v5-work-card p { margin: 7px 0 0; color: #8a8a8a; font-size: 9px; letter-spacing: .1em; text-transform: uppercase; }
.pas-v5-work-card b { position: absolute; right: 0; top: 20px; font-size: 9px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.pas-v5-work-card:hover img { filter: grayscale(.15) contrast(1); transform: scale(1.025); }

.pas-v5-object { grid-template-columns: 165px 1.15fr .85fr; min-height: 760px; padding: 0; background: #262626 !important; color: #fff; }
.pas-v5-object .pas-v5-marker { padding-top: 110px; }
.pas-v5-object__image { overflow: hidden; }
.pas-v5-object__image img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(1) contrast(.95); }
.pas-v5-object__copy { display: flex; justify-content: center; flex-direction: column; padding: 70px clamp(40px,6vw,90px); }
.pas-v5-object h2 { color: #fff; font-size: clamp(43px,4.4vw,67px); }
.pas-v5-object__copy > p:not(.pas-v5-overline) { color: #aaa; font-size: 13px; line-height: 1.9; }
.pas-v5-object .pas-v5-line-link { align-self: flex-start; margin-top: 20px; color: #fff; }

.pas-v5-process { min-height: 660px; background: #fff !important; }
.pas-v5-process__steps { display: grid; grid-template-columns: repeat(5,1fr); border-top: 1px solid #aaa; border-inline-start: 1px solid #aaa; }
.pas-v5-process__steps article { min-height: 260px; border-inline-end: 1px solid #aaa; border-bottom: 1px solid #aaa; padding: 25px; }
.pas-v5-process__steps span { color: #999; font-size: 10px; }
.pas-v5-process__steps h3 { margin: 72px 0 15px; font-size: 23px; font-weight: 400; }
.pas-v5-process__steps p { color: #777; font-size: 11px; line-height: 1.7; }

.pas-v5-contact { position: relative; display: grid; grid-template-columns: 165px 1fr 1fr; min-height: 690px; overflow: hidden; background: #777; }
.pas-v5-contact__image { position: absolute; inset: 0; background: linear-gradient(rgba(40,40,40,.25),rgba(40,40,40,.25)),url('../images/gallery-exhibition.webp') center/cover no-repeat; filter: grayscale(1); }
.pas-v5-contact .pas-v5-marker { z-index: 1; padding-top: 110px; }
.pas-v5-contact__panel { position: relative; z-index: 1; grid-column: 3; align-self: center; margin-inline-end: 7vw; background: rgba(32,32,32,.91); padding: clamp(45px,6vw,85px); color: #fff; }
.pas-v5-contact h2 { color: #fff; font-size: clamp(42px,4.5vw,66px); }
.pas-v5-contact__panel > p:not(.pas-v5-overline) { color: #bcbcbc; font-size: 13px; line-height: 1.9; }
.pas-v5-contact__actions { display: flex; flex-wrap: wrap; gap: 32px; margin-top: 34px; }
.pas-v5-contact .pas-v5-line-link { color: #fff; }

.home .pas-footer { margin: 0 28px 28px; background: #171717; }
.home .pas-whatsapp { width: 48px; height: 48px; border: 1px solid rgba(255,255,255,.7); background: rgba(30,30,30,.82); font-size: 20px; }

.pas-motion-ready .pas-v5-hero__content > *, .pas-motion-ready .pas-v5-hero__caption, .pas-motion-ready .pas-v5-hero__brand { opacity: 0; transform: translateY(25px); animation: pas-hero-enter .9s cubic-bezier(.22,1,.36,1) forwards; }
.pas-motion-ready .pas-v5-hero__content > p { animation-delay: .2s; }
.pas-motion-ready .pas-v5-hero h1 { animation-delay: .32s; }
.pas-motion-ready .pas-v5-hero__content .pas-v5-line-link { animation-delay: .48s; }
.pas-motion-ready .pas-v5-hero__caption, .pas-motion-ready .pas-v5-hero__brand { animation-delay: .65s; }

@media (max-width: 1024px) {
	.pas-v5-section { grid-template-columns: 110px minmax(0,1fr); padding-inline-end: 5vw; }
	.pas-v5-hero__content { left: 48%; width: 48vw; }
	.pas-v5-intro__body { grid-template-columns: 1fr; gap: 38px; }
	.pas-v5-intro__body > .pas-v5-overline { margin: 0; }
	.pas-v5-heading { grid-template-columns: 1fr; gap: 25px; }
	.pas-v5-service-list a { grid-template-columns: 38px 1fr 34px; }
	.pas-v5-service-list p { grid-column: 2; }
	.pas-v5-service-list b { grid-column: 3; grid-row: 1; }
	.pas-v5-work__layout { grid-template-columns: 1fr; }
	.pas-v5-work__layout nav { position: static; flex-direction: row; flex-wrap: wrap; align-items: center; }
	.pas-v5-work__layout nav span { margin: 0; }
	.pas-v5-object { grid-template-columns: 110px 1fr; }
	.pas-v5-object__image { min-height: 580px; }
	.pas-v5-object__copy { grid-column: 2; }
	.pas-v5-process__steps { grid-template-columns: repeat(3,1fr); }
	.pas-v5-contact { grid-template-columns: 110px .55fr 1.45fr; }
}

@media (max-width: 700px) {
	.home .pas-header { top: 12px; left: 12px; right: 12px; padding: 10px 12px; }
	.home .pas-header.is-scrolled { padding: 9px 12px; }
	.pas-v5-frame { margin: 12px; }
	.pas-v5-hero { min-height: calc(100svh - 24px); }
	.pas-v5-hero__video { inset: -2%; width: 104%; height: 104%; object-position: 35% center; filter: grayscale(1) brightness(1.7) contrast(.58); }
	.pas-v5-hero__wash { background: rgba(255,255,255,.38); }
	.pas-v5-hero__brand { display: none; }
	.pas-v5-hero__content { top: auto; right: 24px; bottom: 105px; left: 28px; width: auto; transform: none; }
	.pas-v5-hero h1 { font-size: clamp(43px,13vw,61px); line-height: .92; }
	.pas-v5-hero__caption { right: 75px; left: 24px; line-height: 1.7; }
	.pas-v5-section { display: block; min-height: 0; padding: 80px 23px; }
	.pas-v5-marker { align-items: flex-start; flex-direction: row; gap: 14px; margin-bottom: 45px; padding: 0; }
	.pas-v5-marker strong { font-size: 34px; }
	.pas-v5-marker i { width: 42px; height: 1px; margin: 17px 0 0; }
	.pas-v5-marker span { margin-top: 11px; writing-mode: initial; }
	.pas-v5-heading { margin-bottom: 44px; }
	.pas-v5-heading h2, .pas-v5-intro h2, .pas-v5-object h2, .pas-v5-contact h2 { font-size: 43px; }
	.pas-v5-service-list a { grid-template-columns: 30px 1fr 24px; gap: 12px; min-height: 0; padding: 22px 0; }
	.pas-v5-service-list h3 { font-size: 21px; }
	.pas-v5-service-list p { font-size: 11px; }
	.pas-v5-work__layout nav { display: none; }
	.pas-v5-work__grid { grid-template-columns: 1fr; gap: 24px; }
	.pas-v5-work-card > div { min-height: 105px; }
	.pas-v5-object { display: block; padding: 0 0 70px; }
	.pas-v5-object .pas-v5-marker { padding: 70px 23px 0; }
	.pas-v5-object__image { min-height: 62svh; }
	.pas-v5-object__copy { padding: 55px 23px 0; }
	.pas-v5-process__steps { grid-template-columns: 1fr; }
	.pas-v5-process__steps article { min-height: 190px; }
	.pas-v5-process__steps h3 { margin-top: 42px; }
	.pas-v5-contact { display: block; min-height: 760px; padding: 65px 23px; }
	.pas-v5-contact .pas-v5-marker { padding: 0; }
	.pas-v5-contact__panel { margin: 130px 0 0; padding: 38px 25px; }
	.home .pas-footer { margin: 0 12px 12px; }
}

@media (prefers-reduced-motion: reduce) {
	.pas-v5-hero__video { transform: none !important; }
}

/* Version 6: extend the monochrome system across every template. */
body:not(.home) { background: #fff; color: #292929; }
body:not(.home) .pas-main { min-height: 70vh; margin: 28px; overflow: hidden; background: #f7f7f7; }
body:not(.home) .pas-header { top: 28px; left: 28px; right: 28px; width: auto; border: 0; padding: 14px 20px; background: transparent; }
body:not(.home) .pas-header.is-scrolled { top: 0; left: 0; right: 0; padding: 11px 28px; background: rgba(255,255,255,.94); border-bottom: 1px solid rgba(17,17,17,.13); box-shadow: none; backdrop-filter: blur(15px); }
body:not(.home) .pas-header__inner { max-width: none; width: 100%; }
body:not(.home) .pas-logo { color: #111; }
body:not(.home) .pas-logo span { width: 46px; height: 32px; border: 0; background: #292929; color: #fff; font-family: Manrope,Arial,sans-serif; font-size: 10px; font-weight: 500; }
body:not(.home) .pas-logo strong { color: #111; font-size: 10px; font-weight: 600; letter-spacing: .17em; }
body:not(.home) .pas-nav a { color: #222; font-size: 10px; font-weight: 600; letter-spacing: .09em; }
body:not(.home) .pas-nav .pas-btn { min-height: 38px; border: 1px solid #222; background: transparent; color: #111; padding: 0 18px; }
body:not(.home) .pas-nav .pas-btn:hover { background: #222; color: #fff; }
body:not(.home) .pas-menu-toggle { border: 0; }
body:not(.home) .pas-menu-toggle span:not(.screen-reader-text) { background: #222; }
body:not(.home) .pas-mobile-menu { background: rgba(255,255,255,.98); }
body:not(.home) .pas-mobile-menu a { color: #111; }
body:not(.home) .pas-scroll-progress { background: #111; }

body:not(.home) .pas-page-hero { min-height: 700px; display: flex; align-items: center; padding: 135px 6vw 80px; background: #ededed; }
body:not(.home) .pas-page-hero__media { inset: 0; background-position: center; filter: grayscale(1) brightness(1.55) contrast(.6); transform: scale(1.03); }
body:not(.home) .pas-page-hero__overlay { background: linear-gradient(90deg,rgba(255,255,255,.92) 0%,rgba(255,255,255,.62) 48%,rgba(255,255,255,.18) 100%); }
body:not(.home) .pas-page-hero .pas-container { display: grid; grid-template-columns: 125px minmax(0,900px); gap: 45px; align-items: center; max-width: 1320px; width: 100%; }
.pas-page-hero__marker { display: flex; align-items: center; flex-direction: column; color: #303030; }
.pas-page-hero__marker strong { font-size: 50px; font-weight: 400; line-height: 1; }
.pas-page-hero__marker i { width: 1px; height: 42px; margin: 19px 0; background: currentColor; }
.pas-page-hero__marker span { max-height: 170px; overflow: hidden; font-size: 8px; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; writing-mode: vertical-rl; }
.pas-page-hero__content { min-width: 0; }
body:not(.home) .pas-breadcrumb { margin-bottom: 24px; color: #777; font-size: 10px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; }
body:not(.home) .pas-page-hero h1 { max-width: 950px; color: #292929; font-family: Manrope,Arial,sans-serif; font-size: clamp(50px,6vw,86px); font-weight: 400; line-height: .94; }
body:not(.home) .pas-page-hero p:not(.pas-eyebrow) { max-width: 720px; color: #626262; font-size: 14px; line-height: 1.9; }
body:not(.home) .pas-page-hero .pas-btn { min-height: 46px; border: 1px solid #222; background: #222; color: #fff; }
body:not(.home) .pas-page-hero .pas-btn--secondary { background: transparent; color: #222; }
body:not(.home) .pas-page-hero .pas-btn:hover { background: #fff; color: #111; }

body:not(.home) .pas-section { padding: 115px 0; background: #fff; }
body:not(.home) .pas-section--soft, body:not(.home) .pas-section:nth-of-type(even) { background: #f1f1f1; }
body:not(.home) .pas-eyebrow, body:not(.home) .pas-kicker { color: #888; font-size: 9px; font-weight: 700; letter-spacing: .22em; }
body:not(.home) .pas-section-heading { max-width: 820px; margin-bottom: 55px; }
body:not(.home) .pas-section-heading h2, body:not(.home) .pas-cta h2, body:not(.home) .pas-richtext h2 { color: #292929; font-family: Manrope,Arial,sans-serif; font-size: clamp(42px,5vw,72px); font-weight: 400; line-height: .99; }
body:not(.home) .pas-section-heading p, body:not(.home) .pas-cta p, body:not(.home) .pas-richtext p { color: #727272; font-size: 14px; line-height: 1.9; }

body:not(.home) .pas-category-grid { grid-template-columns: repeat(4,minmax(0,1fr)); gap: 0; border-top: 1px solid #aaa; border-inline-start: 1px solid #aaa; margin: 40px 0 85px; }
body:not(.home) .pas-category-grid article { min-height: 330px; border: 0; border-inline-end: 1px solid #aaa; border-bottom: 1px solid #aaa; background: transparent; padding: 28px; }
body:not(.home) .pas-category-grid h2 { color: #292929; font-family: Manrope,Arial,sans-serif; font-size: 24px; font-weight: 400; }
body:not(.home) .pas-category-grid ul { padding-inline-start: 18px; }
body:not(.home) .pas-category-grid li { color: #747474; font-size: 12px; line-height: 1.65; }

body:not(.home) .pas-service-grid { grid-template-columns: repeat(2,minmax(0,1fr)); gap: 0; border-top: 1px solid #aaa; border-inline-start: 1px solid #aaa; margin-top: 0; counter-reset: v6service; }
body:not(.home) .pas-service-card { min-height: 315px; border: 0; border-inline-end: 1px solid #aaa; border-bottom: 1px solid #aaa; background: transparent; padding: 38px 45px 35px 82px; counter-increment: v6service; }
body:not(.home) .pas-service-card::before { content: "0" counter(v6service); position: absolute; top: 42px; left: 25px; color: #999; font-size: 9px; }
body:not(.home) .pas-service-card:hover { background: #f3f3f3; transform: none; }
body:not(.home) .pas-service-card h3 { color: #292929; font-family: Manrope,Arial,sans-serif; font-size: 27px; font-weight: 400; }
body:not(.home) .pas-service-card p { color: #777; font-size: 12px; }
body:not(.home) .pas-service-card a { color: #222; font-size: 9px; letter-spacing: .12em; }

body:not(.home) .pas-two-col { grid-template-columns: .85fr 1.15fr; gap: 80px; }
body:not(.home) .pas-feature-list { gap: 0; border-top: 1px solid #aaa; }
body:not(.home) .pas-feature-list span { min-height: 64px; border: 0; border-bottom: 1px solid #aaa; background: transparent; color: #333; padding: 20px 12px; font-size: 12px; font-weight: 500; }
body:not(.home) .pas-feature-list--six { grid-template-columns: repeat(3,1fr); border-inline-start: 1px solid #aaa; }
body:not(.home) .pas-feature-list--six span { min-height: 150px; border-inline-end: 1px solid #aaa; padding: 28px; font-size: 18px; }

body:not(.home) .pas-process, body:not(.home) .pas-process--compact { gap: 0; border-top: 1px solid #aaa; border-inline-start: 1px solid #aaa; }
body:not(.home) .pas-process article { min-height: 250px; border: 0; border-inline-end: 1px solid #aaa; border-bottom: 1px solid #aaa; background: transparent; padding: 28px; }
body:not(.home) .pas-process span { color: #999; font-size: 10px; }
body:not(.home) .pas-process h3 { margin-top: 65px; color: #292929; font-family: Manrope,Arial,sans-serif; font-size: 22px; font-weight: 400; }
body:not(.home) .pas-process p { color: #767676; font-size: 11px; }

body:not(.home) .pas-image-strip { gap: 0; width: calc(100% - 32px); padding-bottom: 90px; }
body:not(.home) .pas-image-strip img { aspect-ratio: 4/5; border-radius: 0; filter: grayscale(1) contrast(.92); }
body:not(.home) .pas-image-strip img + img { border-inline-start: 1px solid #fff; }

body:not(.home) .pas-team-grid { gap: 0; border-top: 1px solid #aaa; border-inline-start: 1px solid #aaa; }
body:not(.home) .pas-team-grid article { min-height: 320px; border: 0; border-inline-end: 1px solid #aaa; border-bottom: 1px solid #aaa; background: transparent; padding: 30px; }
body:not(.home) .pas-team-grid h2 { color: #292929; font-family: Manrope,Arial,sans-serif; font-size: 27px; font-weight: 400; }
body:not(.home) .pas-team-grid strong { color: #777; font-size: 10px; letter-spacing: .1em; text-transform: uppercase; }
body:not(.home) .pas-team-grid p { margin-top: 60px; color: #777; font-size: 12px; }

body:not(.home) .pas-info-card, body:not(.home) .pas-form { border: 1px solid #aaa; background: rgba(255,255,255,.75); padding: clamp(25px,4vw,48px); }
body:not(.home) .pas-info-card h2 { color: #292929; font-family: Manrope,Arial,sans-serif; font-size: 36px; font-weight: 400; }
body:not(.home) .pas-info-card dt { color: #999; font-size: 9px; letter-spacing: .12em; text-transform: uppercase; }
body:not(.home) .pas-info-card dd { border-bottom: 1px solid #bbb; padding-bottom: 16px; color: #292929; font-size: 13px; }
body:not(.home) .pas-form label { color: #555; font-size: 10px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; }
body:not(.home) .pas-form input, body:not(.home) .pas-form select, body:not(.home) .pas-form textarea { border: 0; border-bottom: 1px solid #999; border-radius: 0; background: transparent; color: #222; padding-inline: 0; }
body:not(.home) .pas-form input:focus, body:not(.home) .pas-form select:focus, body:not(.home) .pas-form textarea:focus { border-color: #111; box-shadow: 0 1px #111; }
body:not(.home) .pas-form button { border-radius: 0; background: #252525; color: #fff; box-shadow: none; }
body:not(.home) .pas-form .pas-btn--secondary { border: 1px solid #333; background: transparent; color: #222; }
body:not(.home) .pas-form button:disabled { opacity: .32; cursor: not-allowed; }
body:not(.home) .pas-steps { gap: 0; border: 1px solid #aaa; }
body:not(.home) .pas-steps button { border-radius: 0; border-inline-end: 1px solid #aaa; background: transparent; color: #777; }
body:not(.home) .pas-steps button:last-child { border-inline-end: 0; }
body:not(.home) .pas-steps button.is-active { background: #292929; color: #fff; }
body:not(.home) .pas-checkbox-grid label { border-radius: 0; border-color: #bbb; background: transparent; color: #333; text-transform: none; }

body:not(.home) .pas-accordion { border-radius: 0; border-color: #aaa; background: transparent; }
body:not(.home) .pas-accordion details + details { border-color: #aaa; }
body:not(.home) .pas-accordion summary { color: #292929; font-size: 14px; font-weight: 500; }
body:not(.home) .pas-accordion p { color: #737373; font-size: 12px; }

body:not(.home) .pas-stats { border: 1px solid #999; border-radius: 0; background: #999; }
body:not(.home) .pas-stats div { min-height: 190px; background: #f5f5f5; }
body:not(.home) .pas-stats strong { color: #292929; font-family: Manrope,Arial,sans-serif; font-size: 43px; font-weight: 400; }
body:not(.home) .pas-stats span { color: #747474; font-size: 10px; letter-spacing: .08em; text-transform: uppercase; }
body:not(.home) .pas-chip-grid { gap: 0; border-top: 1px solid #aaa; border-inline-start: 1px solid #aaa; }
body:not(.home) .pas-chip-grid span { min-height: 78px; border: 0; border-inline-end: 1px solid #aaa; border-bottom: 1px solid #aaa; border-radius: 0; background: transparent; color: #333; font-size: 12px; font-weight: 500; }
body:not(.home) .pas-pill-row { justify-content: flex-start; }
body:not(.home) .pas-pill-row span { border-color: #999; border-radius: 0; background: transparent; color: #555; font-size: 10px; }
.pas-v6-testimonials { display: grid; grid-template-columns: repeat(3,1fr); border-top: 1px solid #999; border-inline-start: 1px solid #999; }
.pas-v6-testimonials article { min-height: 390px; border-inline-end: 1px solid #999; border-bottom: 1px solid #999; padding: 30px; }
.pas-v6-testimonials span { color: #888; font-size: 8px; font-weight: 700; letter-spacing: .13em; text-transform: uppercase; }
.pas-v6-testimonials blockquote { margin: 75px 0 35px; color: #292929; font-size: 21px; font-weight: 400; line-height: 1.55; }
.pas-v6-testimonials p { color: #777; font-size: 10px; letter-spacing: .08em; text-transform: uppercase; }

body:not(.home) .pas-cta { border: 0; border-radius: 0; background: #252525; padding: clamp(45px,7vw,90px); }
body:not(.home) .pas-cta .pas-eyebrow { color: #aaa; }
body:not(.home) .pas-cta h2 { max-width: 900px; color: #fff; }
body:not(.home) .pas-cta p { max-width: 720px; color: #aaa; }
body:not(.home) .pas-cta .pas-btn { border: 1px solid #fff; border-radius: 0; background: #fff; color: #111; }
body:not(.home) .pas-cta .pas-btn--secondary { background: transparent; color: #fff; }

body:not(.home) .pas-reference-showcase { padding: 120px 0; background: #f1f1f1; color: #292929; }
body:not(.home) .pas-reference-showcase__heading h2 { color: #292929; font-family: Manrope,Arial,sans-serif; font-weight: 400; }
body:not(.home) .pas-reference-showcase__heading > p { color: #777; }
body:not(.home) .pas-reference-grid { border-color: #999; }
body:not(.home) .pas-reference-card { border-color: #999; color: #292929; }
body:not(.home) .pas-reference-card figure img { filter: grayscale(1) contrast(.9) brightness(1.08); }
body:not(.home) .pas-reference-card figure span { background: #fff; color: #222; }
body:not(.home) .pas-reference-card h3 { font-family: Manrope,Arial,sans-serif; font-weight: 400; }
body:not(.home) .pas-reference-card__body > p, body:not(.home) .pas-reference-card__body strong { color: #555; }
body:not(.home) .pas-reference-card__body span { color: #858585; }
body:not(.home) .pas-reference-card:hover .pas-reference-card__body strong { color: #111; }
body:not(.home) .pas-filter-tabs { margin-bottom: 40px; }
body:not(.home) .pas-filter-tabs button { border-color: #999; border-radius: 0; background: transparent; color: #555; font-size: 10px; }
body:not(.home) .pas-filter-tabs button.is-active { background: #292929; color: #fff; }
body:not(.home) .pas-project-grid { grid-template-columns: repeat(2,minmax(0,1fr)); gap: 32px; }
body:not(.home) .pas-project-card, body:not(.home) .pas-project-card:nth-child(n) { grid-column: auto !important; border: 0; border-radius: 0; background: transparent; }
body:not(.home) .pas-project-card img, body:not(.home) .pas-project-card:nth-child(n) img { aspect-ratio: 16/10; filter: grayscale(1) contrast(.92); }
body:not(.home) .pas-project-card > div { padding: 20px 0 45px; }
body:not(.home) .pas-project-card h3 { color: #292929; font-family: Manrope,Arial,sans-serif; font-size: 25px; font-weight: 400; }
body:not(.home) .pas-project-card p, body:not(.home) .pas-project-card small { color: #777; }
body:not(.home) .pas-project-card a:last-child { color: #222; border-color: #222; }

.single-pas_project .pas-project-detail { padding: 150px 6vw 80px; background: #f1f1f1; }
.single-pas_project .pas-project-detail__hero { grid-template-columns: .85fr 1.15fr; max-width: 1320px; }
.single-pas_project .pas-project-detail h1 { color: #292929; font-family: Manrope,Arial,sans-serif; font-weight: 400; }
.single-pas_project .pas-project-detail p { color: #747474; font-size: 14px; }
.single-pas_project .pas-project-detail__hero img { border-radius: 0; filter: grayscale(1) brightness(1.08); }
.single-pas_project .pas-v3-case-facts { background: #292929; color: #fff; }
.single-pas_project .pas-v3-case-facts span { color: #aaa; }
.single-pas_project .pas-v3-case-story__intro h2, .single-pas_project .pas-v3-case-story h3 { color: #292929; font-family: Manrope,Arial,sans-serif; font-weight: 400; }
.single-pas_project .pas-v3-case-story__grid, .single-pas_project .pas-v3-case-story article { border-color: #999; }
.single-pas_project .pas-v3-case-story p { color: #777; }
.single-pas_project .pas-v3-case-scope { background: #f1f1f1; }
.single-pas_project .pas-v3-case-quote { background: #292929; }
.single-pas_project .pas-v3-case-quote blockquote { font-family: Manrope,Arial,sans-serif; font-weight: 400; }

body:not(.home) .pas-not-found { min-height: calc(100svh - 56px); background: linear-gradient(rgba(255,255,255,.72),rgba(255,255,255,.72)),url('../images/gallery-exhibition.webp') center/cover; }
body:not(.home) .pas-not-found h1 { color: #292929; font-family: Manrope,Arial,sans-serif; font-weight: 400; }
body:not(.home) .pas-not-found p { color: #666; }
body:not(.home) .pas-not-found .pas-btn { border-radius: 0; background: #292929; }

body:not(.home) + .pas-footer, body:not(.home) .pas-footer { margin: 0 28px 28px; }
body:not(.home) .pas-whatsapp { width: 48px; height: 48px; border: 1px solid rgba(255,255,255,.7); border-radius: 0; background: rgba(30,30,30,.82); font-size: 20px; }

@media (max-width: 1024px) {
	body:not(.home) .pas-page-hero { padding-inline: 4vw; }
	body:not(.home) .pas-page-hero .pas-container { grid-template-columns: 95px minmax(0,1fr); gap: 28px; }
	body:not(.home) .pas-category-grid { grid-template-columns: repeat(2,1fr); }
	.pas-v6-testimonials { grid-template-columns: 1fr; }
	body:not(.home) .pas-two-col { grid-template-columns: 1fr; }
	body:not(.home) .pas-process { grid-template-columns: repeat(3,1fr); }
	body:not(.home) .pas-process--compact { grid-template-columns: repeat(3,1fr); }
	.single-pas_project .pas-project-detail__hero { grid-template-columns: 1fr; }
}

@media (max-width: 700px) {
	body:not(.home) .pas-main { margin: 12px; }
	body:not(.home) .pas-header { top: 12px; left: 12px; right: 12px; padding: 10px 12px; }
	body:not(.home) .pas-header.is-scrolled { padding: 9px 12px; }
	body:not(.home) .pas-page-hero { min-height: calc(100svh - 24px); padding: 115px 22px 65px; }
	body:not(.home) .pas-page-hero__overlay { background: rgba(255,255,255,.67); }
	body:not(.home) .pas-page-hero .pas-container { display: block; }
	.pas-page-hero__marker { align-items: flex-start; flex-direction: row; gap: 14px; margin-bottom: 38px; }
	.pas-page-hero__marker strong { font-size: 34px; }
	.pas-page-hero__marker i { width: 42px; height: 1px; margin: 17px 0 0; }
	.pas-page-hero__marker span { max-width: 170px; margin-top: 10px; writing-mode: initial; }
	body:not(.home) .pas-page-hero h1 { font-size: 44px; }
	body:not(.home) .pas-page-hero p:not(.pas-eyebrow) { font-size: 13px; }
	body:not(.home) .pas-section { padding: 78px 0; }
	body:not(.home) .pas-section-heading h2, body:not(.home) .pas-cta h2 { font-size: 42px; }
	body:not(.home) .pas-category-grid, body:not(.home) .pas-service-grid, body:not(.home) .pas-project-grid { grid-template-columns: 1fr; }
	body:not(.home) .pas-category-grid article { min-height: 0; }
	body:not(.home) .pas-service-card { min-height: 0; padding: 32px 24px 32px 65px; }
	body:not(.home) .pas-service-card::before { left: 20px; top: 36px; }
	body:not(.home) .pas-feature-list, body:not(.home) .pas-feature-list--six { grid-template-columns: 1fr; }
	body:not(.home) .pas-process, body:not(.home) .pas-process--compact { grid-template-columns: 1fr; }
	body:not(.home) .pas-process article { min-height: 190px; }
	body:not(.home) .pas-process h3 { margin-top: 40px; }
	body:not(.home) .pas-image-strip { display: block; }
	body:not(.home) .pas-image-strip img { margin-bottom: 1px; }
	body:not(.home) .pas-team-grid { grid-template-columns: 1fr; }
	body:not(.home) .pas-stats, body:not(.home) .pas-chip-grid { grid-template-columns: 1fr; }
	body:not(.home) .pas-team-grid article { min-height: 250px; }
	body:not(.home) .pas-form__grid, body:not(.home) .pas-checkbox-grid { grid-template-columns: 1fr; }
	body:not(.home) .pas-steps button { min-width: 0; padding-inline: 5px; font-size: 10px; }
	body:not(.home) .pas-reference-showcase { padding: 78px 0; }
	body:not(.home) .pas-reference-showcase__heading h2 { font-size: 44px; }
	body:not(.home) .pas-reference-grid { grid-template-columns: 1fr; }
	body:not(.home) .pas-project-card { margin-bottom: 20px; }
	.single-pas_project .pas-project-detail { padding: 125px 22px 65px; }
	body:not(.home) .pas-not-found { min-height: calc(100svh - 24px); }
	body:not(.home) .pas-footer { margin: 0 12px 12px; }
}

/* Version 8: stronger navigation and configurable theme controls. */
.pas-nav__list > li { position: relative; }
.pas-nav__list > li > a { position: relative; display: inline-flex; align-items: center; min-height: 42px; }
.pas-nav__list > li > a::before { content: ""; position: absolute; right: 0; bottom: 5px; left: 0; height: 1px; background: currentColor; transform: scaleX(0); transform-origin: right; transition: transform .35s cubic-bezier(.22,1,.36,1); }
.pas-nav__list > li:hover > a::before, .pas-nav__list > .current-menu-item > a::before, .pas-nav__list > .current-menu-ancestor > a::before, .pas-nav__list > li:focus-within > a::before { transform: scaleX(1); transform-origin: left; }
.pas-nav__list .menu-item-has-children > a::after { content: "+"; margin-inline-start: 8px; color: var(--pas-gold); font-size: 13px; font-weight: 500; }
.pas-nav__list .sub-menu { position: absolute; top: calc(100% + 15px); left: 50%; z-index: 70; display: grid; grid-template-columns: repeat(2,minmax(190px,1fr)); gap: 0; width: 520px; margin: 0; border: 1px solid #aaa; background: rgba(255,255,255,.98); padding: 18px; list-style: none; opacity: 0; pointer-events: none; transform: translate(-50%,12px); transition: opacity .25s ease,transform .35s cubic-bezier(.22,1,.36,1); box-shadow: 0 28px 80px rgba(0,0,0,.14); backdrop-filter: blur(18px); }
.pas-nav__list .sub-menu::before { content: "Specialist services"; grid-column: 1/-1; border-bottom: 1px solid #aaa; margin-bottom: 7px; padding: 3px 10px 14px; color: #888; font-size: 8px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; }
.pas-nav__list .sub-menu li { border-bottom: 1px solid #ddd; }
.pas-nav__list .sub-menu a { display: flex; align-items: center; min-height: 62px; padding: 12px 10px; color: #292929 !important; font-size: 11px !important; line-height: 1.35; }
.pas-nav__list .sub-menu a::after { content: "↗"; margin-inline-start: auto; color: #aaa; }
.pas-nav__list .sub-menu a:hover, .pas-nav__list .sub-menu .current-menu-item > a { background: #f1f1f1; padding-inline-start: 16px; }
.pas-nav__list li:hover > .sub-menu, .pas-nav__list li:focus-within > .sub-menu { opacity: 1; pointer-events: auto; transform: translate(-50%,0); }
.pas-header--no-dropdown .pas-nav__list .sub-menu, .pas-header--no-dropdown .pas-mobile-menu__list .sub-menu { display: none; }
.pas-header--no-dropdown .menu-item-has-children > a::after { display: none; }
.pas-menu-toggle span:not(.screen-reader-text) { transition: transform .3s ease,opacity .2s ease; }
.pas-menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.pas-menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.pas-menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
body.pas-menu-open { overflow: hidden; }

@media (max-width: 1024px) {
	.pas-mobile-menu { position: fixed; inset: 78px 16px 16px; z-index: 65; width: auto; margin: 0; border: 1px solid #999; border-radius: 0; background: rgba(255,255,255,.985); padding: clamp(25px,6vw,60px); overflow-y: auto; box-shadow: 0 30px 90px rgba(0,0,0,.18); }
	.pas-mobile-menu__list { counter-reset: pas-mobile-nav; gap: 0; margin-bottom: 30px; }
	.pas-mobile-menu__list > li { counter-increment: pas-mobile-nav; border-bottom: 1px solid #aaa; }
	.pas-mobile-menu__list > li > a { position: relative; display: flex; align-items: center; min-height: 76px; padding: 15px 10px 15px 52px; color: #292929; font-size: clamp(23px,5vw,38px); font-weight: 400; }
	.pas-mobile-menu__list > li > a::before { content: "0" counter(pas-mobile-nav); position: absolute; left: 8px; top: 28px; color: #999; font-size: 9px; letter-spacing: .08em; }
	.pas-mobile-menu__list .sub-menu { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 0; margin: 0 0 18px 52px; padding: 0; list-style: none; }
	.pas-mobile-menu__list .sub-menu li { border-top: 1px solid #ddd; }
	.pas-mobile-menu__list .sub-menu a { min-height: 50px; padding: 12px 9px; color: #666; font-size: 11px; line-height: 1.4; }
	.pas-mobile-menu > .pas-btn { min-height: 54px; border-radius: 0; background: #292929; color: #fff; }
}

@media (max-width: 700px) {
	.pas-mobile-menu { inset: 66px 12px 12px; padding: 22px; }
	.pas-mobile-menu__list .sub-menu { grid-template-columns: 1fr; margin-left: 38px; }
}

/* Version 8.1: bolder navigation and graphic editorial polish. */
.pas-header {
	isolation: isolate;
}
.pas-header__inner {
	position: relative;
}
.pas-logo span {
	transition: background-color .35s ease, color .35s ease, transform .35s cubic-bezier(.22,1,.36,1);
}
.pas-logo:hover span {
	background: var(--pas-gold);
	color: #111;
	transform: rotate(-4deg);
}
.pas-nav__list {
	gap: clamp(22px,2.25vw,38px);
}
.pas-nav__list > li > a {
	font-size: 13px;
	font-weight: 750;
	letter-spacing: .1em;
}
.home .pas-nav__list > li > a,
body:not(.home) .pas-nav__list > li > a {
	font-size: 13px;
	font-weight: 750;
}
.pas-nav__list > li > a::before {
	height: 2px;
	background: var(--pas-gold);
}
.pas-nav > .pas-btn {
	position: relative;
	isolation: isolate;
	min-height: 44px;
	border-color: #202020;
	padding-inline: 22px;
	font-size: 10px;
	font-weight: 800;
	letter-spacing: .13em;
	overflow: hidden;
	transition: color .35s ease, border-color .35s ease, transform .35s cubic-bezier(.22,1,.36,1);
}
.pas-nav > .pas-btn::after {
	content: "";
	position: absolute;
	inset: 0;
	z-index: -1;
	background: var(--pas-gold);
	transform: translateY(102%);
	transition: transform .4s cubic-bezier(.22,1,.36,1);
}
.pas-nav > .pas-btn:hover {
	border-color: var(--pas-gold);
	color: #111;
	transform: translateY(-2px);
}
.pas-nav > .pas-btn:hover::after {
	transform: translateY(0);
}
.pas-nav__list .sub-menu {
	grid-template-columns: repeat(2,minmax(230px,1fr));
	width: 620px;
	border: 0;
	border-top: 3px solid var(--pas-gold);
	padding: 22px;
	box-shadow: 0 32px 90px rgba(0,0,0,.2);
	counter-reset: pas-subnav;
}
.pas-nav__list .sub-menu li {
	position: relative;
	counter-increment: pas-subnav;
}
.pas-nav__list .sub-menu a {
	min-height: 68px;
	padding: 14px 38px 14px 34px;
	font-size: 13px !important;
	font-weight: 650;
}
.pas-nav__list .sub-menu a::before {
	content: "0" counter(pas-subnav);
	position: absolute;
	left: 10px;
	color: var(--pas-gold);
	font-size: 8px;
	font-weight: 800;
}
.pas-nav__list .sub-menu a::after {
	content: "\2197";
	font-size: 15px;
	transition: transform .3s ease, color .3s ease;
}
.pas-nav__list .sub-menu a:hover::after {
	color: var(--pas-gold);
	transform: translate(3px,-3px);
}
.home .pas-header.is-scrolled,
body:not(.home) .pas-header.is-scrolled {
	box-shadow: 0 18px 60px rgba(0,0,0,.09);
}
.pas-v5-hero::after {
	content: "";
	position: absolute;
	inset: 0;
	z-index: 1;
	background-image: linear-gradient(90deg,transparent calc(50% - .5px),rgba(25,25,25,.12) 50%,transparent calc(50% + .5px)),linear-gradient(0deg,transparent calc(50% - .5px),rgba(25,25,25,.08) 50%,transparent calc(50% + .5px));
	pointer-events: none;
}
.pas-v5-hero__content,
.pas-v5-hero__brand,
.pas-v5-hero__caption,
.pas-v5-video-toggle {
	z-index: 2;
}
.pas-v5-hero__content > p {
	display: flex;
	align-items: center;
	gap: 14px;
}
.pas-v5-hero__content > p::before {
	content: "";
	width: 34px;
	height: 3px;
	background: var(--pas-gold);
}
.pas-v5-hero h1 {
	text-shadow: 0 18px 55px rgba(255,255,255,.28);
}
.pas-v5-hero h1 span {
	-webkit-text-stroke-width: 1.5px;
}
.pas-v5-line-link {
	position: relative;
	padding-inline-end: 25px;
}
.pas-v5-line-link::after {
	content: "\2197";
	position: absolute;
	right: 0;
	transition: transform .3s ease;
}
.pas-v5-line-link:hover::after {
	transform: translate(3px,-3px);
}
.pas-v5-marker strong {
	color: var(--pas-gold);
	font-size: 62px;
	line-height: .8;
}
.pas-v5-marker--light strong {
	color: #fff;
	-webkit-text-stroke: 1px rgba(255,255,255,.45);
}
.pas-v5-heading h2::after,
.pas-v5-intro h2::after {
	content: "";
	display: block;
	width: 64px;
	height: 4px;
	margin-top: 27px;
	background: var(--pas-gold);
}
.pas-v5-service-list h3,
.pas-v5-service-list b {
	transition: transform .4s cubic-bezier(.22,1,.36,1), color .3s ease;
}
.pas-v5-service-list a:hover h3 {
	transform: translateX(8px);
}
.pas-v5-service-list a:hover b {
	color: var(--pas-gold);
	transform: translate(4px,-4px);
}
.pas-v5-work-card figure::after {
	content: "";
	position: absolute;
	inset: 14px;
	border: 1px solid rgba(255,255,255,.55);
	opacity: 0;
	transform: scale(.97);
	transition: opacity .4s ease, transform .6s cubic-bezier(.22,1,.36,1);
	pointer-events: none;
}
.pas-v5-work-card:hover figure::after {
	opacity: 1;
	transform: scale(1);
}
.pas-page-hero::after {
	content: "";
	position: absolute;
	inset: 18px;
	z-index: 2;
	border: 1px solid rgba(255,255,255,.24);
	pointer-events: none;
}

@media (max-width: 1180px) {
	.pas-nav__list { gap: 18px; }
	.home .pas-nav__list > li > a,
	body:not(.home) .pas-nav__list > li > a { font-size: 11px; }
	.pas-nav > .pas-btn { padding-inline: 16px; }
}

@media (max-width: 1024px) {
	.pas-mobile-menu__list > li > a {
		font-size: clamp(28px,5vw,42px);
		font-weight: 500;
	}
	.pas-mobile-menu__list .sub-menu a {
		font-size: 13px;
		font-weight: 650;
	}
}

@media (max-width: 700px) {
	.pas-v5-hero::after { background-image: linear-gradient(90deg,transparent calc(50% - .5px),rgba(25,25,25,.1) 50%,transparent calc(50% + .5px)); }
	.pas-v5-marker strong { font-size: 45px; }
	.pas-page-hero::after { inset: 8px; }
}

@media (prefers-reduced-motion: reduce) {
	.pas-logo span,
	.pas-nav > .pas-btn,
	.pas-nav > .pas-btn::after,
	.pas-v5-service-list h3,
	.pas-v5-service-list b,
	.pas-v5-work-card figure::after { transition: none; }
}

/* Version 8.2: collision-free mega menu and expanded motion system. */
.pas-nav__list .sub-menu a,
.pas-nav__list .sub-menu a:hover,
.pas-nav__list .sub-menu .current-menu-item > a {
	position: relative;
	padding: 14px 42px 14px 44px;
	background-clip: padding-box;
}
.pas-nav__list .sub-menu a::before {
	left: 13px;
	top: 50%;
	width: 22px;
	line-height: 1;
	text-align: left;
	transform: translateY(-50%);
}
.pas-nav__list .sub-menu a::after {
	position: absolute;
	right: 14px;
	top: 50%;
	margin: 0;
	transform: translateY(-50%);
}
.pas-nav__list .sub-menu a:hover::after {
	transform: translate(3px,calc(-50% - 3px));
}
.pas-nav__list .sub-menu li {
	opacity: 0;
	transform: translateY(9px);
	transition: opacity .32s ease, transform .45s cubic-bezier(.22,1,.36,1);
}
.pas-nav__list li:hover > .sub-menu li,
.pas-nav__list li:focus-within > .sub-menu li {
	opacity: 1;
	transform: translateY(0);
}
.pas-nav__list .sub-menu li:nth-child(2) { transition-delay: 35ms; }
.pas-nav__list .sub-menu li:nth-child(3) { transition-delay: 70ms; }
.pas-nav__list .sub-menu li:nth-child(4) { transition-delay: 105ms; }
.pas-nav__list .sub-menu li:nth-child(5) { transition-delay: 140ms; }
.pas-nav__list .sub-menu li:nth-child(6) { transition-delay: 175ms; }
.pas-v5-hero__video {
	transform: translate3d(var(--pas-pointer-x,0px),calc(var(--pas-parallax-y,0px) + var(--pas-pointer-y,0px)),0) scale(1.05);
	transition: transform 1.2s cubic-bezier(.22,1,.36,1);
}
.pas-v5-hero::after {
	animation: pas-grid-breathe 5.5s ease-in-out infinite alternate;
}
.pas-v5-hero__wash {
	background-size: 125% 125%;
	animation: pas-wash-drift 10s ease-in-out infinite alternate;
}
.pas-v5-hero__content > p::before {
	transform-origin: left;
	animation: pas-accent-pulse 2.8s ease-in-out infinite;
}
.pas-v5-service-list a::after {
	content: "";
	position: absolute;
	right: 0;
	bottom: -1px;
	left: 0;
	height: 2px;
	background: var(--pas-gold);
	transform: scaleX(0);
	transform-origin: right;
	transition: transform .55s cubic-bezier(.22,1,.36,1);
}
.pas-v5-service-list a:hover::after,
.pas-v5-service-list a:focus-visible::after {
	transform: scaleX(1);
	transform-origin: left;
}
.pas-v5-work-card img {
	transform: translate3d(var(--pas-card-x,0px),var(--pas-card-y,0px),0) scale(1.02);
	will-change: transform;
}
.pas-v5-work-card:hover img {
	transform: translate3d(var(--pas-card-x,0px),var(--pas-card-y,0px),0) scale(1.065);
}
.pas-v5-work-card b {
	transition: color .3s ease, transform .35s cubic-bezier(.22,1,.36,1);
}
.pas-v5-work-card:hover b {
	color: var(--pas-gold);
	transform: translate(3px,-3px);
}
.pas-v5-process__steps article {
	position: relative;
	overflow: hidden;
	transition: background-color .35s ease, padding-inline .45s cubic-bezier(.22,1,.36,1);
}
.pas-v5-process__steps article::after {
	content: "";
	position: absolute;
	right: 0;
	top: 0;
	width: 3px;
	height: 100%;
	background: var(--pas-gold);
	transform: scaleY(0);
	transform-origin: bottom;
	transition: transform .45s cubic-bezier(.22,1,.36,1);
}
.pas-v5-process__steps article:hover {
	background: rgba(255,255,255,.55);
	padding-inline: 18px;
}
.pas-v5-process__steps article:hover::after {
	transform: scaleY(1);
	transform-origin: top;
}
.pas-page-hero__media {
	animation: pas-page-media-drift 16s ease-in-out infinite alternate;
}
.pas-motion-ready .pas-reveal {
	filter: blur(7px);
}
.pas-motion-ready .pas-reveal.is-visible {
	filter: blur(0);
}

@keyframes pas-grid-breathe {
	from { opacity: .48; }
	to { opacity: 1; }
}
@keyframes pas-wash-drift {
	from { background-position: 0% 50%; }
	to { background-position: 100% 50%; }
}
@keyframes pas-accent-pulse {
	0%,100% { transform: scaleX(.45); opacity: .65; }
	50% { transform: scaleX(1); opacity: 1; }
}
@keyframes pas-page-media-drift {
	from { transform: translate3d(0,var(--pas-parallax-y,0px),0) scale(1.03); }
	to { transform: translate3d(-1.2%,var(--pas-parallax-y,0px),0) scale(1.08); }
}

@media (max-width: 1024px) {
	.pas-mobile-menu__list .sub-menu a,
	.pas-mobile-menu__list .sub-menu a:hover,
	.pas-mobile-menu__list .sub-menu .current-menu-item > a {
		padding: 13px 12px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.pas-nav__list .sub-menu li { opacity: 1; transform: none; transition: none; }
	.pas-v5-hero::after,
	.pas-v5-hero__wash,
	.pas-v5-hero__content > p::before,
	.pas-page-hero__media { animation: none; }
	.pas-v5-hero__video,
	.pas-v5-work-card img { transform: none; transition: none; }
	.pas-motion-ready .pas-reveal { filter: none; }
}

/* Version 8.4: forgiving mega-menu interaction and editorial footer. */
.pas-nav__list > .menu-item-has-children::before {
	content: "";
	position: absolute;
	top: calc(100% - 2px);
	left: -28px;
	right: -28px;
	height: 26px;
	z-index: 69;
}
.pas-nav__list .sub-menu {
	top: calc(100% + 8px);
}
.pas-nav__list > li.pas-submenu-open > .sub-menu {
	opacity: 1;
	pointer-events: auto;
	transform: translate(-50%,0);
}
.pas-nav__list > li.pas-submenu-open > .sub-menu li {
	opacity: 1;
	transform: translateY(0);
}

.pas-footer {
	position: relative;
	overflow: hidden;
	padding: 0 0 24px;
	background: #111;
	color: #fff;
}
.pas-footer::before {
	content: "";
	position: absolute;
	top: 0;
	left: 50%;
	width: 1px;
	height: 100%;
	background: rgba(255,255,255,.07);
	pointer-events: none;
}
.pas-footer__top {
	position: relative;
	padding-top: 94px;
	padding-bottom: 94px;
}
.pas-footer__eyebrow {
	display: flex;
	align-items: center;
	gap: 13px;
	margin: 0 0 28px;
	color: var(--pas-gold);
	font-size: 9px;
	font-weight: 800;
	letter-spacing: .17em;
	text-transform: uppercase;
}
.pas-footer__eyebrow::before {
	content: "";
	width: 28px;
	height: 2px;
	background: currentColor;
}
.pas-footer__cta {
	display: grid;
	grid-template-columns: minmax(0,1fr) 210px;
	gap: 60px;
	align-items: end;
}
.pas-footer__cta h2 {
	max-width: 960px;
	margin: 0;
	color: #fff;
	font-family: Manrope,Arial,sans-serif;
	font-size: clamp(58px,7.2vw,112px);
	font-weight: 400;
	line-height: .91;
	letter-spacing: 0;
}
.pas-footer__cta > a {
	position: relative;
	display: grid;
	grid-template-columns: 1fr auto;
	gap: 18px;
	align-items: center;
	min-height: 72px;
	border-top: 1px solid rgba(255,255,255,.45);
	border-bottom: 1px solid rgba(255,255,255,.45);
	color: #fff;
	font-size: 10px;
	font-weight: 800;
	letter-spacing: .11em;
	text-transform: uppercase;
}
.pas-footer__cta > a::before {
	content: "";
	position: absolute;
	inset: 0;
	z-index: 0;
	background: var(--pas-gold);
	transform: scaleY(0);
	transform-origin: bottom;
	transition: transform .45s cubic-bezier(.22,1,.36,1);
}
.pas-footer__cta > a span,
.pas-footer__cta > a b {
	position: relative;
	z-index: 1;
}
.pas-footer__cta > a b {
	font-size: 21px;
	font-weight: 400;
	transition: transform .35s cubic-bezier(.22,1,.36,1);
}
.pas-footer__cta > a:hover {
	color: #111;
}
.pas-footer__cta > a:hover::before {
	transform: scaleY(1);
	transform-origin: top;
}
.pas-footer__cta > a:hover b {
	transform: translate(4px,-4px);
}
.pas-footer__grid {
	position: relative;
	display: grid;
	grid-template-columns: 1.35fr .75fr 1.05fr 1fr;
	gap: 0;
	border-top: 1px solid rgba(255,255,255,.2);
	border-bottom: 1px solid rgba(255,255,255,.2);
}
.pas-footer__grid > * {
	min-width: 0;
	padding: 45px 34px 52px;
	border-inline-end: 1px solid rgba(255,255,255,.15);
}
.pas-footer__grid > *:first-child {
	padding-inline-start: 0;
}
.pas-footer__grid > *:last-child {
	border-inline-end: 0;
	padding-inline-end: 0;
}
.pas-footer__brand .pas-logo {
	margin-bottom: 30px;
}
.home .pas-footer .pas-logo strong,
body:not(.home) .pas-footer .pas-logo strong {
	color: #fff;
}
.pas-footer__brand > p {
	max-width: 390px;
	margin: 0 0 32px;
	color: #aaa;
	font-size: 13px;
	line-height: 1.85;
}
.pas-footer__brand small {
	color: #9a9c9d;
	font-size: 9px;
	font-weight: 700;
	line-height: 1.7;
	letter-spacing: .14em;
	text-transform: uppercase;
}
.pas-footer__grid nav,
.pas-footer__contact {
	display: flex;
	align-items: flex-start;
	flex-direction: column;
	gap: 13px;
}
.pas-footer h3 {
	width: 100%;
	margin: 0 0 17px;
	padding-bottom: 15px;
	border-bottom: 1px solid rgba(255,255,255,.15);
	color: #fff;
	font-size: 9px;
	font-weight: 800;
	letter-spacing: .15em;
	text-transform: uppercase;
}
.pas-footer h3 span {
	display: inline-block;
	min-width: 30px;
	color: var(--pas-gold);
}
.pas-footer a:not(.pas-logo) {
	position: relative;
	color: #a8a8a8;
	font-size: 12px;
	line-height: 1.55;
}
.pas-footer__grid nav a::after,
.pas-footer__contact a::after {
	content: "";
	position: absolute;
	right: 0;
	bottom: -3px;
	left: 0;
	height: 1px;
	background: var(--pas-gold);
	transform: scaleX(0);
	transform-origin: right;
	transition: transform .35s cubic-bezier(.22,1,.36,1);
}
.pas-footer__grid nav a:hover,
.pas-footer__contact a:hover {
	color: #fff;
}
.pas-footer__grid nav a:hover::after,
.pas-footer__contact a:hover::after {
	transform: scaleX(1);
	transform-origin: left;
}
.pas-footer__contact p {
	max-width: 220px;
	margin: 6px 0 0;
	color: #9a9c9d;
	font-size: 11px;
	line-height: 1.65;
}
.pas-footer__wordmark {
	position: relative;
	width: min(var(--pas-container),calc(100% - 32px));
	margin: 54px auto 45px;
	color: transparent;
	font-family: Manrope,Arial,sans-serif;
	font-size: clamp(54px,9.8vw,156px);
	font-weight: 500;
	line-height: .82;
	letter-spacing: 0;
	text-align: center;
	white-space: nowrap;
	-webkit-text-stroke: 1px rgba(255,255,255,.18);
}
.pas-footer__bottom {
	position: relative;
	align-items: center;
	margin-top: 0;
	border-top: 0;
	padding-top: 0;
	color: #9a9c9d;
	font-size: 10px;
	letter-spacing: .06em;
	text-transform: uppercase;
}
.pas-footer__bottom a:not(.pas-logo) {
	font-size: 10px;
}

@media (max-width: 1024px) {
	.pas-footer__cta { grid-template-columns: minmax(0,1fr) 180px; }
	.pas-footer__grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
	.pas-footer__grid > * { border-bottom: 1px solid rgba(255,255,255,.15); }
	.pas-footer__grid > *:nth-child(2) { border-inline-end: 0; padding-inline-end: 0; }
	.pas-footer__grid > *:nth-child(3) { padding-inline-start: 0; }
	.pas-footer__grid > *:nth-last-child(-n+2) { border-bottom: 0; }
}

@media (max-width: 700px) {
	.pas-footer__top { padding-top: 70px; padding-bottom: 70px; }
	.pas-footer__cta { grid-template-columns: 1fr; gap: 42px; }
	.pas-footer__cta h2 { font-size: 52px; }
	.pas-footer__cta > a { width: 100%; }
	.pas-footer__grid { grid-template-columns: 1fr; }
	.pas-footer__grid > * { padding: 32px 0; border-inline-end: 0; border-bottom: 1px solid rgba(255,255,255,.15); }
	.pas-footer__grid > *:nth-child(n) { padding-inline: 0; border-bottom: 1px solid rgba(255,255,255,.15); }
	.pas-footer__grid > *:last-child { border-bottom: 0; }
	.pas-footer__wordmark { margin-top: 42px; margin-bottom: 35px; font-size: 16vw; white-space: normal; }
	.pas-footer__bottom { align-items: flex-start; }
}

@media (prefers-reduced-motion: reduce) {
	.pas-footer__cta > a::before,
	.pas-footer__cta > a b,
	.pas-footer__grid a::after { transition: none; }
}

/* Version 8.5: formal institutional direction for PhotoAwards.ae. */
.pas-logo:hover span {
	background: #292929;
	color: #fff;
	transform: none;
}
.pas-v5-hero::after {
	opacity: .62;
	animation-duration: 11s;
}
.pas-v5-hero__wash {
	animation-duration: 18s;
}
.pas-v5-hero__content > p::before {
	height: 2px;
	animation-duration: 4.5s;
}
.pas-v5-hero h1 {
	font-size: clamp(52px,5.6vw,88px);
	line-height: .94;
}
.pas-v5-service-list a:hover h3 {
	transform: translateX(4px);
}
.pas-v5-work-card:hover img {
	transform: translate3d(var(--pas-card-x,0px),var(--pas-card-y,0px),0) scale(1.04);
}
.pas-footer__cta h2 {
	max-width: 820px;
	font-size: clamp(52px,6.2vw,92px);
	line-height: .96;
}
.pas-footer__wordmark {
	font-size: clamp(52px,8.6vw,136px);
	font-weight: 400;
}
.pas-footer__cta > a,
.pas-nav > .pas-btn {
	letter-spacing: .14em;
}

@media (max-width: 700px) {
	.pas-v5-hero h1 { font-size: 47px; line-height: .98; }
	.pas-footer__cta h2 { font-size: 46px; line-height: 1; }
}

/* Version 8.6: formal institutional footer. */
.pas-footer {
	border-top: 3px solid var(--pas-gold);
	background: #141617;
}
.pas-footer::before {
	display: none;
}
.pas-footer__top {
	padding-top: 72px;
	padding-bottom: 68px;
}
.pas-footer__eyebrow {
	margin-bottom: 25px;
	color: #96999b;
	font-size: 9px;
	letter-spacing: .16em;
}
.pas-footer__eyebrow::before {
	width: 34px;
	height: 1px;
	background: var(--pas-gold);
}
.pas-footer__cta {
	grid-template-columns: minmax(0,760px) 230px;
	justify-content: space-between;
	gap: 70px;
	align-items: center;
}
.pas-footer__cta h2 {
	max-width: 760px;
	font-size: clamp(38px,4.5vw,66px);
	font-weight: 400;
	line-height: 1.08;
}
.pas-footer__cta > a {
	min-height: 58px;
	border: 1px solid rgba(255,255,255,.4);
	padding: 0 18px;
	font-size: 9px;
}
.pas-footer__cta > a b {
	font-size: 18px;
}
.pas-footer__grid {
	grid-template-columns: 1.4fr .7fr 1fr 1fr;
	border-color: rgba(255,255,255,.17);
}
.pas-footer__grid > * {
	padding-top: 40px;
	padding-bottom: 44px;
	border-color: rgba(255,255,255,.12);
}
.pas-footer__brand > p {
	max-width: 350px;
	color: #a8aaab;
	font-size: 12px;
}
.pas-footer h3 {
	color: #e7e7e7;
	font-size: 9px;
}
.pas-footer a:not(.pas-logo) {
	color: #aeb0b1;
	font-size: 11px;
}
.pas-footer__credentials {
	display: grid;
	grid-template-columns: 150px minmax(0,1fr) auto;
	gap: 32px;
	align-items: center;
	border-bottom: 1px solid rgba(255,255,255,.17);
	padding-top: 25px;
	padding-bottom: 25px;
}
.pas-footer__credentials p {
	margin: 0;
	color: #9a9c9d;
	font-size: 8px;
	font-weight: 800;
	letter-spacing: .14em;
	text-transform: uppercase;
}
.pas-footer__credentials > div {
	display: flex;
	flex-wrap: wrap;
	gap: 8px 22px;
}
.pas-footer__credentials span {
	position: relative;
	color: #a4a6a7;
	font-size: 9px;
	font-weight: 700;
	letter-spacing: .09em;
	text-transform: uppercase;
}
.pas-footer__credentials span:not(:last-child)::after {
	content: "/";
	position: absolute;
	right: -14px;
	color: #4e5051;
}
.pas-footer__credentials strong {
	color: #fff;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: .14em;
	text-transform: uppercase;
}
.pas-footer__bottom {
	padding-top: 25px;
}

@media (max-width: 1024px) {
	.pas-footer__cta { grid-template-columns: minmax(0,1fr) 210px; gap: 45px; }
	.pas-footer__grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
	.pas-footer__credentials { grid-template-columns: 130px minmax(0,1fr); }
	.pas-footer__credentials strong { grid-column: 2; }
}

@media (max-width: 700px) {
	.pas-footer__top { padding-top: 58px; padding-bottom: 58px; }
	.pas-footer__cta { grid-template-columns: 1fr; gap: 32px; }
	.pas-footer__cta h2 { font-size: 38px; line-height: 1.08; }
	.pas-footer__cta > a { max-width: none; }
	.pas-footer__grid { grid-template-columns: 1fr; }
	.pas-footer__credentials { grid-template-columns: 1fr; gap: 18px; padding-top: 28px; padding-bottom: 28px; }
	.pas-footer__credentials > div { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 11px 18px; }
	.pas-footer__credentials span:not(:last-child)::after { display: none; }
	.pas-footer__credentials strong { grid-column: auto; margin-top: 5px; }
	.pas-footer__bottom { padding-top: 23px; }
}

/* Version 8.7: full-color photography system. */
.pas-visual-story img,
.pas-feature-case__image img,
.pas-project-card img,
.pas-v2-work .pas-project-card img,
.pas-v3-project-preview img,
.pas-reference-card figure img,
.pas-v5-work-card img,
.pas-v5-object__image img,
body:not(.home) .pas-image-strip img,
body:not(.home) .pas-reference-card figure img,
body:not(.home) .pas-project-card img,
body:not(.home) .pas-project-card:nth-child(n) img,
.single-pas_project .pas-project-detail__hero img {
	filter: saturate(1.04) contrast(1.01);
}
.pas-visual-story figure:hover img,
.pas-v2-work .pas-project-card:hover img,
.pas-v3-project-preview:hover img,
.pas-reference-card:hover figure img,
.pas-v5-work-card:hover img {
	filter: saturate(1.12) contrast(1.03);
}
.pas-v5-hero__video {
	filter: saturate(1.08) contrast(1.02) brightness(.9);
	opacity: .9;
}
.pas-v5-contact__image {
	filter: none;
}
body:not(.home) .pas-page-hero__media {
	filter: saturate(1.06) contrast(.98) brightness(1.02);
}
body:not(.home) .pas-page-hero__overlay {
	background: rgba(255,255,255,.48);
}

/* Version 8.8: editorial services experience. */
.page-template-page-services .pas-services-intro {
	padding: 132px 0 0;
	background: #f7f7f5;
}
.pas-services-intro__grid {
	display: grid;
	grid-template-columns: .78fr 1.22fr;
	gap: clamp(50px,7vw,112px);
	align-items: center;
}
.pas-services-intro__statement h2 {
	max-width: 610px;
	margin: 18px 0 32px;
	color: #202020;
	font-family: Manrope,Arial,sans-serif;
	font-size: clamp(48px,5.2vw,78px);
	font-weight: 400;
	line-height: .98;
}
.page-template-page-services .pas-services-intro__statement .pas-eyebrow,
.page-template-page-services .pas-services-catalog__header .pas-eyebrow { color: #595959; }
.pas-services-intro__statement h2 span {
	color: transparent;
	-webkit-text-stroke: 1px #333;
}
.pas-services-intro__statement > p:not(.pas-eyebrow) {
	max-width: 520px;
	color: #626262;
	font-size: 14px;
	line-height: 1.9;
}
.pas-services-intro__statement .pas-text-link {
	display: inline-flex;
	align-items: center;
	justify-content: space-between;
	gap: 34px;
	min-width: 250px;
	margin-top: 28px;
	border-bottom: 1px solid #282828;
	padding: 0 0 12px;
	color: #202020;
	font-size: 10px;
	font-weight: 750;
	letter-spacing: .12em;
	text-transform: uppercase;
}
.pas-services-intro__statement .pas-text-link span { transition: transform .3s ease; }
.pas-services-intro__statement .pas-text-link:hover span { transform: translate(4px,-4px); }
.pas-services-intro__visuals {
	display: grid;
	grid-template-columns: minmax(0,1.3fr) minmax(180px,.7fr);
	gap: 14px;
	align-items: end;
}
.pas-services-intro__visual {
	position: relative;
	margin: 0;
	overflow: hidden;
	background: #ddd;
}
.pas-services-intro__visual--main { aspect-ratio: 4/5; }
.pas-services-intro__visual--detail { aspect-ratio: 3/4; margin-bottom: -54px; }
.pas-services-intro__visual img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	filter: saturate(1.08) contrast(1.02);
	transition: transform 1s cubic-bezier(.22,1,.36,1),filter .5s ease;
}
.pas-services-intro__visual:hover img { transform: scale(1.035); filter: saturate(1.16) contrast(1.04); }
.pas-services-intro__visual figcaption {
	position: absolute;
	right: 0;
	bottom: 0;
	left: 0;
	display: flex;
	align-items: center;
	gap: 14px;
	min-height: 54px;
	background: rgba(15,15,15,.88);
	padding: 10px 16px;
	color: #fff;
	backdrop-filter: blur(10px);
}
.pas-services-intro__visual figcaption b { color: var(--pas-gold); font-size: 10px; }
.pas-services-intro__visual figcaption span { font-size: 9px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.pas-services-intro__facts {
	display: grid;
	grid-template-columns: repeat(3,minmax(0,1fr));
	margin-top: 132px;
	border-top: 1px solid #aaa;
	border-inline-start: 1px solid #aaa;
}
.pas-services-intro__facts > div {
	display: flex;
	align-items: center;
	gap: 22px;
	min-height: 108px;
	border-inline-end: 1px solid #aaa;
	padding: 22px 30px;
}
.pas-services-intro__facts strong { color: #876315; font-size: 30px; font-weight: 400; }
.pas-services-intro__facts span { max-width: 170px; color: #454545; font-size: 10px; font-weight: 700; line-height: 1.5; letter-spacing: .1em; text-transform: uppercase; }

.pas-services-map {
	padding: 128px 0;
	background: #171818;
	color: #fff;
}
.pas-services-map__header {
	display: grid;
	grid-template-columns: minmax(0,1fr) minmax(280px,.48fr);
	gap: 70px;
	align-items: end;
	margin-bottom: 78px;
}
.pas-services-map__header h2 {
	margin: 18px 0 0;
	font-size: clamp(52px,6.2vw,92px);
	font-weight: 400;
	line-height: .92;
}
.pas-services-map__header > p:last-child { margin: 0; color: #aaa; font-size: 13px; line-height: 1.8; }
.pas-services-map__list { border-top: 1px solid rgba(255,255,255,.25); }
.pas-services-map__list article {
	display: grid;
	grid-template-columns: 70px minmax(220px,.7fr) minmax(0,1.3fr);
	gap: 28px;
	align-items: start;
	border-bottom: 1px solid rgba(255,255,255,.2);
	padding: 34px 20px 36px 0;
	transition: background .35s ease,padding .35s ease;
}
.pas-services-map__list article:hover { background: rgba(255,255,255,.045); padding-inline-start: 18px; }
.pas-services-map__number { color: var(--pas-gold); font-size: 10px; font-weight: 800; letter-spacing: .12em; }
.pas-services-map__list h3 { margin: -5px 0 0; font-size: clamp(24px,2.3vw,36px); font-weight: 400; line-height: 1.12; }
.pas-services-map__list ul { display: flex; flex-wrap: wrap; gap: 9px 22px; margin: 0; padding: 0; list-style: none; }
.pas-services-map__list li { position: relative; color: #b7b9b8; font-size: 11px; line-height: 1.5; }
.pas-services-map__list li:not(:last-child)::after { content: "/"; position: absolute; right: -14px; color: #575959; }

.pas-services-catalog {
	padding: 138px 0;
	background: #ececea;
}
.pas-services-catalog__header {
	display: grid;
	grid-template-columns: minmax(0,1fr) minmax(280px,.45fr);
	gap: 70px;
	align-items: end;
	margin-bottom: 65px;
}
.pas-services-catalog__header h2 { margin: 18px 0 0; color: #222; font-size: clamp(52px,6vw,88px); font-weight: 400; line-height: .95; }
.pas-services-catalog__header > p { margin: 0; color: #656565; font-size: 13px; line-height: 1.85; }
.pas-services-catalog__grid {
	display: grid;
	grid-template-columns: repeat(2,minmax(0,1fr));
	border-top: 1px solid #999;
	border-inline-start: 1px solid #999;
}
.pas-services-catalog__item {
	position: relative;
	display: flex;
	min-width: 0;
	min-height: 470px;
	flex-direction: column;
	overflow: hidden;
	border-inline-end: 1px solid #999;
	border-bottom: 1px solid #999;
	padding: 34px clamp(28px,4vw,62px) 38px;
	background: #ececea;
	transition: background .4s cubic-bezier(.22,1,.36,1),color .4s ease;
}
.pas-services-catalog__item::before {
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	left: 0;
	height: 4px;
	background: var(--pas-gold);
	transform: scaleX(0);
	transform-origin: left;
	transition: transform .45s cubic-bezier(.22,1,.36,1);
}
.pas-services-catalog__item:hover { background: #fff; }
.pas-services-catalog__item:hover::before { transform: scaleX(1); }
.pas-services-catalog__top { display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.pas-services-catalog__number { color: var(--pas-gold); font-size: 11px; font-weight: 800; letter-spacing: .14em; }
.pas-services-catalog__eyebrow { color: #777; font-size: 8px; font-weight: 750; letter-spacing: .14em; text-transform: uppercase; }
.pas-services-catalog__item h3 { max-width: 510px; margin: 58px 0 17px; color: #252525; font-size: clamp(29px,3vw,43px); font-weight: 400; line-height: 1.04; }
.pas-services-catalog__item > p { max-width: 530px; margin: 0; color: #686868; font-size: 12px; line-height: 1.8; }
.pas-services-catalog__item ul { display: flex; flex-wrap: wrap; gap: 8px 20px; margin: 28px 0 35px; padding: 0; list-style: none; }
.pas-services-catalog__item li { position: relative; color: #5d5d5d; font-size: 10px; }
.pas-services-catalog__item li::before { content: "+"; margin-right: 7px; color: var(--pas-gold); }
.pas-services-catalog__item > a {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	margin-top: auto;
	border-top: 1px solid #aaa;
	padding-top: 17px;
	color: #222;
	font-size: 9px;
	font-weight: 800;
	letter-spacing: .13em;
	text-transform: uppercase;
}
.pas-services-catalog__item > a b { font-size: 17px; font-weight: 400; transition: transform .3s ease; }
.pas-services-catalog__item:hover > a b { transform: translate(4px,-4px); }

@media (max-width: 1024px) {
	.pas-services-intro__grid { grid-template-columns: 1fr; }
	.pas-services-intro__statement { max-width: 720px; }
	.pas-services-intro__visuals { margin-left: 12vw; }
	.pas-services-map__list article { grid-template-columns: 55px minmax(190px,.7fr) minmax(0,1.3fr); }
}

@media (max-width: 700px) {
	.page-template-page-services .pas-services-intro { padding-top: 82px; }
	.pas-services-intro__statement h2 { font-size: 46px; }
	.pas-services-intro__visuals { grid-template-columns: 1fr .62fr; gap: 8px; margin: 20px 0 0; }
	.pas-services-intro__visual--detail { margin-bottom: -30px; }
	.pas-services-intro__visual figcaption { min-height: 48px; padding: 8px 11px; }
	.pas-services-intro__visual figcaption span { font-size: 7px; }
	.pas-services-intro__facts { grid-template-columns: 1fr; margin-top: 82px; }
	.pas-services-intro__facts > div { min-height: 88px; }
	.pas-services-map,.pas-services-catalog { padding: 88px 0; }
	.pas-services-map__header,.pas-services-catalog__header { grid-template-columns: 1fr; gap: 26px; margin-bottom: 48px; }
	.pas-services-map__header h2,.pas-services-catalog__header h2 { font-size: 50px; }
	.pas-services-map__list article { grid-template-columns: 42px minmax(0,1fr); gap: 10px 16px; padding: 28px 0; }
	.pas-services-map__list article:hover { padding-inline-start: 0; }
	.pas-services-map__list ul { grid-column: 2; gap: 8px 17px; }
	.pas-services-map__list li { font-size: 10px; }
	.pas-services-catalog__grid { grid-template-columns: 1fr; }
	.pas-services-catalog__item { min-height: 430px; padding: 30px 24px 32px; }
	.pas-services-catalog__item h3 { margin-top: 46px; font-size: 34px; }
}

/* Version 8.9: compact services page rebuilt for fast scanning. */
.page-template-page-services .pas-svc-label {
	margin: 0;
	color: #755711;
	font-size: 9px;
	font-weight: 800;
	letter-spacing: .15em;
	text-transform: uppercase;
}
.page-template-page-services .pas-header:not(.is-scrolled) .pas-logo,
.page-template-page-services .pas-header:not(.is-scrolled) .pas-logo strong,
.page-template-page-services .pas-header:not(.is-scrolled) .pas-nav__list > li > a { color: #fff; }
.page-template-page-services .pas-header:not(.is-scrolled) .pas-logo span { background: #fff; color: #171717; }
.page-template-page-services .pas-header:not(.is-scrolled) .pas-nav > .pas-btn { border-color: rgba(255,255,255,.7); color: #fff; }
.page-template-page-services .pas-header:not(.is-scrolled) .pas-menu-toggle span { background: #fff; }
.pas-svc-hero {
	position: relative;
	display: flex;
	min-height: 530px;
	align-items: flex-end;
	overflow: hidden;
	background: #171717;
	padding: 128px 0 54px;
	color: #fff;
}
.pas-svc-hero__image,
.pas-svc-hero__overlay { position: absolute; inset: 0; width: 100%; height: 100%; }
.pas-svc-hero__image { object-fit: cover; object-position: center 48%; filter: saturate(1.08) contrast(1.04); }
.pas-svc-hero__overlay { background: linear-gradient(90deg,rgba(11,12,12,.9) 0%,rgba(11,12,12,.66) 54%,rgba(11,12,12,.2) 100%); }
.pas-svc-hero__content {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: minmax(0,1.35fr) minmax(280px,.65fr);
	gap: 70px;
	align-items: end;
}
.page-template-page-services .pas-svc-hero .pas-svc-label { color: #efc969; }
.pas-svc-hero h1 {
	max-width: 820px;
	margin: 14px 0 0;
	font-size: clamp(48px,5.4vw,76px);
	font-weight: 400;
	line-height: .94;
}
.pas-svc-hero__summary { max-width: 390px; }
.pas-svc-hero__summary p { margin: 0 0 22px; color: #dedede; font-size: 12px; line-height: 1.75; }
.pas-svc-hero__summary a {
	display: flex;
	align-items: center;
	justify-content: space-between;
	border-top: 1px solid rgba(255,255,255,.65);
	padding-top: 13px;
	color: #fff;
	font-size: 9px;
	font-weight: 800;
	letter-spacing: .14em;
	text-transform: uppercase;
}
.pas-svc-hero__summary a span { font-size: 16px; transition: transform .3s ease; }
.pas-svc-hero__summary a:hover span { transform: translate(3px,-3px); }
.pas-svc-hero__count {
	position: absolute;
	top: 118px;
	right: 3.2vw;
	z-index: 1;
	display: flex;
	align-items: center;
	gap: 9px;
	margin: 0;
	color: rgba(255,255,255,.72);
	font-size: 8px;
	font-weight: 700;
	letter-spacing: .13em;
	text-transform: uppercase;
	writing-mode: vertical-rl;
}
.pas-svc-hero__count strong { color: #efc969; font-size: 22px; font-weight: 400; }

.pas-services-compact { background: #f5f5f3; }
.pas-svc-scope { padding: 70px 0 76px; }
.pas-svc-heading {
	display: grid;
	grid-template-columns: minmax(0,1fr) minmax(260px,.38fr);
	gap: 54px;
	align-items: end;
	margin-bottom: 38px;
}
.pas-svc-heading h2 { margin: 8px 0 0; color: #222; font-size: clamp(38px,4vw,58px); font-weight: 400; line-height: 1; }
.pas-svc-heading > p { max-width: 390px; margin: 0; color: #626262; font-size: 12px; line-height: 1.7; }
.pas-svc-scope__grid {
	display: grid;
	grid-template-columns: repeat(4,minmax(0,1fr));
	border-top: 1px solid #929292;
	border-inline-start: 1px solid #929292;
}
.pas-svc-scope__grid article {
	min-width: 0;
	min-height: 205px;
	border-inline-end: 1px solid #929292;
	border-bottom: 1px solid #929292;
	padding: 21px 23px;
	transition: background .3s ease,color .3s ease;
}
.pas-svc-scope__grid article:hover { background: #222; color: #fff; }
.pas-svc-scope__grid article:nth-child(-n+2) { background: #222; color: #fff; }
.pas-svc-scope__grid article > div { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.pas-svc-scope__grid article span { color: #755711; font-size: 9px; font-weight: 800; }
.pas-svc-scope__grid article:hover span { color: #efc969; }
.pas-svc-scope__grid article:nth-child(-n+2) span { color: #efc969; }
.pas-svc-scope__grid article small { color: #777; font-size: 7px; font-weight: 750; letter-spacing: .12em; text-transform: uppercase; }
.pas-svc-scope__grid article:hover small { color: #c9c9c9; }
.pas-svc-scope__grid article:nth-child(-n+2) small { color: #c9c9c9; }
.pas-svc-scope__grid h3 { margin: 32px 0 19px; font-size: 25px; font-weight: 400; }
.pas-svc-scope__grid ul { display: flex; flex-wrap: wrap; gap: 5px 15px; margin: 0; padding: 0; list-style: none; }
.pas-svc-scope__grid li { position: relative; color: #676767; font-size: 9px; }
.pas-svc-scope__grid article:hover li { color: #d3d3d3; }
.pas-svc-scope__grid article:nth-child(-n+2) li { color: #d3d3d3; }
.pas-svc-scope__grid li:not(:last-child)::after { content: "/"; position: absolute; right: -10px; color: #aaa; }

.pas-svc-directory { border-top: 1px solid #c2c2c0; padding: 76px 0 84px; background: #e9e9e7; }
.pas-svc-directory__grid {
	display: grid;
	grid-template-columns: repeat(3,minmax(0,1fr));
	border-top: 1px solid #959595;
	border-inline-start: 1px solid #959595;
}
.pas-svc-card {
	position: relative;
	display: flex;
	min-width: 0;
	min-height: 330px;
	flex-direction: column;
	border-inline-end: 1px solid #959595;
	border-bottom: 1px solid #959595;
	padding: 23px 25px 21px;
	transition: background .3s ease,transform .3s ease;
}
.pas-svc-card::before { content: ""; position: absolute; top: 0; right: 0; left: 0; height: 3px; background: #b9913f; transform: scaleX(0); transform-origin: left; transition: transform .35s ease; }
.pas-svc-card:hover { z-index: 1; background: #fff; }
.pas-svc-card:hover::before { transform: scaleX(1); }
.pas-svc-card--core { background: #222; color: #fff; }
.pas-svc-card--core:nth-child(2) { background: #30312f; }
.pas-svc-card--core::before { transform: scaleX(1); }
.pas-svc-card--core h3 { color: #fff; }
.pas-svc-card--core > p,
.pas-svc-card--core li,
.pas-svc-card--core .pas-svc-card__meta small { color: #d0d0d0; }
.pas-svc-card--core .pas-svc-card__meta span { color: #efc969; }
.pas-svc-card--core > a { border-color: #666; color: #fff; }
.pas-svc-card__meta { display: flex; align-items: center; justify-content: space-between; gap: 15px; }
.pas-svc-card__meta span { color: #755711; font-size: 9px; font-weight: 800; }
.pas-svc-card__meta small { color: #666; font-size: 7px; font-weight: 750; letter-spacing: .12em; text-transform: uppercase; }
.pas-svc-card h3 { max-width: 330px; margin: 32px 0 11px; color: #242424; font-size: 26px; font-weight: 400; line-height: 1.08; }
.pas-svc-card > p { margin: 0; color: #626262; font-size: 10px; line-height: 1.65; }
.pas-svc-card ul { display: flex; flex-wrap: wrap; gap: 5px 14px; margin: 18px 0; padding: 0; list-style: none; }
.pas-svc-card li { color: #555; font-size: 8px; }
.pas-svc-card li::before { content: "+"; margin-right: 5px; color: #755711; }
.pas-svc-card > a {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-top: auto;
	border-top: 1px solid #aaa;
	padding-top: 12px;
	color: #222;
	font-size: 8px;
	font-weight: 800;
	letter-spacing: .13em;
	text-transform: uppercase;
}
.pas-svc-card > a b { font-size: 15px; font-weight: 400; transition: transform .3s ease; }
.pas-svc-card:hover > a b { transform: translate(3px,-3px); }

.pas-svc-feature { padding: 0 0 82px; background: #e9e9e7; }
.pas-svc-feature__grid { display: grid; grid-template-columns: 1.08fr .92fr; min-height: 400px; background: #1c1d1d; color: #fff; }
.pas-svc-feature figure { min-height: 400px; margin: 0; overflow: hidden; }
.pas-svc-feature figure img { width: 100%; height: 100%; object-fit: cover; filter: saturate(1.09) contrast(1.03); transition: transform .8s cubic-bezier(.22,1,.36,1); }
.pas-svc-feature:hover figure img { transform: scale(1.025); }
.pas-svc-feature__grid > div { display: flex; align-items: flex-start; flex-direction: column; justify-content: center; padding: 45px clamp(34px,5vw,72px); }
.page-template-page-services .pas-svc-feature .pas-svc-label { color: #efc969; }
.pas-svc-feature h2 { margin: 12px 0 17px; font-size: clamp(38px,4vw,58px); font-weight: 400; line-height: .98; }
.pas-svc-feature div > p:not(.pas-svc-label) { max-width: 520px; margin: 0; color: #bfc1c0; font-size: 11px; line-height: 1.75; }
.pas-svc-feature ul { display: flex; flex-wrap: wrap; gap: 7px 19px; margin: 19px 0 24px; padding: 0; list-style: none; }
.pas-svc-feature li { color: #ddd; font-size: 9px; }
.pas-svc-feature li::before { content: "+"; margin-right: 6px; color: #efc969; }
.pas-svc-feature .pas-btn { min-height: 44px; border-color: #fff; background: #fff; color: #171717; font-size: 8px; }

.page-template-page-services .pas-services-after > .pas-section { padding: 70px 0; }
.page-template-page-services .pas-services-after > .pas-section + .pas-section { padding-top: 0; }
.page-template-page-services .pas-services-after .pas-faq-wrap { grid-template-columns: .55fr 1.45fr; gap: 42px; }
.page-template-page-services .pas-services-after .pas-section-heading h2 { font-size: 44px; }
.page-template-page-services .pas-services-after .pas-accordion summary { padding: 15px 18px; font-size: 12px; }
.page-template-page-services .pas-services-after .pas-accordion p { padding: 0 18px 16px; font-size: 11px; }
.page-template-page-services .pas-services-after .pas-cta { padding: 48px; }
.page-template-page-services .pas-services-after .pas-cta h2 { max-width: 760px; font-size: 48px; }

@media (max-width: 1024px) {
	.pas-svc-hero__content { grid-template-columns: minmax(0,1fr) 300px; gap: 40px; }
	.pas-svc-scope__grid,.pas-svc-directory__grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
}

@media (max-width: 700px) {
	.pas-svc-hero { min-height: 560px; padding: 125px 0 38px; }
	.pas-svc-hero__overlay { background: rgba(14,15,15,.68); }
	.pas-svc-hero__content { display: block; }
	.pas-svc-hero h1 { margin-top: 11px; font-size: 45px; line-height: .96; }
	.pas-svc-hero__summary { margin-top: 56px; }
	.pas-svc-hero__summary p { font-size: 11px; }
	.pas-svc-hero__count { display: none; }
	.pas-svc-scope { padding: 54px 0 60px; }
	.pas-svc-heading { grid-template-columns: 1fr; gap: 15px; margin-bottom: 28px; }
	.pas-svc-heading h2 { font-size: 38px; }
	.pas-svc-heading > p { font-size: 11px; }
	.pas-svc-scope__grid { grid-template-columns: 1fr 1fr; }
	.pas-svc-scope__grid article { min-height: 165px; padding: 17px 15px; }
	.pas-svc-scope__grid h3 { margin: 24px 0 14px; font-size: 20px; }
	.pas-svc-scope__grid article small { display: none; }
	.pas-svc-directory { padding: 56px 0 62px; }
	.pas-svc-directory__grid { grid-template-columns: 1fr; }
	.pas-svc-card { min-height: 235px; padding: 19px 18px 17px; }
	.pas-svc-card h3 { margin: 23px 0 9px; font-size: 24px; }
	.pas-svc-card ul { margin: 13px 0; }
	.pas-svc-feature { padding-bottom: 60px; }
	.pas-svc-feature__grid { grid-template-columns: 1fr; }
	.pas-svc-feature figure { min-height: 230px; }
	.pas-svc-feature__grid > div { padding: 36px 24px 40px; }
	.pas-svc-feature h2 { font-size: 38px; }
	.page-template-page-services .pas-services-after > .pas-section { padding: 54px 0; }
	.page-template-page-services .pas-services-after .pas-faq-wrap { grid-template-columns: 1fr; gap: 25px; }
	.page-template-page-services .pas-services-after .pas-section-heading h2 { font-size: 38px; }
	.page-template-page-services .pas-services-after .pas-cta { padding: 35px 24px; }
	.page-template-page-services .pas-services-after .pas-cta h2 { font-size: 38px; }
}

/* Version 8.11: two core services and redesigned FAQ. */
.pas-faq-section {
	border-top: 1px solid #c4c4c1;
	background: #f3f3f1;
}
.pas-faq-layout {
	display: grid;
	grid-template-columns: minmax(250px,.52fr) minmax(0,1.48fr);
	gap: clamp(44px,7vw,108px);
	align-items: start;
}
.pas-faq-intro {
	position: sticky;
	top: 110px;
}
.pas-faq-intro__meta {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	border-top: 1px solid #8e8e8b;
	padding-top: 13px;
}
.pas-faq-intro__meta span { color: #755711; font-size: 9px; font-weight: 850; letter-spacing: .15em; }
.pas-faq-intro__meta small { color: #5f5f5d; font-size: 8px; font-weight: 750; letter-spacing: .1em; text-transform: uppercase; }
.pas-faq-intro h2 {
	margin: 34px 0 20px;
	color: #222;
	font-size: clamp(43px,4.6vw,68px);
	font-weight: 400;
	line-height: .92;
}
.pas-faq-intro > p { max-width: 380px; margin: 0; color: #626260; font-size: 11px; line-height: 1.75; }
.pas-faq-intro > a {
	display: flex;
	align-items: center;
	justify-content: space-between;
	max-width: 230px;
	margin-top: 27px;
	border-bottom: 1px solid #333;
	padding-bottom: 11px;
	color: #222;
	font-size: 8px;
	font-weight: 850;
	letter-spacing: .14em;
	text-transform: uppercase;
}
.pas-faq-intro > a span { font-size: 15px; transition: transform .3s ease; }
.pas-faq-intro > a:hover span { transform: translate(3px,-3px); }
body:not(.home) .pas-faq-list,
.pas-faq-list {
	border: 0;
	border-top: 1px solid #8e8e8b;
	border-radius: 0;
	background: transparent;
}
body:not(.home) .pas-faq-list details,
.pas-faq-list details { border-bottom: 1px solid #b5b5b2; }
body:not(.home) .pas-faq-list details + details,
.pas-faq-list details + details { border-top: 0; }
body:not(.home) .pas-faq-list summary,
.pas-faq-list summary {
	display: grid;
	grid-template-columns: 48px minmax(0,1fr) 22px;
	gap: 15px;
	align-items: center;
	min-height: 64px;
	padding: 13px 0;
	color: #252525;
	font-size: 13px;
	font-weight: 550;
	list-style: none;
}
.pas-faq-list summary::-webkit-details-marker { display: none; }
.pas-faq-number { color: #755711; font-size: 8px; font-weight: 850; letter-spacing: .12em; }
.pas-faq-question { line-height: 1.45; }
.pas-faq-toggle { position: relative; width: 18px; height: 18px; border: 1px solid #9a9a97; }
.pas-faq-toggle::before,
.pas-faq-toggle::after { content: ""; position: absolute; top: 50%; left: 50%; width: 8px; height: 1px; background: #333; transform: translate(-50%,-50%); transition: transform .3s ease; }
.pas-faq-toggle::after { transform: translate(-50%,-50%) rotate(90deg); }
.pas-faq-list details[open] .pas-faq-toggle { border-color: #755711; background: #755711; }
.pas-faq-list details[open] .pas-faq-toggle::before,
.pas-faq-list details[open] .pas-faq-toggle::after { background: #fff; }
.pas-faq-list details[open] .pas-faq-toggle::after { transform: translate(-50%,-50%) rotate(0); }
.pas-faq-answer { padding: 0 46px 20px 63px; }
body:not(.home) .pas-faq-list .pas-faq-answer p,
.pas-faq-list .pas-faq-answer p { max-width: 720px; margin: 0; padding: 0; color: #626260; font-size: 11px; line-height: 1.75; }
.pas-faq-list details:hover .pas-faq-question { color: #755711; }

.page-template-page-services .pas-services-after > .pas-faq-section { padding: 66px 0; }

@media (max-width: 700px) {
	.pas-faq-layout { grid-template-columns: 1fr; gap: 34px; }
	.pas-faq-intro { position: static; }
	.pas-faq-intro h2 { margin-top: 25px; font-size: 46px; }
	body:not(.home) .pas-faq-list summary,
	.pas-faq-list summary { grid-template-columns: 32px minmax(0,1fr) 20px; gap: 10px; min-height: 62px; font-size: 12px; }
	.pas-faq-answer { padding: 0 30px 18px 42px; }
}

.pas-svc-directory__grid .pas-svc-card--core h3 { color: #fff; }
.pas-svc-directory__grid .pas-svc-card--core > p,
.pas-svc-directory__grid .pas-svc-card--core li,
.pas-svc-directory__grid .pas-svc-card--core .pas-svc-card__meta small { color: #d0d0d0; }
.pas-svc-directory__grid .pas-svc-card--core .pas-svc-card__meta span,
.pas-svc-directory__grid .pas-svc-card--core li::before { color: #efc969; }
.pas-svc-directory__grid .pas-svc-card--core > a { border-color: #6e6e6b; color: #fff; }
.pas-svc-directory__grid .pas-svc-card--core:hover { background: #292a29; }
.pas-svc-directory__grid .pas-svc-card--core:nth-child(2):hover { background: #383936; }

/* Version 8.12: local Roboto and restrained visual motion. */
body,
body *:not(#wpadminbar):not(#wpadminbar *) { font-family: "Roboto",Arial,sans-serif !important; }
.pas-svc-hero__image {
	transform: translate3d(var(--pas-svc-x,0),var(--pas-svc-y,0),0) scale(1.035);
	transition: transform 1.1s cubic-bezier(.2,0,0,1),filter .45s ease;
	will-change: transform;
}
.pas-svc-hero:hover .pas-svc-hero__image { filter: saturate(1.14) contrast(1.06); }
.pas-svc-card { isolation: isolate; }
.pas-svc-card::after {
	content: "";
	position: absolute;
	inset: 0;
	z-index: -1;
	background: linear-gradient(112deg,transparent 34%,rgba(255,255,255,.42) 49%,transparent 64%);
	transform: translateX(-115%);
	transition: transform .72s cubic-bezier(.2,0,0,1);
	pointer-events: none;
}
.pas-svc-card:hover::after { transform: translateX(115%); }
.pas-svc-card--core::after { background: linear-gradient(112deg,transparent 34%,rgba(239,201,105,.1) 49%,transparent 64%); }
.pas-svc-scope__grid article { position: relative; overflow: hidden; }
.pas-svc-scope__grid article::after {
	content: "";
	position: absolute;
	right: 0;
	bottom: 0;
	left: 0;
	height: 2px;
	background: #b9913f;
	transform: scaleX(0);
	transform-origin: left;
	transition: transform .4s cubic-bezier(.2,0,0,1);
}
.pas-svc-scope__grid article:hover::after,
.pas-svc-scope__grid article:nth-child(-n+2)::after { transform: scaleX(1); }
.pas-faq-list details[open] .pas-faq-answer {
	animation: pas-faq-answer-in .38s cubic-bezier(.2,0,0,1) both;
}
@keyframes pas-faq-answer-in {
	from { opacity: 0; transform: translateY(-8px); }
	to { opacity: 1; transform: translateY(0); }
}
.pas-btn,
.pas-svc-hero__summary a,
.pas-faq-intro > a { transition: color .25s ease,background .25s ease,border-color .25s ease,transform .25s cubic-bezier(.2,0,0,1); }
.pas-btn:active { transform: translateY(1px) scale(.985); }

@media (prefers-reduced-motion: reduce) {
	.pas-svc-hero__image { transform: scale(1.02); transition: none; }
	.pas-svc-card::after { display: none; }
	.pas-faq-list details[open] .pas-faq-answer { animation: none; }
}

/* Version 8.13: richer service-card art direction. */
.pas-svc-card { --pas-svc-accent: #9a721d; min-height: 365px; padding: 20px 23px 21px; }
.pas-svc-card:nth-child(3n+2) { --pas-svc-accent: #9f3e46; }
.pas-svc-card:nth-child(3n+3) { --pas-svc-accent: #39706c; }
.pas-svc-card--core { --pas-svc-accent: #efc969; }
.pas-svc-card::before { background: var(--pas-svc-accent); }
.pas-svc-card__head {
	display: flex;
	min-height: 78px;
	align-items: flex-start;
	justify-content: space-between;
	gap: 20px;
}
.pas-svc-card__head .pas-svc-card__meta {
	display: flex;
	align-items: flex-start;
	flex-direction: column;
	justify-content: flex-start;
	gap: 9px;
	min-width: 0;
}
.pas-svc-card__head .pas-svc-card__meta span {
	color: var(--pas-svc-accent);
	font-size: 25px;
	font-weight: 400;
	line-height: 1;
}
.pas-svc-card__head .pas-svc-card__meta small {
	max-width: 145px;
	color: #595959;
	font-size: 7px;
	line-height: 1.45;
}
.pas-svc-card__head figure {
	position: relative;
	width: 116px;
	min-width: 116px;
	aspect-ratio: 8/5;
	margin: 0;
	overflow: hidden;
	background: #ccc;
}
.pas-svc-card__head figure::after { content: ""; position: absolute; inset: 0; border: 1px solid rgba(20,20,20,.2); pointer-events: none; }
.pas-svc-card__head img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	filter: saturate(1.08) contrast(1.04);
	transition: transform .65s cubic-bezier(.2,0,0,1),filter .35s ease;
}
.pas-svc-card:nth-child(3n+1) .pas-svc-card__head img { object-position: 68% center; }
.pas-svc-card:nth-child(3n+2) .pas-svc-card__head img { object-position: 36% center; }
.pas-svc-card:nth-child(3n+3) .pas-svc-card__head img { object-position: center; }
.pas-svc-card h3 { margin-top: 22px; }
.pas-svc-card li::before { color: var(--pas-svc-accent); }
.pas-svc-card:hover {
	transform: translateY(-3px);
	box-shadow: 0 18px 38px rgba(28,28,26,.1);
}
.pas-svc-card:hover .pas-svc-card__head img { transform: scale(1.09); filter: saturate(1.18) contrast(1.05); }
.pas-svc-card--core .pas-svc-card__head .pas-svc-card__meta small { color: #d0d0d0; }
.pas-svc-card--core .pas-svc-card__head figure::after { border-color: rgba(255,255,255,.25); }

@media (max-width: 700px) {
	.pas-svc-card { min-height: 285px; padding: 17px 17px 16px; }
	.pas-svc-card__head { min-height: 62px; }
	.pas-svc-card__head figure { width: 94px; min-width: 94px; }
	.pas-svc-card__head .pas-svc-card__meta span { font-size: 21px; }
	.pas-svc-card h3 { margin-top: 17px; font-size: 23px; }
	.pas-svc-card > p { display: -webkit-box; overflow: hidden; -webkit-box-orient: vertical; -webkit-line-clamp: 2; }
}

/* Version 8.14: premium motion accents for the home page. */
.home .pas-v5-hero__wash {
	z-index: 1;
	overflow: hidden;
	pointer-events: none;
}
.home .pas-v5-hero__wash::after {
	content: "";
	position: absolute;
	top: -25%;
	bottom: -25%;
	left: -35%;
	width: 24%;
	background: linear-gradient(90deg,transparent,rgba(255,255,255,.2),transparent);
	transform: skewX(-12deg);
	animation: pas-home-light-scan 12s cubic-bezier(.4,0,.2,1) infinite;
}
.home .pas-v5-hero h1 span {
	background: linear-gradient(105deg,transparent 35%,rgba(154,114,29,.48) 50%,transparent 65%) 120% 50% / 260% 100% no-repeat;
	-webkit-background-clip: text;
	background-clip: text;
	animation: pas-home-outline-glint 8s ease-in-out infinite;
}
.home .pas-v5-marker i {
	transform-origin: top;
	animation: pas-home-marker-pulse 3.8s ease-in-out infinite;
}
.home .pas-v5-service-list a { overflow: hidden; }
.home .pas-v5-service-list a::before {
	content: "";
	position: absolute;
	inset: 0;
	background: radial-gradient(circle at var(--pas-row-x,50%) 50%,rgba(154,114,29,.13),transparent 31%);
	opacity: 0;
	transition: opacity .3s ease;
	pointer-events: none;
}
.home .pas-v5-service-list a > * { position: relative; z-index: 1; }
.home .pas-v5-service-list a:hover::before,
.home .pas-v5-service-list a:focus-visible::before { opacity: 1; }
.home .pas-v5-work-card figure::before {
	content: "";
	position: absolute;
	inset: 0;
	z-index: 1;
	background: radial-gradient(circle at var(--pas-card-px,50%) var(--pas-card-py,50%),rgba(255,255,255,.3),transparent 36%);
	opacity: 0;
	transition: opacity .35s ease;
	pointer-events: none;
}
.home .pas-v5-work-card:hover figure::before,
.home .pas-v5-work-card:focus-visible figure::before { opacity: 1; }
.pas-motion-ready body.home .pas-v5-work-card.pas-reveal figure {
	clip-path: inset(0 0 100% 0);
	transition: clip-path .9s cubic-bezier(.22,1,.36,1);
}
.pas-motion-ready body.home .pas-v5-work-card.pas-reveal.is-visible figure { clip-path: inset(0); }
.home .pas-v5-contact__image {
	will-change: transform;
	animation: pas-home-contact-drift 18s ease-in-out infinite alternate;
}

@keyframes pas-home-light-scan {
	0%,24% { transform: translateX(0) skewX(-12deg); opacity: 0; }
	34% { opacity: .55; }
	58%,100% { transform: translateX(620%) skewX(-12deg); opacity: 0; }
}
@keyframes pas-home-outline-glint {
	0%,68% { background-position: 120% 50%; }
	88%,100% { background-position: -120% 50%; }
}
@keyframes pas-home-marker-pulse {
	0%,100% { transform: scaleY(.64); opacity: .52; }
	50% { transform: scaleY(1); opacity: 1; }
}
@keyframes pas-home-contact-drift {
	from { transform: scale(1.025) translate3d(-.5%,0,0); }
	to { transform: scale(1.075) translate3d(.75%,-.5%,0); }
}

@media (max-width: 700px) {
	.home .pas-v5-hero__wash::after { display: none; }
	.home .pas-v5-service-list a::before { display: none; }
}

@media (prefers-reduced-motion: reduce) {
	.home .pas-v5-hero__wash::after,
	.home .pas-v5-hero h1 span,
	.home .pas-v5-marker i,
	.home .pas-v5-contact__image { animation: none; }
	.pas-motion-ready body.home .pas-v5-work-card.pas-reveal figure { clip-path: none; transition: none; }
}

/* Version 8.16: remove the cursor-following hero shine. */

/* Version 8.17: detailed public-platform studies. */
.page-template-page-projects .pas-reference-showcase {
	padding: 94px 0 108px;
	background: #eeefed;
}
.page-template-page-projects .pas-reference-showcase__heading {
	margin-bottom: 52px;
}
.page-template-page-projects .pas-reference-grid {
	gap: 18px;
	border: 0;
}
.page-template-page-projects .pas-reference-card {
	min-width: 0;
	overflow: hidden;
	border: 1px solid #b8bab7;
	background: #f8f9f7;
	padding: 0;
	transition: transform .4s cubic-bezier(.2,0,0,1),box-shadow .4s ease,border-color .3s ease;
}
.page-template-page-projects .pas-reference-card:hover,
.page-template-page-projects .pas-reference-card:focus-visible {
	border-color: #858783;
	box-shadow: 0 20px 48px rgba(24,27,25,.09);
	transform: translateY(-3px);
}
.page-template-page-projects .pas-reference-card__visual {
	--pas-reference-scale: 1.1;
	--pas-reference-hover-scale: 1.135;
	aspect-ratio: 16/9;
	background: #171817;
}
.page-template-page-projects .pas-reference-card__visual img {
	object-position: center 72%;
	transform: scale(var(--pas-reference-scale));
	filter: saturate(1.05) contrast(1.025);
}
.page-template-page-projects .pas-reference-card__visual--01 { --pas-reference-scale: 1.12; --pas-reference-hover-scale: 1.155; }
.page-template-page-projects .pas-reference-card__visual--01 img { object-position: center 76%; }
.page-template-page-projects .pas-reference-card__visual--02 img { object-position: center 78%; }
.page-template-page-projects .pas-reference-card__visual--03 { --pas-reference-scale: 1.17; --pas-reference-hover-scale: 1.205; }
.page-template-page-projects .pas-reference-card__visual--03 img { object-position: center 82%; }
.page-template-page-projects .pas-reference-card__visual--04 { --pas-reference-scale: 1.08; --pas-reference-hover-scale: 1.115; }
.page-template-page-projects .pas-reference-card__visual--04 img { object-position: center 61%; }
.page-template-page-projects .pas-reference-card:hover .pas-reference-card__visual img,
.page-template-page-projects .pas-reference-card:focus-visible .pas-reference-card__visual img {
	transform: scale(var(--pas-reference-hover-scale));
	filter: saturate(1.12) contrast(1.04);
}
.page-template-page-projects .pas-reference-card__visual > span {
	right: 14px;
	bottom: 14px;
	min-width: 0;
	background: rgba(247,248,246,.94);
	padding: 9px 11px;
	color: #242624;
	font-family: Roboto,Arial,sans-serif;
	font-size: 8px;
	font-weight: 700;
	letter-spacing: .12em;
	backdrop-filter: blur(10px);
}
.page-template-page-projects .pas-reference-card__body { padding: 25px 27px 28px; }
.page-template-page-projects .pas-reference-card__meta {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 18px;
	margin-bottom: 15px;
}
.page-template-page-projects .pas-reference-card__meta > p {
	margin: 0;
	color: #776124;
	font-size: 8px;
	font-weight: 700;
	letter-spacing: .12em;
	text-transform: uppercase;
}
.page-template-page-projects .pas-reference-card__meta > span {
	border-inline-start: 1px solid #babcb8;
	padding-inline-start: 13px;
	color: #555852;
	font-size: 8px;
	font-weight: 700;
	text-transform: uppercase;
}
.page-template-page-projects .pas-reference-card h3 {
	max-width: 520px;
	font-family: Roboto,Arial,sans-serif;
	font-size: 30px;
	font-weight: 400;
	line-height: 1.08;
}
.page-template-page-projects .pas-reference-card__summary {
	max-width: 590px;
	margin: 18px 0 23px;
	color: #696c67;
	font-size: 12px;
	font-weight: 400;
	letter-spacing: 0;
	line-height: 1.72;
	text-transform: none;
}
.page-template-page-projects .pas-reference-card__facts {
	display: grid;
	grid-template-columns: repeat(3,minmax(0,1fr));
	margin: 0;
	border-top: 1px solid #c8cac6;
	border-bottom: 1px solid #c8cac6;
}
.page-template-page-projects .pas-reference-card__facts > div {
	min-width: 0;
	padding: 14px 13px 15px 0;
}
.page-template-page-projects .pas-reference-card__facts > div + div {
	border-inline-start: 1px solid #c8cac6;
	padding-inline-start: 13px;
}
.page-template-page-projects .pas-reference-card__facts dt,
.page-template-page-projects .pas-reference-card__footer small {
	margin-bottom: 6px;
	color: #8a8c87;
	font-size: 7px;
	font-weight: 700;
	letter-spacing: .11em;
	text-transform: uppercase;
}
.page-template-page-projects .pas-reference-card__facts dd {
	margin: 0;
	color: #30322f;
	font-size: 10px;
	font-weight: 500;
	line-height: 1.4;
}
.page-template-page-projects .pas-reference-card__features {
	display: grid;
	grid-template-columns: repeat(2,minmax(0,1fr));
	gap: 8px 22px;
	margin: 22px 0 25px;
	padding: 0;
	list-style: none;
}
.page-template-page-projects .pas-reference-card__features li {
	position: relative;
	padding-inline-start: 14px;
	color: #5f625d;
	font-size: 10px;
	line-height: 1.45;
}
.page-template-page-projects .pas-reference-card__features li::before {
	content: "";
	position: absolute;
	top: .55em;
	left: 0;
	width: 5px;
	height: 5px;
	background: #a47b21;
}
.page-template-page-projects .pas-reference-card__footer {
	display: grid;
	grid-template-columns: 1fr auto;
	align-items: end;
	gap: 24px;
	margin-top: 0;
}
.page-template-page-projects .pas-reference-card__footer > span {
	display: flex;
	align-items: flex-start;
	flex-direction: column;
	color: #414440;
	font-size: 10px;
	line-height: 1.45;
}
.page-template-page-projects .pas-reference-card__footer strong {
	color: #292b28;
	font-size: 9px;
	font-weight: 700;
	letter-spacing: .1em;
	text-transform: uppercase;
	white-space: nowrap;
}
.page-template-page-projects .pas-reference-card:hover .pas-reference-card__footer strong { color: #8c681d; }

@media (max-width: 1024px) {
	.page-template-page-projects .pas-reference-grid { grid-template-columns: 1fr; }
}

@media (max-width: 700px) {
	.page-template-page-projects .pas-reference-showcase { padding: 70px 0 78px; }
	.page-template-page-projects .pas-reference-card__body { padding: 22px 19px 24px; }
	.page-template-page-projects .pas-reference-card h3 { font-size: 26px; }
	.page-template-page-projects .pas-reference-card__meta { align-items: flex-start; flex-direction: column; gap: 8px; }
	.page-template-page-projects .pas-reference-card__meta > span { border-inline-start: 0; padding-inline-start: 0; }
	.page-template-page-projects .pas-reference-card__facts { grid-template-columns: 1fr; }
	.page-template-page-projects .pas-reference-card__facts > div { padding: 11px 0; }
	.page-template-page-projects .pas-reference-card__facts > div + div { border-top: 1px solid #d2d4d0; border-inline-start: 0; padding-inline-start: 0; }
	.page-template-page-projects .pas-reference-card__features { grid-template-columns: 1fr; gap: 7px; }
	.page-template-page-projects .pas-reference-card__footer { grid-template-columns: 1fr; gap: 17px; }
}

@media (prefers-reduced-motion: reduce) {
	.page-template-page-projects .pas-reference-card,
	.page-template-page-projects .pas-reference-card__visual img { transform: none !important; transition: none; }
}

/* Version 8.18: competition platform product system. */
.pas-plugin-teaser { padding: 72px 0; background: #191b1b; color: #fff; }
.pas-plugin-teaser__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(45px,8vw,120px); align-items: center; }
.pas-plugin-teaser h2 { max-width: 640px; margin: 13px 0 0; color: #fff; font-size: clamp(38px,4.4vw,64px); font-weight: 400; line-height: 1.03; }
.pas-plugin-teaser__grid > div:last-child > p { max-width: 650px; margin: 0; color: #b7bab8; font-size: 13px; line-height: 1.8; }
.pas-plugin-teaser__metrics { display: flex; flex-wrap: wrap; gap: 9px 25px; margin: 25px 0; border-top: 1px solid rgba(255,255,255,.18); border-bottom: 1px solid rgba(255,255,255,.18); padding: 14px 0; }
.pas-plugin-teaser__metrics span { color: #b8bbb9; font-size: 9px; font-weight: 700; letter-spacing: .09em; text-transform: uppercase; }
.pas-plugin-teaser__metrics strong { margin-inline-end: 5px; color: #e7c76e; font-size: 19px; font-weight: 400; }
.pas-plugin-teaser .pas-btn { border-color: #e7c76e; background: #e7c76e; color: #171919; }

.pas-platform-intro { padding: 92px 0 0; background: #f4f4f2; }
.pas-platform-intro__grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(55px,8vw,120px); align-items: end; }
.pas-platform-intro h2 { max-width: 760px; margin: 14px 0 0; color: #282a29; font-size: clamp(44px,5.5vw,76px); font-weight: 400; line-height: 1; }
.pas-platform-intro__grid > div:last-child > p { margin: 0 0 23px; color: #676a67; font-size: 14px; line-height: 1.85; }
.pas-platform-metrics { display: grid; grid-template-columns: repeat(4,minmax(0,1fr)); margin-top: 72px; border-top: 1px solid #b7b9b6; border-inline-start: 1px solid #b7b9b6; }
.pas-platform-metrics > div { display: flex; min-height: 132px; flex-direction: column; justify-content: space-between; border-inline-end: 1px solid #b7b9b6; padding: 20px; }
.pas-platform-metrics strong { color: #96701d; font-size: 38px; font-weight: 400; line-height: 1; }
.pas-platform-metrics span { color: #6c6f6b; font-size: 9px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }

.pas-platform-modules { padding: 100px 0; background: #171919; color: #fff; }
.pas-platform-heading { display: grid; grid-template-columns: 1.2fr .8fr; gap: clamp(45px,8vw,110px); align-items: end; margin-bottom: 52px; }
.pas-platform-heading h2 { max-width: 760px; margin: 13px 0 0; color: inherit; font-size: clamp(42px,5vw,70px); font-weight: 400; line-height: 1.02; }
.pas-platform-heading > p { max-width: 510px; margin: 0 0 5px; color: #8c908d; font-size: 13px; line-height: 1.85; }
.pas-platform-modules .pas-eyebrow { color: #d6b65e; }
.pas-platform-module-grid { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); border-top: 1px solid rgba(255,255,255,.2); border-inline-start: 1px solid rgba(255,255,255,.2); }
.pas-platform-module { position: relative; min-width: 0; border-inline-end: 1px solid rgba(255,255,255,.2); border-bottom: 1px solid rgba(255,255,255,.2); padding: 27px 30px 30px; }
.pas-platform-module:nth-child(6), .pas-platform-module:nth-child(7) { grid-column: 1/-1; }
.pas-platform-module::before { content: ""; position: absolute; top: -1px; left: -1px; width: 58px; height: 3px; background: #c6a347; transition: width .5s cubic-bezier(.2,0,0,1); }
.pas-platform-module:nth-child(3n+2)::before { background: #9d4148; }
.pas-platform-module:nth-child(3n+3)::before { background: #3f7771; }
.pas-platform-module:hover::before { width: 118px; }
.pas-platform-module > header { display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.pas-platform-module > header span { color: #d9bd70; font-size: 30px; font-weight: 400; }
.pas-platform-module > header small { color: #8e928f; font-size: 8px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.pas-platform-module h3 { max-width: 530px; margin: 35px 0 13px; color: #fff; font-size: 30px; font-weight: 400; line-height: 1.08; }
.pas-platform-module > p { max-width: 610px; margin: 0 0 25px; color: #969a97; font-size: 11px; line-height: 1.72; }
.pas-platform-module ol { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 0 22px; margin: 0; padding: 0; list-style: none; }
.pas-platform-module:nth-child(6) ol { grid-template-columns: repeat(3,minmax(0,1fr)); }
.pas-platform-module li { display: grid; grid-template-columns: 28px 1fr; gap: 9px; align-items: start; border-top: 1px solid rgba(255,255,255,.13); padding: 10px 0; color: #d2d5d3; font-size: 10px; line-height: 1.45; }
.pas-platform-module li span { color: #8b8f8c; font-size: 8px; }

.pas-platform-journey { padding: 96px 0; background: #f4f4f2; color: #292b29; }
.pas-platform-journey__steps { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); border-top: 1px solid #aeb1ad; border-inline-start: 1px solid #aeb1ad; }
.pas-platform-journey__steps article { min-height: 220px; border-inline-end: 1px solid #aeb1ad; border-bottom: 1px solid #aeb1ad; padding: 23px; }
.pas-platform-journey__steps span { color: #9b751f; font-size: 11px; }
.pas-platform-journey__steps h3 { margin: 52px 0 11px; color: #292b29; font-size: 23px; font-weight: 400; }
.pas-platform-journey__steps p { margin: 0; color: #727571; font-size: 11px; line-height: 1.7; }

.pas-platform-poster { display: grid; grid-template-columns: 1.08fr .92fr; min-height: 720px; overflow: hidden; background: #111313; color: #fff; }
.pas-platform-poster figure { min-height: 720px; margin: 0; overflow: hidden; }
.pas-platform-poster figure img { width: 100%; height: 100%; object-fit: cover; }
.pas-platform-poster__content { display: flex; justify-content: center; flex-direction: column; padding: clamp(45px,6vw,90px); }
.pas-platform-poster__content h2 { margin: 13px 0 22px; color: #fff; font-size: clamp(40px,4.5vw,65px); font-weight: 400; line-height: 1.03; }
.pas-platform-poster__content > p:not(.pas-eyebrow) { color: #a9adaa; font-size: 12px; line-height: 1.8; }
.pas-platform-poster code { display: block; overflow-wrap: anywhere; margin: 24px 0 16px; border: 1px solid rgba(255,255,255,.24); padding: 16px; color: #e6c668; font-size: 10px; line-height: 1.65; }
.pas-platform-poster ul { display: flex; flex-wrap: wrap; gap: 8px; margin: 0; padding: 0; list-style: none; }
.pas-platform-poster li { border: 1px solid rgba(255,255,255,.18); padding: 7px 9px; color: #b7bbb8; font-size: 8px; letter-spacing: .08em; text-transform: uppercase; }

.pas-platform-admin { padding: 95px 0; background: #e8e9e6; }
.pas-platform-admin__grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(50px,8vw,120px); align-items: start; }
.pas-platform-admin h2 { margin: 13px 0 20px; color: #292b29; font-size: clamp(40px,4.5vw,64px); font-weight: 400; line-height: 1.03; }
.pas-platform-admin p:not(.pas-eyebrow) { max-width: 560px; color: #70736f; font-size: 12px; line-height: 1.8; }
.pas-platform-admin__list { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); border-top: 1px solid #aeb1ad; border-inline-start: 1px solid #aeb1ad; }
.pas-platform-admin__list span { min-height: 76px; border-inline-end: 1px solid #aeb1ad; border-bottom: 1px solid #aeb1ad; padding: 20px; color: #3e413e; font-size: 11px; font-weight: 500; }

.pas-website-platform { padding: 92px 0; background: #1a1c1c; color: #fff; }
.pas-website-platform .pas-eyebrow { color: #dfbf67; }
.pas-website-platform__grid { display: grid; grid-template-columns: repeat(4,minmax(0,1fr)); margin-bottom: 35px; border-top: 1px solid rgba(255,255,255,.2); border-inline-start: 1px solid rgba(255,255,255,.2); }
.pas-website-platform__grid article { min-height: 265px; border-inline-end: 1px solid rgba(255,255,255,.2); border-bottom: 1px solid rgba(255,255,255,.2); padding: 22px; }
.pas-website-platform__grid span { color: #d4b55e; font-size: 10px; }
.pas-website-platform__grid h3 { margin: 58px 0 12px; color: #fff; font-size: 22px; font-weight: 400; line-height: 1.12; }
.pas-website-platform__grid p { color: #909491; font-size: 10px; line-height: 1.7; }

@media (max-width: 1024px) {
	.pas-plugin-teaser__grid, .pas-platform-intro__grid, .pas-platform-heading, .pas-platform-admin__grid { grid-template-columns: 1fr; gap: 32px; }
	.pas-platform-poster { grid-template-columns: 1fr; }
	.pas-platform-poster figure { min-height: 62vw; }
	.pas-website-platform__grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
}

/* Version 8.19: platform project case study and accessible project contrast. */
body.single-pas_project .pas-breadcrumb,
body.single-pas_project .pas-breadcrumb a,
body.single-pas_project .pas-breadcrumb span,
.single-pas_project .pas-project-detail p { color: #565656; }
.single-pas_project .pas-v3-sample-label,
.single-pas_project .pas-v3-case-story article > span { color: #765814 !important; }
.single-pas_project .pas-v3-case-story .pas-eyebrow,
.single-pas_project .pas-v3-case-story p { color: #595959; }

@media (max-width: 700px) {
	.pas-plugin-teaser { padding: 58px 0; }
	.pas-plugin-teaser h2 { font-size: 37px; }
	.pas-plugin-teaser__metrics { display: grid; grid-template-columns: 1fr; gap: 10px; }
	.pas-platform-intro { padding-top: 68px; }
	.pas-platform-intro h2, .pas-platform-heading h2, .pas-platform-admin h2 { font-size: 39px; }
	.pas-platform-metrics { grid-template-columns: repeat(2,minmax(0,1fr)); margin-top: 52px; }
	.pas-platform-metrics > div { min-height: 112px; }
	.pas-platform-modules, .pas-platform-journey, .pas-platform-admin, .pas-website-platform { padding: 72px 0; }
	.pas-platform-module-grid, .pas-platform-journey__steps, .pas-platform-admin__list, .pas-website-platform__grid { grid-template-columns: 1fr; }
	.pas-platform-module:nth-child(6), .pas-platform-module:nth-child(7) { grid-column: auto; }
	.pas-platform-module { padding: 24px 20px 26px; }
	.pas-platform-module h3 { margin-top: 29px; font-size: 26px; }
	.pas-platform-module ol, .pas-platform-module:nth-child(6) ol { grid-template-columns: 1fr; }
	.pas-platform-journey__steps article { min-height: 185px; }
	.pas-platform-journey__steps h3 { margin-top: 38px; }
	.pas-platform-poster { min-height: 0; }
	.pas-platform-poster figure { min-height: 58svh; }
	.pas-platform-poster__content { padding: 52px 24px 60px; }
	.pas-platform-poster__content h2 { font-size: 39px; }
	.pas-platform-admin__list span { min-height: 64px; }
	.pas-website-platform__grid article { min-height: 220px; }
	.pas-website-platform__grid h3 { margin-top: 42px; }
}

@media (prefers-reduced-motion: reduce) {
	.pas-platform-module::before { transition: none; }
}

/* Version 8.15: stable, polished image hover behavior. */
.home .pas-v5-work-card figure { isolation: isolate; }
.home .pas-v5-work-card img {
	transform: scale(1.015);
	transition: transform .7s cubic-bezier(.2,0,0,1),filter .4s ease;
}
.home .pas-v5-work-card:hover img,
.home .pas-v5-work-card:focus-visible img {
	transform: scale(1.055);
	filter: saturate(1.1) contrast(1.025);
}
.home .pas-v5-work-card figure::before {
	inset: -35% auto -35% -34%;
	width: 22%;
	background: linear-gradient(90deg,transparent,rgba(255,255,255,.34),transparent);
	opacity: 0;
	transform: skewX(-14deg) translateX(0);
	transition: transform .85s cubic-bezier(.2,0,0,1),opacity .18s ease;
}
.home .pas-v5-work-card:hover figure::before,
.home .pas-v5-work-card:focus-visible figure::before {
	opacity: .75;
	transform: skewX(-14deg) translateX(680%);
}
.home .pas-v5-work-card figure span { z-index: 3; }
.home .pas-v5-object__image img {
	transition: transform .85s cubic-bezier(.2,0,0,1),filter .4s ease;
}
.home .pas-v5-object__image:hover img {
	transform: translate3d(0,var(--pas-parallax-y,0px),0) scale(1.06);
	filter: saturate(1.1) contrast(1.025);
}

@media (prefers-reduced-motion: reduce) {
	.home .pas-v5-work-card img,
	.home .pas-v5-work-card:hover img,
	.home .pas-v5-object__image img,
	.home .pas-v5-object__image:hover img { transform: none; transition: none; }
	.home .pas-v5-work-card figure::before { display: none; }
}

/* Version 8.21: editorial About page. */
.page-template-page-about .pas-page-hero { min-height: 650px; }
.page-template-page-about .pas-page-hero__overlay { background: linear-gradient(90deg,rgba(246,246,243,.94) 0%,rgba(246,246,243,.72) 53%,rgba(246,246,243,.18) 100%); }
.page-template-page-about .pas-page-hero__content { max-width: 940px; }
.page-template-page-about .pas-page-hero h1 { max-width: 880px; }

.pas-about-manifesto { padding: 105px 0 0; background: #f8f8f5; color: #242627; }
.pas-about-manifesto__grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 90px; align-items: start; }
.pas-about-manifesto h2 { max-width: 650px; margin: 0; font-size: clamp(52px,6vw,88px); font-weight: 400; line-height: .96; }
.pas-about-manifesto__copy { max-width: 600px; padding-top: 30px; }
.pas-about-manifesto__copy p { margin: 0 0 22px; color: #55595a; font-size: 16px; line-height: 1.9; }
.pas-about-manifesto__copy a { display: inline-flex; gap: 14px; align-items: center; margin-top: 15px; padding-bottom: 8px; border-bottom: 1px solid #242627; color: #242627; font-size: 11px; font-weight: 700; text-transform: uppercase; }
.pas-about-proof { display: grid; grid-template-columns: repeat(4,minmax(0,1fr)); margin-top: 86px; border-top: 1px solid #aeb0ae; border-inline-start: 1px solid #aeb0ae; }
.pas-about-proof > div { min-height: 225px; padding: 25px; border-inline-end: 1px solid #aeb0ae; }
.pas-about-proof strong { display: block; color: #9a7220; font-size: 14px; }
.pas-about-proof span { display: block; margin-top: 52px; font-size: 18px; font-weight: 600; }
.pas-about-proof p { max-width: 245px; margin: 12px 0 0; color: #646767; font-size: 12px; line-height: 1.65; }

.pas-about-field { display: grid; grid-template-columns: 1.08fr .92fr; min-height: 760px; background: #121415; color: #fff; }
.pas-about-field figure { min-height: 760px; margin: 0; overflow: hidden; }
.pas-about-field figure img { width: 100%; height: 100%; object-fit: cover; transform: translate3d(0,var(--pas-parallax-y,0),0) scale(1.06); }
.pas-about-field__content { display: flex; flex-direction: column; justify-content: center; padding: 80px clamp(42px,7vw,110px); }
.pas-about-field__content h2 { max-width: 660px; margin: 8px 0 25px; font-size: clamp(46px,5vw,72px); font-weight: 400; line-height: .98; }
.pas-about-field__content > p:not(.pas-eyebrow) { max-width: 610px; margin: 0; color: #bfc2c2; font-size: 14px; line-height: 1.85; }
.pas-about-field dl { margin: 42px 0 0; }
.pas-about-field dl div { display: grid; grid-template-columns: 145px 1fr; gap: 24px; padding: 17px 0; border-top: 1px solid #434647; }
.pas-about-field dt { color: #d2ad57; font-size: 10px; font-weight: 700; text-transform: uppercase; }
.pas-about-field dd { margin: 0; color: #e5e6e4; font-size: 12px; line-height: 1.6; }

.pas-about-values { padding: 105px 0; background: #fff; color: #242627; }
.pas-about-heading { display: grid; grid-template-columns: 1.35fr .65fr; gap: 70px; align-items: end; margin-bottom: 54px; }
.pas-about-heading h2 { margin: 0; font-size: clamp(48px,5vw,76px); font-weight: 400; line-height: 1; }
.pas-about-heading > p { max-width: 450px; margin: 0; color: #626565; font-size: 13px; line-height: 1.8; }
.pas-about-values__grid { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); border-top: 1px solid #a8aaa8; border-inline-start: 1px solid #a8aaa8; }
.pas-about-values__grid article { min-height: 285px; padding: 27px; border-inline-end: 1px solid #a8aaa8; border-bottom: 1px solid #a8aaa8; }
.pas-about-values__grid span { color: #9a7220; font-size: 13px; }
.pas-about-values__grid h3 { margin: 72px 0 15px; font-size: 25px; font-weight: 500; }
.pas-about-values__grid p { max-width: 340px; margin: 0; color: #5c6060; font-size: 13px; line-height: 1.75; }

.pas-about-process { padding: 105px 0; background: #eeefeb; color: #242627; }
.pas-about-process ol { display: grid; grid-template-columns: repeat(5,minmax(0,1fr)); margin: 0; padding: 0; border-top: 1px solid #a5a8a6; border-inline-start: 1px solid #a5a8a6; list-style: none; }
.pas-about-process li { min-height: 285px; padding: 25px 22px; border-inline-end: 1px solid #a5a8a6; border-bottom: 1px solid #a5a8a6; }
.pas-about-process li span { color: #9a7220; font-size: 12px; }
.pas-about-process li h3 { margin: 82px 0 16px; font-size: 22px; font-weight: 500; }
.pas-about-process li p { margin: 0; color: #606363; font-size: 12px; line-height: 1.7; }

.pas-about-team { padding: 110px 0; background: #111314; color: #fff; }
.pas-about-team__intro { display: grid; grid-template-columns: .28fr 1.15fr .57fr; gap: 46px; align-items: end; margin-bottom: 65px; }
.pas-about-team__intro h2 { max-width: 820px; margin: 0; font-size: clamp(42px,4.6vw,70px); font-weight: 400; line-height: 1; }
.pas-about-team__intro > p:last-child { margin: 0; color: #b7baba; font-size: 13px; line-height: 1.8; }
.pas-about-team__grid { border-top: 1px solid #454849; }
.pas-about-team__grid article { display: grid; grid-template-columns: 80px .8fr 1.2fr; gap: 28px; align-items: start; min-height: 178px; padding: 28px 0; border-bottom: 1px solid #454849; }
.pas-about-team__grid article > span { color: #d0aa55; font-size: 13px; }
.pas-about-team__grid article div p { margin: 0 0 8px; color: #aeb1b1; font-size: 9px; font-weight: 700; text-transform: uppercase; }
.pas-about-team__grid h3 { margin: 0; font-size: 27px; font-weight: 500; }
.pas-about-team__grid article > p { max-width: 620px; margin: 0; color: #c1c3c3; font-size: 13px; line-height: 1.8; }

.pas-about-global { padding: 105px 0; background: #f8f8f5; color: #242627; }
.pas-about-global__grid { display: grid; grid-template-columns: .92fr 1.08fr; gap: 75px; align-items: center; }
.pas-about-global__content h2 { max-width: 650px; margin: 6px 0 25px; font-size: clamp(46px,5vw,74px); font-weight: 400; line-height: 1; }
.pas-about-global__content > p:not(.pas-eyebrow) { max-width: 590px; color: #5d6060; font-size: 14px; line-height: 1.85; }
.pas-about-global figure { min-height: 650px; margin: 0; overflow: hidden; }
.pas-about-global figure img { width: 100%; height: 100%; object-fit: cover; transform: translate3d(0,var(--pas-parallax-y,0),0) scale(1.06); }
.pas-about-global__audiences { display: flex; flex-wrap: wrap; gap: 0; margin-top: 38px; border-top: 1px solid #b0b2b0; border-inline-start: 1px solid #b0b2b0; }
.pas-about-global__audiences span { width: 50%; padding: 12px 14px; border-inline-end: 1px solid #b0b2b0; border-bottom: 1px solid #b0b2b0; color: #404343; font-size: 10px; text-transform: uppercase; }

.pas-about-testimonials { padding: 105px 0; background: #fff; color: #242627; }
.pas-about-testimonials__grid { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); border-top: 1px solid #aaa; border-inline-start: 1px solid #aaa; }
.pas-about-testimonials__grid article { display: flex; flex-direction: column; min-height: 365px; padding: 28px; border-inline-end: 1px solid #aaa; border-bottom: 1px solid #aaa; }
.pas-about-testimonials__grid article > span { color: #855f13; font-size: 9px; font-weight: 700; text-transform: uppercase; }
.pas-about-testimonials blockquote { margin: 58px 0 30px; font-size: 21px; line-height: 1.45; }
.pas-about-testimonials__grid article > p { margin: auto 0 0; color: #626565; font-size: 11px; text-transform: uppercase; }

@media (max-width: 1024px) {
	.pas-about-manifesto__grid, .pas-about-heading, .pas-about-global__grid { grid-template-columns: 1fr; gap: 32px; }
	.pas-about-field { grid-template-columns: 1fr; }
	.pas-about-field figure { min-height: 58svh; }
	.pas-about-proof { grid-template-columns: repeat(2,minmax(0,1fr)); }
	.pas-about-values__grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
	.pas-about-process ol { grid-template-columns: repeat(3,minmax(0,1fr)); }
	.pas-about-team__intro { grid-template-columns: 1fr; gap: 24px; }
	.pas-about-global figure { min-height: 55svh; order: -1; }
}

@media (max-width: 700px) {
	.page-template-page-about .pas-page-hero { min-height: 610px; }
	.pas-about-manifesto, .pas-about-values, .pas-about-process, .pas-about-team, .pas-about-global, .pas-about-testimonials { padding: 70px 0; }
	.pas-about-manifesto h2, .pas-about-heading h2, .pas-about-field__content h2, .pas-about-global__content h2 { font-size: 40px; }
	.pas-about-manifesto__copy { padding-top: 0; }
	.pas-about-proof { grid-template-columns: 1fr; margin-top: 55px; }
	.pas-about-proof > div { min-height: 175px; }
	.pas-about-proof span { margin-top: 35px; }
	.pas-about-field figure { min-height: 52svh; }
	.pas-about-field__content { padding: 58px 24px 66px; }
	.pas-about-field dl div { grid-template-columns: 1fr; gap: 8px; }
	.pas-about-values__grid, .pas-about-process ol, .pas-about-testimonials__grid { grid-template-columns: 1fr; }
	.pas-about-values__grid article, .pas-about-process li { min-height: 225px; }
	.pas-about-values__grid h3, .pas-about-process li h3 { margin-top: 50px; }
	.pas-about-team__grid article { grid-template-columns: 40px 1fr; gap: 20px; }
	.pas-about-team__grid article > p { grid-column: 2; }
	.pas-about-global__audiences span { width: 100%; }
	.pas-about-testimonials__grid article { min-height: 310px; }
}

/* Version 8.22: unified institutional editorial system. */
:root {
	--pas-canvas: #f2f3f0;
	--pas-paper: #fafaf8;
	--pas-ink: #202322;
	--pas-subtle: #656966;
	--pas-rule: #b9bcb8;
	--pas-accent: #75530f;
	--pas-dark: #171918;
	--pas-ease: cubic-bezier(.2, 0, 0, 1);
}

body { background: var(--pas-canvas); color: var(--pas-ink); font-family: Roboto, Arial, sans-serif; }
body:not(.home) .pas-main { background: var(--pas-canvas); }
.pas-container { width: min(1320px, calc(100% - 56px)); }

.pas-header {
	padding: 15px 0;
	border-bottom: 1px solid rgba(32,35,34,.16);
	background: rgba(250,250,248,.94);
	backdrop-filter: blur(18px);
}
.pas-header.is-scrolled { padding: 8px 0; background: rgba(250,250,248,.94); box-shadow: 0 12px 34px rgba(27,29,28,.07); }
.pas-logo span { width: 38px; height: 38px; border: 0; background: var(--pas-dark); color: #fff; font-family: Roboto,Arial,sans-serif; font-size: 10px; }
.pas-logo strong { color: var(--pas-ink); font-size: 11px; letter-spacing: .13em; }
.pas-nav__list { gap: 34px; }
.pas-nav a { color: #252827; font-size: 12px; font-weight: 700; letter-spacing: .09em; }
.pas-nav > .pas-btn { min-height: 42px; border: 1px solid #262827; background: transparent; color: #262827; padding-inline: 19px; }
.pas-nav > .pas-btn:hover { background: #262827; color: #fff; }

body:not(.home) .pas-page-hero {
	min-height: 640px;
	padding: 140px 5vw 72px;
	background: #e7e8e4;
}
body:not(.home) .pas-page-hero__media {
	background-position: center 48%;
	filter: saturate(.95) contrast(1.02);
	transform: scale(1.025);
}
body:not(.home) .pas-page-hero__overlay {
	background: linear-gradient(90deg,rgba(244,245,242,.96) 0%,rgba(244,245,242,.82) 49%,rgba(244,245,242,.24) 78%,rgba(244,245,242,.08) 100%);
}
body:not(.home) .pas-page-hero::after { inset: 16px; border-color: rgba(35,38,36,.24); }
body:not(.home) .pas-page-hero .pas-container { grid-template-columns: 96px minmax(0,920px); gap: 42px; }
body:not(.home) .pas-page-hero h1 {
	max-width: 900px;
	color: var(--pas-ink);
	font-family: Roboto,Arial,sans-serif;
	font-size: clamp(52px,6.1vw,88px);
	font-weight: 400;
	line-height: .98;
}
body:not(.home) .pas-page-hero p:not(.pas-eyebrow) { max-width: 700px; color: #555956; font-size: 14px; line-height: 1.82; }
.pas-page-hero__marker { color: #353836; }
.pas-page-hero__marker strong { color: var(--pas-accent); font-size: 42px; }
.pas-page-hero__marker span { color: #555956; letter-spacing: .12em; }
.pas-breadcrumb { margin-bottom: 24px; color: #6c706c; font-size: 10px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
body:not(.home) .pas-page-hero .pas-actions { margin-top: 27px; }
body:not(.home) .pas-page-hero .pas-btn { min-height: 44px; border-color: var(--pas-dark); background: var(--pas-dark); color: #fff; }
body:not(.home) .pas-page-hero .pas-btn--secondary { background: transparent; color: var(--pas-dark); }
body:not(.home) .pas-page-hero .pas-btn:hover { border-color: var(--pas-accent); background: var(--pas-accent); color: #fff; }

body:not(.home) .pas-section { padding: 92px 0; }
body:not(.home) .pas-section-heading { max-width: 720px; margin-bottom: 38px; }
body:not(.home) .pas-section-heading h2,
body:not(.home) .pas-cta h2 {
	color: var(--pas-ink);
	font-family: Roboto,Arial,sans-serif;
	font-size: clamp(38px,4.5vw,64px);
	font-weight: 400;
	line-height: 1.02;
}
body:not(.home) .pas-section-heading p { max-width: 640px; color: var(--pas-subtle); font-size: 14px; line-height: 1.8; }
body:not(.home) .pas-eyebrow { color: var(--pas-accent); font-size: 9px; letter-spacing: .13em; }
body:not(.home) .pas-two-col { grid-template-columns: .85fr 1.15fr; gap: clamp(48px,8vw,112px); }
body:not(.home) .pas-feature-list { grid-template-columns: repeat(2,minmax(0,1fr)); gap: 0; border-top: 1px solid var(--pas-rule); border-inline-start: 1px solid var(--pas-rule); }
body:not(.home) .pas-feature-list span {
	min-height: 76px;
	border: 0;
	border-inline-end: 1px solid var(--pas-rule);
	border-bottom: 1px solid var(--pas-rule);
	background: transparent;
	padding: 20px;
	color: #393c3a;
	font-size: 12px;
	font-weight: 500;
	transition: background .3s var(--pas-ease), color .3s ease;
}
body:not(.home) .pas-feature-list span:hover { background: var(--pas-dark); color: #fff; }
body:not(.home) .pas-section--soft { background: #e7e8e4; }
body:not(.home) .pas-process { gap: 0; border-top-color: var(--pas-rule); border-inline-start: 1px solid var(--pas-rule); }
body:not(.home) .pas-process article { min-height: 235px; border-color: var(--pas-rule); padding: 24px 21px; }
body:not(.home) .pas-process h3 { color: var(--pas-ink); font-family: Roboto,Arial,sans-serif; font-size: 22px; font-weight: 500; }
body:not(.home) .pas-process span { color: var(--pas-accent); font-size: 10px; }

body:not(.home) .pas-section:has(.pas-cta) { padding: 72px 0; background: var(--pas-paper); }
body:not(.home) .pas-cta { position: relative; overflow: hidden; border: 1px solid #555957; background: var(--pas-dark); padding: clamp(38px,5vw,66px); }
body:not(.home) .pas-cta::after { content: "PA"; position: absolute; right: -18px; bottom: -40px; color: rgba(255,255,255,.035); font-size: 180px; font-weight: 700; pointer-events: none; }
body:not(.home) .pas-cta h2 { max-width: 760px; color: #fff; }
body:not(.home) .pas-cta > p:not(.pas-eyebrow) { max-width: 650px; color: #bfc2bf; font-size: 14px; }
body:not(.home) .pas-cta .pas-btn { background: #fff; color: #171918; }
body:not(.home) .pas-cta .pas-btn--secondary { border-color: rgba(255,255,255,.5); background: transparent; color: #fff; }

.pas-contact-studio,
.pas-proposal-studio { padding: 96px 0; background: var(--pas-canvas); }
.pas-contact-studio__grid,
.pas-proposal-studio__grid { display: grid; grid-template-columns: .78fr 1.22fr; gap: clamp(52px,8vw,118px); align-items: start; }
.pas-contact-studio__intro,
.pas-proposal-studio aside { position: sticky; top: 112px; }
.pas-contact-studio h2,
.pas-proposal-studio h2 { max-width: 590px; margin: 12px 0 24px; font-size: clamp(40px,4.7vw,66px); font-weight: 400; line-height: 1.01; }
.pas-contact-studio__intro > p:not(.pas-eyebrow),
.pas-proposal-studio aside > p:not(.pas-eyebrow) { max-width: 570px; color: var(--pas-subtle); font-size: 14px; line-height: 1.82; }
.pas-contact-channels { margin-top: 48px; border-top: 1px solid var(--pas-rule); }
.pas-contact-channels > * { position: relative; display: grid; gap: 8px; border-bottom: 1px solid var(--pas-rule); padding: 18px 40px 18px 0; }
.pas-contact-channels span { color: #5f635f; font-size: 9px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.pas-contact-channels strong { color: var(--pas-ink); font-size: 14px; font-weight: 500; }
.pas-contact-channels b { position: absolute; top: 24px; right: 2px; color: var(--pas-accent); font-size: 14px; transition: transform .3s var(--pas-ease); }
.pas-contact-channels a:hover b { transform: translate(3px,-3px); }

.pas-contact-studio__form,
.pas-proposal-studio__form { border: 1px solid var(--pas-rule); background: var(--pas-paper); }
.pas-contact-studio__form > header,
.pas-proposal-studio__form > header { display: flex; justify-content: space-between; gap: 30px; border-bottom: 1px solid var(--pas-rule); padding: 20px 27px; }
.pas-contact-studio__form > header span,
.pas-proposal-studio__form > header span { color: var(--pas-accent); font-size: 10px; font-weight: 700; letter-spacing: .11em; text-transform: uppercase; }
.pas-contact-studio__form > header p,
.pas-proposal-studio__form > header p { max-width: 310px; margin: 0; color: #777b77; font-size: 10px; line-height: 1.55; }
body:not(.home) .pas-contact-studio .pas-form,
body:not(.home) .pas-proposal-studio .pas-form { border: 0; background: transparent; padding: 29px; }
body:not(.home) .pas-form { gap: 22px; }
body:not(.home) .pas-form__grid { gap: 20px 18px; }
body:not(.home) .pas-form label { gap: 10px; color: #505451; font-size: 9px; font-weight: 700; letter-spacing: .1em; }
body:not(.home) .pas-form input,
body:not(.home) .pas-form select,
body:not(.home) .pas-form textarea { min-height: 48px; border-color: #b8bbb7; color: #252826; }
body:not(.home) .pas-form input:focus,
body:not(.home) .pas-form select:focus,
body:not(.home) .pas-form textarea:focus { border-color: var(--pas-accent); box-shadow: 0 1px var(--pas-accent); }
body:not(.home) .pas-form > button[type="submit"] { width: 100%; min-height: 50px; background: var(--pas-dark); }
body:not(.home) .pas-form > button[type="submit"]:hover { background: var(--pas-accent); }
.pas-contact-assurance { background: var(--pas-dark); color: #fff; }
.pas-contact-assurance .pas-container { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); border-inline-start: 1px solid #414442; }
.pas-contact-assurance .pas-container > div { min-height: 255px; border-inline-end: 1px solid #414442; padding: 30px; }
.pas-contact-assurance span { color: #d2ad58; font-size: 10px; }
.pas-contact-assurance h3 { margin: 74px 0 12px; font-size: 23px; font-weight: 500; }
.pas-contact-assurance p { max-width: 340px; margin: 0; color: #aeb2ae; font-size: 12px; line-height: 1.75; }

.pas-proposal-studio aside ol { margin: 42px 0 30px; border-top: 1px solid var(--pas-rule); padding: 0; list-style: none; }
.pas-proposal-studio aside li { display: grid; grid-template-columns: 38px 1fr; gap: 15px; border-bottom: 1px solid var(--pas-rule); padding: 15px 0; }
.pas-proposal-studio aside li > span { color: var(--pas-accent); font-size: 9px; }
.pas-proposal-studio aside li div { display: grid; gap: 5px; }
.pas-proposal-studio aside strong { font-size: 13px; font-weight: 500; }
.pas-proposal-studio aside small { color: #5d615d; font-size: 10px; }
body.page-template-page-projects .pas-reference-showcase__heading > p { color: #5f625f; }
.pas-proposal-studio__privacy { border-inline-start: 2px solid var(--pas-accent); padding-inline-start: 14px; font-size: 11px !important; }
body:not(.home) .pas-steps { grid-template-columns: repeat(4,minmax(0,1fr)); gap: 0; margin: 0 0 28px; border: 1px solid var(--pas-rule); }
body:not(.home) .pas-steps button { min-height: 44px; border-inline-end: 1px solid var(--pas-rule); border-radius: 0; background: transparent; color: #676b67; font-size: 9px; letter-spacing: .08em; }
body:not(.home) .pas-steps button:last-child { border-inline-end: 0; }
body:not(.home) .pas-steps button.is-active { background: var(--pas-dark); color: #fff; }
body:not(.home) .pas-checkbox-grid { grid-template-columns: repeat(2,minmax(0,1fr)); gap: 0; border-top: 1px solid var(--pas-rule); border-inline-start: 1px solid var(--pas-rule); }
body:not(.home) .pas-checkbox-grid label { min-height: 55px; border: 0; border-inline-end: 1px solid var(--pas-rule); border-bottom: 1px solid var(--pas-rule); background: transparent; padding: 14px; color: #3d413e; font-size: 10px; text-transform: none; }
body:not(.home) .pas-checkbox-grid label:has(input:checked) { background: #ece7d9; color: #2d302e; }
body:not(.home) .pas-form__actions { margin-top: 5px; }
body:not(.home) .pas-form__actions .pas-btn { min-width: 140px; }
body:not(.home) .pas-form label small { color: #777b77; font-size: 10px; font-weight: 400; letter-spacing: 0; line-height: 1.5; text-transform: none; }
body:not(.home) .pas-form button[aria-busy="true"] { cursor: wait; opacity: .72; }
body:not(.home) .pas-form__status { margin: 0; color: #555956; font-size: 12px; line-height: 1.5; }
body:not(.home) .pas-form__status[data-state="success"] { color: #176b3a; }
body:not(.home) .pas-form__status[data-state="error"] { color: #a51d2d; }
body:not(.home) .pas-steps button:disabled { cursor: not-allowed; opacity: .48; }

.pas-footer { margin: 0 !important; }
.pas-footer__cta h2 { font-family: Roboto,Arial,sans-serif; font-weight: 400; }
.pas-whatsapp { right: 18px; bottom: 18px; width: 48px; height: 48px; border: 1px solid rgba(255,255,255,.28); border-radius: 0; background: #292c2a; font-size: 19px; box-shadow: 0 12px 32px rgba(0,0,0,.18); }

@media (max-width: 1024px) {
	.pas-container { width: min(100% - 40px,1320px); }
	.pas-header,
	.pas-header.is-scrolled { background: rgba(250,250,248,.98); backdrop-filter: none; }
	.pas-mobile-menu { inset: 68px 16px 16px; height: auto; }
	.pas-mobile-menu__list > li,
	.pas-mobile-menu__list .sub-menu li { opacity: 1; transform: none; }
	.pas-mobile-menu__list > li > a { color: var(--pas-ink); }
	.pas-mobile-menu__list .sub-menu a { color: #5f635f; }
	body:not(.home) .pas-page-hero .pas-container { grid-template-columns: 76px minmax(0,1fr); gap: 27px; }
	body:not(.home) .pas-two-col,
	.pas-contact-studio__grid,
	.pas-proposal-studio__grid { grid-template-columns: 1fr; gap: 50px; }
	.pas-contact-studio__intro,
	.pas-proposal-studio aside { position: static; }
	.pas-contact-assurance .pas-container { grid-template-columns: 1fr; }
	.pas-contact-assurance .pas-container > div { min-height: 210px; border-bottom: 1px solid #414442; }
	.pas-contact-assurance h3 { margin-top: 45px; }
}

@media (max-width: 700px) {
	.pas-container { width: min(100% - 30px,1320px); }
	.pas-header { padding: 10px 0; }
	.pas-mobile-menu { inset: 66px 12px 12px; }
	.pas-logo span { width: 34px; height: 34px; }
	body:not(.home) .pas-page-hero { min-height: 600px; padding: 108px 16px 52px; }
	body:not(.home) .pas-page-hero::after { inset: 7px; }
	body:not(.home) .pas-page-hero__overlay { background: rgba(244,245,242,.78); }
	body:not(.home) .pas-page-hero .pas-container { display: block; }
	.pas-page-hero__marker { margin-bottom: 30px; }
	body:not(.home) .pas-page-hero h1 { font-size: 43px; }
	body:not(.home) .pas-page-hero p:not(.pas-eyebrow) { font-size: 12px; }
	body:not(.home) .pas-section { padding: 68px 0; }
	body:not(.home) .pas-two-col { gap: 32px; }
	body:not(.home) .pas-feature-list { grid-template-columns: 1fr; }
	body:not(.home) .pas-process { grid-template-columns: 1fr; }
	body:not(.home) .pas-process article { min-height: 190px; }
	.pas-contact-studio,
	.pas-proposal-studio { padding: 70px 0; }
	.pas-contact-studio h2,
	.pas-proposal-studio h2 { font-size: 40px; }
	.pas-contact-studio__form > header,
	.pas-proposal-studio__form > header { align-items: flex-start; flex-direction: column; gap: 9px; padding: 18px; }
	body:not(.home) .pas-contact-studio .pas-form,
	body:not(.home) .pas-proposal-studio .pas-form { padding: 20px 18px; }
	body:not(.home) .pas-form__grid,
	body:not(.home) .pas-checkbox-grid { grid-template-columns: 1fr; }
	body:not(.home) .pas-steps { grid-template-columns: repeat(2,minmax(0,1fr)); }
	body:not(.home) .pas-steps button:nth-child(2) { border-inline-end: 0; }
	body:not(.home) .pas-steps button:nth-child(-n+2) { border-bottom: 1px solid var(--pas-rule); }
	body:not(.home) .pas-form__actions { flex-direction: column; }
	body:not(.home) .pas-form__actions .pas-btn { width: 100%; }
	body:not(.home) .pas-cta::after { font-size: 110px; }
}

@media (prefers-reduced-motion: reduce) {
	body:not(.home) .pas-feature-list span,
	.pas-contact-channels b { transition: none; }
}

/* Version 8.24: editorial services redesign. Header and site palette remain unchanged. */
.page-template-page-services {
	--pas-sx-ink: #171919;
	--pas-sx-paper: #f3f3f0;
	--pas-sx-soft: #e8e8e4;
	--pas-sx-gold: #b9913f;
	--pas-sx-wine: #9f3e46;
	--pas-sx-teal: #39706c;
	--pas-sx-rule: rgba(23,25,25,.24);
}
.page-template-page-services .pas-sx-hero {
	min-height: min(780px,92vh);
	align-items: stretch;
	padding: 128px 0 42px;
}
.page-template-page-services .pas-sx-hero .pas-svc-hero__image {
	object-position: center 44%;
	filter: saturate(1.16) contrast(1.05);
}
.page-template-page-services .pas-sx-hero .pas-svc-hero__overlay {
	background:
		linear-gradient(90deg,rgba(10,11,11,.92) 0%,rgba(10,11,11,.54) 58%,rgba(10,11,11,.2) 100%),
		linear-gradient(0deg,rgba(10,11,11,.72) 0%,transparent 52%);
}
.pas-sx-hero__inner {
	position: relative;
	z-index: 2;
	display: grid;
	grid-template-rows: auto 1fr auto;
	width: 100%;
}
.pas-sx-hero__top,
.pas-sx-hero__bottom {
	display: grid;
	grid-template-columns: minmax(0,1fr) minmax(220px,.34fr) minmax(300px,.54fr);
	gap: 42px;
	align-items: start;
}
.pas-sx-hero__top {
	border-top: 1px solid rgba(255,255,255,.46);
	padding-top: 14px;
}
.pas-sx-hero__edition {
	grid-column: 3;
	display: flex;
	justify-content: space-between;
	margin: 0;
	color: rgba(255,255,255,.72);
	font-size: 10px;
	font-weight: 700;
	letter-spacing: .12em;
	text-transform: uppercase;
}
.pas-sx-hero__edition span { color: #efc969; }
.pas-sx-hero__title {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 40px;
	padding: 38px 0 46px;
}
.page-template-page-services .pas-sx-hero h1 {
	max-width: 920px;
	margin: 0;
	font-size: clamp(55px,6.7vw,102px);
	font-weight: 400;
	line-height: .91;
	letter-spacing: 0;
}
.pas-sx-hero__mark {
	align-self: flex-start;
	margin-top: 2.4vw;
	color: rgba(255,255,255,.2);
	font-size: clamp(80px,11vw,168px);
	font-weight: 400;
	line-height: .8;
}
.pas-sx-hero__bottom {
	border-top: 1px solid rgba(255,255,255,.46);
	padding-top: 18px;
}
.pas-sx-hero__bottom > p {
	max-width: 600px;
	margin: 0;
	color: #e5e5e2;
	font-size: 14px;
	line-height: 1.65;
}
.pas-sx-hero__bottom > a {
	display: flex;
	align-items: center;
	justify-content: space-between;
	min-height: 48px;
	border-bottom: 1px solid rgba(255,255,255,.7);
	color: #fff;
	font-size: 10px;
	font-weight: 800;
	letter-spacing: .11em;
	text-transform: uppercase;
}
.pas-sx-hero__bottom > a span { font-size: 18px; transition: transform .3s cubic-bezier(.2,0,0,1); }
.pas-sx-hero__bottom > a:hover span { transform: translate(4px,-4px); }
.pas-sx-hero__facts {
	display: grid;
	grid-template-columns: repeat(3,1fr);
	gap: 16px;
}
.pas-sx-hero__facts span {
	display: flex;
	min-width: 0;
	flex-direction: column;
	gap: 7px;
	color: rgba(255,255,255,.68);
	font-size: 8px;
	font-weight: 700;
	letter-spacing: .09em;
	text-transform: uppercase;
}
.pas-sx-hero__facts strong { color: #efc969; font-size: 25px; font-weight: 400; letter-spacing: 0; }

.pas-sx-services { background: var(--pas-sx-paper); color: var(--pas-sx-ink); }
.pas-sx-intro { padding: 76px 0 82px; }
.pas-sx-intro__grid {
	display: grid;
	grid-template-columns: minmax(0,1.35fr) minmax(300px,.65fr);
	gap: clamp(55px,9vw,140px);
	align-items: end;
}
.pas-sx-intro h2 {
	max-width: 820px;
	margin: 12px 0 0;
	font-size: clamp(45px,5vw,74px);
	font-weight: 400;
	line-height: .98;
}
.pas-sx-intro__copy { border-top: 1px solid var(--pas-sx-rule); padding-top: 18px; }
.pas-sx-intro__copy p { margin: 0; color: #565956; font-size: 14px; line-height: 1.72; }
.pas-sx-intro__copy a {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-top: 28px;
	border-bottom: 1px solid #696a67;
	padding-bottom: 11px;
	color: var(--pas-sx-ink);
	font-size: 10px;
	font-weight: 800;
	letter-spacing: .1em;
	text-transform: uppercase;
}

.pas-sx-core { border-top: 1px solid var(--pas-sx-rule); padding: 68px 0 86px; }
.pas-sx-section-head {
	display: grid;
	grid-template-columns: minmax(150px,.25fr) minmax(0,1fr) minmax(240px,.38fr);
	gap: 40px;
	align-items: end;
	margin-bottom: 38px;
}
.pas-sx-section-head > div { align-self: stretch; border-top: 1px solid #5f615e; padding-top: 11px; }
.pas-sx-section-head > div > span { display: block; margin-bottom: 20px; color: var(--pas-sx-gold); font-size: 26px; font-weight: 400; }
.pas-sx-section-head h2 { margin: 0; font-size: clamp(39px,4.2vw,62px); font-weight: 400; line-height: .98; }
.pas-sx-section-head > p { margin: 0; color: #60625f; font-size: 13px; line-height: 1.7; }
.pas-sx-core__grid { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); border-top: 1px solid #868783; border-inline-start: 1px solid #868783; }
.pas-sx-core-card {
	position: relative;
	display: grid;
	grid-template-rows: minmax(250px,34vw) 1fr;
	min-width: 0;
	border-inline-end: 1px solid #868783;
	border-bottom: 1px solid #868783;
	background: #fff;
}
.pas-sx-core-card figure { position: relative; margin: 0; overflow: hidden; background: #242625; }
.pas-sx-core-card figure::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg,rgba(15,16,16,.58),transparent 55%); pointer-events: none; }
.pas-sx-core-card figure img { width: 100%; height: 100%; object-fit: cover; filter: saturate(1.08); transition: transform .9s cubic-bezier(.2,0,0,1),filter .5s ease; }
.pas-sx-core-card:nth-child(2) figure img { object-position: 68% center; }
.pas-sx-core-card:hover figure img { transform: scale(1.035); filter: saturate(1.22) contrast(1.03); }
.pas-sx-core-card figcaption { position: absolute; right: 20px; bottom: 17px; z-index: 1; color: rgba(255,255,255,.82); font-size: 9px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.pas-sx-core-card__content { display: grid; grid-template-columns: 44px minmax(0,1fr); gap: 0 22px; padding: 25px 27px 27px; }
.pas-sx-core-card__number { grid-row: 1/6; color: var(--pas-sx-gold); font-size: 12px; font-weight: 800; }
.pas-sx-core-card h3 { margin: 0; font-size: clamp(28px,2.7vw,42px); font-weight: 400; line-height: 1.02; }
.pas-sx-core-card__content > p { margin: 14px 0 0; color: #5c5e5b; font-size: 13px; line-height: 1.65; }
.pas-sx-core-card ul { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 8px 22px; margin: 23px 0 27px; padding: 0; list-style: none; }
.pas-sx-core-card li { border-top: 1px solid #d2d2cf; padding-top: 8px; color: #3f413f; font-size: 10px; }
.pas-sx-core-card li::before { content: "+"; margin-right: 7px; color: var(--pas-sx-gold); }
.pas-sx-core-card__content > a { display: flex; align-items: center; justify-content: space-between; border-top: 1px solid #696a67; padding-top: 12px; color: var(--pas-sx-ink); font-size: 9px; font-weight: 800; letter-spacing: .11em; text-transform: uppercase; }
.pas-sx-core-card__content > a span { font-size: 17px; transition: transform .3s ease; }
.pas-sx-core-card:hover .pas-sx-core-card__content > a span { transform: translate(4px,-4px); }

.pas-sx-platform { padding: 0 0 86px; }
.pas-sx-platform__grid { display: grid; grid-template-columns: minmax(0,1.05fr) minmax(0,.95fr); min-height: 520px; background: var(--pas-sx-ink); color: #fff; }
.pas-sx-platform__visual { position: relative; min-height: 520px; overflow: hidden; }
.pas-sx-platform__visual::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg,rgba(15,16,16,.62),transparent 58%); }
.pas-sx-platform__visual img { width: 100%; height: 100%; object-fit: cover; filter: saturate(1.12) contrast(1.04); transition: transform 1s cubic-bezier(.2,0,0,1); }
.pas-sx-platform:hover .pas-sx-platform__visual img { transform: scale(1.025); }
.pas-sx-platform__visual span { position: absolute; bottom: 22px; left: 24px; z-index: 1; color: #fff; font-size: 9px; font-weight: 700; letter-spacing: .13em; text-transform: uppercase; }
.pas-sx-platform__content { display: flex; align-items: flex-start; flex-direction: column; justify-content: center; padding: 48px clamp(32px,5vw,74px); }
.page-template-page-services .pas-sx-platform .pas-svc-label { color: #efc969; }
.pas-sx-platform h2 { max-width: 610px; margin: 15px 0 20px; font-size: clamp(40px,4.4vw,65px); font-weight: 400; line-height: .96; }
.pas-sx-platform__content > p:not(.pas-svc-label) { max-width: 570px; margin: 0; color: #c4c7c4; font-size: 13px; line-height: 1.72; }
.pas-sx-platform__metrics { display: grid; grid-template-columns: repeat(3,1fr); width: 100%; margin: 30px 0; border-top: 1px solid rgba(255,255,255,.24); border-bottom: 1px solid rgba(255,255,255,.24); }
.pas-sx-platform__metrics span { display: flex; min-width: 0; flex-direction: column; gap: 5px; padding: 17px 10px 17px 0; color: #9b9f9b; font-size: 8px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.pas-sx-platform__metrics strong { color: #efc969; font-size: 28px; font-weight: 400; letter-spacing: 0; }
.pas-sx-platform .pas-btn { min-height: 45px; border-color: #fff; background: #fff; color: var(--pas-sx-ink); font-size: 9px; }

.pas-sx-modules { border-top: 1px solid var(--pas-sx-rule); padding: 70px 0 90px; background: var(--pas-sx-soft); }
.pas-sx-module-list { border-top: 1px solid #858681; }
.pas-sx-module {
	--pas-module-accent: var(--pas-sx-gold);
	position: relative;
	display: grid;
	grid-template-columns: 48px 150px minmax(280px,1.15fr) minmax(230px,.72fr) 110px;
	gap: 24px;
	align-items: center;
	min-height: 158px;
	border-bottom: 1px solid #aaa9a5;
	padding: 18px 0;
	transition: background .35s ease,padding .35s cubic-bezier(.2,0,0,1),color .35s ease;
}
.pas-sx-module:nth-child(3n+2) { --pas-module-accent: var(--pas-sx-wine); }
.pas-sx-module:nth-child(3n+3) { --pas-module-accent: var(--pas-sx-teal); }
.pas-sx-module::before { content: ""; position: absolute; inset: 0 calc(50% - 50vw); z-index: 0; background: var(--pas-sx-ink); opacity: 0; transition: opacity .35s ease; pointer-events: none; }
.pas-sx-module:hover { padding-left: 10px; color: #fff; }
.pas-sx-module:hover::before { opacity: 1; }
.pas-sx-module > * { position: relative; z-index: 1; }
.pas-sx-module__number { align-self: start; padding-top: 5px; color: var(--pas-module-accent); font-size: 10px; font-weight: 800; }
.pas-sx-module figure { height: 112px; margin: 0; overflow: hidden; background: #bbb; }
.pas-sx-module figure img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.86); transition: transform .7s cubic-bezier(.2,0,0,1),filter .35s ease; }
.pas-sx-module:hover figure img { transform: scale(1.08); filter: saturate(1.2); }
.pas-sx-module__type { margin: 0 0 9px; color: #777874; font-size: 8px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.pas-sx-module h3 { margin: 0; color: #202220; font-size: clamp(24px,2.3vw,35px); font-weight: 400; line-height: 1.05; transition: color .35s ease; }
.pas-sx-module__body > p:last-child { max-width: 570px; margin: 10px 0 0; color: #60625f; font-size: 11px; line-height: 1.55; transition: color .35s ease; }
.pas-sx-module ul { margin: 0; padding: 0; list-style: none; }
.pas-sx-module li { border-top: 1px solid rgba(70,72,69,.25); padding: 7px 0; color: #545653; font-size: 9px; transition: color .35s ease,border-color .35s ease; }
.pas-sx-module li::before { content: "+"; margin-right: 6px; color: var(--pas-module-accent); }
.pas-sx-module > a { display: flex; align-items: center; justify-content: space-between; border-bottom: 1px solid #696a67; padding-bottom: 9px; color: var(--pas-sx-ink); font-size: 8px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; transition: color .35s ease,border-color .35s ease; }
.pas-sx-module > a b { font-size: 16px; font-weight: 400; transition: transform .3s ease; }
.pas-sx-module:hover h3,
.pas-sx-module:hover .pas-sx-module__type,
.pas-sx-module:hover .pas-sx-module__body > p:last-child,
.pas-sx-module:hover li,
.pas-sx-module:hover > a { color: #fff; }
.pas-sx-module:hover li,
.pas-sx-module:hover > a { border-color: rgba(255,255,255,.3); }
.pas-sx-module:hover > a b { transform: translate(4px,-4px); }

.pas-sx-engagement { padding: 78px 0 88px; background: var(--pas-sx-ink); color: #fff; }
.page-template-page-services .pas-sx-engagement .pas-svc-label { color: #efc969; }
.pas-sx-engagement header { display: grid; grid-template-columns: .45fr 1fr; gap: 40px; align-items: start; margin-bottom: 48px; }
.pas-sx-engagement header h2 { margin: 0; font-size: clamp(45px,5vw,74px); font-weight: 400; line-height: .96; }
.pas-sx-engagement__grid { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); border-top: 1px solid rgba(255,255,255,.36); border-inline-start: 1px solid rgba(255,255,255,.36); }
.pas-sx-engagement article { display: flex; min-height: 320px; flex-direction: column; border-inline-end: 1px solid rgba(255,255,255,.36); border-bottom: 1px solid rgba(255,255,255,.36); padding: 25px 28px 27px; transition: background .35s ease; }
.pas-sx-engagement article:hover { background: #242626; }
.pas-sx-engagement article > span { color: #efc969; font-size: 9px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.pas-sx-engagement h3 { max-width: 540px; margin: 55px 0 16px; color: #fff; font-size: clamp(29px,3.2vw,47px); font-weight: 400; line-height: 1.03; }
.pas-sx-engagement article > p { max-width: 580px; margin: 0; color: #b9bcb9; font-size: 12px; line-height: 1.7; }
.pas-sx-engagement article > a { display: flex; align-items: center; justify-content: space-between; margin-top: auto; border-top: 1px solid rgba(255,255,255,.32); padding-top: 12px; color: #fff; font-size: 9px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.pas-sx-engagement article > a b { font-size: 17px; font-weight: 400; transition: transform .3s ease; }
.pas-sx-engagement article:hover > a b { transform: translate(4px,-4px); }

.page-template-page-services .pas-sx-after > .pas-faq-section { padding: 78px 0; background: #f3f3f0; }
.page-template-page-services .pas-sx-after .pas-faq-layout { grid-template-columns: minmax(260px,.48fr) minmax(0,1.52fr); }
.page-template-page-services .pas-sx-after .pas-faq-list details { transition: background .25s ease,padding .25s ease; }
.page-template-page-services .pas-sx-after .pas-faq-list details:hover,
.page-template-page-services .pas-sx-after .pas-faq-list details[open] { background: #fff; padding-inline: 18px; }

@media (max-width: 1100px) {
	.pas-sx-hero__top,
	.pas-sx-hero__bottom { grid-template-columns: minmax(0,1fr) minmax(190px,.35fr); }
	.pas-sx-hero__edition,
	.pas-sx-hero__facts { grid-column: 2; }
	.pas-sx-hero__bottom > a { grid-column: 2; grid-row: 1; }
	.pas-sx-hero__facts { grid-row: 2; }
	.pas-sx-section-head { grid-template-columns: 130px minmax(0,1fr); }
	.pas-sx-section-head > p { grid-column: 2; }
	.pas-sx-module { grid-template-columns: 40px 120px minmax(260px,1fr) minmax(190px,.65fr) 90px; gap: 18px; }
}

@media (max-width: 820px) {
	.page-template-page-services .pas-sx-hero { min-height: 700px; }
	.pas-sx-hero__mark { display: none; }
	.pas-sx-intro__grid,
	.pas-sx-platform__grid { grid-template-columns: 1fr; }
	.pas-sx-intro__grid { gap: 35px; }
	.pas-sx-core-card { grid-template-rows: 240px 1fr; }
	.pas-sx-core-card__content { grid-template-columns: 34px minmax(0,1fr); gap: 0 15px; padding: 22px 20px 23px; }
	.pas-sx-platform__visual { min-height: 360px; }
	.pas-sx-module { grid-template-columns: 36px 110px minmax(0,1fr) 36px; gap: 15px; }
	.pas-sx-module ul { display: none; }
	.pas-sx-module > a { justify-content: flex-end; border: 0; }
	.pas-sx-module > a span { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); }
	.pas-sx-engagement header { grid-template-columns: 1fr; gap: 22px; }
}

@media (max-width: 700px) {
	.page-template-page-services .pas-sx-hero { min-height: 650px; padding: 116px 0 30px; }
	.pas-sx-hero__top { grid-template-columns: 1fr; }
	.pas-sx-hero__edition { display: none; }
	.pas-sx-hero__title { padding: 38px 0; }
	.page-template-page-services .pas-sx-hero h1 { font-size: 41px; line-height: .94; }
	.pas-sx-hero__bottom { grid-template-columns: 1fr; gap: 23px; }
	.pas-sx-hero__bottom > p { font-size: 12px; }
	.pas-sx-hero__bottom > a,
	.pas-sx-hero__facts { grid-column: 1; grid-row: auto; }
	.pas-sx-hero__facts { gap: 10px; }
	.pas-sx-hero__facts strong { font-size: 21px; }
	.pas-sx-intro { padding: 54px 0 58px; }
	.pas-sx-intro h2 { font-size: 40px; }
	.pas-sx-core,
	.pas-sx-modules { padding: 52px 0 62px; }
	.pas-sx-section-head { grid-template-columns: 1fr; gap: 22px; margin-bottom: 27px; }
	.pas-sx-section-head > div { display: flex; align-items: center; justify-content: space-between; }
	.pas-sx-section-head > div > span { margin: 0; }
	.pas-sx-section-head > p { grid-column: 1; }
	.pas-sx-section-head h2 { font-size: 38px; }
	.pas-sx-core__grid { grid-template-columns: 1fr; }
	.pas-sx-core-card { grid-template-rows: 225px 1fr; }
	.pas-sx-core-card__content > p { font-size: 12px; }
	.pas-sx-core-card ul { grid-template-columns: 1fr; }
	.pas-sx-platform { padding-bottom: 62px; }
	.pas-sx-platform__visual { min-height: 245px; }
	.pas-sx-platform__content { padding: 34px 22px 38px; }
	.pas-sx-platform h2 { font-size: 39px; }
	.pas-sx-platform__content > p:not(.pas-svc-label) { font-size: 12px; }
	.pas-sx-platform__metrics strong { font-size: 23px; }
	.pas-sx-module { grid-template-columns: 30px 78px minmax(0,1fr) 24px; gap: 12px; min-height: 124px; padding: 13px 0; }
	.pas-sx-module:hover { padding-left: 0; }
	.pas-sx-module figure { height: 84px; }
	.pas-sx-module h3 { font-size: 22px; }
	.pas-sx-module__body > p:last-child { display: none; }
	.pas-sx-module__type { font-size: 7px; }
	.pas-sx-engagement { padding: 56px 0 62px; }
	.pas-sx-engagement header h2 { font-size: 40px; }
	.pas-sx-engagement__grid { grid-template-columns: 1fr; }
	.pas-sx-engagement article { min-height: 275px; padding: 22px 20px; }
	.pas-sx-engagement h3 { margin-top: 40px; }
	.page-template-page-services .pas-sx-after > .pas-faq-section { padding: 56px 0; }
	.page-template-page-services .pas-sx-after .pas-faq-layout { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
	.pas-sx-core-card figure img,
	.pas-sx-platform__visual img,
	.pas-sx-module,
	.pas-sx-module::before,
	.pas-sx-module figure img { transition: none; }
}

/* Version 8.24.1: detailed delivery scope for the four completed projects. */
.page-template-page-projects .pas-reference-grid { align-items: stretch; }
.page-template-page-projects .pas-reference-card { display: flex; height: 100%; flex-direction: column; }
.page-template-page-projects .pas-reference-card__visual {
	position: relative;
	display: block;
	overflow: hidden;
}
.page-template-page-projects .pas-reference-card__visual img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform .8s cubic-bezier(.22,1,.36,1),filter .45s ease;
}
.page-template-page-projects .pas-reference-card__visual > span { position: absolute; z-index: 1; }
.page-template-page-projects .pas-reference-card__body { display: flex; flex: 1; flex-direction: column; }
.page-template-page-projects .pas-reference-card h3 { min-height: 66px; }
.page-template-page-projects .pas-reference-card__summary { min-height: 63px; }
.page-template-page-projects .pas-reference-card__delivery {
	display: grid;
	grid-template-columns: 118px minmax(0,1fr);
	gap: 22px;
	align-items: start;
	margin: 24px 0 22px;
	border-top: 1px solid #bfc1bd;
	padding-top: 17px;
}
.page-template-page-projects .pas-reference-card__delivery > ul { min-height: 58px; align-content: flex-start; }
.page-template-page-projects .pas-reference-card__delivery > div {
	display: flex;
	flex-direction: column;
	gap: 4px;
}
.page-template-page-projects .pas-reference-card__delivery strong {
	color: #765814;
	font-size: 38px;
	font-weight: 400;
	line-height: .92;
}
.page-template-page-projects .pas-reference-card__delivery span {
	color: #737570;
	font-size: 7px;
	font-weight: 800;
	letter-spacing: .1em;
	text-transform: uppercase;
}
.page-template-page-projects .pas-reference-card__delivery > ul {
	display: flex;
	flex-wrap: wrap;
	gap: 7px;
	margin: 0;
	padding: 0;
	list-style: none;
}
.page-template-page-projects .pas-reference-card__delivery > ul li {
	border: 1px solid #c5c7c3;
	padding: 7px 9px;
	color: #454844;
	font-size: 8px;
	font-weight: 700;
	letter-spacing: .06em;
	text-transform: uppercase;
}
.page-template-page-projects .pas-reference-card__scope {
	margin: auto -27px 25px;
	border-top: 1px solid #b8bab6;
	border-bottom: 1px solid #b8bab6;
	background: #eceeeb;
}
.page-template-page-projects .pas-reference-card__scope summary {
	display: grid;
	grid-template-columns: minmax(0,1fr) auto 20px;
	gap: 14px;
	align-items: center;
	min-height: 56px;
	padding: 12px 27px;
	cursor: pointer;
	color: #262826;
	font-size: 9px;
	font-weight: 800;
	letter-spacing: .1em;
	list-style: none;
	text-transform: uppercase;
	transition: background .3s ease,color .3s ease;
}
.page-template-page-projects .pas-reference-card__scope summary::-webkit-details-marker { display: none; }
.page-template-page-projects .pas-reference-card__scope summary strong { color: #7a7d77; font-size: 8px; white-space: nowrap; }
.page-template-page-projects .pas-reference-card__scope summary i {
	position: relative;
	display: block;
	width: 18px;
	height: 18px;
	border: 1px solid #8d908a;
}
.page-template-page-projects .pas-reference-card__scope summary i::before,
.page-template-page-projects .pas-reference-card__scope summary i::after {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	width: 8px;
	height: 1px;
	background: currentColor;
	transform: translate(-50%,-50%);
	transition: transform .3s ease;
}
.page-template-page-projects .pas-reference-card__scope summary i::after { transform: translate(-50%,-50%) rotate(90deg); }
.page-template-page-projects .pas-reference-card__scope[open] { background: #191b1a; }
.page-template-page-projects .pas-reference-card__scope[open] summary { border-bottom: 1px solid rgba(255,255,255,.22); background: #191b1a; color: #fff; }
.page-template-page-projects .pas-reference-card__scope[open] summary strong { color: #d7bd74; }
.page-template-page-projects .pas-reference-card__scope[open] summary i { border-color: #d7bd74; color: #d7bd74; }
.page-template-page-projects .pas-reference-card__scope[open] summary i::after { transform: translate(-50%,-50%) rotate(0); }
.page-template-page-projects .pas-reference-card__scope-grid {
	display: grid;
	grid-template-columns: repeat(2,minmax(0,1fr));
	padding: 9px 27px 26px;
	color: #fff;
	animation: pas-project-scope-in .38s cubic-bezier(.2,0,0,1) both;
}
.page-template-page-projects .pas-reference-card__scope-grid section { min-width: 0; border-bottom: 1px solid rgba(255,255,255,.2); padding: 19px 20px 18px 0; }
.page-template-page-projects .pas-reference-card__scope-grid section:nth-child(even) { border-inline-start: 1px solid rgba(255,255,255,.2); padding-inline-start: 20px; }
.page-template-page-projects .pas-reference-card__scope-grid section:last-child:nth-child(odd) { grid-column: 1/-1; }
.page-template-page-projects .pas-reference-card__scope-grid section:last-child:nth-child(odd) ul { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); column-gap: 24px; }
.page-template-page-projects .pas-reference-card__scope-grid h4 { margin: 0 0 13px; color: #fff; font-size: 15px; font-weight: 500; }
.page-template-page-projects .pas-reference-card__scope-grid ul { margin: 0; padding: 0; list-style: none; }
.page-template-page-projects .pas-reference-card__scope-grid li { border-top: 1px solid rgba(255,255,255,.1); padding: 6px 0; color: #b9bdb9; font-size: 8px; line-height: 1.45; }
.page-template-page-projects .pas-reference-card__scope-grid li::before { content: "+"; margin-right: 6px; color: #d7bd74; }
.page-template-page-projects .pas-reference-card__footer > a {
	color: #292b28;
	font-size: 9px;
	font-weight: 700;
	letter-spacing: .1em;
	text-transform: uppercase;
	white-space: nowrap;
}
.page-template-page-projects .pas-reference-card__footer > a:hover { color: #8c681d; }
@keyframes pas-project-scope-in {
	from { opacity: 0; transform: translateY(-8px); }
	to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 700px) {
	.page-template-page-projects .pas-reference-card__delivery { grid-template-columns: 82px minmax(0,1fr); gap: 14px; }
	.page-template-page-projects .pas-reference-card__delivery strong { font-size: 32px; }
	.page-template-page-projects .pas-reference-card__scope { margin-inline: -19px; }
	.page-template-page-projects .pas-reference-card h3,
	.page-template-page-projects .pas-reference-card__summary,
	.page-template-page-projects .pas-reference-card__delivery > ul { min-height: 0; }
	.page-template-page-projects .pas-reference-card__scope summary { grid-template-columns: minmax(0,1fr) 18px; padding-inline: 19px; }
	.page-template-page-projects .pas-reference-card__scope summary strong { display: none; }
	.page-template-page-projects .pas-reference-card__scope-grid { grid-template-columns: 1fr; padding: 7px 19px 22px; }
	.page-template-page-projects .pas-reference-card__scope-grid section:nth-child(even) { border-inline-start: 0; padding-inline-start: 0; }
	.page-template-page-projects .pas-reference-card__scope-grid section:last-child:nth-child(odd) { grid-column: auto; }
	.page-template-page-projects .pas-reference-card__scope-grid section:last-child:nth-child(odd) ul { display: block; }
}

@media (prefers-reduced-motion: reduce) {
	.page-template-page-projects .pas-reference-card__scope-grid { animation: none; }
}

/* Version 8.24.3: branded project visuals and a quieter concept archive. */
.page-template-page-projects .pas-reference-card__visual > .pas-reference-card__logo {
	position: absolute;
	left: 20px;
	bottom: 20px;
	z-index: 2;
	display: flex;
	width: min(52%, 278px);
	height: 64px;
	align-items: center;
	justify-content: flex-start;
	min-width: 0;
	border: 1px solid rgba(255,255,255,.3);
	background: rgba(16,18,17,.76);
	padding: 10px 14px;
	backdrop-filter: blur(12px);
	transition: background .35s ease,border-color .35s ease,transform .45s cubic-bezier(.22,1,.36,1);
}
.page-template-page-projects .pas-reference-card__visual > .pas-reference-card__logo img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: contain;
	object-position: left center;
	filter: none;
	transform: none;
	transition: none;
}
.page-template-page-projects .pas-reference-card:hover .pas-reference-card__visual > .pas-reference-card__logo {
	border-color: rgba(218,188,105,.65);
	background: rgba(16,18,17,.9);
	transform: translateY(-3px);
}
.page-template-page-projects .pas-reference-card__visual > .pas-reference-card__code {
	top: 14px;
	right: 14px;
	bottom: auto;
}

.page-template-page-projects .pas-fictional-studies {
	padding: 74px 0 82px;
	background: #f5f5f3;
}
.page-template-page-projects .pas-fictional-studies .pas-section-heading {
	display: grid;
	grid-template-columns: minmax(0,1fr) minmax(280px,430px);
	gap: 48px;
	align-items: end;
	max-width: none;
	margin-bottom: 28px;
}
.page-template-page-projects .pas-fictional-studies .pas-section-heading .pas-eyebrow {
	grid-column: 1/-1;
	margin-bottom: -30px;
}
.page-template-page-projects .pas-fictional-studies .pas-section-heading h2 {
	margin: 0;
	color: #252725;
	font-size: clamp(38px,4.2vw,58px);
	font-weight: 400;
	line-height: 1;
}
.page-template-page-projects .pas-fictional-studies .pas-section-heading > p:last-child {
	max-width: 430px;
	margin: 0;
	color: #747771;
	font-size: 12px;
	line-height: 1.7;
}
.page-template-page-projects .pas-fictional-studies .pas-filter-tabs {
	flex-wrap: nowrap;
	gap: 0;
	margin: 0 0 24px;
	overflow-x: auto;
	border-top: 1px solid #c9cbc7;
	border-bottom: 1px solid #c9cbc7;
	scrollbar-width: thin;
}
.page-template-page-projects .pas-fictional-studies .pas-filter-tabs button {
	flex: 0 0 auto;
	border: 0;
	border-inline-end: 1px solid #d4d6d2;
	padding: 13px 16px;
	font-size: 8px;
	letter-spacing: .08em;
}
.page-template-page-projects .pas-fictional-studies .pas-filter-tabs button.is-active {
	background: #272927;
	color: #fff;
}
.page-template-page-projects .pas-fictional-studies .pas-project-grid {
	display: grid;
	grid-template-columns: repeat(3,minmax(0,1fr));
	gap: 1px;
	margin-top: 0;
	background: #c8cac6;
	border: 1px solid #c8cac6;
}
.page-template-page-projects .pas-fictional-studies .pas-project-card,
.page-template-page-projects .pas-fictional-studies .pas-project-card:nth-child(n) {
	display: flex;
	height: 100%;
	min-width: 0;
	flex-direction: column;
	margin: 0;
	background: #f5f5f3;
}
.page-template-page-projects .pas-fictional-studies .pas-project-card > a:first-child {
	display: block;
	overflow: hidden;
}
.page-template-page-projects .pas-fictional-studies .pas-project-card img,
.page-template-page-projects .pas-fictional-studies .pas-project-card:nth-child(n) img {
	display: block;
	width: 100%;
	aspect-ratio: 16/9;
	filter: saturate(.62) contrast(.98);
}
.page-template-page-projects .pas-fictional-studies .pas-project-card:hover img {
	filter: saturate(.92) contrast(1.02);
	transform: scale(1.025);
}
.page-template-page-projects .pas-fictional-studies .pas-project-card > div {
	display: flex;
	flex: 1;
	flex-direction: column;
	padding: 17px 18px 19px;
}
.page-template-page-projects .pas-fictional-studies .pas-project-card p {
	margin-bottom: 10px;
	font-size: 8px;
	letter-spacing: .08em;
}
.page-template-page-projects .pas-fictional-studies .pas-project-card h3 {
	min-height: 48px;
	color: #292b29;
	font-size: 19px;
	font-weight: 500;
	line-height: 1.24;
}
.page-template-page-projects .pas-fictional-studies .pas-project-card small {
	min-height: 34px;
	margin: 7px 0 11px;
	color: #747771;
	font-size: 10px;
	line-height: 1.5;
}
.page-template-page-projects .pas-fictional-studies .pas-project-card__metric {
	display: grid;
	grid-template-columns: auto minmax(0,1fr);
	gap: 9px;
	align-items: center;
	min-height: 47px;
	margin: 0 0 13px;
	padding: 10px 0 !important;
}
.page-template-page-projects .pas-fictional-studies .pas-project-card__metric strong {
	color: #86651f;
	font-family: Roboto,Arial,sans-serif;
	font-size: 23px;
	font-weight: 400;
}
.page-template-page-projects .pas-fictional-studies .pas-project-card__metric span {
	font-size: 7px;
	line-height: 1.35;
}
.page-template-page-projects .pas-fictional-studies .pas-project-card > div > a:last-child {
	align-self: flex-start;
	margin-top: auto;
	font-size: 8px;
}

@media (max-width: 1024px) {
	.page-template-page-projects .pas-fictional-studies .pas-project-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
}

@media (max-width: 700px) {
	.page-template-page-projects .pas-reference-card__visual > .pas-reference-card__logo { left: 12px; bottom: 12px; width: 64%; height: 52px; padding: 8px 10px; }
	.page-template-page-projects .pas-reference-card__visual > .pas-reference-card__code { top: 10px; right: 10px; }
	.page-template-page-projects .pas-fictional-studies { padding: 58px 0 64px; }
	.page-template-page-projects .pas-fictional-studies .pas-section-heading { display: block; margin-bottom: 22px; }
	.page-template-page-projects .pas-fictional-studies .pas-section-heading .pas-eyebrow { margin-bottom: 12px; }
	.page-template-page-projects .pas-fictional-studies .pas-section-heading h2 { margin-bottom: 14px; font-size: 38px; }
	.page-template-page-projects .pas-fictional-studies .pas-project-grid { grid-template-columns: 1fr; }
	.page-template-page-projects .pas-fictional-studies .pas-project-card h3,
	.page-template-page-projects .pas-fictional-studies .pas-project-card small { min-height: 0; }
}

@media (prefers-reduced-motion: reduce) {
	.page-template-page-projects .pas-reference-card__visual > .pas-reference-card__logo { transition: none; }
}

/* Version 8.24.5: official web-sourced project marks replace website imagery. */
.page-template-page-projects .pas-reference-card__visual {
	isolation: isolate;
	display: grid;
	place-items: center;
	background: #171918;
}
.page-template-page-projects .pas-reference-card__visual::before,
.page-template-page-projects .pas-reference-card__visual::after {
	content: "";
	position: absolute;
	inset: 17px;
	z-index: -1;
	border: 1px solid rgba(255,255,255,.12);
	pointer-events: none;
}
.page-template-page-projects .pas-reference-card__visual::after {
	inset: 50% 0 auto;
	border: 0;
	border-top: 1px solid rgba(255,255,255,.07);
}
.page-template-page-projects .pas-reference-card__visual--01 { background: #111312; }
.page-template-page-projects .pas-reference-card__visual--02 { background: #26241c; }
.page-template-page-projects .pas-reference-card__visual--03 { background: #103331; }
.page-template-page-projects .pas-reference-card__visual--04 { background: #171717; }
.page-template-page-projects .pas-reference-card__visual > .pas-reference-card__brand {
	position: relative;
	right: auto;
	bottom: auto;
	z-index: 1;
	display: flex;
	width: min(78%, 420px);
	min-width: 0;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	background: transparent;
	padding: 28px;
	color: #fff;
	text-align: center;
	backdrop-filter: none;
}
.page-template-page-projects .pas-reference-card__brand img {
	display: block;
	width: 112px;
	height: 112px;
	margin: 0 auto 18px;
	object-fit: contain;
	object-position: center;
	filter: none;
	transform: none;
	transition: transform .55s cubic-bezier(.22,1,.36,1);
}
.page-template-page-projects .pas-reference-card:hover .pas-reference-card__brand img,
.page-template-page-projects .pas-reference-card:focus-within .pas-reference-card__brand img {
	filter: none;
	transform: scale(1.06);
}
.page-template-page-projects .pas-reference-card__brand strong {
	max-width: 360px;
	color: #fff;
	font-size: 17px;
	font-weight: 500;
	line-height: 1.25;
}
.page-template-page-projects .pas-reference-card__brand small {
	margin-top: 7px;
	color: rgba(255,255,255,.58);
	font-size: 8px;
	font-weight: 700;
	letter-spacing: .14em;
	text-transform: uppercase;
}
.page-template-page-projects .pas-reference-card__visual > .pas-reference-card__code {
	background: rgba(255,255,255,.08);
	color: rgba(255,255,255,.75);
	backdrop-filter: blur(8px);
}

@media (max-width: 700px) {
	.page-template-page-projects .pas-reference-card__visual > .pas-reference-card__brand { width: 86%; padding: 22px; }
	.page-template-page-projects .pas-reference-card__brand img { width: 84px; height: 84px; margin-bottom: 14px; }
	.page-template-page-projects .pas-reference-card__brand strong { font-size: 14px; }
}

@media (prefers-reduced-motion: reduce) {
	.page-template-page-projects .pas-reference-card__brand img { transition: none; }
}

/* Version 8.24.6: full logo lockups with the official brand wording. */
.page-template-page-projects .pas-reference-card__visual--01 { --pas-project-brand: #fff; --pas-project-brand-muted: #d9b45a; }
.page-template-page-projects .pas-reference-card__visual--02 { --pas-project-brand: #f0c95c; --pas-project-brand-muted: #d9b75b; }
.page-template-page-projects .pas-reference-card__visual--03 { --pas-project-brand: #d5ae36; --pas-project-brand-muted: #d5ae36; }
.page-template-page-projects .pas-reference-card__visual--04 { --pas-project-brand: #fff; --pas-project-brand-muted: #ff3b30; background: #090909; }
.page-template-page-projects .pas-reference-card__visual > .pas-reference-card__brand {
	display: grid;
	grid-template-columns: 112px minmax(0,1fr);
	gap: 24px;
	width: min(82%, 470px);
	align-items: center;
	justify-content: initial;
	padding: 22px;
	text-align: left;
}
.page-template-page-projects .pas-reference-card__brand img {
	width: 112px;
	height: 112px;
	margin: 0;
}
.page-template-page-projects .pas-reference-card__wordmark {
	display: flex;
	min-width: 0;
	flex-direction: column;
	align-items: flex-start;
	border-inline-start: 1px solid rgba(255,255,255,.2);
	padding-inline-start: 24px;
}
.page-template-page-projects .pas-reference-card__wordmark strong {
	color: var(--pas-project-brand);
	font-size: clamp(21px,2vw,30px);
	font-weight: 700;
	letter-spacing: .035em;
	line-height: 1;
	text-transform: uppercase;
}
.page-template-page-projects .pas-reference-card__wordmark small {
	margin-top: 10px;
	color: var(--pas-project-brand-muted);
	font-size: 8px;
	font-weight: 700;
	letter-spacing: .15em;
	line-height: 1.55;
	text-transform: uppercase;
}
.page-template-page-projects .pas-reference-card__visual--02 .pas-reference-card__wordmark strong { font-size: clamp(30px,3vw,43px); font-weight: 500; letter-spacing: .08em; }
.page-template-page-projects .pas-reference-card__visual--03 .pas-reference-card__wordmark strong { font-weight: 500; }
.page-template-page-projects .pas-reference-card__visual--04 .pas-reference-card__wordmark strong { font-size: clamp(18px,1.8vw,25px); letter-spacing: .14em; }
.page-template-page-projects .pas-reference-card__visual--04 .pas-reference-card__wordmark small { font-size: 14px; letter-spacing: .12em; }
.page-template-page-projects .pas-reference-card__visual--04 .pas-reference-card__brand {
	display: block;
	width: min(82%, 500px);
	padding: 20px;
}
.page-template-page-projects .pas-reference-card__visual--04 .pas-reference-card__brand img {
	width: 100%;
	height: auto;
	max-height: 150px;
	object-fit: contain;
}
.page-template-page-projects .pas-reference-card__visual--04 .pas-reference-card__wordmark {
	position: absolute;
	width: 1px;
	height: 1px;
	overflow: hidden;
	clip: rect(0 0 0 0);
	clip-path: inset(50%);
	white-space: nowrap;
}

@media (max-width: 700px) {
	.page-template-page-projects .pas-reference-card__visual > .pas-reference-card__brand {
		grid-template-columns: 78px minmax(0,1fr);
		gap: 16px;
		width: 90%;
		padding: 16px;
	}
	.page-template-page-projects .pas-reference-card__brand img { width: 78px; height: 78px; margin: 0; }
	.page-template-page-projects .pas-reference-card__wordmark { padding-inline-start: 16px; }
	.page-template-page-projects .pas-reference-card__wordmark strong { font-size: 17px; }
	.page-template-page-projects .pas-reference-card__wordmark small { margin-top: 7px; font-size: 6px; letter-spacing: .1em; }
	.page-template-page-projects .pas-reference-card__visual--02 .pas-reference-card__wordmark strong { font-size: 25px; }
	.page-template-page-projects .pas-reference-card__visual--04 .pas-reference-card__wordmark strong { font-size: 13px; }
	.page-template-page-projects .pas-reference-card__visual--04 .pas-reference-card__wordmark small { font-size: 10px; }
	.page-template-page-projects .pas-reference-card__visual--04 .pas-reference-card__brand { width: 92%; padding: 14px; }
}

/* Version 8.25: unify the home page and project presentation with the institutional system. */
.home .pas-v5-frame { background: var(--pas-canvas); color: var(--pas-ink); }
.home .pas-v5-section {
	grid-template-columns: 132px minmax(0,1fr);
	min-height: 0;
	border-bottom: 1px solid var(--pas-rule);
	background: var(--pas-paper) !important;
	padding: 96px 5vw 96px 0;
}
.home .pas-v5-section:nth-of-type(odd) { background: #e7e8e4 !important; }
.home .pas-v5-section__body { width: 100%; max-width: 1320px; }
.home .pas-v5-marker strong { color: var(--pas-accent); font-size: 44px; }
.home .pas-v5-marker span { color: #555956; letter-spacing: .13em; }
.home .pas-v5-overline { color: var(--pas-accent); letter-spacing: .13em; }
.home .pas-v5-heading { margin-bottom: 48px; }
.home .pas-v5-heading h2,
.home .pas-v5-intro h2,
.home .pas-v5-object h2,
.home .pas-v5-contact h2 { font-family: Roboto,Arial,sans-serif; line-height: 1.02; }
.home .pas-v5-heading > p,
.home .pas-v5-intro__copy p { color: var(--pas-subtle); font-size: 14px; line-height: 1.8; }
.home .pas-v5-hero__video { filter: saturate(.9) brightness(1.34) contrast(.78); opacity: .88; }
.home .pas-v5-hero__wash { background: linear-gradient(90deg,rgba(245,246,243,.06),rgba(245,246,243,.3) 46%,rgba(245,246,243,.86)); }
.home .pas-v5-object__image img,
.home .pas-v5-contact__image { filter: saturate(.84) contrast(1.02); }
.home .pas-v5-line-link:focus-visible,
.home .pas-v5-work-card:focus-visible { outline: 2px solid var(--pas-accent); outline-offset: 4px; }

.home .pas-v5-work { background: var(--pas-paper) !important; }
.home .pas-v5-work__layout { grid-template-columns: 132px minmax(0,1fr); gap: 30px; }
.home .pas-v5-work__layout nav { top: 96px; gap: 16px; }
.home .pas-v5-work__layout nav span { margin-bottom: 4px; background: var(--pas-dark); }
.home .pas-v5-work__layout nav a { color: #686c68; font-weight: 600; }
.home .pas-v5-work__grid { gap: 18px; align-items: stretch; }
.home .pas-v5-work-card {
	display: flex;
	height: 100%;
	min-width: 0;
	flex-direction: column;
	border: 1px solid var(--pas-rule);
	background: #f8f8f5;
	color: var(--pas-ink);
	transition: border-color .3s var(--pas-ease), transform .4s var(--pas-ease), box-shadow .4s var(--pas-ease);
}
.home .pas-v5-work-card:hover,
.home .pas-v5-work-card:focus-visible {
	border-color: #777b77;
	box-shadow: 0 18px 42px rgba(25,28,26,.08);
	transform: translateY(-4px);
}
.home .pas-v5-work-card__visual {
	isolation: isolate;
	display: grid;
	place-items: center;
	aspect-ratio: 16/9;
	border-bottom: 1px solid rgba(255,255,255,.15);
	background: #111312;
}
.home .pas-v5-work-card__visual::before,
.home .pas-v5-work-card__visual::after {
	content: "";
	position: absolute;
	inset: 15px;
	z-index: -1;
	border: 1px solid rgba(255,255,255,.11);
	pointer-events: none;
}
.home .pas-v5-work-card__visual::after { inset: 50% 0 auto; border: 0; border-top: 1px solid rgba(255,255,255,.06); }
.home .pas-v5-work-card__visual--02 { background: #26241c; }
.home .pas-v5-work-card__visual--03 { background: #103331; }
.home .pas-v5-work-card__visual--04 { background: #090909; }
.home .pas-v5-work-card__visual .pas-v5-work-card__brand {
	position: relative;
	right: auto;
	bottom: auto;
	display: grid;
	width: min(82%,420px);
	grid-template-columns: 88px minmax(0,1fr);
	gap: 20px;
	align-items: center;
	padding: 0;
	background: transparent;
}
.home .pas-v5-work-card__brand > img {
	position: static;
	display: block;
	width: 88px;
	height: 88px;
	object-fit: contain;
	filter: none;
	transform: none;
	transition: transform .5s var(--pas-ease);
}
.home .pas-v5-work-card:hover .pas-v5-work-card__brand > img { filter: none; transform: scale(1.045); }
.home .pas-v5-work-card__wordmark {
	position: static;
	display: flex;
	min-width: 0;
	flex-direction: column;
	align-items: flex-start;
	border-inline-start: 1px solid rgba(255,255,255,.2);
	padding: 0 0 0 20px;
	background: transparent;
}
.home .pas-v5-work-card__wordmark strong {
	color: #fff;
	font-size: clamp(18px,1.8vw,25px);
	font-weight: 600;
	line-height: 1;
	text-transform: uppercase;
}
.home .pas-v5-work-card__wordmark small {
	margin-top: 8px;
	color: #d7bd74;
	font-size: 7px;
	font-weight: 700;
	letter-spacing: .12em;
	line-height: 1.5;
	text-transform: uppercase;
}
.home .pas-v5-work-card__visual--02 .pas-v5-work-card__wordmark strong { color: #f0c95c; font-size: clamp(26px,2.6vw,38px); letter-spacing: .08em; }
.home .pas-v5-work-card__visual--03 .pas-v5-work-card__wordmark strong { color: #d5ae36; }
.home .pas-v5-work-card__visual--04 .pas-v5-work-card__brand { display: block; width: min(82%,430px); }
.home .pas-v5-work-card__visual--04 .pas-v5-work-card__brand > img { width: 100%; height: auto; max-height: 118px; }
.home .pas-v5-work-card__visual--04 .pas-v5-work-card__wordmark {
	position: absolute;
	width: 1px;
	height: 1px;
	overflow: hidden;
	clip: rect(0 0 0 0);
	clip-path: inset(50%);
	white-space: nowrap;
}
.home .pas-v5-work-card__visual > .pas-v5-work-card__number {
	position: absolute;
	right: 0;
	bottom: 0;
	z-index: 3;
	padding: 10px 13px;
	background: var(--pas-paper);
	color: var(--pas-ink);
	font-size: 10px;
}
.home .pas-v5-work-card > .pas-v5-work-card__body {
	display: flex;
	min-height: 0;
	flex: 1;
	flex-direction: column;
	padding: 24px;
}
.home .pas-v5-work-card__body > p { margin: 0 0 14px; color: var(--pas-accent); font-size: 8px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.home .pas-v5-work-card__body h3 { min-height: 50px; margin: 0; font-size: 23px; font-weight: 500; line-height: 1.12; }
.home .pas-v5-work-card__body > span { max-width: none; min-height: 67px; margin-top: 15px; color: var(--pas-subtle); font-size: 11px; line-height: 1.7; }
.home .pas-v5-work-card__body ul { display: flex; flex-wrap: wrap; gap: 6px; margin: 20px 0 24px; padding: 0; list-style: none; }
.home .pas-v5-work-card__body li { border: 1px solid #c7c9c5; padding: 6px 8px; color: #555955; font-size: 7px; font-weight: 700; letter-spacing: .07em; text-transform: uppercase; }
.home .pas-v5-work-card__body > div { position: static; display: flex; min-height: 0; justify-content: space-between; gap: 20px; align-items: center; margin-top: auto; border-top: 1px solid var(--pas-rule); padding: 17px 0 0; }
.home .pas-v5-work-card__body > div small { color: #747874; font-size: 9px; text-transform: uppercase; }
.home .pas-v5-work-card__body > div b { position: static; color: var(--pas-ink); font-size: 8px; letter-spacing: .08em; text-transform: uppercase; }
.home .pas-v5-work-card:hover .pas-v5-work-card__body > div b { color: var(--pas-accent); transform: none; }
.home .pas-v5-work__more { display: flex; justify-content: flex-end; margin-top: 34px; }

@media (max-width: 1024px) {
	.home .pas-v5-section { grid-template-columns: 92px minmax(0,1fr); padding-inline-end: 4vw; }
	.home .pas-v5-work__layout { grid-template-columns: 1fr; }
}

@media (max-width: 700px) {
	.home .pas-v5-section { display: block; padding: 68px 22px; }
	.home .pas-v5-heading { margin-bottom: 34px; }
	.home .pas-v5-work__grid { gap: 16px; }
	.home .pas-v5-work-card__visual .pas-v5-work-card__brand { width: 84%; grid-template-columns: 70px minmax(0,1fr); gap: 14px; }
	.home .pas-v5-work-card__brand > img { width: 70px; height: 70px; }
	.home .pas-v5-work-card__wordmark { padding-inline-start: 14px; }
	.home .pas-v5-work-card__wordmark strong { font-size: 17px; }
	.home .pas-v5-work-card__visual--02 .pas-v5-work-card__wordmark strong { font-size: 25px; }
	.home .pas-v5-work-card__visual--04 .pas-v5-work-card__brand { width: 88%; }
	.home .pas-v5-work-card > .pas-v5-work-card__body { padding: 20px; }
	.home .pas-v5-work-card__body h3,
	.home .pas-v5-work-card__body > span { min-height: 0; }
	.home .pas-v5-work-card__body > div { align-items: flex-start; flex-direction: column; gap: 8px; }
	.home .pas-v5-work__more { justify-content: flex-start; }
	.home .pas-v5-hero__video { filter: saturate(.78) brightness(1.38) contrast(.76); }
}

@media (prefers-reduced-motion: reduce) {
	.home .pas-v5-work-card,
	.home .pas-v5-work-card__brand > img { transform: none !important; transition: none; }
}

/* Version 8.26: precision pass for rhythm, service imagery and interaction states. */
::selection { background: #d9c58f; color: #171918; }
body { -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility; }
.pas-btn:focus-visible,
.pas-nav a:focus-visible,
.pas-footer a:focus-visible,
.pas-accordion summary:focus-visible {
	outline: 2px solid var(--pas-accent);
	outline-offset: 4px;
}

.page-template-page-services .pas-sx-services > section,
.page-template-page-services .pas-sx-after > section { scroll-margin-top: 86px; }
.page-template-page-services .pas-sx-hero { min-height: min(760px,92svh); }
.page-template-page-services .pas-sx-hero__title { padding-block: clamp(32px,4vw,52px); }
.page-template-page-services .pas-sx-hero h1 { max-width: 900px; text-wrap: balance; }
.page-template-page-services .pas-sx-hero__bottom > p { max-width: 570px; }
.page-template-page-services .pas-sx-section-head h2,
.page-template-page-services .pas-sx-engagement h2 { text-wrap: balance; }
.page-template-page-services .pas-sx-core-card { grid-template-rows: clamp(300px,31vw,430px) 1fr; }
.page-template-page-services .pas-sx-core-card__content { min-height: 356px; align-content: start; }
.page-template-page-services .pas-sx-core-card__content > a { align-self: end; margin-top: auto; }
.page-template-page-services .pas-sx-core-card:focus-within { outline: 2px solid var(--pas-sx-gold); outline-offset: -2px; }
.page-template-page-services .pas-sx-core-card:focus-within figure img { transform: scale(1.025); }

.page-template-page-services .pas-sx-module {
	min-height: 152px;
	padding-block: 16px;
	transition: background .3s var(--pas-ease), padding .3s var(--pas-ease), color .3s ease;
}
.page-template-page-services .pas-sx-module::before {
	inset: 0;
	border-inline-start: 3px solid var(--pas-module-accent);
	background: #1c1e1d;
}
.page-template-page-services .pas-sx-module:hover,
.page-template-page-services .pas-sx-module:focus-within { padding-inline: 14px; }
.page-template-page-services .pas-sx-module:hover::before,
.page-template-page-services .pas-sx-module:focus-within::before { opacity: 1; }
.page-template-page-services .pas-sx-module:focus-within h3,
.page-template-page-services .pas-sx-module:focus-within .pas-sx-module__type,
.page-template-page-services .pas-sx-module:focus-within .pas-sx-module__body > p:last-child,
.page-template-page-services .pas-sx-module:focus-within li,
.page-template-page-services .pas-sx-module:focus-within > a { color: #fff; }
.page-template-page-services .pas-sx-module:focus-within li,
.page-template-page-services .pas-sx-module:focus-within > a { border-color: rgba(255,255,255,.3); }
.page-template-page-services .pas-sx-module:focus-within > a b { transform: translate(4px,-4px); }
.page-template-page-services .pas-sx-module figure { height: 108px; }
.page-template-page-services .pas-sx-module:nth-child(2) figure img { object-position: top center; }
.page-template-page-services .pas-sx-module:nth-child(3) figure img { object-position: center 36%; }
.page-template-page-services .pas-sx-module:nth-child(8) figure img,
.page-template-page-services .pas-sx-module:nth-child(9) figure img,
.page-template-page-services .pas-sx-module:nth-child(10) figure img { object-position: top center; }
.page-template-page-services .pas-sx-module h3 { text-wrap: balance; }
.page-template-page-services .pas-sx-module > a:focus-visible { outline: 2px solid var(--pas-module-accent); outline-offset: 5px; }
.page-template-page-services .pas-sx-engagement article:focus-within { background: #242626; outline: 1px solid #d7bd74; outline-offset: -1px; }
.page-template-page-services .pas-sx-after .pas-faq-list details {
	border-inline-start: 2px solid transparent;
	transition: border-color .25s ease, background .25s ease, padding .25s ease;
}
.page-template-page-services .pas-sx-after .pas-faq-list details:hover,
.page-template-page-services .pas-sx-after .pas-faq-list details[open] { border-inline-start-color: var(--pas-accent); }

@media (max-width: 820px) {
	.page-template-page-services .pas-sx-core-card__content { min-height: 330px; }
	.page-template-page-services .pas-sx-module:hover,
	.page-template-page-services .pas-sx-module:focus-within { padding-inline: 10px; }
}

@media (max-width: 700px) {
	.page-template-page-services .pas-sx-hero { min-height: 620px; }
	.page-template-page-services .pas-sx-core-card { grid-template-rows: 218px 1fr; }
	.page-template-page-services .pas-sx-core-card__content { min-height: 0; }
	.page-template-page-services .pas-sx-module {
		grid-template-columns: 26px 72px minmax(0,1fr) 22px;
		gap: 10px;
		min-height: 138px;
		padding-block: 12px;
	}
	.page-template-page-services .pas-sx-module:hover,
	.page-template-page-services .pas-sx-module:focus-within { padding-inline: 7px; }
	.page-template-page-services .pas-sx-module figure { height: 76px; }
	.page-template-page-services .pas-sx-module h3 { font-size: 20px; }
	.page-template-page-services .pas-sx-module__body > p:last-child {
		display: -webkit-box;
		overflow: hidden;
		margin-top: 7px;
		font-size: 9px;
		line-height: 1.45;
		-webkit-box-orient: vertical;
		-webkit-line-clamp: 2;
	}
	.page-template-page-services .pas-sx-module__type { margin-bottom: 6px; }
}

@media (prefers-reduced-motion: reduce) {
	.page-template-page-services .pas-sx-module:focus-within > a b,
	.page-template-page-services .pas-sx-core-card:focus-within figure img { transform: none; }
}

/* Version 8.27: optimized award-object photography and motion showcase. */
.page-template-page-trophy-medal-design .pas-page-hero__media {
	background-position: center 56%;
	filter: saturate(.82) brightness(.58) contrast(1.08);
}
.page-template-page-trophy-medal-design .pas-page-hero__overlay {
	background: linear-gradient(90deg,rgba(10,11,10,.9) 0%,rgba(10,11,10,.58) 48%,rgba(10,11,10,.16) 100%);
}
.pas-award-intro { padding-block: clamp(76px,9vw,130px); }
.pas-award-intro__grid {
	display: grid;
	grid-template-columns: minmax(0,1.08fr) minmax(360px,.92fr);
	gap: clamp(52px,8vw,120px);
	align-items: end;
}
.pas-award-intro .pas-section-heading { margin: 0; }
.pas-award-intro .pas-feature-list { grid-template-columns: repeat(2,minmax(0,1fr)); }

.pas-award-gallery {
	padding-block: clamp(76px,8vw,118px);
	background: #171918;
	color: #f5f4ee;
	scroll-margin-top: 78px;
}
.pas-award-gallery__heading {
	display: grid;
	grid-template-columns: minmax(0,1fr) minmax(280px,.38fr);
	gap: 48px;
	align-items: end;
	margin-bottom: 44px;
}
.pas-award-gallery__heading h2,
.pas-award-film-section__heading h2,
.pas-award-context__details h2 {
	margin: 10px 0 0;
	font-size: clamp(40px,5.2vw,76px);
	font-weight: 400;
	line-height: .98;
	text-wrap: balance;
}
#award-gallery-title,
#award-film-title { scroll-margin-top: 110px; }
.pas-award-gallery__heading > p,
.pas-award-film-section__heading > p,
.pas-award-context__details > div > p:not(.pas-eyebrow) {
	margin: 0;
	color: #aeb1ac;
	font-size: 14px;
	line-height: 1.75;
}
.pas-award-gallery__grid {
	display: grid;
	grid-template-columns: minmax(0,1.18fr) minmax(320px,.82fr);
	grid-template-rows: repeat(2,minmax(270px,34vw));
	gap: 1px;
	background: rgba(255,255,255,.18);
}
.pas-award-shot { position: relative; min-width: 0; margin: 0; overflow: hidden; background: #080908; }
.pas-award-shot--hero { grid-row: 1 / 3; }
.pas-award-shot img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform .75s var(--pas-ease), filter .55s ease;
}
.pas-award-shot--hero img { object-position: center 58%; }
.pas-award-shot::after {
	content: "";
	position: absolute;
	inset: 40% 0 0;
	background: linear-gradient(transparent,rgba(5,6,5,.86));
	pointer-events: none;
}
.pas-award-shot figcaption {
	position: absolute;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 2;
	display: grid;
	grid-template-columns: 1fr auto;
	gap: 8px 20px;
	align-items: end;
	padding: clamp(20px,2.5vw,34px);
}
.pas-award-shot figcaption span { grid-column: 1 / -1; color: #d7bd74; font-size: 9px; font-weight: 700; text-transform: uppercase; }
.pas-award-shot figcaption strong { font-size: clamp(20px,2vw,30px); font-weight: 500; }
.pas-award-shot figcaption small { color: #d6d7d3; font-size: 9px; text-transform: uppercase; }
.pas-award-shot:hover img { transform: scale(1.025); filter: saturate(1.08); }

.pas-award-film-section { padding-block: clamp(78px,9vw,132px); background: #f0f1ed; scroll-margin-top: 78px; }
.pas-award-film-section__heading { display: grid; grid-template-columns: 1fr minmax(280px,.42fr); gap: 20px 60px; align-items: end; margin-bottom: 46px; }
.pas-award-film-section__heading .pas-eyebrow { grid-column: 1 / -1; }
.pas-award-film-section__heading h2 { color: #171918; }
.pas-award-film-grid { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: clamp(14px,2.1vw,30px); }
.pas-award-film { min-width: 0; border-top: 1px solid #a8aca6; padding-top: 12px; }
.pas-award-film__media { position: relative; overflow: hidden; background: #090a09; aspect-ratio: 9 / 16; }
.pas-award-film video { display: block; width: 100%; height: 100%; object-fit: cover; }
.pas-award-film__copy { display: grid; grid-template-columns: 34px minmax(0,1fr); gap: 5px 12px; padding-top: 17px; }
.pas-award-film__copy > span { grid-row: 1 / 3; color: var(--pas-accent); font-size: 10px; font-weight: 700; }
.pas-award-film__copy h3 { margin: 0; font-size: clamp(19px,1.6vw,25px); font-weight: 500; line-height: 1.1; }
.pas-award-film__copy p { margin: 5px 0 0; color: #676b67; font-size: 11px; line-height: 1.6; }

.pas-award-context { overflow: hidden; background: #101211; color: #f5f4ee; }
.pas-award-context__wide { position: relative; margin: 0; overflow: hidden; }
.pas-award-context__wide img {
	display: block;
	width: 100%;
	height: clamp(390px,46vw,660px);
	object-fit: cover;
	object-position: center;
	transform: translate3d(0,var(--pas-parallax-y,0),0) scale(1.08);
}
.pas-award-context__wide::after { content: ""; position: absolute; inset: 35% 0 0; background: linear-gradient(transparent,rgba(9,10,9,.88)); }
.pas-award-context__wide figcaption { position: absolute; right: 5vw; bottom: clamp(28px,5vw,70px); left: 5vw; z-index: 2; display: flex; justify-content: space-between; gap: 30px; align-items: end; }
.pas-award-context__wide figcaption span { color: #d7bd74; font-size: 9px; font-weight: 700; text-transform: uppercase; }
.pas-award-context__wide figcaption strong { max-width: 680px; font-size: clamp(26px,3.2vw,48px); font-weight: 400; line-height: 1.05; }
.pas-award-context__details { display: grid; grid-template-columns: minmax(320px,.82fr) minmax(0,1.18fr); gap: clamp(50px,9vw,130px); align-items: center; padding-block: clamp(72px,8vw,118px); }
.pas-award-context__details figure { margin: 0; }
.pas-award-context__details figure img { display: block; width: 100%; aspect-ratio: 16 / 9; object-fit: cover; }
.pas-award-context__details figure figcaption { border-top: 1px solid #464946; margin-top: 14px; padding-top: 13px; color: #aeb1ac; font-size: 10px; line-height: 1.6; }
.pas-award-context__details h2 { margin-bottom: 25px; }
.pas-award-context__details .pas-v5-line-link { margin-top: 30px; color: #fff; }
.pas-award-context__details .pas-v5-line-link::after { background: #fff; }

.home .pas-v5-object__image img { object-position: center 56%; filter: saturate(.82) brightness(.88) contrast(1.04); }
.page-template-page-services .pas-sx-module:nth-child(4) figure img,
.page-template-page-services .pas-sx-module:nth-child(5) figure img { object-position: center 58%; }

@media (max-width: 900px) {
	.pas-award-intro__grid,
	.pas-award-context__details { grid-template-columns: 1fr; }
	.pas-award-gallery__heading { grid-template-columns: 1fr; }
	.pas-award-gallery__grid { grid-template-columns: 1fr 1fr; grid-template-rows: minmax(480px,80vw) minmax(280px,44vw); }
	.pas-award-shot--hero { grid-column: 1 / -1; grid-row: auto; }
}

@media (max-width: 700px) {
	.pas-award-intro__grid { gap: 42px; }
	.pas-award-intro .pas-feature-list { grid-template-columns: 1fr; }
	.pas-award-gallery__heading,
	.pas-award-film-section__heading { display: block; }
	.pas-award-gallery__heading > p,
	.pas-award-film-section__heading > p { margin-top: 22px; }
	.pas-award-gallery__grid { display: block; background: transparent; }
	.pas-award-shot { aspect-ratio: 4 / 5; margin-bottom: 1px; }
	.pas-award-shot figcaption { display: block; }
	.pas-award-shot figcaption strong,
	.pas-award-shot figcaption small { display: block; margin-top: 7px; }
	.pas-award-film-grid { grid-template-columns: 1fr; gap: 42px; }
	.pas-award-film__media { max-height: 76svh; }
	.pas-award-context__wide img { height: 470px; object-position: 63% center; }
	.pas-award-context__wide figcaption { display: block; }
	.pas-award-context__wide figcaption strong { display: block; margin-top: 12px; }
	.pas-award-context__details { gap: 44px; }
}

@media (hover: none) {
	.pas-award-shot:hover img { transform: none; filter: none; }
}

@media (prefers-reduced-motion: reduce) {
	.pas-award-shot img,
	.pas-award-context__wide img { transform: none; transition: none; }
}

/* Version 8.29: rebuilt Home recognition showcase. */
.home .pas-v5-object {
	display: grid;
	grid-template-columns: 132px minmax(0,1.18fr) minmax(370px,.82fr);
	min-height: 800px;
	padding: 0;
	background: #151716 !important;
	color: #f5f4ee;
}
.home .pas-v5-object .pas-v5-marker {
	grid-column: 1;
	grid-row: 1;
	z-index: 4;
	padding-top: 92px;
	border-inline-end: 1px solid rgba(255,255,255,.16);
}
.home .pas-v5-object .pas-v5-marker strong { color: #d7bd74; }
.home .pas-v5-object .pas-v5-marker span { color: #d8dad6; }
.home .pas-v5-object__stage {
	position: relative;
	grid-column: 2;
	grid-row: 1;
	min-width: 0;
	min-height: 800px;
	overflow: hidden;
	background: #242522;
}
.home .pas-v5-object__primary {
	position: absolute;
	inset: 0;
	margin: 0;
	overflow: hidden;
}
.home .pas-v5-object__primary::after {
	content: "";
	position: absolute;
	inset: 42% 0 0;
	background: linear-gradient(transparent,rgba(8,9,8,.76));
	pointer-events: none;
}
.home .pas-v5-object__primary img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center 54%;
	filter: saturate(.9) brightness(.9) contrast(1.04);
	transform: translate3d(0,var(--pas-parallax-y,0),0) scale(1.065);
	transition: transform .9s var(--pas-ease),filter .5s ease;
}
.home .pas-v5-object__stage:hover .pas-v5-object__primary img {
	filter: saturate(1.03) brightness(.94) contrast(1.03);
	transform: translate3d(0,var(--pas-parallax-y,0),0) scale(1.085);
}
.home .pas-v5-object__primary figcaption {
	position: absolute;
	right: 28px;
	bottom: 28px;
	left: 28px;
	z-index: 2;
	display: flex;
	justify-content: space-between;
	gap: 24px;
	align-items: end;
	color: #fff;
}
.home .pas-v5-object__primary figcaption span { font-size: 11px; font-weight: 600; text-transform: uppercase; }
.home .pas-v5-object__primary figcaption small { color: #d9dbd7; font-size: 8px; text-transform: uppercase; }
.home .pas-v5-object__detail {
	position: absolute;
	top: 28px;
	right: 28px;
	z-index: 3;
	width: clamp(150px,23%,230px);
	margin: 0;
	border: 7px solid #151716;
	background: #151716;
}
.home .pas-v5-object__detail img { display: block; width: 100%; height: auto; aspect-ratio: 1; object-fit: cover; }
.home .pas-v5-object__detail figcaption { padding: 9px 3px 3px; color: #c8cac6; font-size: 7px; text-transform: uppercase; }
.home .pas-v5-object__edition {
	position: absolute;
	top: 28px;
	left: 28px;
	z-index: 3;
	border-top: 1px solid rgba(255,255,255,.72);
	padding-top: 9px;
	color: #fff;
	font-size: 8px;
	font-weight: 700;
	text-transform: uppercase;
}
.home .pas-v5-object__copy {
	grid-column: 3;
	grid-row: 1;
	display: flex;
	justify-content: center;
	min-width: 0;
	flex-direction: column;
	padding: clamp(60px,6vw,94px);
	background: #151716;
}
.home .pas-v5-object__copy .pas-v5-overline { color: #d7bd74; }
.home .pas-v5-object h2 {
	max-width: 560px;
	color: #f6f5ef;
	font-size: clamp(42px,4vw,62px);
	font-weight: 400;
	line-height: 1;
	text-wrap: balance;
}
.home .pas-v5-object__copy > p:not(.pas-v5-overline) {
	max-width: 520px;
	margin: 28px 0 0;
	color: #b8bbb7;
	font-size: 14px;
	line-height: 1.8;
}
.home .pas-v5-object__scope { margin: 40px 0 10px; border-top: 1px solid #444744; }
.home .pas-v5-object__scope > div {
	display: grid;
	grid-template-columns: 130px minmax(0,1fr);
	gap: 20px;
	padding: 16px 0;
	border-bottom: 1px solid #444744;
}
.home .pas-v5-object__scope dt { color: #d7bd74; font-size: 8px; font-weight: 700; text-transform: uppercase; }
.home .pas-v5-object__scope dd { margin: 0; color: #e2e3df; font-size: 10px; line-height: 1.5; text-transform: uppercase; }
.home .pas-v5-object .pas-v5-line-link { align-self: flex-start; margin-top: 28px; color: #fff; }

@media (max-width: 1100px) {
	.home .pas-v5-object { grid-template-columns: 92px minmax(0,1fr); }
	.home .pas-v5-object .pas-v5-marker { grid-row: 1 / 3; }
	.home .pas-v5-object__stage { grid-column: 2; min-height: 640px; }
	.home .pas-v5-object__copy { grid-column: 2; grid-row: 2; padding: 72px clamp(40px,8vw,90px); }
}

@media (max-width: 700px) {
	.home .pas-v5-object { display: block; padding: 0; }
	.home .pas-v5-object .pas-v5-marker { margin: 0; border-inline-end: 0; padding: 60px 22px 36px; }
	.home .pas-v5-object__stage { min-height: 500px; }
	.home .pas-v5-object__primary img { object-position: center 52%; }
	.home .pas-v5-object__detail { top: 18px; right: 18px; width: 128px; border-width: 5px; }
	.home .pas-v5-object__edition { top: 20px; left: 18px; }
	.home .pas-v5-object__primary figcaption { right: 18px; bottom: 18px; left: 18px; display: block; }
	.home .pas-v5-object__primary figcaption small { display: block; margin-top: 6px; }
	.home .pas-v5-object__copy { padding: 58px 22px 70px; }
	.home .pas-v5-object h2 { font-size: 42px; }
	.home .pas-v5-object__scope > div { grid-template-columns: 112px minmax(0,1fr); gap: 12px; }
}

@media (prefers-reduced-motion: reduce) {
	.home .pas-v5-object__primary img,
	.home .pas-v5-object__stage:hover .pas-v5-object__primary img { transform: none; transition: none; }
}

/* Version 8.30: structured home cards, tables and NIPA recognition study. */
.home .pas-v5-services .pas-v5-heading,
.home .pas-v5-process .pas-v5-heading { margin-bottom: 38px; }

.home .pas-v5-service-list {
	display: grid;
	grid-template-columns: repeat(2,minmax(0,1fr));
	gap: 12px;
	border: 0;
	margin-bottom: 34px;
}
.home .pas-v5-service-list a {
	display: grid;
	grid-template-columns: 34px minmax(0,1fr) 28px;
	grid-template-rows: auto 1fr;
	gap: 12px 16px;
	align-content: start;
	min-height: 184px;
	border: 1px solid #c5c8c4;
	padding: 24px;
	background: rgba(255,255,255,.42);
	transition: border-color .3s var(--pas-ease), background .3s var(--pas-ease), transform .35s var(--pas-ease), box-shadow .35s var(--pas-ease);
}
.home .pas-v5-service-list a::before {
	inset: 0;
	background: linear-gradient(115deg,rgba(213,178,81,.12),transparent 44%);
}
.home .pas-v5-service-list a::after {
	content: "";
	position: absolute;
	inset: -1px auto -1px -1px;
	width: 3px;
	background: var(--pas-accent);
	transform: scaleY(0);
	transform-origin: bottom;
	transition: transform .35s var(--pas-ease);
}
[dir="rtl"] .home .pas-v5-service-list a::after { right: -1px; left: auto; }
.home .pas-v5-service-list a:hover,
.home .pas-v5-service-list a:focus-visible {
	border-color: #8b8f8a;
	padding: 24px;
	background: #fff;
	box-shadow: 0 14px 32px rgba(28,31,29,.07);
	transform: translateY(-3px);
}
.home .pas-v5-service-list a:hover::after,
.home .pas-v5-service-list a:focus-visible::after { transform: scaleY(1); }
.home .pas-v5-service-list small {
	display: grid;
	place-items: center;
	width: 30px;
	height: 30px;
	border: 1px solid #c4a852;
	padding: 0;
	color: #705d25;
	font-size: 8px;
}
.home .pas-v5-service-list h3 {
	align-self: center;
	margin: 0;
	font-size: clamp(20px,1.8vw,26px);
	line-height: 1.15;
}
.home .pas-v5-service-list p {
	grid-column: 2 / 4;
	max-width: 520px;
	margin: 0;
	color: #696d69;
	font-size: 11px;
	line-height: 1.7;
}
.home .pas-v5-service-list b {
	display: grid;
	place-items: center;
	width: 28px;
	height: 28px;
	border: 1px solid #d0d2cf;
	font-size: 14px;
	transition: border-color .3s ease, background .3s ease, color .3s ease;
}
.home .pas-v5-service-list a:hover b,
.home .pas-v5-service-list a:focus-visible b { border-color: var(--pas-ink); background: var(--pas-ink); color: #fff; }

.home .pas-v5-work__grid { grid-auto-rows: 1fr; gap: 14px; }
.home .pas-v5-work-card {
	border-color: #bfc2be;
	background: #fafaf7;
	box-shadow: 0 1px 0 rgba(18,20,19,.04);
}
.home .pas-v5-work-card::after {
	content: "";
	position: absolute;
	inset: 8px;
	z-index: 5;
	border: 1px solid transparent;
	pointer-events: none;
	transition: border-color .3s ease;
}
.home .pas-v5-work-card:hover::after,
.home .pas-v5-work-card:focus-visible::after { border-color: rgba(109,92,42,.24); }
.home .pas-v5-work-card:hover,
.home .pas-v5-work-card:focus-visible {
	border-color: #827f73;
	box-shadow: 0 16px 34px rgba(25,28,26,.08);
	transform: translateY(-3px);
}
.home .pas-v5-work-card__visual { aspect-ratio: 16/8.4; }
.home .pas-v5-work-card__visual--04 { background: #171814; }
.home .pas-v5-work-card__visual--04 .pas-v5-work-card__brand {
	display: grid;
	width: min(82%,420px);
	grid-template-columns: 88px minmax(0,1fr);
	gap: 20px;
}
.home .pas-v5-work-card__visual--04 .pas-v5-work-card__brand > img {
	width: 88px;
	height: 88px;
	object-fit: contain;
}
.home .pas-v5-work-card__visual--04 .pas-v5-work-card__wordmark {
	position: static;
	display: flex;
	width: auto;
	height: auto;
	overflow: visible;
	clip: auto;
	clip-path: none;
	white-space: normal;
}
.home .pas-v5-work-card__visual--04 .pas-v5-work-card__wordmark strong { color: #e7c766; font-size: clamp(26px,2.6vw,38px); letter-spacing: .08em; }
.home .pas-v5-work-card > .pas-v5-work-card__body { padding: 22px 24px 24px; }
.home .pas-v5-work-card__body h3 { min-height: 54px; text-wrap: balance; }
.home .pas-v5-work-card__body > span { min-height: 76px; }
.home .pas-v5-work-card__body ul { min-height: 54px; margin: 17px 0 20px; }
.home .pas-v5-work-card__body li {
	border-color: transparent;
	padding: 6px 9px;
	background: #ebece8;
	color: #4d514d;
}
.home .pas-v5-work-card__body > div { border-top-color: #c9ccc8; }

.home .pas-v5-object__scope {
	margin-top: 34px;
	border: 1px solid #454844;
	background: rgba(255,255,255,.018);
}
.home .pas-v5-object__scope > div {
	grid-template-columns: minmax(118px,.42fr) minmax(0,1fr);
	min-height: 62px;
	align-items: center;
	border-bottom: 1px solid #454844;
	padding: 0 18px;
}
.home .pas-v5-object__scope > div:last-child { border-bottom: 0; }
.home .pas-v5-object__scope dt { padding-inline-end: 16px; }
.home .pas-v5-object__scope dd { border-inline-start: 1px solid #454844; padding: 16px 0 16px 18px; }
[dir="rtl"] .home .pas-v5-object__scope dd { padding: 16px 18px 16px 0; }

.home .pas-v5-process__steps {
	gap: 0;
	border: 1px solid #aeb2ad;
	background: #aeb2ad;
}
.home .pas-v5-process__steps article {
	position: relative;
	display: flex;
	min-height: 246px;
	flex-direction: column;
	border: 0;
	border-inline-end: 1px solid #aeb2ad;
	padding: 22px;
	background: #f8f8f5;
	overflow: hidden;
	transition: background .3s ease, color .3s ease;
}
.home .pas-v5-process__steps article:last-child { border-inline-end: 0; }
.home .pas-v5-process__steps article::before {
	content: "";
	position: absolute;
	inset: 0 0 auto;
	height: 3px;
	background: var(--pas-accent);
	transform: scaleX(0);
	transform-origin: left;
	transition: transform .35s var(--pas-ease);
}
[dir="rtl"] .home .pas-v5-process__steps article::before { transform-origin: right; }
.home .pas-v5-process__steps article::after { display: none; }
.home .pas-v5-process__steps article:hover { background: #fff; }
.home .pas-v5-process__steps article:hover::before { transform: scaleX(1); }
.home .pas-v5-process__steps span {
	display: grid;
	place-items: center;
	width: 32px;
	height: 32px;
	border: 1px solid #c5a94f;
	color: #715f28;
}
.home .pas-v5-process__steps h3 { margin: auto 0 13px; font-size: 22px; }
.home .pas-v5-process__steps p { min-height: 56px; margin: 0; color: #666a66; line-height: 1.65; }

@media (max-width: 1024px) {
	.home .pas-v5-service-list { grid-template-columns: 1fr; }
	.home .pas-v5-service-list a { min-height: 156px; }
	.home .pas-v5-process__steps { grid-template-columns: repeat(2,minmax(0,1fr)); }
	.home .pas-v5-process__steps article:nth-child(2n) { border-inline-end: 0; }
	.home .pas-v5-process__steps article { border-bottom: 1px solid #aeb2ad; }
	.home .pas-v5-process__steps article:last-child { border-bottom: 0; }
}

@media (max-width: 700px) {
	.home .pas-v5-service-list { gap: 10px; }
	.home .pas-v5-service-list a,
	.home .pas-v5-service-list a:hover,
	.home .pas-v5-service-list a:focus-visible { min-height: 0; gap: 11px; padding: 18px; transform: none; }
	.home .pas-v5-service-list p { grid-column: 1 / 4; padding-inline-start: 46px; }
	.home .pas-v5-work-card__visual { aspect-ratio: 16/9; }
	.home .pas-v5-work-card__visual--04 .pas-v5-work-card__brand { width: 84%; grid-template-columns: 70px minmax(0,1fr); gap: 14px; }
	.home .pas-v5-work-card__visual--04 .pas-v5-work-card__brand > img { width: 70px; height: 70px; }
	.home .pas-v5-work-card__body h3,
	.home .pas-v5-work-card__body > span,
	.home .pas-v5-work-card__body ul { min-height: 0; }
	.home .pas-v5-object__scope > div { grid-template-columns: 106px minmax(0,1fr); padding-inline: 14px; }
	.home .pas-v5-object__scope dd { padding-inline-start: 14px; }
	.home .pas-v5-process__steps { grid-template-columns: 1fr; }
	.home .pas-v5-process__steps article,
	.home .pas-v5-process__steps article:nth-child(2n) { min-height: 170px; border-inline-end: 0; border-bottom: 1px solid #aeb2ad; }
	.home .pas-v5-process__steps article:last-child { border-bottom: 0; }
	.home .pas-v5-process__steps h3 { margin-top: 34px; }
	.home .pas-v5-process__steps p { min-height: 0; }
}

@media (prefers-reduced-motion: reduce) {
	.home .pas-v5-service-list a,
	.home .pas-v5-work-card,
	.home .pas-v5-process__steps article::before { transform: none !important; transition: none !important; }
}

/* Version 8.31: refined service hero alignment and structured About matrices. */
.page-template-page-services .pas-sx-hero__inner {
	width: min(1240px, calc(100% - 96px));
	margin-inline: auto;
}
.page-template-page-services .pas-sx-hero__top,
.page-template-page-services .pas-sx-hero__bottom { gap: clamp(24px, 3vw, 42px); }

.page-template-page-about .pas-about-proof {
	gap: 0;
	margin-top: 68px;
	border: 1px solid #b7bab6;
	background: #fbfbf8;
}
.page-template-page-about .pas-about-proof > div {
	position: relative;
	min-height: 188px;
	padding: 24px 26px 26px;
	border: 0;
	border-inline-end: 1px solid #c5c8c4;
	background: linear-gradient(180deg, rgba(255,255,255,.7), rgba(246,247,243,.68));
	transition: background .3s var(--pas-ease), box-shadow .3s var(--pas-ease);
}
.page-template-page-about .pas-about-proof > div:last-child { border-inline-end: 0; }
.page-template-page-about .pas-about-proof > div::before {
	position: absolute;
	inset: -1px 22px auto;
	height: 3px;
	background: var(--pas-accent);
	content: "";
	transform: scaleX(0);
	transform-origin: left;
	transition: transform .35s var(--pas-ease);
}
[dir="rtl"] .page-template-page-about .pas-about-proof > div::before { transform-origin: right; }
.page-template-page-about .pas-about-proof > div:hover {
	background: #fff;
	box-shadow: inset 0 -3px 0 rgba(117,83,15,.12);
}
.page-template-page-about .pas-about-proof > div:hover::before { transform: scaleX(1); }
.page-template-page-about .pas-about-proof strong {
	display: grid;
	place-items: center;
	width: 34px;
	height: 34px;
	border: 1px solid #a98a49;
	color: #75530f;
	font-size: 11px;
	font-weight: 700;
}
.page-template-page-about .pas-about-proof span {
	margin-top: 27px;
	font-size: 17px;
	line-height: 1.25;
}
.page-template-page-about .pas-about-proof p {
	margin-top: 9px;
	font-size: 12px;
	line-height: 1.62;
}

.page-template-page-about .pas-about-field dl {
	margin-top: 34px;
	border: 1px solid #444847;
}
.page-template-page-about .pas-about-field dl div {
	grid-template-columns: 132px minmax(0, 1fr);
	gap: 20px;
	padding: 15px 18px;
	border-top: 1px solid #444847;
}
.page-template-page-about .pas-about-field dl div:first-child { border-top: 0; }
.page-template-page-about .pas-about-field dt { padding-top: 2px; }

.page-template-page-about .pas-about-values__grid,
.page-template-page-about .pas-about-process ol { border: 1px solid #b7bab6; }
.page-template-page-about .pas-about-values__grid article,
.page-template-page-about .pas-about-process li {
	position: relative;
	border: 0;
	border-inline-end: 1px solid #c5c8c4;
	border-bottom: 1px solid #c5c8c4;
	background: rgba(255,255,255,.44);
}
.page-template-page-about .pas-about-values__grid article { min-height: 232px; padding: 23px 24px; }
.page-template-page-about .pas-about-values__grid article:nth-child(3n) { border-inline-end: 0; }
.page-template-page-about .pas-about-values__grid article:nth-last-child(-n+3) { border-bottom: 0; }
.page-template-page-about .pas-about-values__grid span,
.page-template-page-about .pas-about-process li > span {
	display: grid;
	place-items: center;
	width: 32px;
	height: 32px;
	border: 1px solid #aa8d52;
	font-size: 10px;
	font-weight: 700;
}
.page-template-page-about .pas-about-values__grid h3 { margin: 36px 0 12px; font-size: 23px; }
.page-template-page-about .pas-about-process li { min-height: 218px; padding: 22px 20px; }
.page-template-page-about .pas-about-process li:last-child { border-inline-end: 0; }
.page-template-page-about .pas-about-process li h3 { margin: 40px 0 12px; font-size: 21px; }

@media (max-width: 1024px) {
	.page-template-page-services .pas-sx-hero__inner { width: min(1240px, calc(100% - 64px)); }
	.page-template-page-about .pas-about-proof > div:nth-child(2) { border-inline-end: 0; }
	.page-template-page-about .pas-about-proof > div:nth-child(-n+2) { border-bottom: 1px solid #c5c8c4; }
	.page-template-page-about .pas-about-values__grid article:nth-child(3n) { border-inline-end: 1px solid #c5c8c4; }
	.page-template-page-about .pas-about-values__grid article:nth-child(2n) { border-inline-end: 0; }
	.page-template-page-about .pas-about-values__grid article:nth-last-child(-n+3) { border-bottom: 1px solid #c5c8c4; }
	.page-template-page-about .pas-about-values__grid article:nth-last-child(-n+2) { border-bottom: 0; }
	.page-template-page-about .pas-about-process li:nth-child(3) { border-inline-end: 0; }
	.page-template-page-about .pas-about-process li:nth-child(-n+3) { border-bottom: 1px solid #c5c8c4; }
}

@media (max-width: 700px) {
	.page-template-page-services .pas-sx-hero__inner { width: calc(100% - 32px); }
	.page-template-page-services .pas-sx-hero__top { padding-top: 12px; }
	.page-template-page-about .pas-about-proof { margin-top: 46px; }
	.page-template-page-about .pas-about-proof > div,
	.page-template-page-about .pas-about-proof > div:nth-child(2) {
		min-height: 164px;
		border-inline-end: 0;
		border-bottom: 1px solid #c5c8c4;
	}
	.page-template-page-about .pas-about-proof > div:last-child { border-bottom: 0; }
	.page-template-page-about .pas-about-field dl div { grid-template-columns: 1fr; gap: 7px; }
	.page-template-page-about .pas-about-values__grid article,
	.page-template-page-about .pas-about-values__grid article:nth-child(2n),
	.page-template-page-about .pas-about-values__grid article:nth-child(3n),
	.page-template-page-about .pas-about-process li,
	.page-template-page-about .pas-about-process li:nth-child(3) {
		min-height: 190px;
		border-inline-end: 0;
		border-bottom: 1px solid #c5c8c4;
	}
	.page-template-page-about .pas-about-values__grid article:last-child,
	.page-template-page-about .pas-about-process li:last-child { border-bottom: 0; }
	.page-template-page-about .pas-about-values__grid h3,
	.page-template-page-about .pas-about-process li h3 { margin-top: 29px; }
}

@media (prefers-reduced-motion: reduce) {
	.page-template-page-about .pas-about-proof > div,
	.page-template-page-about .pas-about-proof > div::before { transition: none; }
}
