:root {
	--hc-bg: #f8fbff;
	--hc-surface: #eef4fa;
	--hc-surface-strong: #e2ecf7;
	--hc-card: #fbfdff;
	--hc-text: #13243b;
	--hc-muted: #53657c;
	--hc-border: #cfdae8;
	--hc-accent: #0868d7;
	--hc-accent-hover: #0756b2;
	--hc-navy: #09284d;
	--hc-hero-text: #f7fbff;
	--hc-error: #a4252b;
	--hc-success: #176c47;
	--hc-shadow: 0 22px 55px rgb(26 66 112 / 0.14);
	--hc-container: min(1320px, calc(100vw - 48px));
	--hc-section-space: clamp(80px, 8vw, 124px);
	--hc-radius: 16px;
	--hc-input-radius: 10px;
	--hc-nav-height: 72px;
	--hc-ease: cubic-bezier(0.16, 1, 0.3, 1);
}

@media (prefers-color-scheme: dark) {
	:root {
		--hc-bg: #0d1724;
		--hc-surface: #132337;
		--hc-surface-strong: #1a3049;
		--hc-card: #122033;
		--hc-text: #e8f1fb;
		--hc-muted: #adbed1;
		--hc-border: #2f455f;
		--hc-accent: #4e9cff;
		--hc-accent-hover: #77b3ff;
		--hc-navy: #071628;
		--hc-error: #ff9298;
		--hc-success: #79d2a8;
		--hc-shadow: 0 22px 55px rgb(2 9 18 / 0.42);
	}

	.hc-site-logo img,
	.hc-site-footer__brand img {
		filter: brightness(0) invert(1);
	}
}

*,
*::before,
*::after {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
	scroll-padding-top: calc(var(--hc-nav-height) + 20px);
}

body.helpcompany-site {
	margin: 0;
	background: var(--hc-bg);
	color: var(--hc-text);
	font-family: Pretendard, "Noto Sans KR", "Apple SD Gothic Neo", "Malgun Gothic", sans-serif;
	font-size: 16px;
	line-height: 1.7;
	word-break: keep-all;
	-webkit-font-smoothing: antialiased;
}

body.menu-open {
	overflow: hidden;
}

body.helpcompany-site img {
	display: block;
	max-width: 100%;
}

body.helpcompany-site a {
	color: inherit;
	text-decoration: none;
}

/*
 * WordPress' generated global styles can set headings to the light-theme ink
 * color after this stylesheet is loaded. Keep every heading tied to the
 * active HelpCompany color tokens so dark-mode surfaces never render dark
 * text. Media heroes use the brighter on-image token below.
 */
body.helpcompany-site :where(h1, h2, h3, h4, h5, h6) {
	color: var(--hc-text) !important;
}

body.helpcompany-site :where(.hc-hero, .hc-subpage-hero, .hc-subpage-cta) :where(h1, h2, h3, h4, h5, h6) {
	color: var(--hc-hero-text) !important;
}

body.helpcompany-site button,
body.helpcompany-site input,
body.helpcompany-site select,
body.helpcompany-site textarea {
	font: inherit;
}

body.helpcompany-site button,
body.helpcompany-site a {
	-webkit-tap-highlight-color: transparent;
}

body.helpcompany-site :focus-visible {
	outline: 3px solid var(--hc-accent);
	outline-offset: 3px;
}

.site-shell {
	min-width: 0;
	overflow: clip;
}

.hc-container {
	width: var(--hc-container);
	margin-inline: auto;
}

.hc-section {
	padding-block: var(--hc-section-space);
}

.hc-section[id],
.hc-consulting-item[id] {
	scroll-margin-top: calc(var(--hc-nav-height) + 24px);
}

.hc-eyebrow {
	margin: 0 0 16px;
	color: var(--hc-accent);
	font-size: 12px;
	font-weight: 800;
	letter-spacing: 0.14em;
}

.hc-section-heading {
	max-width: 780px;
	margin-bottom: clamp(42px, 5vw, 72px);
}

.hc-section-heading h1,
.hc-section-heading h2,
.hc-section-heading h3,
.hc-contact__intro h2,
.hc-philosophy__statement h2 {
	margin: 0;
	font-weight: 760;
	letter-spacing: -0.045em;
	line-height: 1.12;
}

.hc-section-heading h1,
.hc-section-heading h2,
.hc-contact__intro h2,
.hc-philosophy__statement h2 {
	font-size: clamp(36px, 5vw, 64px);
}

.hc-section-heading > p:last-child,
.hc-section-heading > div > p,
.hc-contact__intro > p,
.hc-philosophy__statement > p {
	max-width: 62ch;
	margin: 22px 0 0;
	color: var(--hc-muted);
	font-size: clamp(16px, 1.6vw, 19px);
}

.hc-section-heading--narrow {
	max-width: 650px;
}

.hc-section-heading--with-link {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	max-width: none;
	gap: 32px;
}

.hc-section-heading--with-link > div {
	max-width: 720px;
}

.hc-text-link {
	display: inline-flex;
	align-items: center;
	min-height: 44px;
	color: var(--hc-accent) !important;
	font-weight: 750;
	white-space: nowrap;
	transition: color 180ms ease, transform 180ms ease;
}

.hc-text-link::after {
	content: "";
	width: 28px;
	height: 1px;
	margin-left: 12px;
	background: currentColor;
}

.hc-text-link:hover {
	color: var(--hc-accent-hover) !important;
	transform: translateX(2px);
}

