/* =============================================================================
   Nova Life — components
   ============================================================================= */

/* ---------- Tape lines (the office feature wall) ---------- */
.hero__tape { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.hero__tape i {
	position: absolute;
	left: -20%;
	width: 150%;
	height: 3px;
	transform-origin: left center;
	opacity: .9;
}
.hero__tape i:nth-child(1) { top: 88%; background: var(--tang); transform: rotate(-24deg); }
.hero__tape i:nth-child(2) { top: 104%; left: 30%; background: #8c9aad; height: 2px; transform: rotate(-52deg); opacity: .55; }
.hero__tape i:nth-child(3) { top: 12%; left: 55%; background: var(--gold); transform: rotate(68deg); opacity: .7; }
.js .hero__tape i { scale: 0 1; transition: scale 1.8s var(--ease-snap); }
.js .is-ready .hero__tape i, .js .hero__tape.is-in i { scale: 1 1; }
.hero__tape i:nth-child(2) { transition-delay: .2s; }
.hero__tape i:nth-child(3) { transition-delay: .4s; }

/* ---------- Interior page hero ---------- */
.phero {
	position: relative;
	display: grid;
	grid-template-columns: minmax(0, 1.35fr) minmax(0, .65fr);
	align-items: end;
	gap: 40px 60px;
	min-height: min(88vh, 900px);
	padding: calc(var(--header-h) + 90px) var(--gutter) clamp(90px, 9vw, 150px);
	background: var(--ink);
	color: var(--paper);
	overflow: hidden;
	clip-path: polygon(0 0, 100% 0, 100% calc(100% - 4.5vw), 0 100%);
	margin-bottom: -4.5vw;
	z-index: 2;
}
.phero:not(.phero--img) { grid-template-columns: 1fr; min-height: 62vh; }
.phero__copy { position: relative; max-width: 1100px; }
.phero .tag { color: var(--gold-2); }
.phero__title {
	font-family: var(--f-display);
	font-weight: 800;
	font-size: clamp(2.9rem, 7.2vw, 7.4rem);
	line-height: .9;
	letter-spacing: -.045em;
	font-variation-settings: "opsz" 96;
	text-wrap: balance;
}
.phero__title em { color: var(--gold-2); }
.phero__intro { max-width: 56ch; margin-top: 28px; font-size: 1.14rem; line-height: 1.6; color: rgba(246, 239, 227, .8); }
.phero__extra { margin-top: 30px; }
.phero__btns { display: flex; flex-wrap: wrap; align-items: center; gap: 22px 30px; }
.phero__img {
	position: relative;
	justify-self: end;
	width: min(100%, 440px);
	aspect-ratio: 4 / 5;
	margin-bottom: 30px;
}
.phero__img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 999px 999px 26px 26px;
	border: 10px solid var(--paper);
	transform: rotate(3deg);
	box-shadow: 0 40px 70px -40px rgba(0, 0, 0, .8);
}
.phero__img figcaption {
	position: absolute;
	left: -58px;
	bottom: -22px;
	color: var(--gold-2);
	transform: rotate(-7deg);
	white-space: nowrap;
}
.js [data-hero-window] img { transition: transform 1.6s var(--ease), clip-path 1.4s var(--ease-snap); }
.js [data-hero-window]:not(.is-in) img { clip-path: inset(100% 0 0 0 round 999px 999px 26px 26px); transform: rotate(-6deg) scale(.9); }
.js [data-hero-in] { transition: opacity 1s var(--ease), transform 1.2s var(--ease); transition-delay: var(--d, .35s); }
.js [data-hero-in]:not(.is-in) { opacity: 0; transform: translateY(30px); }

/* ---------- Chips + toggle ---------- */
.chips { display: flex; flex-wrap: wrap; gap: 10px; }
.chip {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 10px 18px;
	border: 1.5px solid currentColor;
	border-radius: 999px;
	font-weight: 600;
	font-size: .95rem;
	line-height: 1.2;
	transition: background .3s, color .3s, transform .4s var(--ease-back), border-color .3s;
}
.chip sup { font-size: .68rem; font-weight: 700; opacity: .6; top: -.5em; }
.chip .icon { width: 17px; height: 17px; }
.chip:hover { transform: translateY(-3px) rotate(-2deg); }
.chip.is-on { background: var(--ink); border-color: var(--ink); color: var(--paper); }
.phero .chip { border-color: rgba(246, 239, 227, .35); }
.phero .chip:hover { border-color: var(--gold-2); color: var(--gold-2); }
.chips--static { gap: 10px; }

.toggle { display: inline-flex; padding: 5px; border-radius: 999px; background: var(--paper-2); }
.toggle button { padding: 9px 18px; border-radius: 999px; font-weight: 700; font-size: .92rem; transition: background .35s var(--ease), color .3s; }
.toggle button.is-on { background: var(--tang); color: var(--ink); }

/* ---------- Ticket (glimpse card) ---------- */
.ticket {
	--notch: var(--paper);
	position: relative;
	display: flex;
	flex-direction: column;
	border-radius: 20px;
	background: var(--white);
	box-shadow: 0 20px 40px -30px rgba(10, 26, 47, .5);
	transition: transform .7s var(--ease-back), box-shadow .5s;
}
.ticket:hover { transform: translateY(-10px) rotate(-1.6deg); box-shadow: 0 40px 60px -34px rgba(10, 26, 47, .55); }
.ticket__media {
	position: relative;
	display: block;
	aspect-ratio: 4 / 4.6;
	margin: 10px 10px 0;
	border-radius: 14px;
	overflow: hidden;
	background: var(--paper-2);
}
.ticket__media img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	opacity: 0;
	transform: scale(1.08);
	transition: opacity .5s, transform 1.4s var(--ease);
}
.ticket__media img.is-on { opacity: 1; transform: scale(1); }
.ticket:hover .ticket__media img.is-on { transform: scale(1.05); }
.ticket__count {
	position: absolute;
	top: 12px;
	left: 12px;
	padding: 5px 11px;
	border-radius: 999px;
	background: rgba(10, 26, 47, .8);
	color: var(--paper);
	font-size: .74rem;
	font-weight: 700;
	letter-spacing: .06em;
	-webkit-backdrop-filter: blur(6px);
	backdrop-filter: blur(6px);
}
.ticket__stub {
	position: relative;
	display: flex;
	flex-direction: column;
	gap: 6px;
	margin-top: 18px;
	padding: 22px 22px 20px;
	border-top: 2px dashed var(--paper-2);
}
/* The perforation notches. */
.ticket__stub::before, .ticket__stub::after {
	content: "";
	position: absolute;
	top: -13px;
	width: 24px;
	height: 24px;
	border-radius: 50%;
	background: var(--notch);
}
.ticket__stub::before { left: -12px; }
.ticket__stub::after { right: -12px; }
.ticket__type { font-size: .72rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: var(--gold-deep); }
.ticket__title { font-family: var(--f-display); font-weight: 750; font-size: 1.42rem; line-height: 1.05; letter-spacing: -.025em; }
.ticket__meta { font-size: .9rem; color: var(--muted); min-height: 1.4em; }
.ticket__admit {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	margin-top: 8px;
	font-family: var(--f-hand);
	font-size: 1.3rem;
	color: var(--tang);
	transform: rotate(-3deg);
	transform-origin: left;
	transition: transform .5s var(--ease-back);
}
.ticket__admit .star { width: 14px; height: 14px; }
.ticket:hover .ticket__admit { transform: rotate(-6deg) scale(1.1); }

