
* {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

html {
	scroll-behavior: smooth;
}

body {
	font-family: "Work Sans", system-ui, sans-serif;
	color: #1a1a1a;
	background: #f8f5ee;
	line-height: 1.6;
	-webkit-font-smoothing: antialiased;
}

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

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

button {
	font: inherit;
	cursor: pointer;
	border: none;
	background: none;
	color: inherit;
}

/* HEADER — Node-style consistent with NDS */
.nav {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 100;
	background: #f8f5ee;
	border-bottom: 1px solid rgba(14, 39, 66, .12);
	padding: 16px clamp(20px, 4vw, 56px);
	display: grid;
	grid-template-columns: 1fr auto 1fr;
	align-items: center;
	gap: 24px;
	transition: background .3s, padding .3s;
}

.nav-l {
	display: flex;
	align-items: center;
	gap: 30px;
	font-size: 13px;
	font-weight: 500;
	letter-spacing: .01em;
	color: #0e2742;
}

.nav-l a {
	padding: 6px 0;
	opacity: .92;
	transition: color .2s;
}

.nav-l a:hover {
	color: #e8825a;
}

.nav-c {
	display: flex;
	justify-content: center;
}

.nav-c img {
	height: 30px;
	width: auto;
	display: block;
}

.nav-r {
	display: flex;
	align-items: center;
	gap: 18px;
	justify-content: flex-end;
	font-size: 12px;
	letter-spacing: .12em;
	text-transform: uppercase;
	font-weight: 500;
	color: #0e2742;
}

.nav-r > a:first-child {
	transition: color .2s;
}

.nav-r > a:first-child:hover {
	color: #e8825a;
}

.nav-cta {
	background: #091a2d;
	color: #fff !important;
	padding: 11px 22px;
	border-radius: 999px;
	letter-spacing: .14em;
	font-size: 11px;
	font-weight: 600;
	transition: background .2s;
}

.nav-cta:hover {
	background: #e8825a;
}

@media (max-width:980px) {
	.nav-l {
		display: none;
	}
	
	.nav {
		grid-template-columns: auto 1fr;
		justify-items: start;
	}
	
	.nav-c {
		justify-self: end;
	}
	
	.nav-r > a:first-child {
		display: none;
	}
}

/* HERO — simple title page, no carousel */
.hero {
	padding: 144px clamp(20px, 4vw, 56px) 72px;
	background: #f8f5ee;
	border-bottom: 1px solid rgba(14, 39, 66, .12);
}

.hero-inner {
	max-width: 1280px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: 1.4fr 1fr;
	gap: 64px;
	align-items: center;
}

.hero-l .kicker {
	font-size: 11px;
	letter-spacing: .3em;
	text-transform: uppercase;
	color: #e8825a;
	font-weight: 700;
	margin-bottom: 18px;
	display: flex;
	align-items: center;
	gap: 14px;
}

.hero-l .kicker::before {
	content: "";
	width: 32px;
	height: 1px;
	background: #e8825a;
}

.hero-l h1 {
	font-family: "Trocchi", Georgia, serif;
	font-size: clamp(40px, 5.2vw, 72px);
	line-height: 1.02;
	letter-spacing: -.025em;
	color: #0e2742;
	font-weight: 400;
	margin-bottom: 24px;
}

.hero-l h1 em {
	font-style: italic;
	color: #e8825a;
}

.hero-l p {
	font-size: 17px;
	line-height: 1.65;
	color: #3a3a3a;
	max-width: 54ch;
	margin-bottom: 32px;
}

.hero-actions {
	display: flex;
	gap: 14px;
	flex-wrap: wrap;
}

.btn {
	font-size: 12px;
	letter-spacing: .16em;
	text-transform: uppercase;
	padding: 14px 26px;
	border-radius: 999px;
	font-weight: 600;
	display: inline-flex;
	align-items: center;
	gap: 10px;
	transition: all .2s;
}

.btn-fill {
	background: #0e2742;
	color: #fff !important;
}

.btn-fill:hover {
	background: #e8825a;
}

.btn-out {
	background: transparent;
	border: 1.5px solid #0e2742;
	color: #0e2742;
}

.btn-out:hover {
	background: #0e2742;
	color: #fff;
}

.hero-r {
	aspect-ratio: 4/5;
	border-radius: 10px;
}

@media (max-width:880px) {
	.hero-inner {
		grid-template-columns: 1fr;
		gap: 36px;
	}
	
	.hero-r {
		aspect-ratio: 4/3;
	}
}

.hero-r img.attachment-full.size-full.wp-post-image {
	height: 100%;
	object-fit: cover;
	border-radius: 12px;
}

/* Partner logos band */
.partners-band {
	padding: 56px clamp(20px, 4vw, 56px);
	background: #f3efe6;
	border-bottom: 1px solid rgba(14, 39, 66, .12);
	text-align: center;
}

.partners-inner {
	max-width: 1280px;
	margin: 0 auto;
}

.partners-label {
	font-size: 11px;
	letter-spacing: .3em;
	text-transform: uppercase;
	color: #6e6e6e;
	font-weight: 600;
	margin-bottom: 32px;
}

.partners-grid {
	display: flex;
	flex-wrap: wrap;
	gap: 48px;
	justify-content: center;
	align-items: center;
}

.partners-grid img {
	max-height: 48px;
	max-width: 160px;
	width: auto;
	opacity: .7;
	filter: grayscale(100%);
	transition: all .3s;
}

.partners-grid img:hover {
	opacity: 1;
	filter: grayscale(0);
}

.logo-placeholder {
	padding: 14px 22px;
	border: 1.5px dashed #6e6e6e;
	border-radius: 6px;
	font-family: "Trocchi", Georgia, serif;
	font-style: italic;
	color: #6e6e6e;
	font-size: 14px;
	opacity: .75;
}

/* AI section */
.ai {
	background: #0e2742;
	color: #fff;
	padding: clamp(72px, 8vw, 108px) clamp(20px, 4vw, 56px);
	position: relative;
	overflow: hidden;
}

.ai::before {
	content: "";
	position: absolute;
	top: -100px;
	right: -100px;
	width: 400px;
	height: 400px;
	background: radial-gradient(circle, rgba(189, 221, 205, .18) 0%, transparent 70%);
	border-radius: 50%;
}

.ai::after {
	content: "";
	position: absolute;
	bottom: -100px;
	left: -100px;
	width: 400px;
	height: 400px;
	background: radial-gradient(circle, rgba(232, 130, 90, .15) 0%, transparent 70%);
	border-radius: 50%;
}

.ai-inner {
	max-width: 1280px;
	margin: 0 auto;
	position: relative;
	z-index: 2;
}

.ai .eyebrow {
	color: #bdddcd;
}

.ai-head {
	max-width: 780px;
	margin-bottom: 42px;
}

.ai-head h2 {
	font-family: "Trocchi", Georgia, serif;
	font-size: clamp(30px, 3.6vw, 46px);
	line-height: 1.05;
	color: #fff;
	font-weight: 400;
	margin-bottom: 18px;
	letter-spacing: -.015em;
}

.ai-head h2 em {
	font-style: italic;
	color: #bdddcd;
}

.ai-head p {
	font-size: 15.5px;
	line-height: 1.7;
	color: rgba(255, 255, 255, .85);
	max-width: 62ch;
}

.ai-stack {
	display: grid;
	grid-template-columns: repeat(6, 1fr);
	gap: 14px;
	margin-bottom: 36px;
}

.ai-cell {
	background: rgba(255, 255, 255, .05);
	border: 1px solid rgba(255, 255, 255, .18);
	border-radius: 10px;
	padding: 22px 18px;
	display: flex;
	flex-direction: column;
	backdrop-filter: blur(4px);
}

.ai-num {
	font-family: "Trocchi", Georgia, serif;
	font-style: italic;
	font-size: 14px;
	color: #bdddcd;
	margin-bottom: 12px;
	letter-spacing: .04em;
}

.ai-cell h4 {
	font-family: "Trocchi", Georgia, serif;
	font-size: 17px;
	color: #fff;
	font-weight: 400;
	letter-spacing: -.01em;
	margin-bottom: 8px;
	line-height: 1.2;
}

.ai-cell p {
	font-size: 12.5px;
	line-height: 1.55;
	color: rgba(255, 255, 255, .78);
}

.ai-closing {
	font-family: "Trocchi", Georgia, serif;
	font-style: italic;
	font-size: clamp(18px, 2vw, 24px);
	color: #e8825a;
	text-align: center;
	padding-top: 24px;
	border-top: 1px solid rgba(255, 255, 255, .18);
	letter-spacing: -.01em;
}

@media (max-width:1100px) {
	.ai-stack {
		grid-template-columns: repeat(3, 1fr);
	}
}

@media (max-width:680px) {
	.ai-stack {
		grid-template-columns: 1fr 1fr;
	}
}

/* Section base */
.section {
	padding: clamp(72px, 8vw, 108px) clamp(20px, 4vw, 56px);
}

.section-inner {
	max-width: 1280px;
	margin: 0 auto;
}

.eyebrow {
	font-size: 11px;
	letter-spacing: .32em;
	text-transform: uppercase;
	color: #e8825a;
	font-weight: 700;
	margin-bottom: 14px;
	display: inline-block;
}

h2.h2 {
	font-family: "Trocchi", Georgia, serif;
	font-size: clamp(30px, 3.6vw, 46px);
	line-height: 1.1;
	letter-spacing: -.015em;
	color: #0e2742;
	font-weight: 400;
	margin-bottom: 18px;
}

h2.h2 em {
	font-style: italic;
	color: #e8825a;
}

.sec-head {
	max-width: 760px;
	margin-bottom: 48px;
}

.sec-head p.lede {
	font-size: 16px;
	color: #3a3a3a;
	line-height: 1.7;
	margin-top: 6px;
}

/* Positioning section */
.pos {
	background: #fff;
}

.pos-inner {
	max-width: 880px;
	margin: 0 auto;
	text-align: center;
}

.pos-inner p {
	font-size: 17px;
	line-height: 1.75;
	color: #2a2a2a;
	margin-bottom: 20px;
}

.pos-tagline {
	font-family: "Trocchi", Georgia, serif;
	font-style: italic;
	font-size: clamp(22px, 2.4vw, 30px);
	color: #e8825a;
	margin-top: 24px;
	line-height: 1.3;
}

.pos-tagline::before {
	content: "— ";
}

/* For Devs / For Investors */
.audience {
	background: #f3efe6;
}

.aud-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 24px;
	margin-top: 24px;
}

.aud-card {
	background: #fff;
	padding: 40px;
	border-radius: 10px;
	box-shadow: 0 12px 32px -16px rgba(14, 39, 66, .15);
	display: flex;
	flex-direction: column;
}

.aud-tag {
	display: inline-flex;
	align-self: flex-start;
	padding: 6px 14px;
	font-size: 10px;
	letter-spacing: .28em;
	text-transform: uppercase;
	font-weight: 700;
	color: #fff;
	border-radius: 999px;
	margin-bottom: 16px;
}