.hc-button,
.hc-header-cta {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 48px;
	padding: 0 25px;
	border: 1px solid var(--hc-accent);
	border-radius: 999px;
	background: var(--hc-accent);
	color: #f7fbff !important;
	font-weight: 760;
	line-height: 1;
	white-space: nowrap;
	transition: background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.hc-button:hover,
.hc-header-cta:hover {
	border-color: var(--hc-accent-hover);
	background: var(--hc-accent-hover);
	transform: translateY(-1px);
}

.hc-button:active,
.hc-header-cta:active {
	transform: translateY(1px) scale(0.99);
}

.hc-button--ghost {
	border-color: rgb(247 251 255 / 0.7);
	background: rgb(7 29 53 / 0.2);
	color: var(--hc-hero-text) !important;
	backdrop-filter: blur(8px);
}

.hc-button--ghost:hover {
	border-color: var(--hc-hero-text);
	background: rgb(7 29 53 / 0.5);
}

.hc-button--wide {
	width: 100%;
	min-height: 54px;
}

.screen-reader-text {
	position: absolute !important;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

.screen-reader-text:focus {
	top: 8px;
	left: 8px;
	z-index: 10000;
	width: auto;
	height: auto;
	padding: 12px 16px;
	clip: auto;
	background: var(--hc-card);
	color: var(--hc-text);
}

/* Header */
.hc-utility-bar {
	height: 32px;
	background: var(--hc-navy);
	color: #dce8f5;
	font-size: 12px;
}

.hc-utility-bar__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 100%;
}

.hc-utility-bar p,
.hc-utility-bar span {
	margin: 0;
}

.hc-utility-bar__inner > div {
	display: flex;
	gap: 20px;
}

.hc-utility-bar a {
	color: #f7fbff !important;
	font-weight: 700;
}

.hc-site-header {
	position: sticky;
	top: 0;
	z-index: 100;
	height: var(--hc-nav-height);
	border-bottom: 1px solid color-mix(in srgb, var(--hc-border) 82%, transparent);
	background: color-mix(in srgb, var(--hc-bg) 92%, transparent);
	backdrop-filter: blur(18px) saturate(130%);
}

body.admin-bar .hc-site-header {
	top: 32px;
}

.hc-site-header__inner {
	display: grid;
	grid-template-columns: 170px minmax(0, 1fr) auto;
	align-items: center;
	height: 100%;
	gap: 22px;
}

.hc-site-logo {
	display: inline-flex;
	align-items: center;
	width: 142px;
	height: 62px;
}

.hc-site-logo img {
	width: 142px;
	height: 62px;
	object-fit: contain;
}

.hc-primary-nav {
	justify-self: center;
}

.hc-primary-nav__list,
.hc-submenu {
	margin: 0;
	padding: 0;
	list-style: none;
}

.hc-primary-nav__list {
	display: flex;
	align-items: center;
	gap: clamp(22px, 3vw, 46px);
	height: var(--hc-nav-height);
}

.hc-primary-nav__list > li {
	position: relative;
	display: flex;
	align-items: center;
	height: 100%;
}

.hc-primary-nav__list > li > a,
.hc-primary-nav__list > li > .hc-nav-group__toggle {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	height: 100%;
	padding: 0;
	border: 0;
	background: none;
	color: var(--hc-text);
	font-size: 15px;
	font-family: inherit;
	font-weight: 800;
	cursor: pointer;
	white-space: nowrap;
}

.hc-nav-group__toggle span {
	color: var(--hc-accent);
	font-size: 18px;
	font-weight: 500;
	transition: transform 180ms ease;
}

.hc-nav-group.is-open .hc-nav-group__toggle span,
.hc-nav-group:focus-within .hc-nav-group__toggle span {
	transform: rotate(45deg);
}

.hc-primary-nav__list > li > a::after,
.hc-nav-group__toggle::after {
	position: absolute;
	right: 0;
	bottom: 0;
	left: 0;
	height: 3px;
	background: var(--hc-accent);
	content: "";
	transform: scaleX(0);
	transform-origin: left;
	transition: transform 220ms var(--hc-ease);
}

.hc-primary-nav__list > li > a:hover::after,
.hc-nav-group__toggle:hover::after,
.hc-nav-group.is-open .hc-nav-group__toggle::after {
	transform: scaleX(1);
}

.hc-submenu {
	position: absolute;
	top: calc(100% - 1px);
	left: -22px;
	min-width: 190px;
	padding: 12px;
	border: 1px solid var(--hc-border);
	border-radius: var(--hc-radius);
	background: var(--hc-card);
	box-shadow: var(--hc-shadow);
	opacity: 0;
	visibility: hidden;
	transform: translateY(8px);
	transition: opacity 180ms ease, transform 180ms var(--hc-ease), visibility 180ms;
}

.hc-nav-group.is-open .hc-submenu,
.hc-nav-group:focus-within .hc-submenu,
.hc-nav-group:hover .hc-submenu {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.hc-submenu a {
	display: block;
	padding: 10px 12px;
	border-radius: 10px;
	color: var(--hc-muted) !important;
	font-size: 14px;
	font-weight: 680;
}

.hc-submenu a:hover,
.hc-submenu a:focus-visible {
	background: var(--hc-surface);
	color: var(--hc-accent) !important;
}

.hc-header-cta {
	min-height: 42px;
	padding-inline: 20px;
	font-size: 14px;
}

.hc-menu-toggle {
	display: none;
}

/* Hero */
.hc-hero {
	position: relative;
	min-height: calc(100dvh - 104px);
	overflow: hidden;
	background: var(--hc-navy);
	color: var(--hc-hero-text);
}

.hc-hero__slides,
.hc-hero__slide,
.hc-hero__scrim {
	position: absolute;
	inset: 0;
}

.hc-hero__slide {
	margin: 0;
	opacity: 0;
	transform: scale(1.025);
	transition: opacity 900ms ease, transform 6s ease;
}

.hc-hero__slide.is-active {
	opacity: 1;
	transform: scale(1);
}

.hc-hero__slide img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.hc-hero__scrim {
	background:
		linear-gradient(90deg, rgb(6 23 42 / 0.9) 0%, rgb(6 23 42 / 0.68) 42%, rgb(6 23 42 / 0.12) 76%),
		linear-gradient(0deg, rgb(6 23 42 / 0.42), transparent 40%);
}

.hc-hero__inner {
	position: relative;
	z-index: 2;
	display: flex;
	flex-direction: column;
	justify-content: center;
	min-height: calc(100dvh - 104px);
	padding-block: clamp(64px, 9vh, 96px);
}

.hc-hero__content {
	max-width: 690px;
}

.hc-hero__content .hc-eyebrow {
	color: #8dc4ff;
}

.hc-hero h1 {
	max-width: 12ch;
	margin: 0;
	font-size: clamp(44px, 6.2vw, 80px);
	font-weight: 780;
	letter-spacing: -0.055em;
	line-height: 1.02;
	text-wrap: balance;
}

.hc-hero__content > p:not(.hc-eyebrow) {
	max-width: 32ch;
	margin: 24px 0 0;
	color: #dce9f7;
	font-size: clamp(17px, 1.8vw, 21px);
	line-height: 1.58;
}

.hc-hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: 32px;
}

.hc-slider-controls {
	position: absolute;
	right: 0;
	bottom: 34px;
	display: flex;
	align-items: center;
	gap: 18px;
}

.hc-slider-controls > button {
	padding: 8px;
	border: 0;
	background: none;
	color: #f7fbff;
	font-size: 11px;
	font-weight: 800;
	letter-spacing: 0.12em;
	cursor: pointer;
}

.hc-slider-dots {
	display: flex;
	align-items: center;
	gap: 8px;
}

.hc-slider-dots button {
	width: 24px;
	height: 4px;
	padding: 0;
	border: 0;
	border-radius: 999px;
	background: rgb(247 251 255 / 0.38);
	cursor: pointer;
	transition: width 180ms ease, background 180ms ease;
}

.hc-slider-dots button[aria-current="true"] {
	width: 42px;
	background: #f7fbff;
}

/* Company */
.hc-company__grid {
	display: grid;
	grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
	gap: clamp(56px, 8vw, 120px);
	align-items: start;
}

.hc-company .hc-section-heading {
	position: sticky;
	top: calc(var(--hc-nav-height) + 48px);
	margin: 0;
}

.hc-service-index {
	border-top: 1px solid var(--hc-border);
}

.hc-service-index article {
	display: grid;
	grid-template-columns: minmax(180px, 0.8fr) 1.2fr;
	gap: 28px;
	padding: 25px 0;
	border-bottom: 1px solid var(--hc-border);
}

.hc-service-index h3,
.hc-service-index p {
	margin: 0;
}

.hc-service-index h3 {
	font-size: 19px;
	letter-spacing: -0.025em;
}

.hc-service-index p {
	color: var(--hc-muted);
	font-size: 15px;
}

/* Philosophy */
.hc-philosophy {
	background: var(--hc-surface);
}

.hc-philosophy__statement {
	max-width: 980px;
}

.hc-philosophy__values {
	display: grid;
	grid-template-columns: 1.1fr 1fr 1fr;
	gap: 0;
	margin: clamp(50px, 7vw, 88px) 0 0;
	border-top: 1px solid var(--hc-border);
}

.hc-philosophy__values > div {
	padding: 34px clamp(20px, 3vw, 42px) 0 0;
}

.hc-philosophy__values > div + div {
	padding-left: clamp(20px, 3vw, 42px);
	border-left: 1px solid var(--hc-border);
}

.hc-philosophy__values dt {
	color: var(--hc-accent);
	font-size: clamp(24px, 3vw, 38px);
	font-weight: 780;
	letter-spacing: -0.04em;
}

.hc-philosophy__values dd {
	margin: 12px 0 0;
	color: var(--hc-muted);
}

/* Consulting */
.hc-consulting__list {
	display: grid;
	gap: clamp(72px, 10vw, 140px);
}

.hc-consulting-item {
	display: grid;
	grid-template-columns: minmax(260px, 0.62fr) minmax(0, 1.38fr);
	gap: clamp(38px, 7vw, 96px);
	align-items: center;
}

.hc-consulting-item--reverse {
	grid-template-columns: minmax(0, 1.38fr) minmax(260px, 0.62fr);
}

.hc-consulting-item--reverse .hc-consulting-item__copy {
	order: 2;
}

.hc-consulting-item__copy h3 {
	margin: 0;
	font-size: clamp(34px, 4.6vw, 62px);
	letter-spacing: -0.05em;
	line-height: 1.08;
}

.hc-consulting-item__copy p {
	margin: 20px 0 24px;
	color: var(--hc-muted);
	font-size: 17px;
}

.hc-consulting-item__media {
	display: block;
	height: clamp(430px, 49vw, 620px);
	overflow: hidden;
	border: 1px solid var(--hc-border);
	border-radius: var(--hc-radius);
	background: var(--hc-card);
	box-shadow: var(--hc-shadow);
	transition: transform 300ms var(--hc-ease), box-shadow 300ms ease;
}

.hc-consulting-item__media:hover {
	transform: translateY(-4px);
}

.hc-consulting-item__media img {
	width: 100%;
	height: auto;
}

/* Works */
.hc-works {
	background: var(--hc-surface);
}

.hc-gallery-toolbar {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	margin: -20px 0 34px;
	padding-bottom: 18px;
	border-bottom: 1px solid var(--hc-border);
}

.hc-gallery-filters {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

.hc-gallery-filters button {
	min-height: 42px;
	padding: 0 18px;
	border: 1px solid var(--hc-border);
	border-radius: 999px;
	background: var(--hc-card);
	color: var(--hc-muted);
	font-size: 13px;
	font-weight: 740;
	cursor: pointer;
	transition: border-color 180ms ease, background 180ms ease, color 180ms ease, transform 180ms ease;
}

.hc-gallery-filters button:hover {
	border-color: var(--hc-accent);
	color: var(--hc-accent);
}

.hc-gallery-filters button:active {
	transform: translateY(1px) scale(0.98);
}

.hc-gallery-filters button.is-active {
	border-color: var(--hc-accent);
	background: var(--hc-accent);
	color: #f7fbff;
}

.hc-gallery-toolbar > p {
	margin: 0;
	color: var(--hc-muted);
	font-size: 12px;
	white-space: nowrap;
}

.hc-works-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: clamp(18px, 2.4vw, 32px);
}

.hc-work-card {
	grid-column: auto;
	min-width: 0;
}

.hc-work-card[hidden] {
	display: none !important;
}

.hc-work-card--1,
.hc-work-card--2,
.hc-work-card--6,
.hc-work-card--7,
.hc-work-card--8 {
	grid-column: auto;
}

/* Uniform portfolio cards keep the long landing images easy to scan. */
/* Legacy variant selectors intentionally share the same three-column size. */
/* The complete vertical image opens in the gallery dialog. */
/* stylelint-disable-next-line no-duplicate-selectors */
.hc-work-card--2,
.hc-work-card--6 {
	grid-column: auto;
}

.hc-work-card--8 {
	grid-column: auto;
}

.hc-work-card__media {
	display: block;
	overflow: hidden;
	border-radius: var(--hc-radius);
	background: var(--hc-card);
}

.hc-work-card__media img {
	width: 100%;
	aspect-ratio: 16 / 10;
	object-fit: cover;
	transition: transform 600ms var(--hc-ease);
}

.hc-work-card__media:hover img {
	transform: scale(1.035);
}

.hc-work-card__body {
	padding: 18px 4px 28px;
}

.hc-work-card__body h3 {
	margin: 0;
	font-size: clamp(18px, 2vw, 24px);
	letter-spacing: -0.03em;
	line-height: 1.3;
}

.hc-work-card__body p {
	display: flex;
	flex-wrap: wrap;
	gap: 8px 18px;
	margin: 8px 0 0;
	color: var(--hc-muted);
	font-size: 13px;
}

.hc-home-works-controls {
	display: none;
}

body.gallery-open {
	overflow: hidden;
}

.hc-gallery-dialog {
	width: min(1160px, calc(100vw - 48px));
	height: min(92dvh, 1000px);
	max-width: none;
	max-height: none;
	padding: 0;
	overflow: hidden;
	border: 1px solid var(--hc-border);
	border-radius: var(--hc-radius);
	background: var(--hc-bg);
	color: var(--hc-text);
	box-shadow: 0 30px 100px rgb(2 17 34 / 0.48);
}

.hc-gallery-dialog::backdrop {
	background: rgb(3 18 34 / 0.82);
	backdrop-filter: blur(8px);
}

.hc-gallery-dialog__bar {
	position: sticky;
	top: 0;
	z-index: 2;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	min-height: 82px;
	padding: 14px 22px 14px 28px;
	border-bottom: 1px solid var(--hc-border);
	background: color-mix(in srgb, var(--hc-bg) 94%, transparent);
	backdrop-filter: blur(16px);
}

.hc-gallery-dialog__bar h2,
.hc-gallery-dialog__bar p {
	margin: 0;
}

.hc-gallery-dialog__bar h2 {
	font-size: clamp(18px, 2.5vw, 28px);
	letter-spacing: -0.035em;
	line-height: 1.2;
}

.hc-gallery-dialog__bar p {
	margin-top: 3px;
	color: var(--hc-muted);
	font-size: 12px;
}

.hc-gallery-dialog__bar button {
	min-width: 62px;
	height: 42px;
	padding: 0 16px;
	border: 1px solid var(--hc-border);
	border-radius: 999px;
	background: var(--hc-card);
	color: var(--hc-text);
	font-size: 13px;
	font-weight: 760;
	cursor: pointer;
}

.hc-gallery-dialog__bar button:hover {
	border-color: var(--hc-accent);
	color: var(--hc-accent);
}

.hc-gallery-dialog__stage {
	height: calc(100% - 82px);
	padding: clamp(18px, 4vw, 46px);
	overflow: auto;
	overscroll-behavior: contain;
}

.hc-gallery-dialog__stage img {
	width: min(100%, 1040px);
	height: auto;
	margin-inline: auto;
	background: var(--hc-card);
}

/* Editorial and feeds */
.hc-editorial__grid {
	display: grid;
	grid-template-columns: minmax(260px, 0.7fr) minmax(0, 1.3fr);
	gap: clamp(48px, 8vw, 120px);
}

.hc-editorial .hc-section-heading {
	margin: 0;
}

.hc-columns-page__grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 28px;
}