/* ---------- Drag strip ---------- */
.strip { overflow-x: auto; overscroll-behavior-x: contain; scrollbar-width: none; cursor: grab; -webkit-overflow-scrolling: touch; }
.strip::-webkit-scrollbar { display: none; }
.strip.is-dragging { cursor: grabbing; }
.strip.is-dragging a { pointer-events: none; }
.strip__track { display: flex; gap: 28px; width: max-content; padding: 30px var(--gutter) 50px; }
.strip .ticket { width: clamp(250px, 24vw, 340px); flex: none; }
.strip .ticket:nth-child(even) { margin-top: 44px; }

/* ---------- Jobs ---------- */
.jobs { padding: clamp(110px, 12vw, 180px) 0 clamp(70px, 8vw, 120px); }
.jobs--more { padding-top: clamp(70px, 8vw, 110px); }
.jobs__head { display: flex; flex-wrap: wrap; align-items: flex-end; justify-content: space-between; gap: 24px; margin-bottom: 40px; }
.jobs__filters { display: flex; flex-wrap: wrap; align-items: center; gap: 14px 18px; }
.jobs__list { border-top: 2px solid var(--ink); }
.job { transition: opacity .4s, transform .5s var(--ease); }
.job.is-hidden { display: none; }
.job__link {
	position: relative;
	display: grid;
	grid-template-columns: minmax(170px, .75fr) minmax(0, 1.6fr) minmax(0, 1fr) auto 64px;
	align-items: center;
	gap: 26px;
	padding: 30px 18px;
	border-bottom: 2px solid var(--ink);
	isolation: isolate;
}
.job__link::before {
	content: "";
	position: absolute;
	inset: 0;
	z-index: -1;
	background: var(--tang);
	transform: scaleY(0);
	transform-origin: bottom;
	transition: transform .55s var(--ease);
}
.job__link:hover::before { transform: none; }
.job__where { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; font-weight: 700; }
.job__where small { font-weight: 500; color: var(--muted); }
.job__where .icon { width: 18px; height: 18px; color: var(--gold-deep); }
.job__title { font-family: var(--f-display); font-weight: 750; font-size: clamp(1.5rem, 2.7vw, 2.4rem); line-height: 1; letter-spacing: -.03em; transition: transform .55s var(--ease); }
.job__link:hover .job__title { transform: translateX(14px); }
.job__pay { font-size: .95rem; color: var(--muted); line-height: 1.4; }
.job__link:hover .job__pay, .job__link:hover .job__where small { color: var(--ink); }
.job__type { padding: 7px 14px; border-radius: 999px; font-size: .78rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; background: var(--gold-2); }
.job__type--student { background: var(--sky); }
.job__go {
	display: grid;
	place-items: center;
	width: 58px;
	height: 58px;
	border-radius: 50%;
	border: 2px solid var(--ink);
	transition: background .4s, color .4s, transform .6s var(--ease-back);
}
.job__go .icon { width: 22px; height: 22px; }
.job__link:hover .job__go { background: var(--ink); color: var(--tang); transform: rotate(-45deg); }
.job__peek {
	position: absolute;
	right: 110px;
	top: 50%;
	width: 150px;
	aspect-ratio: 1;
	margin-top: -75px;
	border-radius: 18px;
	overflow: hidden;
	pointer-events: none;
	transform: scale(0) rotate(-20deg);
	transition: transform .6s var(--ease-back);
	box-shadow: 0 20px 40px -20px rgba(10, 26, 47, .6);
	z-index: 2;
}
.job__peek img { width: 100%; height: 100%; object-fit: cover; }
.job__link:hover .job__peek { transform: scale(1) rotate(8deg); }