.aud-h {
	font-family: "Trocchi", Georgia, serif;
	font-size: 24px;
	color: #0e2742;
	font-weight: 400;
	line-height: 1.2;
	margin-bottom: 12px;
	letter-spacing: -.015em;
}

.aud-desc {
	font-size: 14.5px;
	line-height: 1.65;
	color: #3a3a3a;
	margin-bottom: 22px;
}

.aud-list {
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 14px;
}

.aud-list li .b-label {
	font-size: 13.5px;
	color: #0e2742;
	font-weight: 600;
	margin-bottom: 3px;
}

.aud-list li .b-desc {
	font-size: 13px;
	color: #5a5a5a;
	line-height: 1.55;
}

@media (max-width:880px) {
	.aud-grid {
		grid-template-columns: 1fr;
	}
}

/* Lifecycle (engagement model) */
.lc {
	background: #fff;
}

.lc-intro {
	max-width: 780px;
	margin-bottom: 48px;
}

.lc-intro p {
	font-size: 16px;
	color: #3a3a3a;
	line-height: 1.65;
}

.lc-grid {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 18px;
}

.lc-card {
	background: #f8f5ee;
	padding: 28px 22px;
	border-radius: 10px;
	border-top: 3px solid #e8825a;
	display: flex;
	flex-direction: column;
}

.lc-num {
	font-family: "Trocchi", Georgia, serif;
	font-style: italic;
	font-size: 36px;
	color: #e8825a;
	line-height: 1;
	margin-bottom: 14px;
	font-weight: 400;
}

.lc-name {
	font-family: "Trocchi", Georgia, serif;
	font-size: 22px;
	color: #0e2742;
	font-weight: 400;
	margin-bottom: 4px;
	letter-spacing: -.01em;
}

.lc-tag {
	font-size: 10px;
	letter-spacing: .2em;
	text-transform: uppercase;
	color: #6e6e6e;
	font-weight: 600;
	margin-bottom: 14px;
}

.lc-desc {
	font-size: 13px;
	color: #3a3a3a;
	line-height: 1.55;
	margin-bottom: 14px;
}

.lc-bullets {
	list-style: none;
	margin-top: auto;
	display: flex;
	flex-direction: column;
	gap: 6px;
}

.lc-bullets li {
	font-size: 12px;
	color: #4a4a4a;
	line-height: 1.5;
	padding-left: 12px;
	position: relative;
}

.lc-bullets li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 8px;
	width: 5px;
	height: 1px;
	background: #e8825a;
}

@media (max-width:1100px) {
	.lc-grid {
		grid-template-columns: 1fr 1fr 1fr;
	}
}

@media (max-width:780px) {
	.lc-grid {
		grid-template-columns: 1fr 1fr;
	}
}

@media (max-width:540px) {
	.lc-grid {
		grid-template-columns: 1fr;
	}
}

/* Why partner */
.wp {
	background: #f3efe6;
}

.wp-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
	margin-top: 36px;
}

.wp-card {
	background: #fff;
	padding: 32px;
	border-radius: 10px;
	border-left: 3px solid #e8825a;
}

.wp-card h4 {
	font-family: "Trocchi", Georgia, serif;
	font-size: 20px;
	color: #0e2742;
	font-weight: 400;
	letter-spacing: -.01em;
	margin-bottom: 10px;
}

.wp-card p {
	font-size: 14px;
	line-height: 1.6;
	color: #3a3a3a;
}

@media (max-width:980px) {
	.wp-grid {
		grid-template-columns: 1fr 1fr;
	}
}

@media (max-width:680px) {
	.wp-grid {
		grid-template-columns: 1fr;
	}
}

/* Track record by country */
.tr {
	background: #fff;
}

.ctry-list {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

ctry-row {
	display: grid;
	grid-template-columns: 280px 1fr;
	gap: 32px;
	align-items: stretch;
	background: #f8f5ee;
	border-radius: 10px;
	overflow: hidden;
	transition: transform .3s, box-shadow .3s;
}

.ctry-row:hover {
	transform: translateY(-3px);
	box-shadow: 0 16px 40px -16px rgba(14, 39, 66, .15);
}

.ctry-img {
	background-size: cover;
	background-position: center;
	background-color: #f3efe6;
}

.ctry-body {
	padding: 28px 32px 28px 0;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.ctry-head {
	display: flex;
	align-items: center;
	gap: 14px;
	flex-wrap: wrap;
	margin-bottom: 10px;
}

.ctry-name {
	font-family: "Trocchi", Georgia, serif;
	font-size: 28px;
	color: #0e2742;
	font-weight: 400;
	letter-spacing: -.015em;
	margin: 0;
}

.ctry-status {
	font-size: 10px;
	letter-spacing: .22em;
	text-transform: uppercase;
	font-weight: 700;
	padding: 5px 12px;
	border-radius: 999px;
}

.ctry-headline {
	font-family: "Trocchi", Georgia, serif;
	font-style: italic;
	font-size: 16px;
	color: #e8825a;
	margin-bottom: 8px;
}

.ctry-desc {
	font-size: 14px;
	line-height: 1.6;
	color: #3a3a3a;
}

@media (max-width:780px) {
	.ctry-row {
		grid-template-columns: 1fr !important;
	}
	
	.sp-r {
		display: flex;
		flex-direction: column;
	}
	
	.ctry-img {
		aspect-ratio: 16/9;
	}
	
	.ctry-body {
		padding: 24px 28px;
	}
}

/* Spain case study */
.sp {
	background: #0e2742;
	color: #fff;
	padding: clamp(72px, 8vw, 108px) clamp(20px, 4vw, 56px);
}

.sp-inner {
	max-width: 1280px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 48px;
	align-items: center;
}

.sp-l .eyebrow {
	color: #e8825a;
}

.sp-l h2 {
	font-family: "Trocchi", Georgia, serif;
	font-size: clamp(32px, 4vw, 52px);
	color: #fff;
	font-weight: 400;
	line-height: 1.05;
	letter-spacing: -.02em;
	margin-bottom: 20px;
}

.sp-l h2 em {
	font-style: italic;
	color: #e8825a;
}

.sp-tag {
	font-family: "Trocchi", Georgia, serif;
	font-style: italic;
	font-size: 22px;
	color: #bdddcd;
	margin-bottom: 18px;
}

.sp-l p {
	font-size: 15px;
	line-height: 1.7;
	color: rgba(255, 255, 255, .85);
	margin-bottom: 32px;
}

.sp-hl-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
}

.sp-hl {
	padding: 20px 0;
	border-top: 1px solid rgba(255, 255, 255, .18);
}

.sp-num {
	font-family: "Trocchi", Georgia, serif;
	font-size: 42px;
	color: #e8825a;
	line-height: 1;
	margin-bottom: 4px;
	letter-spacing: -.02em;
}

.sp-lbl {
	font-size: 11px;
	letter-spacing: .22em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, .7);
	font-weight: 500;
}

.sp-r {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 12px;
}

.sp-img {
	aspect-ratio: 1;
	background-size: cover;
	background-position: center;
	border-radius: 10px;
}

@media (max-width:880px) {
	.sp-inner {
		grid-template-columns: 1fr;
		gap: 36px;
	}
}

/* Team */
.team {
	background: #f3efe6;
}

.team-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 32px;
	margin-top: 32px;
}

.team-card {
	background: #fff;
	padding: 36px 32px;
	border-radius: 10px;
	box-shadow: 0 8px 24px -12px rgba(14, 39, 66, .12);
}

team-photo {
	width: 120px;
	height: 120px;
	border-radius: 50%;
	background-size: cover;
	background-position: center top;
	background-color: #f8f5ee;
	margin-bottom: 22px;
	border: 1px solid rgba(14, 39, 66, .12);
}

.team-name {
	font-family: "Trocchi", Georgia, serif;
	font-size: 24px;
	color: #0e2742;
	font-weight: 400;
	margin-bottom: 4px;
	letter-spacing: -.015em;
}

.team-role {
	font-size: 11px;
	letter-spacing: .22em;
	text-transform: uppercase;
	color: #e8825a;
	font-weight: 600;
	margin-bottom: 16px;
}

.team-bio {
	font-size: 14px;
	line-height: 1.65;
	color: #3a3a3a;
}

@media (max-width:880px) {
	.team-grid {
		grid-template-columns: 1fr;
	}
}

/* NDS cross-ref strip */
.nds-cross {
	background: #bdddcd;
	padding: 48px clamp(20px, 4vw, 56px);
	text-align: center;
}

.nds-cross-inner {
	max-width: 880px;
	margin: 0 auto;
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 24px;
	text-align: left;
}

.nds-cross-l {
	flex: 1;
	min-width: 300px;
}

.nds-cross h3 {
	font-family: "Trocchi", Georgia, serif;
	font-size: 24px;
	color: #0e2742;
	font-weight: 400;
	letter-spacing: -.015em;
	margin-bottom: 6px;
}

.nds-cross p {
	font-size: 14px;
	line-height: 1.6;
	color: #0e2742;
	opacity: .78;
}

.nds-cross-btn {
	background: #0e2742;
	color: #fff !important;
	padding: 14px 26px;
	border-radius: 999px;
	font-size: 11px;
	letter-spacing: .22em;
	text-transform: uppercase;
	font-weight: 600;
	flex-shrink: 0;
	transition: background .2s;
}

.nds-cross-btn:hover {
	background: #e8825a;
}

/* FAQ */
.faq {
	background: #fff;
}

.faq-list {
	margin-top: 36px;
	max-width: 880px;
}

.faq-item {
	border-bottom: 1px solid rgba(14, 39, 66, .12);
}

.faq-item:first-child {
	border-top: 1px solid rgba(14, 39, 66, .12);
}

.faq-item summary {
	padding: 22px 0;
	display: flex;
	justify-content: space-between;
	align-items: center;
	cursor: pointer;
	list-style: none;
	font-family: "Trocchi", Georgia, serif;
	font-size: clamp(17px, 1.5vw, 20px);
	color: #0e2742;
	transition: color .2s;
	gap: 24px;
}

.faq-item summary::-webkit-details-marker {
	display: none;
}

.faq-item summary:hover {
	color: #e8825a;
}

.faq-icon {
	font-size: 22px;
	color: #e8825a;
	font-weight: 300;
	transition: transform .2s;
	flex-shrink: 0;
}

.faq-item[open] .faq-icon {
	transform: rotate(45deg);
}

.faq-a {
	padding: 0 0 22px;
	font-size: 14.5px;
	line-height: 1.7;
	color: #3a3a3a;
	max-width: 62ch;
}

/* CTA */
.cta {
	background: #091a2d;
	color: #fff;
	padding: clamp(72px, 8vw, 110px) clamp(20px, 4vw, 56px);
	text-align: center;
	background-image: radial-gradient(circle at 20% 30%, rgba(232, 130, 90, .15) 0%, transparent 50%), radial-gradient(circle at 80% 70%, rgba(189, 221, 205, .1) 0%, transparent 50%);
}