.hc-column-card {
	display: grid;
	grid-template-columns: minmax(128px, 0.42fr) minmax(0, 1fr);
	gap: 22px;
	padding: 24px;
	border: 1px solid var(--hc-border);
	border-radius: var(--hc-radius);
	background: var(--hc-card);
}

.hc-column-card__media {
	display: block;
	overflow: hidden;
	border-radius: var(--hc-radius);
}

.hc-column-card__media img {
	width: 100%;
	height: 100%;
	min-height: 140px;
	object-fit: cover;
}

.hc-column-card time {
	color: var(--hc-muted);
	font-size: 12px;
	font-weight: 700;
}

.hc-column-card h3 {
	margin: 8px 0 0;
	font-size: clamp(20px, 2vw, 28px);
	letter-spacing: -0.035em;
	line-height: 1.3;
}

.hc-column-card p {
	margin: 10px 0 0;
	color: var(--hc-muted);
	font-size: 14px;
}

.hc-column-list,
.hc-blog-list {
	border-top: 1px solid var(--hc-border);
}

.hc-column-list article,
.hc-blog-list article {
	padding: 28px 0;
	border-bottom: 1px solid var(--hc-border);
}

.hc-column-list time,
.hc-blog-list time,
.hc-video-card time {
	color: var(--hc-muted);
	font-size: 12px;
	font-weight: 700;
}