/* ---------- Sticky notes ---------- */
.notes { padding: 0 0 clamp(90px, 10vw, 150px); }
.notes__grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 26px; }
.note {
	position: relative;
	padding: 34px 26px 30px;
	border-radius: 4px 4px 22px 4px;
	font-size: 1.02rem;
	line-height: 1.55;
	box-shadow: 0 22px 34px -26px rgba(10, 26, 47, .5);
	transition: transform .6s var(--ease-back);
}
.note strong { display: block; margin-bottom: 10px; font-family: var(--f-serif); font-style: italic; font-weight: 400; font-size: 1.9rem; line-height: 1; }
.note::before {
	content: "";
	position: absolute;
	top: -12px;
	left: 50%;
	width: 90px;
	height: 26px;
	margin-left: -45px;
	background: rgba(255, 253, 248, .55);
	transform: rotate(-3deg);
	box-shadow: 0 2px 4px rgba(0, 0, 0, .06);
}
.note--1 { background: var(--gold-2); transform: rotate(-2.5deg); }
.note--2 { background: var(--sky); transform: rotate(1.8deg); margin-top: 24px; }
.note--3 { background: var(--blush); transform: rotate(-1.2deg); }
.note--4 { background: var(--tang-2); transform: rotate(2.4deg); margin-top: 30px; }
.note:hover { transform: rotate(0) scale(1.04); z-index: 2; }
.js .note[data-reveal]:not(.is-in) { transform: translateY(80px) rotate(-10deg); }