.cta .eyebrow {
	color: #e8825a;
}

.cta h2 {
	font-family: "Trocchi", Georgia, serif;
	font-size: clamp(34px, 4.4vw, 58px);
	line-height: 1.05;
	color: #fff;
	font-weight: 400;
	margin-bottom: 20px;
	max-width: 18ch;
	margin-left: auto;
	margin-right: auto;
	letter-spacing: -.02em;
}

.cta h2 em {
	font-style: italic;
	color: #e8825a;
}

.cta p {
	font-size: 15px;
	line-height: 1.7;
	color: rgba(255, 255, 255, .82);
	max-width: 54ch;
	margin: 0 auto 32px;
}

.cta-btn {
	background: #e8825a;
	color: #fff;
	padding: 16px 32px;
	border-radius: 999px;
	font-size: 12px;
	font-weight: 600;
	letter-spacing: .2em;
	text-transform: uppercase;
	display: inline-flex;
	align-items: center;
	gap: 10px;
	transition: all .2s;
}

.cta-btn:hover {
	background: #d96a3c;
	transform: translateY(-2px);
}

.float-cta {
	position: fixed;
	bottom: 24px;
	right: 24px;
	background: #e8825a;
	color: #fff;
	padding: 14px 22px;
	border-radius: 999px;
	font-weight: 600;
	font-size: 11px;
	letter-spacing: .2em;
	text-transform: uppercase;
	box-shadow: 0 12px 32px -8px rgba(232, 130, 90, .5);
	z-index: 80;
	display: flex;
	align-items: center;
	gap: 8px;
	transition: transform .2s;
}

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

/* Footer */
footer {
	background: #091a2d;
	color: rgba(255, 255, 255, .75);
	padding: 64px clamp(20px, 4vw, 56px) 28px;
}

.foot-inner {
	max-width: 1280px;
	margin: 0 auto;
}

.foot-top {
	display: grid;
	grid-template-columns: 1.4fr 1fr 1fr 1fr 1fr;
	gap: 48px;
	padding-bottom: 48px;
	border-bottom: 1px solid rgba(255, 255, 255, .12);
}

.foot-brand img {
	height: 34px;
	width: auto;
	filter: brightness(0) invert(1);
	opacity: .95;
	margin-bottom: 14px;
}

.foot-tag {
	font-size: 13px;
	line-height: 1.65;
	opacity: .7;
	max-width: 34ch;
	margin-bottom: 18px;
}

.foot-social {
	display: flex;
	gap: 14px;
	margin-top: 8px;
}

.foot-social a {
	width: 34px;
	height: 34px;
	border: 1px solid rgba(255, 255, 255, .2);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all .2s;
	color: rgba(255, 255, 255, .7);
}

.foot-social a:hover {
	background: #e8825a;
	border-color: #e8825a;
	color: #fff;
}

.foot-col h5 {
	color: #fff;
	font-size: 11px;
	letter-spacing: .22em;
	text-transform: uppercase;
	font-weight: 600;
	margin-bottom: 18px;
}

.foot-col a {
	display: block;
	padding: 6px 0;
	font-size: 13.5px;
	font-weight: 300;
	transition: color .2s;
}

.foot-col a:hover {
	color: #e8825a;
}

.foot-bottom {
	padding-top: 24px;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 16px;
	align-items: center;
}

.foot-bottom-l {
	font-size: 12px;
	opacity: .55;
}

.foot-bottom-r {
	font-size: 11px;
}

.foot-bottom-r a {
	opacity: .6;
	transition: opacity .2s;
}

.foot-bottom-r a:hover {
	opacity: 1;
}

@media (max-width:980px) {
	.foot-top {
		grid-template-columns: 1fr 1fr;
		gap: 36px;
	}
}

/* ============================================================
   PAGE: Node Design Studio — template-nodedesignstudio.php
   All rules below are scoped under .node-design-studio-page so
   they cannot collide with other page templates in this file.
   ============================================================ */

/* nav */
.page-template-template-nodedesignstudio .nav {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 100;
	background: #f3efe6;
	border-bottom: 1px solid rgba(14, 39, 66, .12);
	display: block;
}

.page-template-template-nodedesignstudio .nav-inner {
	max-width: 1320px;
	margin: 0 auto;
	padding: 14px clamp(20px, 4vw, 56px);
	display: grid;
	grid-template-columns: 1fr auto 1fr;
	align-items: center;
	gap: 24px;
}

.page-template-template-nodedesignstudio .nav-logo {
	justify-self: center;
}

.page-template-template-nodedesignstudio .nav-cta {
	justify-self: end;
}

.page-template-template-nodedesignstudio .nav a {
	color: #0e2742;
}

.page-template-template-nodedesignstudio .nav-logo {
	display: flex;
	align-items: center;
}

.page-template-template-nodedesignstudio .nav-logo img {
	height: 28px;
	width: auto;
	display: block;
}

.page-template-template-nodedesignstudio .nav-menu {
	display: flex;
	gap: 32px;
	font-size: 14px;
	font-weight: 500;
}

.page-template-template-nodedesignstudio .nav-menu a {
	color: #0e2742;
	padding: 4px 0;
}

.page-template-template-nodedesignstudio .nav-menu a:hover {
	color: #e8825a;
}

.page-template-template-nodedesignstudio .nav-cta {
	background: #0e2742;
	color: #fff;
	padding: 10px 20px;
	border-radius: 999px;
	font-size: 13px;
	font-weight: 600;
	letter-spacing: .02em;
	transition: background .2s;
}

.page-template-template-nodedesignstudio .nav-cta:hover {
	background: #e8825a;
}

.page-template-template-nodedesignstudio .nav a.nav-cta {
	color: #fff;
}

@media (max-width:880px) {
	.node-design-studio-page .nav-menu {
		display: none;
	}
}

/* hero */
.node-design-studio-page .hero {
	position: relative;
	height: 110vh;
	min-height: 640px;
	overflow: hidden;
	background: #0e2742;
}

.node-design-studio-page .hero-slides {
	position: absolute;
	inset: 0;
}

.node-design-studio-page .hero-slide {
	position: absolute;
	inset: 0;
	background-size: cover;
	background-position: center;
	opacity: 0;
	transition: opacity 1.6s ease-in-out;
}

.node-design-studio-page .hero-slide.active {
	opacity: 1;
}

.node-design-studio-page .hero-slide::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(14, 39, 66, .35) 0%, rgba(14, 39, 66, .55) 50%, rgba(14, 39, 66, .8) 100%);
}

.node-design-studio-page .hero-content {
	position: relative;
	z-index: 2;
	height: 100%;
	max-width: 1280px;
	margin: 0 auto;
	padding: 120px clamp(20px, 4vw, 56px) 80px;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	color: #fff;
}

.node-design-studio-page .hero-kicker {
	font-size: 12px;
	letter-spacing: .32em;
	text-transform: uppercase;
	color: #e8825a;
	font-weight: 600;
	margin-bottom: 24px;
	display: flex;
	align-items: center;
	gap: 12px;
}

.node-design-studio-page .hero-kicker::before {
	content: "";
	width: 32px;
	height: 1px;
	background: #e8825a;
}

.node-design-studio-page .hero-title {
	font-family: "Trocchi", Georgia, serif;
	font-size: clamp(40px, 5.2vw, 72px);
	line-height: 1;
	letter-spacing: -.012em;
	font-weight: 400;
	margin-bottom: 28px;
	max-width: 14ch;
}

.node-design-studio-page .hero-title em {
	font-style: italic;
	color: #f3efe6;
	font-weight: 400;
	display: block;
	margin-top: .04em;
}

.node-design-studio-page .hero-sub {
	font-size: clamp(16px, 1.6vw, 21px);
	max-width: 62ch;
	font-weight: 300;
	margin-bottom: 40px;
	opacity: .92;
}

.node-design-studio-page .hero-actions {
	display: flex;
	gap: 14px;
	flex-wrap: wrap;
}

.node-design-studio-page .btn-primary {
	background: #e8825a;
	color: #fff;
	padding: 16px 32px;
	border-radius: 999px;
	font-weight: 600;
	font-size: 14px;
	letter-spacing: .02em;
	transition: transform .2s, background .2s;
	display: inline-flex;
	align-items: center;
	gap: 10px;
}

.node-design-studio-page .btn-primary:hover {
	background: #d96a3c;
	transform: translateY(-2px);
}

.node-design-studio-page .btn-ghost {
	border: 1.5px solid rgba(255, 255, 255, .35);
	color: #fff;
	padding: 14px 28px;
	border-radius: 999px;
	font-weight: 500;
	font-size: 14px;
	transition: border-color .2s, background .2s;
}

.node-design-studio-page .btn-ghost:hover {
	border-color: #fff;
	background: rgba(255, 255, 255, .08);
}

.node-design-studio-page .hero-pager {
	position: absolute;
	bottom: 32px;
	right: clamp(20px, 4vw, 56px);
	z-index: 3;
	display: flex;
	gap: 8px;
}

.node-design-studio-page .hero-dot {
	width: 32px;
	height: 2px;
	background: rgba(255, 255, 255, .3);
	cursor: pointer;
	transition: background .3s;
}

.node-design-studio-page .hero-dot.active {
	background: #fff;
}

.node-design-studio-page .hero-caption {
	position: absolute;
	bottom: 36px;
	left: clamp(20px, 4vw, 56px);
	z-index: 3;
	font-size: 11px;
	letter-spacing: .28em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, .86);
	font-weight: 500;
	padding-left: 22px;
	border-left: 1px solid rgba(255, 255, 255, .45);
}

/* sectors strip */
.node-design-studio-page .sectors {
	background: #f3efe6;
	padding: 40px clamp(20px, 4vw, 56px);
	border-bottom: 1px solid rgba(14, 39, 66, .12);
}

.node-design-studio-page .sectors-inner {
	max-width: 1280px;
	margin: 0 auto;
}

.node-design-studio-page .sectors-label {
	font-size: 11px;
	letter-spacing: .3em;
	text-transform: uppercase;
	color: #e8825a;
	font-weight: 600;
	margin-bottom: 18px;
}

.node-design-studio-page .sectors-grid {
	display: grid;
	grid-template-columns: repeat(6, 1fr);
	gap: 24px;
}

.node-design-studio-page .sector-chip {
	padding: 14px 0;
	border-top: 1px solid rgba(14, 39, 66, .12);
}

.node-design-studio-page .sector-name {
	font-family: "Trocchi", Georgia, serif;
	font-size: 18px;
	color: #0e2742;
	margin-bottom: 4px;
}

.node-design-studio-page .sector-meta {
	font-size: 11px;
	letter-spacing: .18em;
	text-transform: uppercase;
	color: #6e6e6e;
	font-weight: 500;
}