.hc-column-list h2,
.hc-column-list h3,
.hc-blog-list h3 {
	margin: 7px 0 0;
	font-size: clamp(20px, 2.4vw, 29px);
	letter-spacing: -0.035em;
	line-height: 1.32;
}

.hc-column-list h2 a:hover,
.hc-column-list h3 a:hover,
.hc-blog-list h3 a:hover {
	color: var(--hc-accent);
}

.hc-column-list article > p,
.hc-blog-list article > p {
	max-width: 70ch;
	margin: 10px 0 0;
	color: var(--hc-muted);
	font-size: 14px;
}

.hc-blog {
	background: var(--hc-surface);
}

.hc-blog-list article {
	display: grid;
	grid-template-columns: minmax(150px, 220px) minmax(0, 1fr);
	align-items: center;
	gap: clamp(20px, 3vw, 38px);
}

.hc-blog-list h3,
.hc-blog-card__content > p {
	margin-top: 0;
}

.hc-blog-card__media {
	display: block;
	overflow: hidden;
	border-radius: var(--hc-radius);
	background: linear-gradient(135deg, var(--hc-accent), var(--hc-accent-dark));
}

.hc-blog-card__media img {
	width: 100%;
	height: auto;
	aspect-ratio: 16 / 10;
	object-fit: cover;
	transition: transform 500ms var(--hc-ease);
}

.hc-blog-card__media:hover img {
	transform: scale(1.035);
}

.hc-blog-card__media span {
	display: grid;
	min-height: 132px;
	place-items: center;
	color: #fff;
	font-size: 12px;
	font-weight: 800;
	letter-spacing: 0.12em;
}

.hc-blog-card__content > p {
	max-width: 70ch;
	margin: 10px 0 0;
	color: var(--hc-muted);
	font-size: 14px;
}

.hc-empty-state {
	padding: 42px;
	border: 1px solid var(--hc-border);
	border-radius: var(--hc-radius);
	background: var(--hc-card);
}

.hc-empty-state h3,
.hc-empty-state p {
	margin: 0;
}

.hc-empty-state p {
	color: var(--hc-muted);
}

.hc-empty-state h3 + p {
	margin-top: 8px;
}

.hc-video-carousel {
	position: relative;
	overflow: hidden;
}

.hc-video-track {
	display: grid;
	grid-auto-columns: calc((100% - 48px) / 3);
	grid-auto-flow: column;
	gap: 24px;
	padding: 2px 2px 18px;
	transition: transform 420ms cubic-bezier(0.22, 1, 0.36, 1);
	will-change: transform;
}

.hc-video-card {
	min-width: 0;
}

.hc-video-card__media {
	position: relative;
	display: block;
	overflow: hidden;
	border-radius: var(--hc-radius);
	background: var(--hc-navy);
}

.hc-video-card__media img {
	width: 100%;
	height: auto;
	aspect-ratio: 16 / 9;
	object-fit: cover;
	transition: transform 500ms var(--hc-ease), opacity 300ms ease;
}

.hc-video-card__media:hover img {
	opacity: 0.84;
	transform: scale(1.03);
}

.hc-video-card__media span {
	position: absolute;
	right: 16px;
	bottom: 16px;
	display: grid;
	width: 44px;
	height: 44px;
	place-items: center;
	border-radius: 50%;
	background: var(--hc-accent);
	color: #f7fbff;
	font-size: 22px;
}

.hc-video-card h3 {
	margin: 8px 0 0;
	font-size: clamp(17px, 1.7vw, 22px);
	letter-spacing: -0.03em;
	line-height: 1.35;
}

.hc-video-card h3 a:hover {
	color: var(--hc-accent);
}

.hc-video-card > div {
	padding: 14px 2px 0;
}

.hc-video-controls {
	display: flex;
	justify-content: flex-end;
	gap: 10px;
	margin-top: 22px;
}

.hc-video-controls button {
	display: grid;
	width: 48px;
	height: 48px;
	place-items: center;
	border: 1px solid var(--hc-border);
	border-radius: 50%;
	background: var(--hc-card);
	color: var(--hc-text);
	cursor: pointer;
	transition: border-color 180ms ease, background 180ms ease, color 180ms ease, transform 180ms ease;
}

.hc-video-controls button:hover {
	border-color: var(--hc-accent);
	background: var(--hc-accent);
	color: #f7fbff;
}

.hc-video-controls button:active {
	transform: scale(0.96);
}

.hc-video-controls .dashicons {
	width: 20px;
	height: 20px;
	font-size: 20px;
}

/* Location */
.hc-location {
	background: var(--hc-surface);
}

.hc-location__grid {
	display: grid;
	grid-template-columns: minmax(0, 1.45fr) minmax(300px, 0.55fr);
	gap: clamp(28px, 5vw, 68px);
	align-items: stretch;
}

.hc-map {
	min-height: 520px;
	overflow: hidden;
	border: 1px solid var(--hc-border);
	border-radius: var(--hc-radius);
	background: var(--hc-card);
}

.hc-map iframe {
	display: block;
	width: 100%;
	height: 100%;
	min-height: 520px;
	border: 0;
}

.hc-location__info {
	display: flex;
	flex-direction: column;
	justify-content: center;
	border-top: 1px solid var(--hc-border);
}

.hc-location__info > div {
	padding: 26px 0;
	border-bottom: 1px solid var(--hc-border);
}

.hc-location__info h3,
.hc-location__info p,
.hc-location__info address {
	margin: 0;
}

.hc-location__info h3 {
	margin-bottom: 7px;
	color: var(--hc-muted);
	font-size: 13px;
}

.hc-location__info p,
.hc-location__info address {
	font-size: 18px;
	font-style: normal;
	font-weight: 680;
}

.hc-location__info .hc-text-link {
	margin-top: 8px;
	font-size: 14px;
}

/* Contact and form */
.hc-contact {
	position: relative;
}

.hc-anchor-target {
	position: absolute;
	top: calc(var(--hc-nav-height) * -1);
}

.hc-contact__grid {
	display: grid;
	grid-template-columns: minmax(280px, 0.7fr) minmax(0, 1.3fr);
	gap: clamp(48px, 8vw, 110px);
	align-items: start;
}