/* ---------- Branch cards ---------- */
.branch-cards { padding: clamp(70px, 8vw, 120px) 0 clamp(110px, 12vw, 170px); }
.branch-cards__head { margin-bottom: 48px; }
.branch-cards__grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 22px; }
.bcard {
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	aspect-ratio: 3 / 4.2;
	padding: 24px;
	border-radius: 28px;
	overflow: hidden;
	color: var(--paper);
	isolation: isolate;
	transition: transform .7s var(--ease-back), border-radius .6s var(--ease);
}
.bcard:nth-child(even) { margin-top: 50px; }
.bcard__img { position: absolute; inset: 0; z-index: -2; }
.bcard__img img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s var(--ease); }
.bcard::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(to top, rgba(10, 26, 47, .92), rgba(10, 26, 47, .1) 62%); }
.bcard__region { position: absolute; top: 20px; left: 20px; padding: 6px 12px; border-radius: 999px; background: var(--paper); color: var(--ink); font-size: .74rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.bcard__name { font-family: var(--f-display); font-weight: 800; font-size: clamp(1.8rem, 2.6vw, 2.5rem); letter-spacing: -.035em; line-height: 1; }
.bcard__count { display: flex; align-items: center; gap: 8px; margin-top: 10px; font-weight: 600; color: var(--gold-2); }
.bcard__count .icon { width: 18px; height: 18px; transition: transform .5s var(--ease-back); }
.bcard.is-in { transition: transform .7s var(--ease-back), border-radius .6s var(--ease), opacity .9s var(--ease); transition-delay: 0s; }
.bcard:hover { transform: rotate(-2deg) translateY(-8px); border-radius: 120px 120px 28px 28px; }
.bcard:hover .bcard__img img { transform: scale(1.1); }
.bcard:hover .bcard__count .icon { transform: rotate(45deg); }

/* ---------- Apply / form section ---------- */
.apply { position: relative; padding: clamp(100px, 11vw, 170px) 0; background: var(--paper-2); overflow: hidden; }
.apply__grid { display: grid; grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr); gap: clamp(40px, 6vw, 100px); align-items: start; }
.apply__copy { position: sticky; top: 120px; }
.apply__copy p { margin-top: 22px; max-width: 44ch; font-size: 1.1rem; }
.apply__copy p a { text-decoration: underline; }
.apply__copy .scribble { margin-top: 26px; color: var(--tang); }
.apply--role { background: var(--ink); color: var(--paper); }
.apply--role .h-xl em { color: var(--gold-2); }
.apply--role .apply__copy p { color: rgba(246, 239, 227, .82); }

/* ---------- Colour band ---------- */
.band { padding: clamp(70px, 8vw, 110px) 0; background: var(--tang); overflow: hidden; }
.band__inner { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 30px; }
.band__text { font-family: var(--f-display); font-weight: 800; font-size: clamp(2.2rem, 5.2vw, 4.8rem); line-height: .95; letter-spacing: -.04em; max-width: 16ch; }
.band__text em { color: var(--ink) !important; }

/* ---------- Prose ---------- */
.prose { font-size: 1.1rem; line-height: 1.72; }
.prose > * + * { margin-top: 1.1em; }
.prose h2 { margin-top: 2.2em; font-family: var(--f-display); font-weight: 750; font-size: clamp(1.5rem, 2.4vw, 2.1rem); line-height: 1.1; letter-spacing: -.025em; scroll-margin-top: 120px; }
.prose h3 { margin-top: 2em; font-family: var(--f-display); font-weight: 750; font-size: clamp(1.4rem, 2vw, 1.8rem); line-height: 1.1; letter-spacing: -.02em; }
.prose h4 { margin-top: 1.6em; font-weight: 700; }
.prose ul { display: grid; gap: .55em; }
.prose ul li { position: relative; padding-left: 30px; }
.prose ul li::before {
	content: "";
	position: absolute;
	left: 0;
	top: .38em;
	width: 16px;
	height: 16px;
	background: var(--gold);
	-webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 40 40'%3E%3Cpath d='M20 0c.9 9.6 3 16.2 6.4 19.6C29.8 23 34.4 23.2 40 20c-5.6.9-10.2 3-13.6 6.4C23 29.8 20.9 34.4 20 40c-.9-5.6-3-10.2-6.4-13.6C10.2 23 5.6 20.9 0 20c5.6-.9 10.2-3 13.6-6.4C17 10.2 19.1 5.6 20 0Z'/%3E%3C/svg%3E") center / contain no-repeat;
	mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 40 40'%3E%3Cpath d='M20 0c.9 9.6 3 16.2 6.4 19.6C29.8 23 34.4 23.2 40 20c-5.6.9-10.2 3-13.6 6.4C23 29.8 20.9 34.4 20 40c-.9-5.6-3-10.2-6.4-13.6C10.2 23 5.6 20.9 0 20c5.6-.9 10.2-3 13.6-6.4C17 10.2 19.1 5.6 20 0Z'/%3E%3C/svg%3E") center / contain no-repeat;
}
.prose a { text-decoration: underline; text-decoration-color: var(--gold); text-underline-offset: 3px; }
.prose--numbered { counter-reset: sec; }
.prose--numbered h3 { display: flex; align-items: center; gap: 14px; counter-increment: sec; }
.prose--numbered h3::before {
	content: "0" counter(sec);
	display: grid;
	place-items: center;
	flex: none;
	width: 48px;
	height: 48px;
	border-radius: 50%;
	background: var(--tang);
	font-family: var(--f-body);
	font-size: .85rem;
	font-weight: 800;
	letter-spacing: .02em;
}
.prose--numbered > p:first-child { font-family: var(--f-serif); font-size: clamp(1.4rem, 2.2vw, 1.9rem); line-height: 1.3; }