@media (max-width:880px) {
	.node-design-studio-page .sectors-grid {
		grid-template-columns: 1fr 1fr;
		gap: 12px 24px;
	}
}

/* stats */
.node-design-studio-page .stats {
	background: #0e2742;
	color: #fff;
	padding: 48px clamp(20px, 4vw, 56px);
}

.node-design-studio-page .stats-inner {
	max-width: 1280px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 32px;
}

.node-design-studio-page .stat-num {
	font-family: "Trocchi", Georgia, serif;
	font-size: clamp(40px, 5vw, 64px);
	line-height: 1;
	color: #e8825a;
	font-weight: 400;
	margin-bottom: 8px;
	letter-spacing: -.02em;
}

.node-design-studio-page .stat-label {
	font-size: 12px;
	letter-spacing: .22em;
	text-transform: uppercase;
	font-weight: 600;
	color: #e8825a;
}

@media (max-width:780px) {
	.node-design-studio-page .stats-inner {
		grid-template-columns: repeat(2, 1fr);
		gap: 32px 24px;
	}
}

/* section base */
.node-design-studio-page .section {
	padding: clamp(80px, 10vw, 140px) clamp(20px, 4vw, 56px);
}

.node-design-studio-page .section-inner {
	max-width: 1280px;
	margin: 0 auto;
}

.node-design-studio-page .eyebrow {
	font-size: 12px;
	letter-spacing: .32em;
	text-transform: uppercase;
	color: #e8825a;
	font-weight: 600;
	margin-bottom: 20px;
	display: flex;
	align-items: center;
	gap: 12px;
	justify-content: center;
}

.node-design-studio-page .eyebrow::before {
	content: "";
	width: 32px;
	height: 1px;
	background: #e8825a;
}

.node-design-studio-page .h2 {
	font-family: "Trocchi", Georgia, serif;
	font-size: clamp(36px, 5vw, 64px);
	line-height: 1.05;
	letter-spacing: -.015em;
	color: #0e2742;
	font-weight: 400;
	margin-bottom: 24px;
}

.node-design-studio-page .lede {
	font-size: clamp(17px, 1.4vw, 20px);
	max-width: 62ch;
	color: #3a3a3a;
	line-height: 1.65;
}

/* what we do — centered with gallery below */
.node-design-studio-page .wwd {
	background: #f3efe6;
}

.node-design-studio-page .wwd-top {
	text-align: center;
	margin-bottom: 64px;
}

.node-design-studio-page .wwd-top .h2 {
	margin-left: auto;
	margin-right: auto;
	max-width: 14ch;
}

.node-design-studio-page .wwd-top .lede {
	margin: 0 auto 18px;
}

.node-design-studio-page .wwd-body {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 48px;
	max-width: 1080px;
	margin: 0 auto;
	text-align: left;
}

.node-design-studio-page .wwd-body p {
	font-size: 16px;
	line-height: 1.7;
	color: #2a2a2a;
	margin: 0;
}

@media (max-width:880px) {
	.node-design-studio-page .wwd-body {
		grid-template-columns: 1fr;
		gap: 18px;
	}
}

.node-design-studio-page .wwd-tagline {
	font-family: "Trocchi", Georgia, serif;
	font-size: clamp(22px, 2.2vw, 32px);
	color: #e8825a;
	margin-top: 48px;
	font-style: italic;
	text-align: center;
}

.node-design-studio-page .wwd-tagline em {
	color: #0e2742;
	font-style: italic;
}

.node-design-studio-page .wwd-gallery-wrap {
	position: relative;
	margin-top: 48px;
}

.node-design-studio-page .wwd-gallery {
	display: flex;
	gap: 16px;
	overflow-x: auto;
	scroll-snap-type: x mandatory;
	scroll-behavior: smooth;
	scrollbar-width: none;
	padding-bottom: 14px;
}

.node-design-studio-page .wwd-gallery::-webkit-scrollbar {
	display: none;
}

.node-design-studio-page .wwd-img {
	flex: 0 0 360px;
	aspect-ratio: 4/3;
	background-size: cover;
	background-position: center;
	scroll-snap-align: start;
	border-radius: 6px;
	background-color: #f3efe6;
}

.node-design-studio-page .wwd-nav {
	display: flex;
	gap: 8px;
	justify-content: center;
	margin-top: 24px;
}

.node-design-studio-page .wwd-arrow {
	width: 44px;
	height: 44px;
	border-radius: 50%;
	border: 1.5px solid #0e2742;
	color: #0e2742;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all .2s;
}

.node-design-studio-page .wwd-arrow:hover {
	background: #0e2742;
	color: #fff;
}

@media (max-width:880px) {
	.node-design-studio-page .wwd-img {
		flex-basis: 280px;
	}
}

/* tiers */
.node-design-studio-page .tiers {
	background: #f8f5ee;
}

.node-design-studio-page .tiers-head {
	max-width: 1100px;
	margin-bottom: 64px;
	text-align: center;
	margin-left: auto;
	margin-right: auto;
}

.node-design-studio-page .tiers-head .h2 {
	font-size: clamp(28px, 3.4vw, 46px);
	max-width: none;
}

.node-design-studio-page .tiers-head .eyebrow {
	justify-content: center;
}

.node-design-studio-page .tier-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 32px;
}

.node-design-studio-page .tier {
	background: #fff;
	border-radius: 8px;
	overflow: hidden;
	box-shadow: 0 20px 50px -25px rgba(14, 39, 66, .15);
	display: flex;
	flex-direction: column;
	transition: transform .4s, box-shadow .4s;
}

.node-design-studio-page .tier:hover {
	transform: translateY(-6px);
	box-shadow: 0 30px 70px -25px rgba(14, 39, 66, .25);
}

.node-design-studio-page .tier-image {
	aspect-ratio: 3/2;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	background-color: #f3efe6;
	border-top-left-radius: 8px;
	border-top-right-radius: 8px;
}

.node-design-studio-page .phase-block {
	margin-bottom: 48px;
}

.node-design-studio-page .phase-block:last-child {
	margin-bottom: 0;
}

.node-design-studio-page .phase-header {
	display: flex;
	align-items: center;
	gap: 18px;
	margin: 0 0 24px;
	font-family: "Trocchi", Georgia, serif;
	font-size: clamp(20px, 2vw, 26px);
	color: #0e2742;
	font-weight: 400;
	letter-spacing: -.01em;
}

.node-design-studio-page .phase-header::before, .node-design-studio-page .phase-header::after {
	content: "";
	flex: 1;
	height: 1px;
	background: rgba(14, 39, 66, .12);
}

.node-design-studio-page .tier-body {
	padding: 40px;
	display: flex;
	flex-direction: column;
	flex: 1;
}

.node-design-studio-page .tier-label {
	font-size: 11px;
	letter-spacing: .3em;
	text-transform: uppercase;
	color: #e8825a;
	font-weight: 700;
	margin-bottom: 8px;
}

.node-design-studio-page .tier-name {
	font-family: "Trocchi", Georgia, serif;
	font-size: 34px;
	color: #0e2742;
	font-weight: 400;
	margin-bottom: 8px;
	letter-spacing: -.01em;
}

.node-design-studio-page .tier-tag {
	font-size: 14px;
	color: #6e6e6e;
	font-weight: 500;
	letter-spacing: .04em;
	text-transform: uppercase;
	margin-bottom: 24px;
}

.node-design-studio-page .tier-list {
	list-style: none;
	margin-top: 8px;
}

.node-design-studio-page .tier-list li {
	padding: 14px 0;
	border-bottom: 1px solid rgba(14, 39, 66, .12);
	font-size: 15px;
	display: flex;
	gap: 14px;
	align-items: flex-start;
	line-height: 1.45;
}

.node-design-studio-page .tier-list li:last-child {
	border: none;
}

.node-design-studio-page .tier-list strong {
	color: #0e2742;
	font-weight: 600;
}

.node-design-studio-page .tier-list li::before {
	content: "";
	flex-shrink: 0;
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: #e8825a;
	margin-top: 8px;
}

@media (max-width:880px) {
	.node-design-studio-page .tier-grid {
		grid-template-columns: 1fr;
	}
}

/* value (Why It Pays) — now 2 cells */
.node-design-studio-page .value {
	background: #0e2742;
	color: #fff;
}

.node-design-studio-page .value .eyebrow {
	color: #e8825a;
	justify-content: flex-start;
}

.node-design-studio-page .value .h2 {
	color: #fff;
}

.node-design-studio-page .value .h2 em {
	font-style: italic;
	color: #e8825a;
}

.node-design-studio-page .value-grid {
	margin-top: 64px;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 36px;
}

.node-design-studio-page .value-num {
	font-family: "Trocchi", Georgia, serif;
	font-size: 88px;
	line-height: 1;
	color: #e8825a;
	font-weight: 400;
	margin-bottom: 20px;
	letter-spacing: -.02em;
}

.node-design-studio-page .value-title {
	font-family: "Trocchi", Georgia, serif;
	font-size: 24px;
	color: #fff;
	margin-bottom: 12px;
	font-weight: 400;
}

.node-design-studio-page .value-text {
	font-size: 15px;
	opacity: .78;
	line-height: 1.6;
	max-width: 34ch;
}

@media (max-width:880px) {
	.node-design-studio-page .value-grid {
		grid-template-columns: 1fr;
		gap: 40px;
	}
}

/* pull-quote moment */
.node-design-studio-page .pullquote {
	background: #fff;
	padding: 80px clamp(20px, 4vw, 56px);
	text-align: center;
	border-bottom: 1px solid rgba(14, 39, 66, .12);
	border-top: 1px solid rgba(14, 39, 66, .12);
}

.node-design-studio-page .pullquote p {
	font-family: "Trocchi", Georgia, serif;
	font-size: clamp(22px, 3.2vw, 42px);
	color: #0e2742;
	margin: 0 auto;
	line-height: 1.2;
	letter-spacing: -.015em;
	max-width: none;
}

.node-design-studio-page .pullquote p em {
	color: #e8825a;
	font-style: italic;
}

/* projects */
.node-design-studio-page .projects {
	background: #f8f5ee;
}

.node-design-studio-page .projects-head {
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
	flex-wrap: wrap;
	gap: 24px;
	margin-bottom: 56px;
}

.node-design-studio-page .projects-head .h2 {
	margin-bottom: 0;
	max-width: 14ch;
}

.node-design-studio-page .projects-head .eyebrow {
	justify-content: flex-start;
}

.node-design-studio-page .cities-strip {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-bottom: 48px;
	justify-content: center;
}

.node-design-studio-page .city-pill {
	font-size: 12px;
	letter-spacing: .18em;
	text-transform: uppercase;
	color: #0e2742;
	padding: 8px 16px;
	border: 1px solid rgba(14, 39, 66, .12);
	border-radius: 999px;
	background: #fff;
	font-weight: 500;
}

.node-design-studio-page .proj-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
}