.hc-contact__intro {
	position: sticky;
	top: calc(var(--hc-nav-height) + 48px);
}

.hc-contact__direct {
	display: grid;
	gap: 12px;
	margin-top: 36px;
}

.hc-contact__direct a {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	padding: 18px 0;
	border-bottom: 1px solid var(--hc-border);
	font-weight: 750;
}

.hc-contact__direct span {
	color: var(--hc-muted);
	font-size: 13px;
}

.hc-contact-form-wrap {
	padding: clamp(28px, 4vw, 52px);
	border: 1px solid var(--hc-border);
	border-radius: var(--hc-radius);
	background: var(--hc-card);
	box-shadow: var(--hc-shadow);
}

.hc-inquiry-form {
	display: grid;
	gap: 20px;
}

.hc-form-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 18px;
}

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

.hc-form-field label {
	color: var(--hc-text);
	font-size: 13px;
	font-weight: 750;
}

.hc-form-field label span {
	color: var(--hc-error);
}

.hc-form-field input,
.hc-form-field select,
.hc-form-field textarea {
	width: 100%;
	min-height: 50px;
	padding: 12px 14px;
	border: 1px solid var(--hc-border);
	border-radius: var(--hc-input-radius);
	background: var(--hc-bg);
	color: var(--hc-text);
	transition: border-color 180ms ease, box-shadow 180ms ease;
}

.hc-form-field textarea {
	min-height: 130px;
	resize: vertical;
}

.hc-form-field input::placeholder,
.hc-form-field textarea::placeholder {
	color: color-mix(in srgb, var(--hc-muted) 86%, transparent);
}

.hc-form-field input:focus,
.hc-form-field select:focus,
.hc-form-field textarea:focus {
	border-color: var(--hc-accent);
	outline: 0;
	box-shadow: 0 0 0 3px color-mix(in srgb, var(--hc-accent) 20%, transparent);
}

.hc-form-consent {
	display: grid;
	grid-template-columns: 20px minmax(0, 1fr);
	gap: 10px;
	align-items: start;
	color: var(--hc-muted);
	font-size: 13px;
}

.hc-form-consent input {
	width: 18px;
	height: 18px;
	margin: 3px 0 0;
	accent-color: var(--hc-accent);
}

.hc-form-consent a {
	margin-left: 5px;
	color: var(--hc-accent) !important;
	text-decoration: underline;
}

.hc-form-notice {
	margin-bottom: 20px;
	padding: 14px 16px;
	border: 1px solid currentColor;
	border-radius: var(--hc-input-radius);
	font-size: 14px;
}

.hc-form-notice--success {
	color: var(--hc-success);
	background: color-mix(in srgb, var(--hc-success) 10%, transparent);
}

.hc-form-notice--error {
	color: var(--hc-error);
	background: color-mix(in srgb, var(--hc-error) 10%, transparent);
}

.hc-honeypot {
	position: absolute !important;
	left: -9999px !important;
	width: 1px;
	height: 1px;
	overflow: hidden;
}

.hc-inquiry-form button[disabled] {
	cursor: wait;
	opacity: 0.7;
}

/* Quick menus */
.hc-quick-banner {
	position: fixed;
	top: 50%;
	right: 24px;
	z-index: 90;
	display: grid;
	width: 138px;
	overflow: hidden;
	border: 1px solid var(--hc-border);
	border-radius: var(--hc-radius);
	background: var(--hc-card);
	box-shadow: var(--hc-shadow);
	transform: translateY(-42%);
}

.hc-quick-banner a {
	display: grid;
	grid-template-rows: auto auto;
	gap: 10px;
	place-items: center;
	min-height: 108px;
	padding: 18px 10px;
	color: var(--hc-text) !important;
	font-size: 13px;
	font-weight: 750;
	text-align: center;
	transition: background 180ms ease, color 180ms ease;
}

.hc-quick-banner a + a {
	border-top: 1px solid var(--hc-border);
}

.hc-quick-banner .dashicons {
	width: 30px;
	height: 30px;
	color: var(--hc-accent);
	font-size: 30px;
	line-height: 1;
}

.hc-quick-banner strong {
	font-weight: 760;
}

.hc-quick-banner a:hover {
	background: var(--hc-accent);
	color: #f7fbff !important;
}

.hc-quick-banner a:hover .dashicons {
	color: #f7fbff;
}

.hc-mobile-quick {
	display: none;
}

/* Footer */
.hc-site-footer {
	border-top: 1px solid var(--hc-border);
	background: var(--hc-surface);
}

.hc-site-footer__top {
	display: grid;
	grid-template-columns: 0.7fr 1.4fr auto;
	gap: clamp(36px, 6vw, 90px);
	padding-block: 64px 50px;
}

.hc-site-footer__brand img {
	width: 142px;
	height: 62px;
	object-fit: contain;
}

.hc-site-footer__brand p,
.hc-site-footer__info p,
.hc-site-footer__info address {
	margin: 0;
	color: var(--hc-muted);
	font-size: 13px;
	font-style: normal;
}

.hc-site-footer__brand p {
	max-width: 26ch;
	margin-top: 14px;
}

.hc-site-footer__info {
	display: grid;
	gap: 5px;
}

.hc-site-footer__info a {
	color: var(--hc-text) !important;
	font-weight: 700;
}

.hc-site-footer__links {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 8px;
	font-size: 13px;
	font-weight: 700;
}

.hc-site-footer__links a:hover {
	color: var(--hc-accent);
}

.hc-site-footer__bottom {
	padding-block: 18px;
	border-top: 1px solid var(--hc-border);
}

.hc-site-footer__bottom p {
	margin: 0;
	color: var(--hc-muted);
	font-size: 11px;
}

/* Article templates */
.hc-content-page {
	min-height: 60dvh;
}

.hc-article-shell {
	max-width: 880px;
}

.hc-article header h1 {
	margin: 10px 0;
	font-size: clamp(36px, 5vw, 64px);
	letter-spacing: -0.045em;
	line-height: 1.12;
}

.hc-article header p,
.hc-article header time {
	color: var(--hc-muted);
}

.hc-article > figure {
	margin: 44px 0;
}

.hc-article__content {
	font-size: 17px;
}

.hc-article__content > * + * {
	margin-top: 1.5em;
}

/* Fixed second-level pages */
.hc-subpage-hero {
	display: flex;
	min-height: clamp(300px, 38vw, 470px);
	align-items: flex-end;
	padding: clamp(72px, 10vw, 128px) 0 clamp(48px, 7vw, 84px);
	background:
		linear-gradient(115deg, rgba(5, 23, 45, 0.96), rgba(5, 42, 77, 0.76)),
		url('../images/portfolio-v2/portfolio-5-thumb.webp') center / cover;
	color: #fff;
}

.hc-subpage-hero .hc-eyebrow {
	color: #8ec7ff;
}

.hc-subpage-hero h1 {
	margin: 12px 0 0;
	font-size: clamp(48px, 7.8vw, 104px);
	letter-spacing: -0.065em;
	line-height: 0.98;
}

.hc-subpage-hero p:last-child {
	max-width: 46ch;
	margin: 24px 0 0;
	color: rgba(255, 255, 255, 0.74);
}

.hc-local-nav {
	border-bottom: 1px solid var(--hc-border);
	background: var(--hc-card);
}

.hc-local-nav .hc-container {
	display: flex;
	gap: clamp(24px, 5vw, 64px);
	min-height: 72px;
	align-items: center;
}

