:root {
	--ac-primary: #16324f;
	--ac-secondary: #006d77;
	--ac-accent: #e76f51;
	--ac-heading: #10212d;
	--ac-body: #334653;
	--ac-muted: #667985;
	--ac-surface: #f5f7fa;
	--ac-surface-strong: #eaf0f3;
	--ac-white: #fff;
	--ac-line: #d7e0e5;
	--ac-line-strong: #b8c6ce;
	--ac-success: #087443;
	--ac-warning: #8a5a00;
	--ac-error: #b42318;
	--ac-info: #175cd3;
	--ac-radius-xs: 6px;
	--ac-radius-sm: 10px;
	--ac-radius-md: 16px;
	--ac-radius-lg: 24px;
	--ac-radius-xl: 34px;
	--ac-shadow-sm: 0 1px 2px rgba(13, 35, 50, .06), 0 6px 18px rgba(13, 35, 50, .05);
	--ac-shadow-md: 0 18px 50px rgba(13, 35, 50, .11);
	--ac-shadow-lg: 0 28px 80px rgba(7, 26, 40, .18);
	--ac-content: 760px;
	--ac-wide: 1180px;
	--ac-max: 1320px;
}

.ac-page,
.ac-catalog,
.ac-form-shell,
.ac-portal,
.ac-board,
.ac-login,
.ac-internal-preview {
	box-sizing: border-box;
	color: var(--ac-body);
	font-family: ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	font-size: 16px;
	line-height: 1.6;
}

.ac-page *,
.ac-catalog *,
.ac-form-shell *,
.ac-portal *,
.ac-board *,
.ac-login *,
.ac-internal-preview * {
	box-sizing: border-box;
}

.ac-page :is(h1, h2, h3, h4),
.ac-catalog :is(h1, h2, h3, h4),
.ac-form-shell :is(h1, h2, h3, h4),
.ac-portal :is(h1, h2, h3, h4),
.ac-board :is(h1, h2, h3, h4),
.ac-login :is(h1, h2, h3, h4) {
	color: var(--ac-heading);
	font-weight: 760;
	letter-spacing: -.035em;
	line-height: 1.1;
}

.ac-page :is(a, button, input, select, textarea, summary):focus-visible,
.ac-catalog :is(a, button, input, select, textarea):focus-visible,
.ac-form-shell :is(a, button, input, select, textarea):focus-visible,
.ac-portal :is(a, button, input, select, textarea, summary):focus-visible,
.ac-board :is(a, button, input, select, textarea):focus-visible,
.ac-login :is(a, button, input):focus-visible {
	outline: 3px solid color-mix(in srgb, var(--ac-accent) 45%, white);
	outline-offset: 3px;
}

.ac-page {
	margin: 0 auto;
	max-width: var(--ac-max);
	padding: 12px 16px 64px;
}

.ac-eyebrow,
.ac-section-heading > span {
	color: var(--ac-secondary);
	display: inline-block;
	font-size: .72rem;
	font-weight: 800;
	letter-spacing: .12em;
	text-transform: uppercase;
}

.ac-button,
.ac-inline-form button,
.ac-login input[type="submit"] {
	align-items: center;
	background: var(--ac-primary);
	border: 1px solid var(--ac-primary);
	border-radius: var(--ac-radius-sm);
	color: var(--ac-white);
	cursor: pointer;
	display: inline-flex;
	font: inherit;
	font-size: .94rem;
	font-weight: 760;
	justify-content: center;
	line-height: 1.2;
	min-height: 48px;
	padding: .8rem 1.15rem;
	text-decoration: none;
	transition: background-color .18s ease, border-color .18s ease, box-shadow .18s ease, transform .18s ease;
}

.ac-button:hover,
.ac-inline-form button:hover,
.ac-login input[type="submit"]:hover {
	background: #0c243b;
	border-color: #0c243b;
	box-shadow: 0 9px 24px rgba(10, 36, 58, .18);
	color: var(--ac-white);
	transform: translateY(-1px);
}

.ac-button--secondary {
	background: transparent;
	border-color: var(--ac-line-strong);
	color: var(--ac-primary);
}

.ac-button--secondary:hover {
	background: var(--ac-surface);
	border-color: var(--ac-primary);
	color: var(--ac-primary);
}

.ac-button--light {
	background: var(--ac-white);
	border-color: var(--ac-white);
	color: var(--ac-primary);
}

.ac-button--light:hover {
	background: #edf4f5;
	border-color: #edf4f5;
	color: var(--ac-primary);
}

.ac-button[disabled] {
	cursor: wait;
	opacity: .58;
	transform: none;
}

.ac-button-row {
	display: flex;
	flex-direction: column;
	gap: 10px;
	margin: 26px 0;
}

.ac-text-link,
.ac-link,
.ac-link-button {
	align-items: center;
	background: transparent;
	border: 0;
	color: var(--ac-primary);
	cursor: pointer;
	display: inline-flex;
	font: inherit;
	font-weight: 780;
	gap: 7px;
	padding: 6px 0;
	text-decoration: none;
}

.ac-text-link:hover,
.ac-link:hover,
.ac-link-button:hover {
	color: var(--ac-secondary);
	text-decoration: underline;
	text-underline-offset: 4px;
}