.node-design-studio-page .proj-card {
	background: #fff;
	border-radius: 6px;
	overflow: hidden;
	transition: transform .4s;
	display: flex;
	flex-direction: column;
}

.node-design-studio-page .proj-card:hover {
	transform: translateY(-4px);
}

.node-design-studio-page .proj-img {
	aspect-ratio: 4/3;
	position: relative;
	overflow: hidden;
	background-color: #f3efe6;
	cursor: pointer;
}

.node-design-studio-page .proj-slide {
	position: absolute;
	inset: 0;
	background-size: cover;
	background-position: center;
	opacity: 0;
	transition: opacity .5s;
}

.node-design-studio-page .proj-slide.active {
	opacity: 1;
}

.node-design-studio-page .proj-tag {
	position: absolute;
	top: 16px;
	left: 16px;
	right: auto;
	background: rgba(14, 39, 66, .85);
	color: #fff;
	font-size: 11px;
	letter-spacing: .18em;
	text-transform: uppercase;
	padding: 6px 12px;
	border-radius: 4px;
	backdrop-filter: blur(6px);
	font-weight: 600;
	z-index: 3;
}

.node-design-studio-page .proj-arrow {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 36px;
	height: 36px;
	border-radius: 50%;
	background: rgba(248, 245, 238, .88);
	color: #0e2742;
	font-size: 20px;
	line-height: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	backdrop-filter: blur(6px);
	-webkit-backdrop-filter: blur(6px);
	opacity: 0;
	transition: opacity .3s, background .2s;
	z-index: 3;
	cursor: pointer;
}

.node-design-studio-page .proj-card:hover .proj-arrow {
	opacity: 1;
}

.node-design-studio-page .proj-arrow:hover {
	background: #fff;
}

.node-design-studio-page .proj-prev {
	left: 12px;
}

.node-design-studio-page .proj-next {
	right: 12px;
}

.node-design-studio-page .proj-body {
	padding: 24px 28px 28px;
}

.node-design-studio-page .proj-loc {
	font-size: 11px;
	letter-spacing: .22em;
	text-transform: uppercase;
	color: #e8825a;
	font-weight: 600;
	margin-bottom: 6px;
}

.node-design-studio-page .proj-name {
	font-family: "Trocchi", Georgia, serif;
	font-size: 26px;
	color: #0e2742;
	margin-bottom: 10px;
	letter-spacing: -.01em;
	font-weight: 400;
}

.node-design-studio-page .proj-desc {
	font-size: 14px;
	color: #6e6e6e;
	line-height: 1.55;
}

@media (max-width:880px) {
	.node-design-studio-page .proj-grid {
		grid-template-columns: 1fr;
	}
}

/* case study */
.node-design-studio-page .case {
	background: #f3efe6;
}

.node-design-studio-page .case-grid {
	display: grid;
	grid-template-columns: 1.65fr 1fr;
	gap: 32px;
	margin-top: 56px;
	align-items: start;
}

.node-design-studio-page .case-images {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 14px;
}

.node-design-studio-page .case-col-label {
	font-size: 11px;
	font-weight: 700;
	letter-spacing: .3em;
	text-transform: uppercase;
	color: #e8825a;
	padding-bottom: 2px;
}

.node-design-studio-page .case-img {
	aspect-ratio: 4/3;
	background-size: cover;
	background-position: center;
	border-radius: 6px;
	box-shadow: 0 8px 24px -12px rgba(14, 39, 66, .25);
}

.node-design-studio-page .case-side {
	background: #0e2742;
	color: #fff;
	padding: 36px;
	border-radius: 6px;
	align-self: stretch;
	display: flex;
	flex-direction: column;
}

.node-design-studio-page .case-side h4 {
	font-size: 12px;
	letter-spacing: .28em;
	text-transform: uppercase;
	color: #e8825a;
	font-weight: 700;
	margin-bottom: 28px;
}

.node-design-studio-page .case-side .dl {
	display: grid;
	gap: 22px;
}

.node-design-studio-page .case-side .dt {
	font-family: "Trocchi", Georgia, serif;
	font-size: 19px;
	color: #e8825a;
	margin-bottom: 6px;
	font-weight: 400;
}

.node-design-studio-page .case-side .dd {
	font-size: 14px;
	line-height: 1.55;
	opacity: .88;
}

@media (max-width:880px) {
	.node-design-studio-page .case-grid {
		grid-template-columns: 1fr;
		gap: 24px;
	}
	
	.node-design-studio-page .case-side {
		padding: 28px;
	}
}

/* team */
.node-design-studio-page .team {
	background: #f8f5ee;
}

.node-design-studio-page .team .eyebrow {
	justify-content: flex-start;
}

.node-design-studio-page .team-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 32px;
	margin-top: 48px;
}

.node-design-studio-page .team-photo {
	width: 120px;
	height: 120px;
	border-radius: 50%;
	background-size: cover;
	background-position: center top;
	background-color: #f3efe6;
	margin-bottom: 22px;
	border: 1px solid rgba(14, 39, 66, .12);
}

.node-design-studio-page .team-card {
	background: #fff;
	padding: 36px 32px;
	border-radius: 8px;
	box-shadow: 0 8px 24px -12px rgba(14, 39, 66, .12);
	height: 100%;
}

.node-design-studio-page .team-grid > .reveal {
	display: flex;
}

.node-design-studio-page .team-name {
	font-family: "Trocchi", Georgia, serif;
	font-size: 24px;
	color: #0e2742;
	font-weight: 400;
	margin-bottom: 4px;
	letter-spacing: -.015em;
}

.node-design-studio-page .team-role {
	font-size: 12px;
	letter-spacing: .22em;
	text-transform: uppercase;
	color: #e8825a;
	font-weight: 600;
	margin-bottom: 16px;
}

.node-design-studio-page .team-bio {
	font-size: 14px;
	line-height: 1.65;
	color: #3a3a3a;
}

@media (max-width:880px) {
	.node-design-studio-page .team-grid {
		grid-template-columns: 1fr;
		gap: 48px;
	}
	
	.node-design-studio-page .team-photo {
		margin: 0 0 20px;
		width: 100px;
		height: 100px;
	}
}

/* FAQ */
.node-design-studio-page .faq {
	background: #f3efe6;
}

.node-design-studio-page .faq .eyebrow {
	justify-content: flex-start;
}

.node-design-studio-page .faq-list {
	margin-top: 56px;
	max-width: 880px;
}

.node-design-studio-page .faq-item {
	border-bottom: 1px solid rgba(14, 39, 66, .12);
	padding: 0;
}

.node-design-studio-page .faq-item:first-child {
	border-top: 1px solid rgba(14, 39, 66, .12);
}

.node-design-studio-page .faq-item summary {
	padding: 24px 0;
	display: flex;
	justify-content: space-between;
	align-items: center;
	cursor: pointer;
	list-style: none;
	font-family: "Trocchi", Georgia, serif;
	font-size: clamp(18px, 1.8vw, 22px);
	color: #0e2742;
	transition: color .2s;
	gap: 24px;
}

.node-design-studio-page .faq-item summary::-webkit-details-marker {
	display: none;
}

.node-design-studio-page .faq-item summary:hover {
	color: #e8825a;
}

.node-design-studio-page .faq-icon {
	font-size: 24px;
	color: #e8825a;
	font-weight: 300;
	transition: transform .2s;
	flex-shrink: 0;
}

.node-design-studio-page .faq-item[open] .faq-icon {
	transform: rotate(45deg);
}

.node-design-studio-page .faq-answer {
	padding: 0 0 24px;
	font-size: 15px;
	line-height: 1.7;
	color: #3a3a3a;
	max-width: 62ch;
}

/* CTA */
.node-design-studio-page .cta {
	background: #0e2742;
	color: #fff;
	text-align: center;
	background-image: radial-gradient(circle at 20% 30%, rgba(232, 130, 90, .15) 0%, transparent 50%), radial-gradient(circle at 80% 70%, rgba(232, 130, 90, .1) 0%, transparent 50%);
}

.node-design-studio-page .cta .eyebrow {
	justify-content: center;
	color: #e8825a;
}

.node-design-studio-page .cta .h2 {
	color: #fff;
	max-width: 18ch;
	margin: 0 auto 24px;
}

.node-design-studio-page .cta .lede {
	color: rgba(255, 255, 255, .85);
	margin: 0 auto 40px;
}

.node-design-studio-page .cta-actions {
	display: flex;
	gap: 14px;
	justify-content: center;
	flex-wrap: wrap;
}

/* sticky floating CTA */
.node-design-studio-page .float-cta {
	position: fixed;
	bottom: 24px;
	right: 24px;
	background: #e8825a;
	color: #fff;
	padding: 14px 22px;
	border-radius: 999px;
	font-weight: 600;
	font-size: 13px;
	letter-spacing: .02em;
	box-shadow: 0 12px 32px -8px rgba(232, 130, 90, .5);
	z-index: 80;
	display: flex;
	align-items: center;
	gap: 8px;
	transition: transform .2s;
}

.node-design-studio-page .float-cta:hover {
	transform: translateY(-2px);
}

@media (max-width:880px) {
	.node-design-studio-page .float-cta {
		bottom: 16px;
		right: 16px;
		padding: 12px 18px;
		font-size: 12px;
	}
}

/* lightbox */
.node-design-studio-page .lightbox {
	position: fixed;
	inset: 0;
	background: rgba(14, 26, 45, .96);
	z-index: 200;
	display: none;
	flex-direction: column;
	backdrop-filter: blur(8px);
}

.node-design-studio-page .lightbox.open {
	display: flex;
}

.node-design-studio-page .lb-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 20px clamp(20px, 4vw, 56px);
	color: #fff;
}

.node-design-studio-page .lb-title {
	font-family: "Trocchi", Georgia, serif;
	font-size: 22px;
}

.node-design-studio-page .lb-meta {
	font-size: 11px;
	letter-spacing: .22em;
	text-transform: uppercase;
	color: #e8825a;
	font-weight: 600;
	margin-top: 2px;
}

.node-design-studio-page .lb-close {
	width: 48px;
	height: 48px;
	border-radius: 50%;
	border: 1px solid rgba(255, 255, 255, .3);
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all .2s;
}

.node-design-studio-page .lb-close:hover {
	background: #fff;
	color: #0e2742;
}

.node-design-studio-page .lb-stage {
	flex: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	padding: 0 clamp(20px, 4vw, 56px);
}

.node-design-studio-page .lb-image {
	max-width: 100%;
	max-height: 100%;
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
	width: 100%;
	height: 100%;
}

.node-design-studio-page .lb-arrow {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 56px;
	height: 56px;
	border-radius: 50%;
	background: rgba(255, 255, 255, .1);
	border: 1px solid rgba(255, 255, 255, .3);
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all .2s;
	z-index: 1;
}

.node-design-studio-page .lb-arrow:hover {
	background: #fff;
	color: #0e2742;
}

.node-design-studio-page .lb-prev {
	left: clamp(20px, 4vw, 56px);
}