.hc-local-nav a {
	position: relative;
	color: var(--hc-muted);
	font-size: 15px;
	font-weight: 760;
}

.hc-local-nav a::after {
	position: absolute;
	right: 0;
	bottom: -25px;
	left: 0;
	height: 2px;
	background: var(--hc-accent);
	content: '';
	opacity: 0;
}

.hc-local-nav a:hover,
.hc-local-nav a[aria-current='page'] {
	color: var(--hc-text);
}

.hc-local-nav a[aria-current='page']::after {
	opacity: 1;
}

.hc-detail-intro__grid {
	display: grid;
	grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
	gap: clamp(44px, 8vw, 120px);
}

.hc-detail-copy {
	color: var(--hc-muted);
	font-size: clamp(17px, 1.8vw, 21px);
	line-height: 1.85;
}

.hc-detail-copy p {
	margin: 0;
}

.hc-detail-copy p + p {
	margin-top: 24px;
}

.hc-business-cards {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 1px;
	margin-top: clamp(62px, 9vw, 120px);
	background: var(--hc-border);
	border: 1px solid var(--hc-border);
}

.hc-business-cards article {
	min-height: 250px;
	padding: clamp(28px, 4vw, 46px);
	background: var(--hc-card);
}

.hc-business-cards span {
	color: var(--hc-accent);
	font-size: 12px;
	font-weight: 800;
}

.hc-business-cards h3 {
	margin: 42px 0 10px;
	font-size: clamp(20px, 2vw, 27px);
}

.hc-business-cards p {
	margin: 0;
	color: var(--hc-muted);
	font-size: 14px;
}

.hc-detail-philosophy {
	background: var(--hc-surface);
}

.hc-detail-quote {
	max-width: 980px;
}

.hc-detail-quote p {
	margin: 0 0 20px;
	color: var(--hc-accent);
	font-size: 12px;
	font-weight: 800;
	letter-spacing: 0.12em;
}

.hc-detail-quote h2 {
	margin: 0;
	font-size: clamp(44px, 7vw, 92px);
	letter-spacing: -0.07em;
	line-height: 1.08;
}

.hc-detail-philosophy .hc-philosophy__values {
	margin-top: clamp(64px, 10vw, 132px);
}

.hc-consulting-detail__intro {
	display: grid;
	grid-template-columns: 0.65fr 1fr;
	align-items: end;
	gap: 18px clamp(40px, 8vw, 120px);
}

.hc-consulting-detail__intro .hc-eyebrow {
	grid-column: 1 / -1;
}

.hc-consulting-detail__intro h2 {
	margin: 0;
	font-size: clamp(48px, 7vw, 92px);
	letter-spacing: -0.06em;
}

.hc-consulting-detail__intro > p:last-child {
	margin: 0;
	color: var(--hc-muted);
	font-size: clamp(17px, 2vw, 22px);
	line-height: 1.75;
}

.hc-detail-document {
	margin-top: clamp(56px, 8vw, 110px);
	padding: clamp(12px, 3vw, 42px);
	background: var(--hc-surface);
}

.hc-detail-document img {
	width: min(100%, 1002px);
	height: auto;
	margin-inline: auto;
	box-shadow: var(--hc-shadow);
}

.hc-works-page .hc-section-heading {
	max-width: 800px;
}

.hc-work-on-page {
	background: var(--hc-surface);
}

.hc-work-on-page .hc-section-heading,
.hc-affiliate-page .hc-section-heading {
	max-width: 760px;
	margin-bottom: clamp(42px, 6vw, 72px);
}

.hc-work-on-grid,
.hc-affiliate-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: clamp(22px, 3vw, 36px);
}

.hc-work-on-grid > .hc-empty-state {
	grid-column: 1 / -1;
}

.hc-work-on-card,
.hc-affiliate-card {
	min-width: 0;
	overflow: hidden;
	border: 1px solid var(--hc-border);
	border-radius: var(--hc-radius);
	background: var(--hc-card);
}

.hc-work-on-card__media,
.hc-work-on-card__placeholder,
.hc-affiliate-card__visual {
	display: grid;
	min-height: 220px;
	overflow: hidden;
	place-items: center;
	background: var(--hc-accent-dark);
}

.hc-work-on-card__media img,
.hc-affiliate-card__visual img {
	width: 100%;
	height: auto;
	aspect-ratio: 16 / 10;
	object-fit: cover;
	transition: transform 380ms ease;
}

.hc-work-on-card__media:hover img,
.hc-affiliate-card__visual:hover img {
	transform: scale(1.025);
}

.hc-work-on-card__placeholder,
.hc-affiliate-card__visual span {
	padding: 30px;
	color: #f7fbff;
	font-size: clamp(21px, 2.2vw, 32px);
	font-weight: 820;
	letter-spacing: -0.035em;
	text-align: center;
}

.hc-work-on-card__placeholder span {
	font-size: 13px;
	letter-spacing: 0.1em;
}

.hc-work-on-card__body,
.hc-affiliate-card__body {
	padding: clamp(22px, 3vw, 32px);
}

.hc-work-on-card__stage {
	margin: 0 0 12px;
	color: var(--hc-accent);
	font-size: 13px;
	font-weight: 800;
}

.hc-work-on-card h3,
.hc-affiliate-card h3 {
	margin: 0;
	font-size: clamp(20px, 2vw, 27px);
	letter-spacing: -0.035em;
}

.hc-work-on-card__body > p:not(.hc-work-on-card__stage):not(.hc-work-on-card__meta),
.hc-affiliate-card__body > p {
	margin: 14px 0 0;
	color: var(--hc-muted);
	font-size: 15px;
	line-height: 1.7;
}

.hc-work-on-card__meta {
	margin: 20px 0 0;
	padding-top: 16px;
	border-top: 1px solid var(--hc-border);
	color: var(--hc-muted);
	font-size: 13px;
}

.hc-affiliate-card__body .hc-text-link {
	display: inline-flex;
	margin-top: 22px;
}

.hc-contact-page {
	background: var(--hc-surface);
}

.hc-subpage-cta {
	padding: clamp(54px, 8vw, 92px) 0;
	background: var(--hc-accent-dark);
	color: #fff;
}

.hc-subpage-cta .hc-container {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 40px;
}

.hc-subpage-cta p,
.hc-subpage-cta h2 {
	margin: 0;
}

.hc-subpage-cta p {
	color: rgba(255, 255, 255, 0.64);
	font-size: 14px;
}

.hc-subpage-cta h2 {
	margin-top: 8px;
	font-size: clamp(24px, 3vw, 38px);
	letter-spacing: -0.04em;
}

.hc-subpage-cta .hc-button {
	flex: 0 0 auto;
	background: #fff;
	color: var(--hc-accent-dark) !important;
}

/* Motion */
[data-reveal] {
	opacity: 0;
	transform: translateY(24px);
	transition: opacity 700ms var(--hc-ease), transform 700ms var(--hc-ease);
}

[data-reveal].is-visible {
	opacity: 1;
	transform: translateY(0);
}

@media (max-width: 1180px) {
	.hc-quick-banner {
		right: 8px;
		width: 112px;
	}

	.hc-primary-nav__list {
		gap: 24px;
	}
}