/* ---------- At a glance ---------- */
.glance {
	position: sticky;
	top: 110px;
	padding: 32px;
	border-radius: 28px;
	background: var(--white);
	box-shadow: 0 30px 60px -44px rgba(10, 26, 47, .6);
	transform: rotate(1deg);
}
.glance__label { display: flex; align-items: center; gap: 8px; margin-bottom: 18px; font-weight: 700; font-size: .78rem; letter-spacing: .16em; text-transform: uppercase; }
.glance__label .star { color: var(--gold); width: 18px; height: 18px; }
.glance dl { display: grid; margin-bottom: 26px; }
.glance dl > div { padding: 13px 0; border-top: 1.5px dashed var(--line); }
.glance dt { font-size: .72rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--gold-deep); }
.glance dd { font-weight: 600; line-height: 1.4; }
.glance dd a { text-decoration: underline; }
.glance__wa { display: flex; align-items: center; gap: 8px; margin-top: 18px; font-weight: 600; font-size: .95rem; }
.glance__wa .icon { width: 20px; height: 20px; color: var(--gold-deep); }

/* ---------- Lightbox ---------- */
.lightbox {
	position: fixed;
	inset: 0;
	z-index: 230;
	display: grid;
	place-items: center;
	padding: 70px 90px;
	background: rgba(10, 26, 47, .94);
	color: var(--paper);
	-webkit-backdrop-filter: blur(10px);
	backdrop-filter: blur(10px);
}
.lightbox[hidden] { display: none; }
.lightbox__stage { max-width: 100%; max-height: 100%; }
.lightbox__stage img { max-height: calc(100vh - 140px); width: auto; border-radius: 14px; border: 8px solid var(--paper); box-shadow: 0 40px 80px -30px #000; }
.lightbox__close, .lightbox__nav {
	position: absolute;
	display: grid;
	place-items: center;
	width: 56px;
	height: 56px;
	border-radius: 50%;
	background: var(--paper);
	color: var(--ink);
	transition: transform .4s var(--ease-back), background .3s;
}
.lightbox__close:hover, .lightbox__nav:hover { background: var(--gold); transform: scale(1.1); }
.lightbox__close .icon, .lightbox__nav .icon { width: 24px; height: 24px; }
.lightbox__close { top: 20px; right: 20px; }
.lightbox__nav--prev { left: 20px; }
.lightbox__nav--next { right: 20px; }
.lightbox__count { position: absolute; bottom: 20px; left: 50%; transform: translateX(-50%); font-family: var(--f-hand); font-size: 1.5rem; color: var(--gold-2); }

/* ---------- Docs list (legal hub) ---------- */
.docs { padding: clamp(120px, 12vw, 180px) 0 clamp(90px, 10vw, 150px); }
.docs__list { border-top: 2px solid var(--ink); }
.doc {
	position: relative;
	display: grid;
	grid-template-columns: 70px minmax(0, 1fr) minmax(0, 1.3fr) 58px;
	align-items: center;
	gap: 26px;
	padding: 30px 12px;
	border-bottom: 2px solid var(--ink);
	isolation: isolate;
}
.doc::before { content: ""; position: absolute; inset: 0; z-index: -1; background: var(--gold-2); transform: scaleX(0); transform-origin: left; transition: transform .6s var(--ease); }
.doc:hover::before { transform: none; }
.doc__num { font-weight: 800; font-size: .85rem; color: var(--gold-deep); }
.doc__title { font-family: var(--f-display); font-weight: 750; font-size: clamp(1.3rem, 2vw, 1.8rem); line-height: 1.05; letter-spacing: -.025em; }
.doc__excerpt { font-size: .95rem; color: var(--muted); }
.doc__go { display: grid; place-items: center; width: 54px; height: 54px; border-radius: 50%; border: 2px solid var(--ink); transition: transform .6s var(--ease-back), background .3s, color .3s; }
.doc__go .icon { width: 20px; height: 20px; }
.doc:hover .doc__go { background: var(--ink); color: var(--gold-2); transform: rotate(-45deg); }

/* ---------- Document page ---------- */
.doc-page { padding: clamp(120px, 12vw, 180px) 0 clamp(90px, 10vw, 140px); }
.doc-page__grid { display: grid; grid-template-columns: 1fr; }
.doc-page--toc .doc-page__grid { grid-template-columns: 290px minmax(0, 1fr); gap: clamp(40px, 6vw, 100px); }
.prose--doc { max-width: 76ch; font-size: 1.02rem; }
.prose--doc h2:first-child { margin-top: 0; }
.toc { position: sticky; top: 110px; align-self: start; max-height: calc(100vh - 140px); overflow: auto; padding-right: 10px; }
.toc__label { display: flex; align-items: center; gap: 8px; margin-bottom: 14px; font-weight: 700; font-size: .78rem; letter-spacing: .16em; text-transform: uppercase; }
.toc__label .star { color: var(--gold); width: 16px; height: 16px; }
.toc ol { counter-reset: t; display: grid; gap: 2px; margin-bottom: 24px; }
.toc li { counter-increment: t; }
.toc a { display: flex; gap: 10px; padding: 6px 10px; border-radius: 10px; font-size: .92rem; line-height: 1.3; transition: background .3s, transform .4s var(--ease); }
.toc a::before { content: counter(t, decimal-leading-zero); font-weight: 700; font-size: .75rem; color: var(--gold-deep); padding-top: .15em; }
.toc a:hover { background: var(--paper-2); }
.toc a.is-active { background: var(--ink); color: var(--paper); transform: translateX(6px); }
.toc a.is-active::before { color: var(--gold-2); }

@media (max-width: 1080px) {
	.notes__grid, .branch-cards__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
	.job__link { grid-template-columns: minmax(0, 1fr) auto 58px; gap: 10px 18px; }
	.job__where { grid-column: 1 / -1; }
	.job__pay { grid-column: 1; grid-row: 3; }
	.job__type { grid-column: 2; grid-row: 2; }
	.job__go { grid-column: 3; grid-row: 2 / 4; }
	.job__peek { display: none; }
	.apply__grid { grid-template-columns: 1fr; }
	.apply__copy { position: static; }
	.doc-page--toc .doc-page__grid { grid-template-columns: 1fr; }
	.toc { position: static; max-height: none; }
}
@media (max-width: 760px) {
	.phero, .phero--img { grid-template-columns: 1fr; padding-top: calc(var(--header-h) + 50px); min-height: 0; }
	.phero__img { justify-self: center; width: min(78%, 340px); order: -1; margin: 0 0 10px; }
	.phero__img figcaption { left: auto; right: -10px; bottom: -26px; }
	.notes__grid { grid-template-columns: 1fr; }
	.note { margin-top: 0 !important; }
	.branch-cards__grid { gap: 14px; }
	.bcard { padding: 16px; border-radius: 20px; }
	.bcard:nth-child(even) { margin-top: 30px; }
	.bcard__region { top: 12px; left: 12px; font-size: .64rem; }
	.bcard__name { font-size: clamp(1.15rem, 5.4vw, 1.6rem); overflow-wrap: anywhere; }
	.doc { grid-template-columns: 1fr 50px; }
	.doc__num, .doc__excerpt { display: none; }
	.lightbox { padding: 70px 12px; }
	.lightbox__nav { top: auto; bottom: 14px; width: 48px; height: 48px; }
	.lightbox__nav--prev { left: 14px; }
	.lightbox__nav--next { right: 14px; }
	.glance { transform: none; }
}