.node-design-studio-page .lb-next {
	right: clamp(20px, 4vw, 56px);
}

.node-design-studio-page .lb-footer {
	padding: 16px clamp(20px, 4vw, 56px) 24px;
	display: flex;
	justify-content: center;
	gap: 8px;
}

.node-design-studio-page .lb-dot {
	width: 32px;
	height: 2px;
	background: rgba(255, 255, 255, .3);
	cursor: pointer;
	transition: background .3s;
}

.node-design-studio-page .lb-dot.active {
	background: #fff;
}

.node-design-studio-page .lb-desc {
	text-align: center;
	color: rgba(255, 255, 255, .7);
	font-size: 13px;
	margin-top: 12px;
	padding: 0 clamp(20px, 4vw, 56px);
}

/* reveal */
.node-design-studio-page .reveal {
	opacity: 0;
	transform: translateY(24px);
	transition: opacity .8s ease, transform .8s ease;
}

.node-design-studio-page .reveal.in {
	opacity: 1;
	transform: none;
}

.dandsec ul li {
	display: block !important;
}

/* ============================================================
   PAGE: Nook by Node (Student Housing) — template-studentnook.php
   All rules below are scoped under .studentnook-page so they
   cannot collide with other page templates in this file.
   ============================================================ */
.studentnook-page {
	--creamlt: #f8f5f0;
	--sage: #bdddcd;
	--sage-deep: #9ec9b4;
	--peach: #fbe7dd;
	--ink: #1c1c1c;
	--mute: #5b6b78;
	--acc-light: #e8825a;
	--acc-dark: #ffb7a1;
	--acc-peach: #c25e34;
	--btn-bg: #ffb7a1;
	--btn-fg: #0e2742;
	color: #0e2742;
	background: #f3efe6;
	font-family: "Work Sans", system-ui, sans-serif;
	line-height: 1.6;
	-webkit-font-smoothing: antialiased;
}

.studentnook-page h1, .studentnook-page h2, .studentnook-page h3, .studentnook-page h4 {
	font-family: "Trocchi", Georgia, serif;
	font-weight: 400;
	line-height: 1.12;
	letter-spacing: -.01em;
}

.studentnook-page em {
	font-style: italic;
	color: #e8825a;
}

.studentnook-page .sec-peach .eyebrow {
	color: #c25e34;
}

.studentnook-page .wrap {
	max-width: 1180px;
	margin: 0 auto;
	padding: 0 28px;
}

.studentnook-page .eyebrow {
	font-family: "Work Sans";
	font-weight: 600;
	font-size: .74rem;
	letter-spacing: .22em;
	text-transform: uppercase;
	color: #e8825a;
}

.studentnook-page .btn {
	display: inline-block;
	background: #ffb7a1;
	color: #0e2742;
	text-decoration: none;
	font-weight: 600;
	padding: .85rem 1.7rem;
	border-radius: 999px;
	transition: .2s;
	border: 1.5px solid #ffb7a1;
}

.studentnook-page .btn:hover {
	background: #0e2742;
	color: #ffb7a1;
	border-color: #0e2742;
}

.studentnook-page .btn-sm {
	padding: .55rem 1.2rem;
	font-size: .9rem;
}

.studentnook-page .btn-lg {
	padding: 1rem 2.2rem;
	font-size: 1.05rem;
}

.studentnook-page .btn-ghost {
	background: transparent;
	color: #fff;
	border-color: rgba(255, 255, 255, .6);
}

.studentnook-page .btn-ghost:hover {
	background: #fff;
	color: #0e2742;
	border-color: #fff;
}

.studentnook-page section {
	padding: 6.5rem 0;
}

/* hero */
.studentnook-page .hero {
	position: relative;
	min-height: 88vh;
	display: flex;
	align-items: flex-end;
	color: #fff;
	overflow: hidden;
}

.studentnook-page .hero-bg {
	position: absolute;
	inset: 0;
}

.studentnook-page .hero-bg .slide {
	position: absolute;
	inset: 0;
	background-size: cover;
	background-position: center;
	opacity: 0;
	transition: opacity 1.3s ease;
}

.studentnook-page .hero-bg .slide.on {
	opacity: 1;
}

.studentnook-page .hero-scrim {
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(14, 39, 66, .28) 0%, rgba(14, 39, 66, .72) 100%);
}

.studentnook-page .hero-in {
	position: relative;
	z-index: 2;
	padding-bottom: 4.5rem;
}

.studentnook-page .hero .kicker {
	color: #fff;
	opacity: .9;
	margin-bottom: 1.1rem;
}

.studentnook-page .hero h1 {
	font-size: clamp(3rem, 8vw, 6.4rem);
	color: #fff;
	max-width: 14ch;
}

.studentnook-page .hero h1 em {
	color: #ffb7a1;
}

.studentnook-page .hero .sub {
	font-size: clamp(1.05rem, 1.6vw, 1.35rem);
	max-width: 46ch;
	margin: 1.3rem 0 .4rem;
	font-weight: 300;
}

.studentnook-page .hero .supp {
	opacity: .85;
	margin-bottom: 1.9rem;
	font-weight: 300;
}

.studentnook-page .hero .cap {
	position: absolute;
	right: 28px;
	bottom: 1.4rem;
	z-index: 2;
	font-size: .8rem;
	letter-spacing: .14em;
	text-transform: uppercase;
	opacity: .8;
}

/* stats band */
.studentnook-page .stats {
	background: #0e2742;
	color: #fff;
}

.studentnook-page .stats .grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 1.5rem;
}

.studentnook-page .stat .n {
	font-family: "Trocchi", serif;
	font-size: clamp(2.2rem, 4vw, 3.2rem);
	color: #fff;
	line-height: 1;
}

.studentnook-page .stat .l {
	color: #e8825a;
	font-weight: 600;
	font-size: .86rem;
	letter-spacing: .06em;
	margin-top: .5rem;
	text-transform: uppercase;
}

.studentnook-page .stat .s {
	opacity: .55;
	font-size: .72rem;
	margin-top: .35rem;
}

.studentnook-page .stats .lead {
	max-width: 60ch;
	margin-bottom: 2.6rem;
}

.studentnook-page .stats h2 {
	color: #fff;
	font-size: clamp(1.8rem, 3.4vw, 2.7rem);
	max-width: 20ch;
}

@media (max-width:760px) {
	.studentnook-page .stats .grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

/* generic two-col */
.studentnook-page .two {
	display: grid;
	grid-template-columns: 1.05fr 1fr;
	gap: 3.4rem;
	align-items: center;
}

.studentnook-page .two.rev .im {
	order: -1;
}

.studentnook-page .two .im img {
	width: 100%;
	border-radius: 16px;
	display: block;
	aspect-ratio: 4/3;
	object-fit: cover;
	box-shadow: 0 24px 60px rgba(14, 39, 66, .16);
}

.studentnook-page h2.big {
	font-size: clamp(2rem, 4vw, 3.1rem);
	margin: .7rem 0 1.1rem;
	max-width: 16ch;
}

.studentnook-page .lead {
	color: #5b6b78;
	font-size: 1.08rem;
}

.studentnook-page .tag {
	color: #0e2742;
	font-weight: 600;
}

@media (max-width:820px) {
	.studentnook-page .two {
		grid-template-columns: 1fr;
		gap: 2rem;
	}
	
	.studentnook-page .two.rev .im {
		order: 0;
	}
}

/* section head */
.studentnook-page .sec-head {
	max-width: 60ch;
	margin-bottom: 3rem;
}

.studentnook-page .sec-head.wide {
	max-width: none;
}

.studentnook-page .sec-head.tight {
	margin-bottom: 1.9rem;
}

.studentnook-page .sec-head h2 {
	font-size: clamp(2rem, 4vw, 3.1rem);
	margin: .6rem 0 .8rem;
}

.studentnook-page .sec-head p {
	color: #5b6b78;
	font-size: 1.08rem;
}

.studentnook-page .center {
	text-align: center;
	margin-left: auto;
	margin-right: auto;
}

/* tiers */
.studentnook-page .tiers {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 1.4rem;
}

.studentnook-page .tier {
	background: #fff;
	border: 1px solid rgba(14, 39, 66, .1);
	border-radius: 16px;
	overflow: hidden;
	display: flex;
	flex-direction: column;
}

.studentnook-page .tier .ph {
	aspect-ratio: 3/2;
	background-size: cover;
	background-position: center;
}

.studentnook-page .tier .bd {
	padding: 1.3rem 1.3rem 1.5rem;
}

.studentnook-page .tier .num {
	font-family: "Trocchi", serif;
	color: #e8825a;
	font-size: 1.1rem;
}

.studentnook-page .tier h3 {
	font-size: 1.28rem;
	margin: .25rem 0 .55rem;
}

.studentnook-page .tier p {
	color: #5b6b78;
	font-size: .94rem;
}

.studentnook-page .tier.cap {
	background: #0e2742;
	color: #fff;
	justify-content: center;
	align-items: flex-start;
	padding: 1.6rem;
}

.studentnook-page .tier.cap h3 {
	color: #fff;
}

.studentnook-page .tier.cap p {
	color: rgba(255, 255, 255, .8);
}

.studentnook-page .tier.cap .num {
	color: #ffb7a1;
}

.studentnook-page .tiers5 {
	grid-template-columns: repeat(5, 1fr);
}

@media (max-width:980px) {
	.studentnook-page .tiers, .studentnook-page .tiers5 {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width:520px) {
	.studentnook-page .tiers, .studentnook-page .tiers5 {
		grid-template-columns: 1fr;
	}
}

.studentnook-page .note {
	max-width: 70ch;
	margin-top: 1.6rem;
	color: #5b6b78;
	font-size: .98rem;
	border-left: 3px solid #e8825a;
	padding-left: 1rem;
}

/* flywheel A (linear) */
.studentnook-page .flow {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 1rem;
	counter-reset: f;
}

.studentnook-page .flow .step {
	background: #fff;
	border-radius: 16px;
	padding: 1.5rem;
	position: relative;
	border: 1px solid rgba(14, 39, 66, .08);
}

.studentnook-page .flow .step .k {
	font-family: "Trocchi", serif;
	color: #e8825a;
	font-size: 1.6rem;
}

.studentnook-page .flow .step h3 {
	font-size: 1.3rem;
	margin: .2rem 0 .5rem;
}

.studentnook-page .flow .step p {
	color: #5b6b78;
	font-size: .93rem;
}

.studentnook-page .flow .step:not(:last-child):after {
	content: "→";
	position: absolute;
	right: -.85rem;
	top: 50%;
	transform: translateY(-50%);
	color: #e8825a;
	font-size: 1.4rem;
	z-index: 2;
}

@media (max-width:860px) {
	.studentnook-page .flow {
		grid-template-columns: 1fr 1fr;
	}
	
	.studentnook-page .flow .step:after {
		display: none;
	}
}

@media (max-width:520px) {
	.studentnook-page .flow {
		grid-template-columns: 1fr;
	}
}

/* flywheel B (image cards loop) */
.studentnook-page .loop {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 1.1rem;
}

.studentnook-page .loop .node {
	border-radius: 18px;
	overflow: hidden;
	color: #fff;
	position: relative;
	min-height: 320px;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
}

.studentnook-page .loop .node .im {
	position: absolute;
	inset: 0;
	background-size: cover;
	background-position: center;
}

.studentnook-page .loop .node .sc {
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(14, 39, 66, .1), rgba(14, 39, 66, .86));
}

.studentnook-page .loop .node .tx {
	position: relative;
	padding: 1.4rem;
}

.studentnook-page .loop .node .k {
	font-family: "Trocchi", serif;
	font-size: 1.5rem;
}

.studentnook-page .loop .node h3 {
	color: #fff;
	font-size: 1.35rem;
	margin: .1rem 0 .5rem;
}

.studentnook-page .loop .node p {
	font-size: .9rem;
	opacity: .92;
}

@media (max-width:860px) {
	.studentnook-page .loop {
		grid-template-columns: 1fr 1fr;
	}
}

@media (max-width:520px) {
	.studentnook-page .loop {
		grid-template-columns: 1fr;
	}
}

.studentnook-page .loopline {
	text-align: center;
	margin-top: 1.6rem;
	color: #0e2742;
	font-weight: 600;
}

/* amenities */
.studentnook-page .amen {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 1.2rem;
}

.studentnook-page .amen .a {
	border-radius: 14px;
	overflow: hidden;
	position: relative;
	min-height: 190px;
	display: flex;
	align-items: flex-end;
	color: #fff;
}

.studentnook-page .amen .a .im {
	position: absolute;
	inset: 0;
	background-size: cover;
	background-position: center;
}

.studentnook-page .amen .a .sc {
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(14, 39, 66, 0), rgba(14, 39, 66, .8));
}