@media (max-width: 960px) {
	:root {
		--hc-container: min(100% - 36px, 760px);
		--hc-section-space: 82px;
		--hc-nav-height: 66px;
	}

	.hc-work-on-grid,
	.hc-affiliate-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	body.admin-bar .hc-site-header {
		top: 46px;
	}

	.hc-utility-bar {
		display: none;
	}

	.hc-site-header__inner {
		grid-template-columns: 1fr auto;
	}

	.hc-site-logo,
	.hc-site-logo img {
		width: 124px;
		height: 54px;
	}

	.hc-header-cta {
		display: none;
	}

	.hc-menu-toggle {
		display: inline-flex;
		align-items: center;
		justify-content: center;
		gap: 10px;
		min-width: 68px;
		height: 42px;
		padding: 0 13px;
		border: 1px solid var(--hc-border);
		border-radius: 999px;
		background: var(--hc-card);
		color: var(--hc-text);
		font-size: 13px;
		font-weight: 750;
	}

	.hc-menu-toggle i,
	.hc-menu-toggle i::before {
		display: block;
		width: 14px;
		height: 1px;
		background: currentColor;
		content: "";
		transition: transform 180ms ease;
	}

	.hc-menu-toggle i::before {
		transform: translateY(5px);
	}

	.hc-menu-toggle[aria-expanded="true"] i {
		transform: translateY(2px) rotate(45deg);
	}

	.hc-menu-toggle[aria-expanded="true"] i::before {
		transform: rotate(-90deg);
	}

	.hc-primary-nav {
		position: fixed;
		top: var(--hc-nav-height);
		right: 0;
		bottom: 0;
		left: 0;
		z-index: 99;
		display: none;
		width: 100%;
		height: calc(100dvh - var(--hc-nav-height));
		padding: 24px 18px 120px;
		overflow-y: auto;
		background: var(--hc-bg);
	}

	body.admin-bar .hc-primary-nav {
		top: calc(var(--hc-nav-height) + 46px);
	}

	.hc-primary-nav.is-open {
		display: block;
	}

	.hc-primary-nav__list {
		display: block;
		width: min(100%, 760px);
		height: auto;
		margin-inline: auto;
	}

	.hc-primary-nav__list > li {
		display: block;
		height: auto;
		border-bottom: 1px solid var(--hc-border);
	}

	.hc-primary-nav__list > li > a,
	.hc-primary-nav__list > li > .hc-nav-group__toggle {
		position: relative;
		justify-content: space-between;
		width: 100%;
		height: 66px;
		font-size: 19px;
	}

	.hc-primary-nav__list > li > a::after,
	.hc-nav-group__toggle::after {
		display: none;
	}

	.hc-submenu {
		position: static;
		display: none;
		min-width: 0;
		padding: 0 0 14px;
		border: 0;
		border-radius: 0;
		box-shadow: none;
		opacity: 1;
		visibility: visible;
		transform: none;
	}

	.hc-nav-group.is-open .hc-submenu {
		display: block;
	}

	.hc-submenu a {
		padding: 10px 14px;
		font-size: 15px;
	}

	.hc-hero,
	.hc-hero__inner {
		min-height: calc(100dvh - var(--hc-nav-height));
	}

	.hc-hero h1 {
		font-size: clamp(42px, 10vw, 68px);
	}

	.hc-company__grid,
	.hc-editorial__grid,
	.hc-contact__grid {
		grid-template-columns: 1fr;
	}

	.hc-company .hc-section-heading,
	.hc-contact__intro {
		position: static;
	}

	.hc-service-index article {
		grid-template-columns: minmax(160px, 0.7fr) 1.3fr;
	}

	.hc-consulting-item,
	.hc-consulting-item--reverse {
		grid-template-columns: 1fr;
	}

	.hc-consulting-item--reverse .hc-consulting-item__copy {
		order: 0;
	}

	.hc-consulting-item__media {
		height: min(70vw, 560px);
	}

	.hc-work-card,
	.hc-work-card--1,
	.hc-work-card--2,
	.hc-work-card--6,
	.hc-work-card--7,
	.hc-work-card--8 {
		grid-column: span 6;
	}

	.hc-gallery-toolbar {
		align-items: flex-start;
		flex-direction: column;
		gap: 12px;
	}

	.hc-gallery-dialog {
		width: calc(100vw - 24px);
		height: calc(100dvh - 24px);
	}

	.hc-blog-list article {
		grid-template-columns: 90px 1fr;
	}

	.hc-blog-list article > p {
		grid-column: 2;
	}

	.hc-video-grid {
		grid-template-columns: 1fr 1fr;
		grid-template-rows: auto;
	}

	.hc-video-card,
	.hc-video-card--featured {
		grid-row: auto;
		display: block;
	}

	.hc-video-card > div {
		padding-top: 14px;
	}

	.hc-video-card--featured {
		grid-column: 1 / -1;
	}

	.hc-location__grid {
		grid-template-columns: 1fr;
	}

	.hc-location__info {
		display: grid;
		grid-template-columns: repeat(3, 1fr);
		border-top: 0;
	}

	.hc-location__info > div {
		padding: 22px;
		border: 1px solid var(--hc-border);
	}

	.hc-location__info > div + div {
		border-left: 0;
	}

	.hc-quick-banner {
		display: none;
	}

	.hc-mobile-quick {
		position: fixed;
		right: 12px;
		bottom: 12px;
		left: 12px;
		z-index: 110;
		display: grid;
		grid-template-columns: 0.8fr 1fr 1fr;
		overflow: hidden;
		border: 1px solid var(--hc-border);
		border-radius: 14px;
		background: var(--hc-card);
		box-shadow: var(--hc-shadow);
	}

	.hc-mobile-quick a {
		display: flex;
		align-items: center;
		justify-content: center;
		min-height: 54px;
		padding: 8px;
		color: var(--hc-text) !important;
		font-size: 12px;
		font-weight: 760;
		text-align: center;
	}

	.hc-mobile-quick a + a {
		border-left: 1px solid var(--hc-border);
	}

	.hc-mobile-quick a:last-child {
		background: var(--hc-accent);
		color: #f7fbff !important;
	}

	.hc-site-footer {
		padding-bottom: 76px;
	}

	.hc-site-footer__top {
		grid-template-columns: 1fr 1.4fr;
	}

	.hc-site-footer__links {
		grid-column: 1 / -1;
		flex-direction: row;
		flex-wrap: wrap;
	}
}