.ac-home-hero {
	background: radial-gradient(circle at 92% 4%, rgba(231, 111, 81, .2), transparent 31%), linear-gradient(145deg, #0b1e2e 0%, var(--ac-primary) 62%, #164e59 100%);
	border-radius: var(--ac-radius-lg);
	box-shadow: var(--ac-shadow-lg);
	color: rgba(255, 255, 255, .83);
	display: grid;
	gap: 30px;
	overflow: hidden;
	padding: 28px 20px;
	position: relative;
}

.ac-home-hero .ac-eyebrow,
.ac-page-hero--studis .ac-eyebrow {
	color: #9ee7de;
}

.ac-home-hero h1 {
	color: var(--ac-white);
	font-size: clamp(2.2rem, 8.5vw, 4.8rem);
	letter-spacing: -.052em;
	margin: 12px 0 18px;
	max-width: 880px;
}

.ac-home-hero__main > p {
	font-size: clamp(1rem, 2vw, 1.17rem);
	margin: 0;
	max-width: 740px;
}

.ac-home-hero .ac-button--secondary {
	border-color: rgba(255, 255, 255, .4);
	color: var(--ac-white);
}

.ac-home-hero .ac-button--secondary:hover {
	background: rgba(255, 255, 255, .1);
	border-color: var(--ac-white);
	color: var(--ac-white);
}

.ac-proof-points {
	display: grid;
	font-size: .86rem;
	gap: 8px;
	list-style: none;
	margin: 24px 0 0;
	padding: 0;
}

.ac-proof-points li {
	align-items: center;
	display: flex;
	gap: 9px;
}

.ac-proof-points li::before {
	background: #9ee7de;
	border-radius: 50%;
	content: "";
	flex: 0 0 7px;
	height: 7px;
}

.ac-intent-panel {
	align-self: stretch;
	background: rgba(255, 255, 255, .08);
	border: 1px solid rgba(255, 255, 255, .16);
	border-radius: var(--ac-radius-md);
	display: grid;
	padding: 10px;
}

.ac-intent-panel > strong {
	color: var(--ac-white);
	font-size: .82rem;
	letter-spacing: .08em;
	padding: 10px 12px 13px;
	text-transform: uppercase;
}

.ac-intent-panel a {
	border-radius: var(--ac-radius-sm);
	color: var(--ac-white);
	display: grid;
	font-size: .95rem;
	font-weight: 760;
	gap: 2px;
	padding: 12px;
	text-decoration: none;
}

.ac-intent-panel a + a {
	border-top: 1px solid rgba(255, 255, 255, .1);
}

.ac-intent-panel a:hover {
	background: rgba(255, 255, 255, .11);
}

.ac-intent-panel a span {
	color: rgba(255, 255, 255, .64);
	font-size: .76rem;
	font-weight: 520;
}

.ac-trust-strip {
	display: grid;
	gap: 10px;
	margin: 12px 0 0;
}

.ac-trust-strip > div {
	align-items: center;
	background: var(--ac-white);
	border: 1px solid var(--ac-line);
	border-radius: var(--ac-radius-sm);
	display: grid;
	gap: 10px;
	grid-template-columns: 34px 1fr;
	padding: 13px 15px;
}

.ac-trust-strip b {
	color: var(--ac-accent);
	font-size: .75rem;
}

.ac-trust-strip span {
	color: var(--ac-heading);
	font-size: .82rem;
	font-weight: 700;
	line-height: 1.3;
}

.ac-section {
	margin: 64px auto 0;
	max-width: var(--ac-wide);
}

.ac-section--surface {
	background: var(--ac-surface);
	border: 1px solid var(--ac-line);
	border-radius: var(--ac-radius-lg);
	padding: 24px 16px;
}

.ac-section-heading {
	margin-bottom: 26px;
	max-width: var(--ac-content);
}

.ac-section-heading h2,
.ac-section > h2,
.ac-split h2 {
	font-size: clamp(1.8rem, 6vw, 3.15rem);
	margin: 7px 0 13px;
}

.ac-section-heading p,
.ac-section > p {
	color: var(--ac-muted);
	font-size: 1.03rem;
	margin: 0;
}

.ac-path-grid,
.ac-feature-grid,
.ac-card-grid,
.ac-family-grid,
.ac-checklist-grid,
.ac-role-grid,
.ac-board-grid,
.ac-account-metrics {
	display: grid;
	gap: 14px;
}

.ac-path-grid article,
.ac-feature-grid article,
.ac-role-grid article {
	background: var(--ac-white);
	border: 1px solid var(--ac-line);
	border-radius: var(--ac-radius-md);
	padding: 22px;
}

.ac-path-grid h3,
.ac-feature-grid h2,
.ac-role-grid h3 {
	font-size: 1.3rem;
	margin: 14px 0 8px;
}

.ac-path-grid p,
.ac-feature-grid p,
.ac-role-grid p {
	color: var(--ac-muted);
	margin: 0 0 14px;
}

.ac-path-grid a {
	color: var(--ac-primary);
	font-weight: 760;
	text-decoration: none;
}

.ac-path-icon {
	align-items: center;
	background: var(--ac-surface-strong);
	border-radius: var(--ac-radius-sm);
	color: var(--ac-secondary);
	display: inline-flex;
	font-size: .78rem;
	font-weight: 900;
	height: 38px;
	justify-content: center;
	width: 38px;
}

.ac-family-card {
	background: var(--ac-white);
	border: 1px solid var(--ac-line);
	border-radius: var(--ac-radius-md);
	display: flex;
	flex-direction: column;
	min-height: 235px;
	padding: 21px;
	transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease;
}

.ac-family-card:hover {
	border-color: #91abb6;
	box-shadow: var(--ac-shadow-sm);
	transform: translateY(-2px);
}

.ac-family-card__code {
	color: var(--ac-accent);
	font-size: .68rem;
	font-weight: 850;
	letter-spacing: .1em;
}

.ac-family-card h3 {
	font-size: 1.25rem;
	margin: 11px 0 8px;
}

.ac-family-card p {
	color: var(--ac-muted);
	font-size: .9rem;
	margin: 0 0 18px;
}

.ac-family-card__footer {
	align-items: flex-start;
	display: flex;
	flex-direction: column;
	gap: 8px;
	margin-top: auto;
}

.ac-family-card__footer > span {
	color: var(--ac-muted);
	font-size: .72rem;
	font-weight: 700;
}

.ac-family-card__footer a {
	color: var(--ac-primary);
	font-size: .83rem;
	font-weight: 780;
	text-decoration: none;
}

.ac-split {
	display: grid;
	gap: 30px;
}

.ac-workflow-card {
	background: var(--ac-primary);
	border-radius: var(--ac-radius-lg);
	box-shadow: var(--ac-shadow-md);
	color: rgba(255, 255, 255, .72);
	padding: 18px;
}

.ac-workflow-card ol {
	display: grid;
	gap: 0;
	list-style: none;
	margin: 0;
	padding: 0;
}

.ac-workflow-card li {
	border-bottom: 1px solid rgba(255, 255, 255, .12);
	display: grid;
	gap: 2px;
	padding: 14px 8px;
}

.ac-workflow-card li:last-child {
	border-bottom: 0;
}

.ac-workflow-card b {
	color: var(--ac-white);
}

.ac-workflow-card span {
	font-size: .82rem;
}

.ac-studis-band {
	align-items: flex-start;
	background: linear-gradient(135deg, #173f43, var(--ac-secondary));
	border-radius: var(--ac-radius-lg);
	box-shadow: var(--ac-shadow-md);
	color: rgba(255, 255, 255, .75);
	display: flex;
	flex-direction: column;
	gap: 22px;
	padding: 28px 22px;
}

.ac-studis-band .ac-eyebrow {
	color: #a7f3d0;
}

.ac-studis-band h2 {
	color: var(--ac-white);
	font-size: clamp(1.8rem, 6vw, 3rem);
	margin: 7px 0 10px;
}

.ac-studis-band p {
	margin: 0;
	max-width: 750px;
}

.ac-checklist-grid > div {
	background: var(--ac-surface);
	border-left: 3px solid var(--ac-secondary);
	border-radius: 0 var(--ac-radius-sm) var(--ac-radius-sm) 0;
	display: grid;
	gap: 4px;
	padding: 16px;
}

.ac-checklist-grid b {
	color: var(--ac-heading);
}

.ac-checklist-grid span {
	color: var(--ac-muted);
	font-size: .88rem;
}

.ac-final-cta {
	align-items: flex-start;
	background: var(--ac-surface);
	border: 1px solid var(--ac-line);
	border-radius: var(--ac-radius-lg);
	display: flex;
	flex-direction: column;
	gap: 22px;
	margin: 64px auto 0;
	max-width: var(--ac-wide);
	padding: 28px 22px;
}

.ac-final-cta h2 {
	font-size: clamp(1.65rem, 5vw, 2.65rem);
	margin: 6px 0;
}

.ac-final-cta p {
	color: var(--ac-muted);
	margin: 5px 0 0;
}

.ac-page-hero {
	background: var(--ac-surface);
	border: 1px solid var(--ac-line);
	border-radius: var(--ac-radius-lg);
	margin: 0 auto 44px;
	max-width: var(--ac-wide);
	padding: 30px 20px;
}

.ac-page-hero h1 {
	font-size: clamp(2.1rem, 8vw, 4.35rem);
	margin: 10px 0 16px;
	max-width: 920px;
}

.ac-page-hero > p {
	color: var(--ac-muted);
	font-size: 1.05rem;
	max-width: 760px;
}

.ac-page-hero .ac-button,
.ac-page-hero .ac-button-row {
	margin-top: 24px;
}

.ac-page-hero--studis {
	background: linear-gradient(140deg, #12343a, var(--ac-secondary));
	color: rgba(255, 255, 255, .76);
}

.ac-page-hero--studis h1,
.ac-page-hero--studis p {
	color: var(--ac-white);
}

.ac-media-requirements,
.ac-faq {
	display: grid;
	gap: 12px;
	margin: 0 auto;
	max-width: var(--ac-content);
}

.ac-media-requirements h2 {
	font-size: 2rem;
}

.ac-media-requirements > div {
	align-items: start;
	background: var(--ac-white);
	border: 1px solid var(--ac-line);
	border-radius: var(--ac-radius-sm);
	display: grid;
	gap: 12px;
	grid-template-columns: 38px 1fr;
	padding: 17px;
}

.ac-media-requirements span {
	color: var(--ac-accent);
	font-size: .76rem;
	font-weight: 850;
}

.ac-media-requirements p {
	margin: 0;
}

.ac-faq details {
	background: var(--ac-white);
	border: 1px solid var(--ac-line);
	border-radius: var(--ac-radius-sm);
	padding: 4px 17px;
}

.ac-faq summary {
	color: var(--ac-heading);
	cursor: pointer;
	font-weight: 760;
	padding: 15px 0;
}

.ac-faq details p {
	color: var(--ac-muted);
	margin: 0;
	padding: 0 0 17px;
}

.ac-contact-grid {
	display: grid;
	gap: 16px;
	margin: 0 auto;
	max-width: var(--ac-wide);
}

.ac-contact-card {
	background: var(--ac-white);
	border: 1px solid var(--ac-line);
	border-radius: var(--ac-radius-md);
	padding: 24px;
}

.ac-contact-card h2 {
	font-size: 1.75rem;
	margin: 6px 0 18px;
}

.ac-contact-list,
.ac-location-list {
	display: grid;
	gap: 10px;
	list-style: none;
	margin: 0;
	padding: 0;
}

.ac-contact-list li {
	border-bottom: 1px solid var(--ac-line);
	display: grid;
	gap: 2px;
	padding: 10px 0;
}

.ac-contact-list li > span:first-child {
	color: var(--ac-muted);
	font-size: .72rem;
	font-weight: 750;
	text-transform: uppercase;
}

.ac-contact-list a {
	color: var(--ac-primary);
	font-weight: 750;
}

.ac-location-list article {
	background: var(--ac-surface);
	border-radius: var(--ac-radius-sm);
	padding: 15px;
}

.ac-location-list h3,
.ac-location-list p {
	margin: 0;
}

.ac-location-list small {
	color: var(--ac-muted);
}

.ac-filter {
	display: flex;
	gap: 8px;
	margin: 0 0 22px;
	overflow-x: auto;
	padding: 2px 2px 10px;
	scrollbar-width: thin;
}

.ac-filter-button {
	background: var(--ac-white);
	border: 1px solid var(--ac-line);
	border-radius: 999px;
	color: var(--ac-heading);
	cursor: pointer;
	flex: 0 0 auto;
	font: inherit;
	font-size: .8rem;
	font-weight: 750;
	min-height: 42px;
	padding: 8px 14px;
}

.ac-filter-button:is(:hover, .is-active) {
	background: var(--ac-primary);
	border-color: var(--ac-primary);
	color: var(--ac-white);
}

.ac-catalog {
	margin: 0 auto;
	max-width: var(--ac-wide);
}

.ac-card {
	background: var(--ac-white);
	border: 1px solid var(--ac-line);
	border-radius: var(--ac-radius-md);
	display: flex;
	flex-direction: column;
	min-height: 250px;
	padding: 22px;
	transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease;
}

.ac-card:hover {
	border-color: #91abb6;
	box-shadow: var(--ac-shadow-sm);
	transform: translateY(-2px);
}

.ac-card[hidden] {
	display: none;
}

.ac-card__eyebrow {
	color: var(--ac-secondary);
	font-size: .7rem;
	font-weight: 850;
	letter-spacing: .08em;
	text-transform: uppercase;
}

.ac-card h3,
.ac-request-card h3,
.ac-artwork-card h3,
.ac-order-card h3,
.ac-work-card h4 {
	font-size: 1.28rem;
	margin: 10px 0;
}

.ac-card p,
.ac-work-card p,
.ac-artwork-card > p {
	color: var(--ac-muted);
	margin: 0 0 16px;
}

.ac-card .ac-link {
	margin-top: auto;
}

.ac-tags {
	display: flex;
	flex-wrap: wrap;
	gap: 7px;
	margin-bottom: 10px;
}

.ac-tags span,
.ac-status {
	background: var(--ac-surface);
	border-radius: 999px;
	color: var(--ac-primary);
	display: inline-flex;
	font-size: .7rem;
	font-weight: 800;
	line-height: 1.2;
	padding: 6px 9px;
}

.ac-tag--provisional,
.ac-status--awaiting_info,
.ac-status--need_information,
.ac-status--awaiting_bt,
.ac-status--awaiting_approval,
.ac-status--on_hold,
.ac-status--proof_ready {
	background: #fff4d8 !important;
	color: var(--ac-warning) !important;
}

.ac-tag--active,
.ac-status--accepted,
.ac-status--approved,
.ac-status--converted,
.ac-status--completed {
	background: #dcfae6 !important;
	color: var(--ac-success) !important;
}

.ac-status--cancelled,
.ac-status--rejected,
.ac-status--rework,
.ac-status--changes_required {
	background: #fee4e2 !important;
	color: var(--ac-error) !important;
}

.ac-status--submitted,
.ac-status--new,
.ac-status--reviewing,
.ac-status--checking {
	background: #e9f1ff !important;
	color: var(--ac-info) !important;
}

.ac-form-shell {
	margin: 0 auto;
	max-width: 960px;
}

.ac-form {
	background: var(--ac-surface);
	border: 1px solid var(--ac-line);
	border-radius: var(--ac-radius-md);
	padding: 18px;
}

.ac-form-grid {
	display: grid;
	gap: 15px;
}

.ac-field {
	display: grid;
	gap: 7px;
}

.ac-field > span {
	color: var(--ac-heading);
	font-size: .82rem;
	font-weight: 760;
}

.ac-field input,
.ac-field select,
.ac-field textarea,
.ac-inline-form select,
.ac-login input:not([type="submit"]) {
	appearance: none;
	background: var(--ac-white);
	border: 1px solid var(--ac-line-strong);
	border-radius: var(--ac-radius-sm);
	color: var(--ac-heading);
	font: inherit;
	min-height: 48px;
	padding: 11px 13px;
	width: 100%;
}

.ac-field textarea {
	min-height: 132px;
	resize: vertical;
}

.ac-field :is(input, select, textarea):focus {
	border-color: var(--ac-secondary);
	box-shadow: 0 0 0 3px rgba(0, 109, 119, .14);
	outline: none;
}

.ac-field small,
.ac-form-status {
	color: var(--ac-muted);
	font-size: .77rem;
}

.ac-check {
	align-items: flex-start;
	display: flex;
	font-size: .82rem;
	gap: 9px;
	margin: 16px 0;
}

.ac-check input {
	flex: 0 0 auto;
	height: 18px;
	margin-top: 3px;
	width: 18px;
}

.ac-honeypot {
	left: -10000px;
	position: absolute;
	top: auto;
}

.ac-notice {
	background: #edf6ff;
	border: 1px solid #c8dcec;
	border-radius: var(--ac-radius-sm);
	color: var(--ac-primary);
	margin: 14px 0;
	padding: 13px 15px;
}

.ac-notice--success {
	background: #ecfdf3;
	border-color: #abefc6;
	color: var(--ac-success);
}

.ac-notice--warning {
	background: #fff8e7;
	border-color: #f2d58a;
	color: var(--ac-warning);
}

.ac-notice--error {
	background: #fef3f2;
	border-color: #fecdca;
	color: var(--ac-error);
}

.ac-login {
	background: var(--ac-white);
	border: 1px solid var(--ac-line);
	border-radius: var(--ac-radius-md);
	box-shadow: var(--ac-shadow-sm);
	margin: 30px auto;
	max-width: 520px;
	padding: 24px;
}

.ac-login label {
	display: grid;
	font-weight: 700;
	gap: 5px;
}

.ac-portal,
.ac-board {
	margin: 0 auto;
	max-width: var(--ac-wide);
	padding: 14px;
}

.ac-portal-header {
	align-items: flex-start;
	background: var(--ac-primary);
	border-radius: var(--ac-radius-lg);
	color: rgba(255, 255, 255, .75);
	display: flex;
	flex-direction: column;
	gap: 20px;
	padding: 24px 20px;
}

.ac-portal-header .ac-eyebrow {
	color: #9ee7de;
}

.ac-portal-header h1 {
	color: var(--ac-white);
	font-size: clamp(2rem, 7vw, 3.5rem);
	margin: 6px 0 9px;
}

.ac-portal-header p {
	margin: 0;
}

.ac-portal-header .ac-button {
	background: var(--ac-white);
	border-color: var(--ac-white);
	color: var(--ac-primary);
}

.ac-account-nav {
	display: flex;
	gap: 7px;
	margin: 13px 0;
	overflow-x: auto;
	padding: 2px 0 9px;
	scrollbar-width: thin;
}

.ac-account-nav a {
	background: var(--ac-white);
	border: 1px solid var(--ac-line);
	border-radius: 999px;
	color: var(--ac-heading);
	flex: 0 0 auto;
	font-size: .79rem;
	font-weight: 730;
	padding: 8px 13px;
	text-decoration: none;
}

.ac-account-nav a.is-active {
	background: var(--ac-primary);
	border-color: var(--ac-primary);
	color: var(--ac-white);
}

.ac-account-content {
	background: var(--ac-white);
	border: 1px solid var(--ac-line);
	border-radius: var(--ac-radius-md);
	min-height: 360px;
	padding: 18px;
}

.ac-account-metrics article {
	background: var(--ac-surface);
	border: 1px solid var(--ac-line);
	border-radius: var(--ac-radius-sm);
	display: grid;
	gap: 4px;
	padding: 17px;
}

.ac-account-metrics span {
	color: var(--ac-muted);
	font-size: .75rem;
	font-weight: 750;
}

.ac-account-metrics strong {
	color: var(--ac-primary);
	font-size: 2rem;
	line-height: 1.1;
}

.ac-account-metrics a {
	color: var(--ac-primary);
	font-size: .8rem;
	font-weight: 750;
}

.ac-account-panel {
	margin-top: 28px;
}

.ac-list {
	display: grid;
	gap: 13px;
}

.ac-request-card,
.ac-artwork-card,
.ac-order-card,
.ac-work-card {
	background: var(--ac-white);
	border: 1px solid var(--ac-line);
	border-radius: var(--ac-radius-md);
	padding: 18px;
}

.ac-request-card,
.ac-card-heading,
.ac-order-card {
	display: grid;
	gap: 12px;
}

.ac-request-card small,
.ac-artwork-card small,
.ac-order-card small,
.ac-work-card small {
	color: var(--ac-muted);
	font-size: .72rem;
	font-weight: 750;
}

.ac-request-card h3,
.ac-artwork-card h3,
.ac-order-card h3 {
	margin: 4px 0 0;
}

.ac-request-card dl,
.ac-account-data {
	display: grid;
	gap: 10px;
	margin: 6px 0 0;
}

.ac-request-card dl div,
.ac-account-data div {
	background: var(--ac-surface);
	border-radius: var(--ac-radius-xs);
	padding: 10px;
}

.ac-request-card dt,
.ac-account-data dt {
	color: var(--ac-muted);
	font-size: .68rem;
	font-weight: 800;
	text-transform: uppercase;
}

.ac-request-card dd,
.ac-account-data dd {
	color: var(--ac-heading);
	font-weight: 720;
	margin: 0;
}

.ac-files {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-top: 12px;
}

.ac-files a {
	background: var(--ac-surface);
	border-radius: var(--ac-radius-xs);
	color: var(--ac-primary);
	font-size: .76rem;
	font-weight: 700;
	padding: 7px 9px;
}

.ac-artwork-card + .ac-artwork-card,
.ac-order-card + .ac-order-card {
	margin-top: 12px;
}

.ac-approval-panel {
	background: #fff8e7;
	border: 1px solid #f2d58a;
	border-radius: var(--ac-radius-sm);
	margin-top: 16px;
	padding: 15px;
}

.ac-approval-panel details {
	border-top: 1px solid #ead49a;
	margin-top: 16px;
	padding-top: 12px;
}

.ac-approval-panel summary {
	color: var(--ac-heading);
	cursor: pointer;
	font-weight: 740;
}

.ac-order-card p {
	color: var(--ac-muted);
	margin: 0;
}

.ac-account-data {
	margin-bottom: 20px;
}

.ac-account-panel > .ac-text-link {
	margin-left: 8px;
}

.ac-board-grid {
	margin-bottom: 30px;
}

.ac-work-card {
	display: flex;
	flex-direction: column;
	min-height: 220px;
}

.ac-work-card__top {
	align-items: center;
	display: flex;
	gap: 10px;
	justify-content: space-between;
}

.ac-inline-form {
	display: grid;
	gap: 7px;
	margin-top: auto;
}

.ac-inline-form select,
.ac-inline-form button {
	font-size: .78rem;
	min-height: 42px;
	padding: 8px 10px;
}

.ac-internal-preview {
	background: #eef2f4;
	min-height: 100vh;
	padding: 10px 0 50px;
}

.ac-internal-banner {
	align-items: flex-start;
	background: #111827;
	border-radius: var(--ac-radius-sm);
	color: var(--ac-white);
	display: flex;
	flex-direction: column;
	gap: 12px;
	margin: 0 auto 12px;
	max-width: var(--ac-max);
	padding: 14px 16px;
}

.ac-internal-banner > div {
	display: grid;
	gap: 2px;
}

.ac-internal-banner span {
	color: #c6d0da;
	font-size: .78rem;
}

.ac-internal-banner a {
	color: #a7f3d0;
	font-size: .82rem;
	font-weight: 750;
}

.ac-preview-request {
	background: var(--ac-white);
	border: 1px solid var(--ac-line);
	border-radius: var(--ac-radius-lg);
	margin: 30px auto 0;
	max-width: var(--ac-wide);
	padding: 24px 16px;
}

@media (min-width: 480px) {
	.ac-button-row {
		align-items: center;
		flex-direction: row;
		flex-wrap: wrap;
	}

	.ac-form {
		padding: 24px;
	}

	.ac-request-card,
	.ac-card-heading,
	.ac-order-card {
		align-items: start;
		grid-template-columns: minmax(0, 1fr) auto;
	}

	.ac-request-card dl,
	.ac-request-card .ac-files,
	.ac-order-card p,
	.ac-order-card .ac-link {
		grid-column: 1 / -1;
	}
}

@media (min-width: 640px) {
	.ac-page {
		padding-left: 24px;
		padding-right: 24px;
	}

	.ac-home-hero,
	.ac-page-hero {
		padding: 42px 36px;
	}

	.ac-trust-strip,
	.ac-path-grid,
	.ac-feature-grid,
	.ac-card-grid,
	.ac-family-grid,
	.ac-checklist-grid,
	.ac-role-grid,
	.ac-board-grid,
	.ac-account-metrics,
	.ac-form-grid,
	.ac-contact-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.ac-field--wide {
		grid-column: 1 / -1;
	}

	.ac-family-card__footer {
		align-items: center;
		flex-direction: row;
		justify-content: space-between;
	}

	.ac-studis-band,
	.ac-final-cta,
	.ac-portal-header,
	.ac-internal-banner {
		align-items: center;
		flex-direction: row;
		justify-content: space-between;
	}

	.ac-studis-band,
	.ac-final-cta {
		padding: 36px;
	}

	.ac-account-content {
		padding: 26px;
	}

	.ac-request-card dl,
	.ac-account-data {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.ac-inline-form {
		grid-template-columns: minmax(0, 1fr) auto;
	}
}

@media (min-width: 768px) {
	.ac-section {
		margin-top: 84px;
	}

	.ac-section--surface {
		padding: 40px;
	}

	.ac-trust-strip {
		grid-template-columns: repeat(4, minmax(0, 1fr));
	}

	.ac-trust-strip > div {
		grid-template-columns: 1fr;
	}

	.ac-checklist-grid,
	.ac-account-metrics {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}

	.ac-portal,
	.ac-board {
		padding: 24px;
	}
}

@media (min-width: 960px) {
	.ac-home-hero {
		align-items: stretch;
		gap: 42px;
		grid-template-columns: minmax(0, 1.55fr) minmax(310px, .75fr);
		padding: 56px;
	}

	.ac-intent-panel {
		align-self: center;
	}

	.ac-path-grid,
	.ac-family-grid,
	.ac-board-grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}

	.ac-card-grid,
	.ac-feature-grid {
		grid-template-columns: repeat(4, minmax(0, 1fr));
	}

	.ac-split {
		align-items: center;
		gap: 70px;
		grid-template-columns: minmax(0, 1fr) minmax(420px, .85fr);
	}

	.ac-page-hero {
		padding: 58px;
	}
}

@media (min-width: 1200px) {
	.ac-page {
		padding-left: 0;
		padding-right: 0;
	}

	.ac-home-hero {
		border-radius: var(--ac-radius-xl);
		padding: 68px;
	}

	.ac-family-grid {
		grid-template-columns: repeat(4, minmax(0, 1fr));
	}

	.ac-checklist-grid {
		grid-template-columns: repeat(4, minmax(0, 1fr));
	}
}

@media (prefers-reduced-motion: reduce) {
	.ac-button,
	.ac-card,
	.ac-family-card {
		scroll-behavior: auto;
		transition: none;
	}
}

/* Public experience v0.3 — editorial print system */
:root {
	--ac-primary: #0a1833;
	--ac-secondary: #175cff;
	--ac-accent: #ff4d3d;
	--ac-heading: #091426;
	--ac-body: #33405a;
	--ac-muted: #677187;
	--ac-surface: #f3f2ee;
	--ac-surface-strong: #e9ebf1;
	--ac-line: #dfe3ea;
	--ac-line-strong: #b9c1ce;
	--ac-radius-xs: 2px;
	--ac-radius-sm: 4px;
	--ac-radius-md: 6px;
	--ac-radius-lg: 8px;
	--ac-radius-xl: 10px;
	--ac-shadow-sm: 0 10px 30px rgba(9, 20, 38, .08);
	--ac-shadow-md: 0 22px 58px rgba(9, 20, 38, .14);
	--ac-shadow-lg: 0 34px 90px rgba(4, 13, 29, .22);
	--ac-wide: 1220px;
	--ac-max: 1380px;
}

.ac-page {
	padding: 22px 16px 80px;
}

.ac-page :is(h1, h2, h3, h4),
.ac-catalog :is(h1, h2, h3, h4) {
	font-weight: 820;
	letter-spacing: -.045em;
}

.ac-eyebrow,
.ac-section-heading > span {
	color: var(--ac-secondary);
	font-size: .68rem;
	font-weight: 880;
	letter-spacing: .16em;
}

.ac-button,
.ac-inline-form button,
.ac-login input[type="submit"] {
	border-radius: 3px;
	font-size: .88rem;
	font-weight: 820;
	letter-spacing: -.01em;
	min-height: 50px;
	padding: .88rem 1.25rem;
}

.ac-button:hover,
.ac-inline-form button:hover,
.ac-login input[type="submit"]:hover {
	background: #14284e;
	border-color: #14284e;
	box-shadow: 0 12px 28px rgba(10, 24, 51, .2);
}

.ac-button--secondary {
	background: transparent;
	border-color: currentColor;
}

.ac-home-hero {
	background: #071328;
	border-radius: 6px;
	box-shadow: none;
	color: rgba(255, 255, 255, .78);
	display: grid;
	gap: 0;
	min-height: 660px;
	padding: 0;
}

.ac-home-hero__main {
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: 42px 24px;
}

.ac-home-hero .ac-eyebrow {
	color: #86a9ff;
}

.ac-home-hero h1 {
	font-size: clamp(2.7rem, 13vw, 4.9rem);
	line-height: .96;
	margin: 16px 0 22px;
	max-width: 650px;
}

.ac-home-hero__main > p {
	font-size: 1rem;
	line-height: 1.65;
	max-width: 650px;
}

.ac-home-hero__visual {
	background: linear-gradient(90deg, #071328 0%, rgba(7, 19, 40, .2) 28%, transparent 55%), url("../images/adicenter-hero.webp") center / cover no-repeat;
	min-height: 330px;
	position: relative;
}

.ac-hero-stamp {
	background: rgba(7, 19, 40, .88);
	border-left: 4px solid #ff4d3d;
	bottom: 20px;
	display: grid;
	gap: 2px;
	left: 20px;
	padding: 15px 18px;
	position: absolute;
}

.ac-hero-stamp b,
.ac-hero-stamp span {
	color: #fff;
	font-size: .76rem;
	font-weight: 790;
	line-height: 1.25;
}

.ac-proof-points {
	border-top: 1px solid rgba(255, 255, 255, .16);
	margin-top: 30px;
	padding-top: 22px;
}

.ac-proof-points li::before {
	background: #ffd23f;
	border-radius: 0;
	height: 3px;
	width: 12px;
}

.ac-intent-strip {
	border: 1px solid var(--ac-line);
	border-top: 0;
	display: grid;
	margin: 0 auto;
	max-width: var(--ac-wide);
}

.ac-intent-strip a {
	background: #fff;
	border-bottom: 1px solid var(--ac-line);
	color: var(--ac-heading);
	display: grid;
	gap: 4px;
	padding: 19px 18px;
	text-decoration: none;
}

.ac-intent-strip a:last-child {
	border-bottom: 0;
}

.ac-intent-strip a:hover {
	background: #edf2ff;
}

.ac-intent-strip b {
	font-size: .9rem;
}

.ac-intent-strip span {
	color: var(--ac-muted);
	font-size: .73rem;
	line-height: 1.4;
}

.ac-section {
	margin-top: 72px;
}

.ac-section-heading h2,
.ac-section > h2,
.ac-split h2 {
	font-size: clamp(1.85rem, 7.3vw, 3.15rem);
	line-height: 1.04;
}

.ac-section--intro {
	max-width: var(--ac-wide);
}

.ac-section--surface {
	background: var(--ac-surface);
	border: 0;
	border-radius: 0;
	padding: 38px 18px;
}

.ac-showcase-grid {
	display: grid;
	gap: 12px;
}

.ac-showcase {
	background-position: center;
	background-size: cover;
	color: #fff;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	min-height: 330px;
	overflow: hidden;
	padding: 25px;
	position: relative;
	text-decoration: none;
}

.ac-showcase::before {
	background: linear-gradient(180deg, transparent 15%, rgba(4, 13, 29, .88) 100%);
	content: "";
	inset: 0;
	position: absolute;
}

.ac-showcase > * {
	position: relative;
	z-index: 1;
}

.ac-showcase--print {
	background-image: url("../images/adicenter-hero.webp");
}

.ac-showcase--large {
	background-image: url("../images/large-format.webp");
}

.ac-showcase--personal {
	background-image: url("../images/personalizare.webp");
}

.ac-showcase span {
	color: #a9c0ff;
	font-size: .68rem;
	font-weight: 850;
	letter-spacing: .13em;
	text-transform: uppercase;
}

.ac-showcase h3 {
	color: #fff;
	font-size: 1.55rem;
	line-height: 1.06;
	margin: 9px 0 20px;
	max-width: 450px;
}

.ac-showcase b {
	font-size: .78rem;
}

.ac-family-grid {
	gap: 1px;
	background: var(--ac-line);
	border: 1px solid var(--ac-line);
}

.ac-family-card {
	border: 0;
	border-radius: 0;
	box-shadow: none;
	min-height: 220px;
	padding: 22px;
}

.ac-family-card:nth-child(4n + 1) {
	border-top: 3px solid #16a5ff;
}

.ac-family-card:nth-child(4n + 2) {
	border-top: 3px solid #eb2f8b;
}

.ac-family-card:nth-child(4n + 3) {
	border-top: 3px solid #ffd23f;
}

.ac-family-card:nth-child(4n + 4) {
	border-top: 3px solid #ff4d3d;
}

.ac-family-card:hover {
	border-color: transparent;
	box-shadow: none;
	transform: none;
}

.ac-family-card__code {
	color: var(--ac-secondary);
}

.ac-workflow-card {
	background: #08162f;
	border-radius: 4px;
	box-shadow: none;
	padding: 20px;
}

.ac-studis-band {
	align-items: stretch;
	background: #2b1020;
	border-radius: 4px;
	box-shadow: none;
	display: grid;
	gap: 0;
	overflow: hidden;
	padding: 0;
}

.ac-studis-band__copy {
	padding: 34px 24px;
}

.ac-studis-band__visual {
	background: linear-gradient(90deg, #2b1020 0%, transparent 32%), url("../images/studis.webp") center / cover no-repeat;
	min-height: 320px;
}

.ac-checklist-grid {
	gap: 1px;
	background: var(--ac-line);
	border: 1px solid var(--ac-line);
}

.ac-checklist-grid > div {
	background: #fff;
	border: 0;
	border-radius: 0;
	padding: 22px;
}

.ac-final-cta {
	background: #edf2ff;
	border: 0;
	border-left: 5px solid var(--ac-secondary);
	border-radius: 0;
	padding: 32px 24px;
}

.ac-page-hero {
	background: #fff;
	border: 0;
	border-bottom: 1px solid var(--ac-line);
	border-radius: 0;
	margin-bottom: 48px;
	padding: 34px 0 38px;
}

.ac-page-hero h1 {
	font-size: clamp(2.15rem, 9.3vw, 4.3rem);
	line-height: .99;
	margin: 12px 0 18px;
	max-width: 960px;
}

.ac-page-hero > p,
.ac-page-hero > div > p {
	color: var(--ac-muted);
	font-size: 1rem;
	line-height: 1.65;
	max-width: 760px;
}

.ac-page-hero--services,
.ac-page-hero--portfolio,
.ac-page-hero--b2b,
.ac-page-hero--contact,
.ac-page-hero--about,
.ac-page-hero--resources,
.ac-page-hero--request {
	background: linear-gradient(90deg, #fff 0%, #fff 68%, #edf2ff 68%, #edf2ff 100%);
	border-top: 4px solid var(--ac-secondary);
	padding-left: 18px;
	padding-right: 18px;
}

.ac-page-hero--studis {
	background: #2b1020;
	border: 0;
	color: rgba(255, 255, 255, .78);
	display: grid;
	gap: 0;
	overflow: hidden;
	padding: 0;
}

.ac-page-hero--studis > div:first-child {
	padding: 38px 24px;
}

.ac-page-hero--studis .ac-eyebrow {
	color: #f3afc8;
}

.ac-page-hero__media--studis {
	background: linear-gradient(90deg, #2b1020 0%, transparent 35%), url("../images/studis.webp") center / cover no-repeat;
	min-height: 340px;
}

.ac-editorial-steps,
.ac-resource-grid {
	display: grid;
	gap: 1px;
	background: var(--ac-line);
	border: 1px solid var(--ac-line);
	margin: 0 auto 56px;
	max-width: var(--ac-wide);
}

.ac-editorial-steps > div,
.ac-resource-grid article {
	background: #fff;
	padding: 24px;
}

.ac-editorial-steps b,
.ac-resource-grid span,
.ac-feature-grid article > b {
	color: var(--ac-accent);
	font-size: .72rem;
	font-weight: 900;
}

.ac-editorial-steps h2,
.ac-resource-grid h2 {
	font-size: 1.25rem;
	margin: 13px 0 8px;
}

.ac-editorial-steps p,
.ac-resource-grid p {
	color: var(--ac-muted);
	font-size: .88rem;
	margin: 0;
}

.ac-feature-grid {
	gap: 1px;
	background: var(--ac-line);
	border: 1px solid var(--ac-line);
}

.ac-feature-grid article {
	border: 0;
	border-radius: 0;
	min-height: 210px;
}

.ac-b2b-usecases {
	align-items: start;
	background: #08162f;
	color: rgba(255, 255, 255, .78);
	display: grid;
	gap: 24px;
	padding: 34px 24px;
}

.ac-b2b-usecases h2 {
	color: #fff;
}

.ac-b2b-usecases ul {
	display: grid;
	gap: 12px;
	list-style: none;
	margin: 0;
	padding: 0;
}

.ac-b2b-usecases li {
	border-bottom: 1px solid rgba(255, 255, 255, .14);
	padding-bottom: 12px;
}

.ac-portfolio-grid {
	display: grid;
	gap: 36px;
	margin: 0 auto;
	max-width: var(--ac-wide);
}

.ac-portfolio-item {
	display: grid;
	gap: 20px;
}

.ac-portfolio-item__image {
	background-position: center;
	background-size: cover;
	min-height: 320px;
}

.ac-portfolio-item--print .ac-portfolio-item__image {
	background-image: url("../images/adicenter-hero.webp");
}

.ac-portfolio-item--large .ac-portfolio-item__image {
	background-image: url("../images/large-format.webp");
}

.ac-portfolio-item--personal .ac-portfolio-item__image {
	background-image: url("../images/personalizare.webp");
}

.ac-portfolio-item--studis .ac-portfolio-item__image {
	background-image: url("../images/studis.webp");
}

.ac-portfolio-item > div:last-child {
	border-left: 3px solid var(--ac-secondary);
	padding-left: 18px;
}

.ac-portfolio-item span {
	color: var(--ac-secondary);
	font-size: .68rem;
	font-weight: 850;
	letter-spacing: .13em;
	text-transform: uppercase;
}

.ac-portfolio-item h2 {
	font-size: clamp(1.55rem, 5vw, 2.25rem);
	margin: 8px 0 10px;
}

.ac-portfolio-item p {
	color: var(--ac-muted);
	margin: 0;
}

.ac-about-story {
	display: grid;
	gap: 22px;
}

.ac-about-story h2 {
	font-size: clamp(1.8rem, 6vw, 3rem);
	margin: 8px 0;
}

.ac-about-story p {
	font-size: 1rem;
	line-height: 1.75;
}

.ac-catalog-toolbar {
	align-items: end;
	display: grid;
	gap: 12px;
	margin: 0 0 18px;
}

.ac-catalog-search {
	display: grid;
	gap: 7px;
}

.ac-catalog-search span {
	color: var(--ac-heading);
	font-size: .75rem;
	font-weight: 820;
	text-transform: uppercase;
}

.ac-catalog-search input {
	background: #fff;
	border: 1px solid var(--ac-line-strong);
	border-radius: 2px;
	color: var(--ac-heading);
	font: inherit;
	min-height: 54px;
	padding: 12px 15px;
	width: 100%;
}

.ac-catalog-toolbar p {
	color: var(--ac-muted);
	font-size: .8rem;
	margin: 0;
}

.ac-filter-button {
	border-radius: 2px;
}

.ac-card-grid {
	gap: 1px;
	background: var(--ac-line);
	border: 1px solid var(--ac-line);
}

.ac-card {
	border: 0;
	border-radius: 0;
	box-shadow: none;
	min-height: 270px;
	padding: 22px;
}

.ac-card:hover {
	border-color: transparent;
	box-shadow: none;
	transform: none;
}

.ac-card__actions {
	align-items: center;
	display: flex;
	gap: 14px;
	justify-content: space-between;
	margin-top: auto;
}

.ac-card .ac-link {
	margin-top: 0;
}

.ac-link--muted {
	color: var(--ac-muted);
	font-size: .76rem;
}

.ac-contact-grid {
	grid-template-columns: 1fr;
}

.ac-contact-card {
	border: 1px solid var(--ac-line);
	border-radius: 0;
	padding: 26px;
}

.ac-contact-card--primary {
	background: #08162f;
	color: rgba(255, 255, 255, .76);
}

.ac-contact-card--primary :is(h2, a) {
	color: #fff;
}

.ac-contact-card--primary .ac-eyebrow {
	color: #8fb2ff;
}

.ac-contact-card--primary .ac-contact-list li > span:first-child {
	color: rgba(255, 255, 255, .58);
}

.ac-location-list {
	gap: 1px;
	background: var(--ac-line);
	border: 1px solid var(--ac-line);
}

.ac-location-list article {
	background: #fff;
	border-radius: 0;
	padding: 20px;
}

.ac-location-list small {
	display: block;
	line-height: 1.5;
	margin-top: 9px;
}

.ac-location-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 10px 16px;
	margin-top: 12px;
}

.ac-location-actions a {
	color: var(--ac-secondary);
	font-size: .75rem;
	font-weight: 780;
}

.ac-form {
	border-radius: 3px;
}

.ac-field input,
.ac-field select,
.ac-field textarea,
.ac-inline-form select,
.ac-login input:not([type="submit"]) {
	border-radius: 2px;
}

.ac-legal-page {
	max-width: 980px;
}

.ac-legal-header {
	border-bottom: 1px solid var(--ac-line);
	padding: 34px 0;
}

.ac-legal-header h1 {
	font-size: clamp(2.2rem, 9vw, 4.4rem);
	margin: 12px 0;
}

.ac-legal-page section {
	margin: 36px auto 0;
	max-width: 780px;
}

.ac-legal-page section h2 {
	font-size: 1.35rem;
	margin: 2.1em 0 .6em;
}

.ac-legal-page section p,
.ac-legal-page section li {
	line-height: 1.75;
}

.ac-service-hero {
	background: #08162f;
	border: 0;
	color: rgba(255, 255, 255, .78);
	display: grid;
	gap: 0;
	overflow: hidden;
	padding: 0;
}

.ac-service-hero > div:first-child {
	padding: 38px 24px;
}

.ac-service-hero h1,
.ac-service-hero p {
	color: #fff;
}

.ac-service-hero .ac-eyebrow {
	color: #8fb2ff;
}

.ac-service-hero .ac-tags span {
	background: rgba(255, 255, 255, .12);
	color: #fff;
}

.ac-service-hero__image {
	background: url("../images/adicenter-hero.webp") center / cover no-repeat;
	min-height: 320px;
}

.ac-service-hero--format-mare .ac-service-hero__image,
.ac-service-hero--semnalistica-display .ac-service-hero__image {
	background-image: url("../images/large-format.webp");
}

.ac-service-hero--textile .ac-service-hero__image,
.ac-service-hero--obiecte-promotionale .ac-service-hero__image,
.ac-service-hero--gravura-premii .ac-service-hero__image {
	background-image: url("../images/personalizare.webp");
}

.ac-service-hero--carti-si-reviste .ac-service-hero__image,
.ac-service-hero--finisare-legatorie .ac-service-hero__image,
.ac-service-hero--restaurare .ac-service-hero__image,
.ac-service-hero--editura-studis .ac-service-hero__image {
	background-image: url("../images/studis.webp");
}

.ac-service-detail {
	display: grid;
	gap: 36px;
	margin: 0 auto;
	max-width: 1040px;
}

.ac-service-detail aside {
	align-self: start;
	background: var(--ac-surface);
	border-top: 3px solid var(--ac-secondary);
	padding: 24px;
}

.ac-service-detail aside ul {
	display: grid;
	gap: 11px;
	list-style: none;
	margin: 18px 0 0;
	padding: 0;
}

.ac-service-detail aside li {
	border-bottom: 1px solid var(--ac-line);
	color: var(--ac-heading);
	font-size: .88rem;
	padding-bottom: 10px;
}

@media (min-width: 640px) {
	.ac-home-hero__main {
		padding: 56px 42px;
	}

	.ac-intent-strip {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.ac-intent-strip a:nth-child(odd) {
		border-right: 1px solid var(--ac-line);
	}

	.ac-intent-strip a:nth-last-child(-n + 2) {
		border-bottom: 0;
	}

	.ac-showcase-grid,
	.ac-editorial-steps,
	.ac-resource-grid,
	.ac-portfolio-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.ac-catalog-toolbar {
		grid-template-columns: minmax(0, 520px) auto;
		justify-content: space-between;
	}

	.ac-contact-card {
		padding: 34px;
	}
}

@media (min-width: 900px) {
	.ac-home-hero {
		grid-template-columns: minmax(0, .96fr) minmax(0, 1.04fr);
		min-height: 620px;
	}

	.ac-home-hero__main {
		padding: 64px 50px;
	}

	.ac-home-hero__visual {
		min-height: 620px;
	}

	.ac-intent-strip {
		grid-template-columns: repeat(4, minmax(0, 1fr));
	}

	.ac-intent-strip a {
		border-bottom: 0;
		border-right: 1px solid var(--ac-line);
	}

	.ac-intent-strip a:last-child {
		border-right: 0;
	}

	.ac-showcase-grid {
		grid-template-columns: 1.25fr 1fr 1fr;
	}

	.ac-studis-band,
	.ac-page-hero--studis {
		grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr);
	}

	.ac-studis-band__copy,
	.ac-page-hero--studis > div:first-child {
		padding: 54px;
	}

	.ac-editorial-steps,
	.ac-resource-grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}

	.ac-b2b-usecases,
	.ac-about-story {
		grid-template-columns: minmax(0, .85fr) minmax(0, 1.15fr);
		padding: 48px;
	}

	.ac-portfolio-item {
		gap: 28px;
	}

	.ac-contact-grid {
		grid-template-columns: minmax(320px, .72fr) minmax(0, 1.28fr);
	}

	.ac-service-hero {
		grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr);
	}

	.ac-service-hero > div:first-child {
		padding: 52px;
	}

	.ac-service-hero__image {
		min-height: 560px;
	}

	.ac-service-detail {
		grid-template-columns: minmax(0, 1.25fr) minmax(280px, .75fr);
	}
}

@media (min-width: 1200px) {
	.ac-page {
		padding-top: 28px;
	}

	.ac-home-hero {
		border-radius: 6px;
		padding: 0;
	}

	.ac-page-hero {
		padding: 48px 28px 52px;
	}

	.ac-page-hero--studis {
		padding: 0;
	}

	.ac-family-grid {
		grid-template-columns: repeat(4, minmax(0, 1fr));
	}

	.ac-card-grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
}