.studentnook-page .amen .a .tx {
	position: relative;
	padding: 1rem 1.1rem;
}

.studentnook-page .amen .a .tx b {
	font-family: "Trocchi", serif;
	font-weight: 400;
	font-size: 1.4rem;
	display: block;
}

.studentnook-page .amen .a .tx span {
	color: #e8825a;
	font-weight: 600;
	font-size: .82rem;
	letter-spacing: .1em;
	text-transform: uppercase;
}

@media (max-width:760px) {
	.studentnook-page .amen {
		grid-template-columns: 1fr 1fr;
	}
}

/* pathways */
.studentnook-page .paths {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1.4rem;
}

.studentnook-page .path {
	background: #fff;
	border: 1px solid rgba(14, 39, 66, .1);
	border-radius: 16px;
	padding: 2rem;
}

.studentnook-page .path h3 {
	font-size: 1.7rem;
	margin-bottom: .7rem;
}

.studentnook-page .path h3 span {
	color: #e8825a;
}

.studentnook-page .path p {
	color: #5b6b78;
}

@media (max-width:760px) {
	.studentnook-page .paths {
		grid-template-columns: 1fr;
	}
}

/* projects */
.studentnook-page .proj {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.2rem;
}

.studentnook-page .proj .card {
	border-radius: 16px;
	overflow: hidden;
	position: relative;
	aspect-ratio: 4/3;
}

.studentnook-page .proj .card img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: .5s;
}

.studentnook-page .proj .card:hover img {
	transform: scale(1.06);
}

.studentnook-page .proj .card .tg {
	position: absolute;
	left: 14px;
	bottom: 14px;
	background: rgba(14, 39, 66, .82);
	color: #fff;
	font-size: .78rem;
	letter-spacing: .12em;
	text-transform: uppercase;
	padding: .4rem .8rem;
	border-radius: 999px;
}

@media (max-width:760px) {
	.studentnook-page .proj {
		grid-template-columns: 1fr 1fr;
	}
}

/* team */
.studentnook-page .team {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.4rem;
}

.studentnook-page .tm {
	text-align: left;
	background: #fbe7dd;
	border-radius: 18px;
	padding: 1.9rem 1.7rem;
}

.studentnook-page .team .tm:nth-child(2) {
	background: #bdddcd;
}

.studentnook-page .team .tm:nth-child(2) .role {
	color: #e8825a;
}

.studentnook-page .tm h3 {
	font-size: 1.3rem;
	margin-bottom: .15rem;
}

.studentnook-page .tm .role {
	color: #c25e34;
	font-weight: 600;
	font-size: .78rem;
	letter-spacing: .12em;
	text-transform: uppercase;
	margin-bottom: .6rem;
}

.studentnook-page .tm p {
	color: #3a5566;
	font-size: .94rem;
}

@media (max-width:760px) {
	.studentnook-page .team {
		grid-template-columns: 1fr;
	}
}

/* faq */
.studentnook-page .faq {
	max-width: 820px;
	margin: 0 auto;
	background: transparent;
}

.studentnook-page .qa {
	border-bottom: 1px solid rgba(14, 39, 66, .14);
}

.studentnook-page .qa button {
	width: 100%;
	text-align: left;
	background: none;
	border: 0;
	padding: 1.3rem 0;
	font-family: "Trocchi", serif;
	font-size: 1.2rem;
	color: #0e2742;
	cursor: pointer;
	display: flex;
	justify-content: space-between;
	gap: 1rem;
	align-items: center;
}

.studentnook-page .qa button span {
	color: #e8825a;
	transition: .3s;
	flex: none;
}

.studentnook-page .qa.open button span {
	transform: rotate(45deg);
}

.studentnook-page .qa .ans {
	max-height: 0;
	overflow: hidden;
	transition: max-height .35s ease;
	color: #5b6b78;
}

.studentnook-page .qa.open .ans {
	max-height: 300px;
}

.studentnook-page .qa .ans p {
	padding: 0 0 1.3rem;
}

/* --- sage stats band --- */
.studentnook-page .stats.sage {
	background: #bdddcd;
	color: #0e2742;
}

.studentnook-page .stats.sage h2, .studentnook-page .stats.sage .lead {
	color: #0e2742;
}

.studentnook-page .stats.sage .lead.soft {
	color: #3a5566;
}

.studentnook-page .stats.sage .stat .n {
	color: #0e2742;
}

.studentnook-page .stats.sage .stat .l {
	color: #c25e34;
}

.studentnook-page .stats.sage .stat .s {
	color: #4a6070;
	opacity: .75;
}

.studentnook-page .statbanner {
	background: #0e2742;
	border-radius: 20px;
	padding: 2.6rem 2.2rem;
	margin-top: 2.4rem;
	box-shadow: 0 20px 50px rgba(14, 39, 66, .18);
}

.studentnook-page .stats.sage .statbanner .stat .n {
	color: #fff;
}

.studentnook-page .stats.sage .statbanner .stat .l {
	color: #ffb7a1;
}

.studentnook-page .stats.sage .statbanner .stat .s {
	color: rgba(255, 255, 255, .6);
	opacity: 1;
}

.studentnook-page .stats .lead.full {
	max-width: none;
}

/* --- difference tiles (image top, aligned header, text below) --- */
.studentnook-page .dtiles {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 1.3rem;
}

.studentnook-page .dcard {
	background: #fff;
	border: 1px solid rgba(14, 39, 66, .1);
	border-radius: 18px;
	overflow: hidden;
	display: flex;
	flex-direction: column;
}

.studentnook-page .dcard .dimg {
	aspect-ratio: 4/3;
	background-size: cover;
	background-position: center;
	background-color: #bdddcd;
}

.studentnook-page .dcard .dbody {
	padding: 1.25rem 1.3rem 1.5rem;
}

.studentnook-page .dcard .dhead {
	font-family: "Trocchi", serif;
	font-size: 1.32rem;
	margin-bottom: .5rem;
	display: flex;
	align-items: baseline;
	gap: .5rem;
}

.studentnook-page .dcard .dnum {
	color: #e8825a;
}

.studentnook-page .dcard .dbody p {
	color: #5b6b78;
	font-size: .93rem;
}

@media (max-width:860px) {
	.studentnook-page .dtiles {
		grid-template-columns: 1fr 1fr;
	}
}

@media (max-width:520px) {
	.studentnook-page .dtiles {
		grid-template-columns: 1fr;
	}
}

/* --- light platform (sage cap accent) --- */
.studentnook-page .tier.cap.sage {
	background: #bdddcd;
	color: #0e2742;
}

.studentnook-page .tier.cap.sage h3 {
	color: #0e2742;
}

.studentnook-page .tier.cap.sage p {
	color: #3a5566;
}

.studentnook-page .tier.cap.sage .num {
	color: #e8825a;
}

.studentnook-page .ft-cta {
	text-align: center;
	padding: 5.5rem 28px 4.5rem;
	background: #bdddcd;
	color: #0e2742;
}

.studentnook-page .ft-cta .eyebrow {
	color: #e8825a;
}

.studentnook-page .ft-cta h2 {
	color: #0e2742;
	font-size: clamp(2.1rem, 4.5vw, 3.4rem);
	margin: .6rem 0 1rem;
}

.studentnook-page .ft-cta h2 em {
	color: #e8825a;
}

.studentnook-page .ft-cta .ft-sub {
	color: #33505f;
	opacity: 1;
	max-width: 52ch;
	margin: 0 auto 2rem;
	font-weight: 400;
}

/*main*/
.page-template-template-nodedesignstudio .footer, .page-template-template-node-asset-management .footer, .page-template-template-studentnook .footer {
	padding: 0 !important;
}

.page-template-template-nodedesignstudio .node-footer-container, .page-template-template-node-asset-management .node-footer-container, .page-template-template-studentnook .node-footer-container {
	display: none !important;
}

/*Heaer*/
.hd {
	position: sticky;
	top: 0;
	z-index: 60;
	background: rgba(243, 239, 230, .92);
	backdrop-filter: blur(8px);
	border-bottom: 1px solid rgba(14, 39, 66, .08);
}

.hd-in {
	max-width: 1180px;
	margin: 0 auto;
	padding: 0 28px;
	height: 74px;
	display: grid;
	grid-template-columns: 1fr auto 1fr;
	align-items: center;
}

.hd-left {
	display: flex;
	align-items: center;
}

.nook-logo {
	font-family: "Rubik", sans-serif;
	font-weight: 800;
	font-size: 33px;
	line-height: 1;
	color: #ffb7a1 !important;
	text-decoration: none;
	letter-spacing: -.02em;
}

.hd-in.hd-simple {
	display: flex;
	justify-content: space-between;
}

.hd-logo img {
	height: 26px;
	display: block;
	margin: 0 auto;
}

.hd-nav {
	display: flex;
	align-items: center;
	gap: 1.4rem;
}

.hd-right {
	justify-content: flex-end;
}

.hd-link {
	color: #0e2742;
	text-decoration: none;
	font-weight: 500;
	font-size: .95rem;
}