@media (max-width: 640px) {
	:root {
		--hc-container: calc(100% - 32px);
		--hc-section-space: 68px;
	}

	.hc-work-on-grid,
	.hc-affiliate-grid {
		grid-template-columns: 1fr;
	}

	body.helpcompany-site {
		font-size: 15px;
		word-break: normal;
	}

	.hc-section-heading h1,
	.hc-section-heading h2,
	.hc-contact__intro h2,
	.hc-philosophy__statement h2 {
		font-size: clamp(34px, 10.5vw, 48px);
	}

	.hc-section-heading--with-link {
		align-items: flex-start;
		flex-direction: column;
		gap: 10px;
	}

	.hc-hero__scrim {
		background: linear-gradient(90deg, rgb(6 23 42 / 0.88), rgb(6 23 42 / 0.32)), linear-gradient(0deg, rgb(6 23 42 / 0.52), transparent 55%);
	}

	.hc-hero__inner {
		justify-content: flex-end;
		padding-top: 52px;
		padding-bottom: 112px;
	}

	.hc-hero h1 {
		max-width: 10ch;
		font-size: clamp(40px, 12vw, 56px);
	}

	.hc-hero__content > p:not(.hc-eyebrow) {
		max-width: 26ch;
		font-size: 17px;
	}

	.hc-hero__actions {
		align-items: stretch;
		flex-direction: column;
		width: min(100%, 250px);
	}

	.hc-hero__actions .hc-button {
		width: 100%;
	}

	.hc-slider-controls {
		right: auto;
		bottom: 26px;
		left: 0;
	}

	.hc-service-index article {
		grid-template-columns: 1fr;
		gap: 8px;
	}

	.hc-philosophy__values {
		grid-template-columns: 1fr;
	}

	.hc-philosophy__values > div,
	.hc-philosophy__values > div + div {
		padding: 24px 0;
		border-bottom: 1px solid var(--hc-border);
		border-left: 0;
	}

	.hc-consulting__list {
		gap: 72px;
	}

	.hc-consulting-item {
		gap: 28px;
	}

	.hc-consulting-item__media {
		height: 112vw;
		max-height: 520px;
	}

	.hc-works-grid {
		display: block;
	}

	.hc-gallery-filters {
		display: grid;
		grid-template-columns: repeat(2, minmax(0, 1fr));
		width: 100%;
	}

	.hc-gallery-filters button {
		width: 100%;
	}

	.hc-gallery-dialog__bar {
		min-height: 74px;
		padding: 12px 14px 12px 18px;
	}

	.hc-gallery-dialog__bar h2 {
		max-width: 66vw;
		overflow: hidden;
		text-overflow: ellipsis;
		white-space: nowrap;
	}

	.hc-gallery-dialog__stage {
		height: calc(100% - 74px);
		padding: 12px;
	}

	.hc-work-card + .hc-work-card {
		margin-top: 18px;
	}

	.hc-work-card__body {
		padding-bottom: 24px;
	}

	.hc-editorial__grid {
		gap: 38px;
	}

	.hc-blog-list article {
		display: block;
	}

	.hc-blog-list article > p {
		margin-top: 10px;
	}

	.hc-video-grid {
		grid-template-columns: 1fr;
		gap: 32px;
	}

	.hc-video-card--featured {
		grid-column: auto;
	}

	.hc-location__grid {
		gap: 18px;
	}

	.hc-map,
	.hc-map iframe {
		min-height: 380px;
	}

	.hc-location__info {
		grid-template-columns: 1fr;
	}

	.hc-location__info > div,
	.hc-location__info > div + div {
		padding: 20px 0;
		border: 0;
		border-bottom: 1px solid var(--hc-border);
	}

	.hc-contact__grid {
		gap: 38px;
	}

	.hc-contact-form-wrap {
		padding: 24px 18px;
	}

	.hc-form-row {
		grid-template-columns: 1fr;
	}

	.hc-site-footer__top {
		grid-template-columns: 1fr;
		gap: 28px;
		padding-block: 48px 36px;
	}

	.hc-site-footer__links {
		grid-column: auto;
	}
}

@media (max-width: 960px) {
	.hc-video-track {
		grid-auto-columns: calc((100% - 20px) / 2);
		gap: 20px;
	}

	.hc-columns-page__grid {
		grid-template-columns: 1fr;
	}

	.hc-works-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.hc-work-card,
	.hc-work-card--1,
	.hc-work-card--2,
	.hc-work-card--6,
	.hc-work-card--7,
	.hc-work-card--8 {
		grid-column: auto;
	}

	.hc-detail-intro__grid,
	.hc-consulting-detail__intro {
		grid-template-columns: 1fr;
	}

	.hc-business-cards {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.hc-blog-list article {
		grid-template-columns: minmax(140px, 190px) minmax(0, 1fr);
	}
}

@media (max-width: 640px) {
	.hc-subpage-hero {
		min-height: 300px;
	}

	.hc-subpage-hero h1 {
		font-size: clamp(46px, 16vw, 68px);
	}

	.hc-local-nav .hc-container {
		justify-content: flex-start;
		gap: 26px;
		overflow-x: auto;
		scrollbar-width: none;
	}

	.hc-local-nav a {
		flex: 0 0 auto;
		font-size: 13px;
	}

	.hc-local-nav a::after {
		bottom: -26px;
	}

	.hc-works-grid,
	.hc-business-cards {
		display: grid;
		grid-template-columns: 1fr;
	}

	.hc-home-works-carousel {
		min-width: 0;
		overflow: hidden;
	}

	.hc-home-works-carousel .hc-works-grid {
		display: grid;
		grid-template-columns: none;
		grid-auto-columns: 88%;
		grid-auto-flow: column;
		gap: 16px;
		padding: 2px 0 4px;
		overflow-x: auto;
		overflow-y: hidden;
		overscroll-behavior-inline: contain;
		scroll-snap-type: inline mandatory;
		scrollbar-width: none;
	}

	.hc-home-works-carousel .hc-works-grid::-webkit-scrollbar {
		display: none;
	}

	.hc-home-works-carousel .hc-work-card {
		margin-top: 0;
		scroll-snap-align: start;
		scroll-snap-stop: always;
	}

	.hc-home-works-controls {
		display: flex;
		align-items: center;
		justify-content: flex-end;
		gap: 12px;
		margin-top: 18px;
	}

	.hc-home-works-controls p {
		min-width: 54px;
		margin: 0;
		color: var(--hc-muted);
		font-size: 13px;
		text-align: center;
	}

	.hc-home-works-controls strong {
		color: var(--hc-text);
		font-weight: 800;
	}

	.hc-home-works-controls button {
		display: grid;
		width: 44px;
		height: 44px;
		place-items: center;
		border: 1px solid var(--hc-border);
		border-radius: 50%;
		background: var(--hc-card);
		color: var(--hc-text);
		cursor: pointer;
		transition: border-color 180ms ease, background 180ms ease, color 180ms ease, transform 180ms ease;
	}

	.hc-home-works-controls button:hover,
	.hc-home-works-controls button:focus-visible {
		border-color: var(--hc-accent);
		background: var(--hc-accent);
		color: #f7fbff;
	}

	.hc-home-works-controls button:active {
		transform: scale(0.96);
	}

	.hc-home-works-controls .dashicons {
		width: 20px;
		height: 20px;
		font-size: 20px;
	}

	.hc-business-cards article {
		min-height: 210px;
	}

	.hc-detail-quote h2 {
		font-size: clamp(40px, 13vw, 60px);
	}

	.hc-consulting-detail__intro h2 {
		font-size: 52px;
	}

	.hc-subpage-cta .hc-container {
		align-items: flex-start;
		flex-direction: column;
	}

	.hc-blog-list article {
		display: grid;
		grid-template-columns: 112px minmax(0, 1fr);
		gap: 18px;
	}

	.hc-blog-card__content > p {
		display: none;
	}

	.hc-blog-list h3 {
		font-size: 17px;
	}

	.hc-video-track {
		grid-auto-columns: 86%;
		gap: 16px;
	}

	.hc-video-controls button {
		width: 44px;
		height: 44px;
	}

	.hc-column-card {
		grid-template-columns: 1fr;
		padding: 18px;
	}
}

@media (prefers-reduced-motion: reduce) {
	html {
		scroll-behavior: auto;
	}

	*,
	*::before,
	*::after {
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: 0.01ms !important;
		scroll-behavior: auto !important;
	}

	[data-reveal] {
		opacity: 1;
		transform: none;
	}

	.hc-hero__slide {
		transform: none;
	}
}