.hd-link:hover {
	color: #e8825a;
}

.drop {
	position: relative;
}

.drop-t {
	background: none;
	border: 0;
	font-family: "Work Sans";
	font-weight: 500;
	font-size: .95rem;
	color: #0e2742;
	cursor: pointer;
	padding: .4rem 0;
}

.drop-t span {
	color: #e8825a;
	font-size: .7rem;
}

.mega {
	position: absolute;
	top: 130%;
	left: 0;
	background: #f8f5f0;
	border: 1px solid rgba(14, 39, 66, .1);
	border-radius: 14px;
	padding: 1.4rem 1.6rem;
	display: none;
	gap: 2.4rem;
	box-shadow: 0 24px 60px rgba(14, 39, 66, .14);
	min-width: 520px;
}

.mega-sm {
	min-width: 220px;
}

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

.drop:hover .mega {
	display: grid;
}

.mega-col h4 {
	font-family: "Work Sans";
	font-weight: 700;
	font-size: .7rem;
	letter-spacing: .16em;
	text-transform: uppercase;
	color: #e8825a;
	margin-bottom: .7rem;
}

.mega-col a {
	display: block;
	color: #0e2742;
	text-decoration: none;
	font-size: .92rem;
	padding: .28rem 0;
}

.mega-col a:hover {
	color: #e8825a;
}

.mega-col a.cur {
	color: #e8825a;
	font-weight: 600;
}

.hd-right a.btn.btn-sm {
	background: #ffb7a1;
}

.hd-right a.btn.btn-sm {
	display: inline-block;
	background: #ffb7a1;
	color: #0e2742;
	text-decoration: none;
	font-weight: 600;
	padding: .85rem 1.7rem;
	border-radius: 999px;
	transition: .2s;
	border: 1.5px solid #ffb7a1;
}

@media (max-width:900px) {
	.hd-nav {
		display: none;
	}
	
	.hd-in {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 767px) {
	.hd-left {
		display: none;
	}
}

/* HEADER: [Residents Corporate] | logo | [Find your place · Contact us] */
.hdr {
	position: sticky;
	top: 0;
	z-index: 60;
	background: #f3efe6;
	border-bottom: 1px solid rgba(14, 39, 66, .12);
}

.hdr-inner {
	max-width: 1280px;
	margin: 0 auto;
	height: 76px;
	padding: 0 28px;
	display: flex;
	align-items: center;
}

.nav-left {
	flex: 1;
	display: flex;
	align-items: center;
	justify-content: flex-start;
	gap: 10px;
}

.nav-center {
	flex: 0 0 auto;
}

.nav-center img {
	height: 26px;
	display: block;
}

.nav-right {
	flex: 1;
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 20px;
}

.trigger {
	font-size: 14px;
	font-weight: 600;
	letter-spacing: .02em;
	color: #0e2742;
	background: none;
	border: 0;
	cursor: pointer;
	padding: 10px 8px;
	display: inline-flex;
	align-items: center;
	gap: 7px;
	font-family: inherit;
}

.trigger .car {
	width: 9px;
	height: 9px;
	transition: transform .2s;
}

.menu-item.open .trigger .car {
	transform: rotate(180deg);
}

.menu-item.open .trigger {
	color: #e8825a;
}

.findlink {
	font-size: 13px;
	font-weight: 600;
	letter-spacing: .06em;
	text-transform: uppercase;
	color: #0e2742;
}

.findlink:hover {
	color: #e8825a;
}

.contact-btn {
	background: #0e2742;
	color: #f3efe6;
	padding: 12px 24px;
	border-radius: 999px;
	font-weight: 600;
	font-size: 13px;
	letter-spacing: .02em;
	transition: filter .15s;
}

.contact-btn:hover {
	filter: brightness(1.15);
}

.mobile-toggle {
	display: none;
	margin-left: auto;
	align-items: center;
	gap: 10px;
	border: 1px solid rgba(14, 39, 66, .12);
	background: #fff;
	color: #0e2742;
	border-radius: 999px;
	padding: 12px 14px;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: .14em;
	text-transform: uppercase;
	font-family: inherit;
	cursor: pointer;
}

.mobile-toggle .bars {
	display: inline-flex;
	flex-direction: column;
	gap: 4px;
}

.mobile-toggle .bars span {
	display: block;
	width: 16px;
	height: 1.5px;
	background: currentColor;
	border-radius: 999px;
	transition: transform .2s ease, opacity .2s ease;
}

.hdr.mobile-open .mobile-toggle {
	background: #0e2742;
	color: #f3efe6;
	border-color: #0e2742;
}

.hdr.mobile-open .mobile-toggle .bars span:nth-child(1) {
	transform: translateY(5.5px) rotate(45deg);
}

.hdr.mobile-open .mobile-toggle .bars span:nth-child(2) {
	opacity: 0;
}

.hdr.mobile-open .mobile-toggle .bars span:nth-child(3) {
	transform: translateY(-5.5px) rotate(-45deg);
}

.mega-host {
	position: static;
}

.drop-host {
	position: relative;
}

.menu-panel {
	position: absolute;
	top: 100%;
	display: none;
	background: #f8f5f0;
	box-shadow: 0 24px 48px -20px rgba(14, 39, 66, .35);
	border: 1px solid rgba(14, 39, 66, .12);
	border-top: none;
}

.menu-item.open .menu-panel {
	display: block;
	animation: drop .18s ease;
}

@keyframes drop {
	from {
		opacity: 0;
		transform: translateY(-6px);
	}
	
	to {
		opacity: 1;
		transform: none;
	}
}

.mega {
	left: 0;
	right: 0;
	border-radius: 0 0 18px 18px;
}

.mega-inner {
	max-width: 1280px;
	margin: 0 auto;
	padding: 34px 28px 40px;
	display: flex;
	flex-wrap: wrap;
	gap: 34px;
}

.mega-inner > .col {
	flex: 1 1 170px;
	min-width: 0;
}

.mega-inner > .col.cities {
	flex: 1 1 190px;
}

.col-h {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: .18em;
	text-transform: uppercase;
	color: #0e2742;
	margin: 0 0 14px;
}

.col-h svg {
	width: 15px;
	height: 15px;
	stroke: #e8825a;
	fill: none;
}

.col a {
	display: block;
	font-size: 15px;
	color: #0e2742;
	padding: 9px 0;
	border-bottom: 1px solid rgba(14, 39, 66, .07);
	transition: color .12s, padding .12s;
}

.col a:last-child {
	border-bottom: none;
}

.col a:hover, .col a.act {
	color: #e8825a;
	padding-left: 5px;
}

.col .city {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.col .city::after {
	content: "›";
	color: #6e6e6e;
	font-size: 16px;
	opacity: .5;
}

.buildings {
	display: none;
}

.buildings .soon {
	display: block;
	font-size: 13px;
	color: #6e6e6e;
	font-style: italic;
	padding: 9px 0;
}

.dropdown {
	left: 0;
	width: 360px;
	border-radius: 0 0 16px 16px;
	padding: 12px;
}

.dropdown a {
	display: block;
	padding: 13px 14px;
	border-radius: 10px;
	transition: background .12s;
}

.dropdown a:hover {
	background: #fff;
}

.dropdown .t {
	font-size: 15px;
	font-weight: 600;
	color: #0e2742;
}

.dropdown .d {
	font-size: 12.5px;
	color: #6e6e6e;
	margin-top: 2px;
}

@media (max-width:900px) {
	.compliance {
		order: 3;
		flex-basis: 100%;
		justify-content: center;
		margin-top: 8px;
	}
	
	.socials {
		flex: 1;
	}
}

@media (max-width:860px) {
	.hdr-inner {
		height: auto;
		min-height: 76px;
		padding: 16px 20px;
		flex-wrap: wrap;
		gap: 14px 12px;
	}
	
	.nav-left, .nav-right {
		display: none;
		flex: 1 0 100%;
		width: 100%;
	}
	
	.hdr.mobile-open .nav-left, .hdr.mobile-open .nav-right {
		display: flex;
	}
	
	.nav-left {
		order: 3;
		flex-direction: column;
		align-items: stretch;
		gap: 10px;
		padding-top: 2px;
	}
	
	.nav-right {
		order: 4;
		flex-direction: column;
		align-items: stretch;
		gap: 12px;
		padding-bottom: 4px;
	}
	
	.nav-center {
		order: 1;
	}
	
	.nav-center img {
		height: 22px;
	}
	
	.mobile-toggle {
		display: inline-flex;
		order: 2;
	}
	
	.nav-left .menu-item {
		width: 100%;
	}
	
	.trigger {
		width: 100%;
		justify-content: space-between;
		padding: 14px 16px;
		border: 1px solid rgba(14, 39, 66, .12);
		border-radius: 16px;
		background: #fff;
	}
	
	.menu-panel {
		position: static;
		top: auto;
		left: auto;
		right: auto;
		width: 100%;
		margin-top: 8px;
		border: 1px solid rgba(14, 39, 66, .12);
		border-radius: 18px;
		box-shadow: none;
	}
	
	.mega {
		border-radius: 18px;
	}
	
	.mega-inner {
		padding: 22px 18px;
		gap: 22px;
	}
	
	.mega-inner > .col, .mega-inner > .col.cities {
		flex: 1 1 100%;
	}
	
	.dropdown {
		width: 100%;
		padding: 10px;
	}
	
	.findlink {
		display: block;
		text-align: center;
		padding: 14px 18px;
		border: 1px solid rgba(14, 39, 66, .12);
		border-radius: 999px;
		background: #fff;
	}
	
	.contact-btn {
		display: inline-flex;
		align-items: center;
		justify-content: center;
		width: 100%;
	}
}

@media (max-width:640px) {
	.note-strip {
		font-size: 12px;
		padding: 9px 12px;
	}
	
	.hdr-inner {
		padding: 14px 16px;
	}
	
	.mobile-toggle {
		padding: 11px 13px;
	}
	
	.trigger, .findlink, .contact-btn {
		font-size: 13px;
	}
	
	.mega-inner {
		padding: 18px 16px;
	}
	
	.f-cols > div {
		flex-basis: 100%;
	}
}

header.hdr button.trigger:hover {
	background: transparent !important;
	color: #e8825a;
}

header.hdr a.contact-btn {
	color: #fff;
}

.menu-item.open .menu-panel.mega {
	padding: 0;
}

header.hdr button.trigger {
	font-weight: 600;
}

article.ctry-row {
	display: grid;
	grid-template-columns: 280px 1fr;
	gap: 32px;
	align-items: stretch;
	background: #f8f5ee;
	border-radius: 10px;
	overflow: hidden;
	transition: transform .3s, box-shadow .3s;
}

.team-photo {
	width: 120px;
	height: 120px;
	border-radius: 50%;
	background-size: cover;
	background-position: center top;
	background-color: #f8f5ee;
	margin-bottom: 22px;
	border: 1px solid rgba(14, 39, 66, .12);
}
