:root {
	--aishop-ink: #1f201e;
	--aishop-charcoal: #2d2e2b;
	--aishop-stone: #686a64;
	--aishop-line: #d9d9d3;
	--aishop-paper: #ffffff;
	--aishop-soft: #f3f3ef;
	--aishop-warm: #9a7a47;
	--aishop-warm-light: #d8c8ad;
	--aishop-success: #315f48;
	--aishop-container: 1240px;
	--aishop-header-height: 86px;
}

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

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	color: var(--aishop-ink);
	background: var(--aishop-paper);
	font-family: Arial, Helvetica, sans-serif;
	font-size: 16px;
	line-height: 1.65;
	letter-spacing: 0;
	-webkit-font-smoothing: antialiased;
}

body.menu-open {
	overflow: hidden;
}

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

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

a:hover,
a:focus {
	color: var(--aishop-warm);
}

button,
input,
select,
textarea {
	font: inherit;
}

.aishop-container {
	width: min(calc(100% - 64px), var(--aishop-container));
	margin-right: auto;
	margin-left: auto;
}

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

.aishop-skip-link:focus {
	top: 12px;
	left: 12px;
	z-index: 100000;
	width: auto;
	height: auto;
	margin: 0;
	clip: auto;
	padding: 10px 14px;
	color: #ffffff;
	background: var(--aishop-ink);
}

.aishop-site-header {
	position: sticky;
	top: 0;
	z-index: 1000;
	border-bottom: 1px solid rgba(31, 32, 30, 0.12);
	background: rgba(255, 255, 255, 0.98);
}

.aishop-site-header.is-scrolled {
	box-shadow: 0 10px 32px rgba(31, 32, 30, 0.08);
}

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

.aishop-header-utility {
	color: #ffffff;
	background: var(--aishop-ink);
	font-size: 12px;
}

.aishop-header-utility-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	min-height: 34px;
}

.aishop-utility-links {
	display: flex;
	gap: 24px;
	color: #d4d5d0;
}

.aishop-header-main {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 28px;
	min-height: var(--aishop-header-height);
}

.aishop-brand {
	flex: 0 0 auto;
}

.aishop-brand-link {
	display: flex;
	flex-direction: column;
	color: var(--aishop-ink);
	line-height: 1;
}

.aishop-brand-link strong {
	font-family: Georgia, 'Times New Roman', serif;
	font-size: 28px;
	font-weight: 500;
	letter-spacing: 0;
}

.aishop-brand-link span {
	margin-top: 8px;
	color: var(--aishop-stone);
	font-size: 10px;
	font-weight: 700;
	text-transform: uppercase;
}

.custom-logo-link img {
	width: auto;
	max-height: 56px;
}

.aishop-brand-logo {
	display: block;
	width: auto;
	max-width: 220px;
	height: 56px;
	object-fit: contain;
}

.aishop-brand-link-footer {
	display: inline-flex;
}

.aishop-brand-link-footer .aishop-brand-logo {
	max-width: 160px;
	height: 84px;
}

.aishop-primary-navigation {
	display: flex;
	align-items: center;
	gap: 22px;
}

.aishop-primary-menu {
	display: flex;
	align-items: center;
	gap: 22px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.aishop-primary-menu li {
	position: relative;
}

.aishop-primary-menu a {
	display: block;
	padding: 10px 0;
	color: var(--aishop-charcoal);
	font-size: 13px;
	font-weight: 700;
}

.aishop-primary-menu .current-menu-item > a,
.aishop-primary-menu .current_page_item > a {
	color: var(--aishop-warm);
}

.aishop-primary-menu .sub-menu {
	position: absolute;
	top: 100%;
	left: -18px;
	min-width: 230px;
	margin: 0;
	border: 1px solid var(--aishop-line);
	padding: 10px 18px;
	list-style: none;
	background: #ffffff;
	box-shadow: 0 18px 48px rgba(31, 32, 30, 0.12);
	opacity: 0;
	visibility: hidden;
	transform: translateY(8px);
	transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
}

.aishop-primary-menu li:hover > .sub-menu,
.aishop-primary-menu li:focus-within > .sub-menu {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.aishop-header-tools,
.aishop-social-icons {
	display: flex;
	align-items: center;
}

.aishop-header-tools {
	gap: 8px;
	border-left: 1px solid var(--aishop-line);
	padding-left: 18px;
}

.aishop-social-icons {
	gap: 6px;
}

.aishop-social-icons a,
.aishop-icon-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	border: 1px solid transparent;
	border-radius: 4px;
	color: var(--aishop-charcoal);
	background: transparent;
	cursor: pointer;
	transition: color 180ms ease, background-color 180ms ease, transform 180ms ease;
}

.aishop-social-icons a:hover,
.aishop-social-icons a:focus,
.aishop-icon-button:hover,
.aishop-icon-button:focus {
	color: var(--aishop-warm);
	background: var(--aishop-soft);
	outline: 0;
	transform: translateY(-1px);
}

.aishop-social-icons svg,
.aishop-icon-button svg {
	width: 18px;
	height: 18px;
	fill: none;
	stroke: currentColor;
	stroke-width: 1.8;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.aishop-social-icons .aishop-icon-fill {
	fill: currentColor;
	stroke: none;
}

.aishop-language-switcher {
	position: relative;
}

.aishop-language-toggle {
	width: auto;
	gap: 7px;
	padding: 0 9px;
	font-size: 11px;
	font-weight: 800;
}

.aishop-language-menu {
	position: absolute;
	top: calc(100% + 12px);
	right: 0;
	z-index: 30;
	width: 250px;
	border: 1px solid var(--aishop-line);
	border-radius: 4px;
	padding: 8px;
	background: #ffffff;
	box-shadow: 0 22px 58px rgba(31, 32, 30, 0.16);
}

.aishop-language-menu[hidden],
.aishop-search-panel[hidden] {
	display: none !important;
}

.aishop-language-menu ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

.aishop-language-menu a {
	display: flex;
	align-items: center;
	justify-content: space-between;
	min-height: 40px;
	border-radius: 3px;
	padding: 8px 11px;
	color: var(--aishop-charcoal);
	font-size: 13px;
}

.aishop-language-menu a:hover,
.aishop-language-menu a:focus {
	color: var(--aishop-ink);
	background: var(--aishop-soft);
	outline: 0;
}

.aishop-language-menu a[aria-current="page"] {
	color: var(--aishop-warm);
	background: var(--aishop-soft);
}

.aishop-language-menu small {
	color: var(--aishop-stone);
	font-size: 10px;
	font-weight: 800;
}

.aishop-search-panel {
	position: absolute;
	top: calc(100% - 1px);
	right: 0;
	z-index: 25;
	width: min(620px, 100%);
	border: 1px solid var(--aishop-line);
	border-radius: 4px;
	padding: 18px;
	background: #ffffff;
	box-shadow: 0 22px 58px rgba(31, 32, 30, 0.16);
}

.aishop-search-form {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto auto;
	gap: 10px;
}

.aishop-search-form input {
	width: 100%;
	min-width: 0;
	height: 46px;
	border: 1px solid var(--aishop-line);
	border-radius: 3px;
	padding: 0 14px;
	font: inherit;
}

.aishop-search-form input:focus {
	border-color: var(--aishop-warm);
	outline: 2px solid rgba(154, 122, 71, 0.16);
}

.aishop-search-submit {
	min-height: 46px;
	border: 1px solid var(--aishop-ink);
	border-radius: 3px;
	padding: 0 22px;
	color: #ffffff;
	background: var(--aishop-ink);
	font-weight: 700;
	cursor: pointer;
}

.aishop-search-close {
	width: 46px;
	height: 46px;
	border-color: var(--aishop-line);
}

.aishop-menu-toggle {
	display: none;
	width: 42px;
	height: 42px;
	border: 1px solid var(--aishop-line);
	border-radius: 4px;
	padding: 10px;
	background: #ffffff;
	cursor: pointer;
}

.aishop-menu-toggle > span:not(.screen-reader-text) {
	display: block;
	width: 20px;
	height: 2px;
	margin: 4px 0;
	background: var(--aishop-ink);
	transition: transform 180ms ease, opacity 180ms ease;
}

.aishop-menu-toggle[aria-expanded='true'] > span:nth-child(1) {
	transform: translateY(6px) rotate(45deg);
}

.aishop-menu-toggle[aria-expanded='true'] > span:nth-child(2) {
	opacity: 0;
}

.aishop-menu-toggle[aria-expanded='true'] > span:nth-child(3) {
	transform: translateY(-6px) rotate(-45deg);
}

.aishop-hero {
	position: relative;
	display: flex;
	align-items: flex-end;
	height: calc(100svh - 150px);
	min-height: 600px;
	max-height: 760px;
	overflow: hidden;
	color: #ffffff;
	background: var(--aishop-charcoal);
}

.aishop-hero-compact {
	height: 520px;
	min-height: 520px;
	max-height: 520px;
}

.aishop-hero-image,
.aishop-hero-overlay {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
}

.aishop-hero-image {
	object-fit: cover;
}

.aishop-hero-overlay {
	background: rgba(20, 21, 19, 0.46);
}

.aishop-hero-inner {
	position: relative;
	z-index: 1;
	padding-top: 72px;
	padding-bottom: 72px;
}

.aishop-hero-inner h1 {
	max-width: 900px;
	margin: 14px 0 0;
	font-family: Georgia, 'Times New Roman', serif;
	font-size: 64px;
	font-weight: 500;
	line-height: 1.05;
	letter-spacing: 0;
}

.aishop-hero-compact .aishop-hero-inner h1 {
	max-width: 820px;
	font-size: 52px;
}

.aishop-hero-description {
	max-width: 720px;
	margin: 24px 0 0;
	color: rgba(255, 255, 255, 0.88);
	font-size: 18px;
	line-height: 1.65;
}

.aishop-hero-compact {
	align-items: center;
	height: 320px;
	min-height: 320px;
	max-height: 320px;
}

.aishop-hero-compact .aishop-hero-inner {
	padding-top: 36px;
	padding-bottom: 36px;
}

.aishop-hero-compact .aishop-hero-inner h1 {
	font-size: clamp(34px, 4vw, 52px);
}

.aishop-eyebrow {
	margin: 0;
	color: var(--aishop-warm);
	font-size: 12px;
	font-weight: 700;
	text-transform: uppercase;
}

.aishop-hero .aishop-eyebrow,
.aishop-cta-band .aishop-eyebrow {
	color: var(--aishop-warm-light);
}

.aishop-button-row {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: 32px;
}

.aishop-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 48px;
	border: 1px solid transparent;
	border-radius: 4px;
	padding: 12px 20px;
	font-size: 13px;
	font-weight: 700;
	transition: color 180ms ease, background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.aishop-button:hover,
.aishop-button:focus {
	transform: translateY(-1px);
}

.aishop-button-light {
	color: var(--aishop-ink);
	background: #ffffff;
}

.aishop-button-light:hover,
.aishop-button-light:focus {
	color: #ffffff;
	background: var(--aishop-warm);
}

.aishop-button-outline-light {
	border-color: rgba(255, 255, 255, 0.72);
	color: #ffffff;
	background: rgba(255, 255, 255, 0.02);
}

.aishop-button-outline-light:hover,
.aishop-button-outline-light:focus {
	border-color: #ffffff;
	color: var(--aishop-ink);
	background: #ffffff;
}

.aishop-button-dark {
	color: #ffffff;
	background: var(--aishop-ink);
}

.aishop-button-dark:hover,
.aishop-button-dark:focus {
	color: #ffffff;
	background: var(--aishop-warm);
}

.aishop-site-main {
	overflow: hidden;
}

.aishop-section {
	padding: 104px 0;
}

.aishop-section:nth-child(even) {
	background: var(--aishop-soft);
}

.aishop-section-heading {
	max-width: 760px;
	margin-bottom: 48px;
}

.aishop-section-heading h2,
.aishop-split-heading h2,
.aishop-media-copy h2,
.aishop-cta-inner h2,
.aishop-inquiry-intro h2 {
	margin: 12px 0 0;
	font-family: Georgia, 'Times New Roman', serif;
	font-size: 44px;
	font-weight: 500;
	line-height: 1.14;
	letter-spacing: 0;
}

.aishop-section-heading > p:last-child,
.aishop-split-heading > p,
.aishop-media-copy > p,
.aishop-inquiry-intro > p:last-child {
	margin: 20px 0 0;
	color: var(--aishop-stone);
	font-size: 17px;
}

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

.aishop-service-card {
	border-bottom: 1px solid var(--aishop-line);
	padding-bottom: 28px;
}

.aishop-service-image-link {
	display: block;
	overflow: hidden;
	background: #deded8;
}

.aishop-service-card img {
	width: 100%;
	height: 330px;
	object-fit: cover;
	transition: transform 500ms ease;
}

.aishop-service-card:hover img {
	transform: scale(1.025);
}

.aishop-service-content {
	display: grid;
	grid-template-columns: 44px minmax(0, 1fr);
	gap: 0 16px;
	padding-top: 22px;
}

.aishop-service-content > span {
	grid-row: 1 / span 2;
	color: var(--aishop-warm);
	font-size: 12px;
	font-weight: 700;
}

.aishop-service-content h3 {
	margin: 0;
	font-size: 21px;
	line-height: 1.35;
	letter-spacing: 0;
}

.aishop-service-content p {
	margin: 12px 0 0;
	color: var(--aishop-stone);
}

.aishop-trust-section {
	color: #ffffff;
	background: var(--aishop-charcoal) !important;
}

.aishop-trust-section .aishop-eyebrow {
	color: var(--aishop-warm-light);
}

.aishop-split-heading {
	display: grid;
	grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
	gap: 80px;
	align-items: end;
}

.aishop-split-heading > p {
	color: #c9cac5;
}

.aishop-value-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	margin-top: 64px;
	border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.aishop-home-benefits {
	grid-template-columns: repeat(5, minmax(0, 1fr));
}

.aishop-home-benefits article {
	padding-right: 20px;
}

.aishop-home-benefits article + article {
	padding-left: 20px;
}

.aishop-value-grid article {
	min-height: 250px;
	border-right: 1px solid rgba(255, 255, 255, 0.18);
	padding: 28px 26px 0 0;
}

.aishop-value-grid article + article {
	padding-left: 26px;
}

.aishop-value-grid article:last-child {
	border-right: 0;
}

.aishop-value-grid strong,
.aishop-about-grid article > span {
	color: var(--aishop-warm-light);
	font-size: 12px;
}

.aishop-value-grid h3 {
	margin: 46px 0 0;
	font-size: 20px;
	letter-spacing: 0;
}

.aishop-value-grid p {
	margin: 14px 0 0;
	color: #c9cac5;
}

.aishop-process-section {
	background: var(--aishop-soft);
}

.aishop-process-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	border-top: 1px solid var(--aishop-line);
	border-left: 1px solid var(--aishop-line);
}

.aishop-process-step {
	min-height: 250px;
	border-right: 1px solid var(--aishop-line);
	border-bottom: 1px solid var(--aishop-line);
	padding: 28px;
	background: rgba(255, 255, 255, 0.6);
}

.aishop-process-step > span {
	color: var(--aishop-warm);
	font-size: 12px;
	font-weight: 700;
}

.aishop-process-step h3 {
	margin: 46px 0 0;
	font-size: 18px;
	line-height: 1.35;
	letter-spacing: 0;
}

.aishop-process-step p {
	margin: 14px 0 0;
	color: var(--aishop-stone);
	font-size: 14px;
}

.aishop-media-split {
	display: grid;
	grid-template-columns: minmax(0, 1.15fr) minmax(360px, 0.85fr);
	gap: 72px;
	align-items: center;
}

.aishop-media-frame {
	overflow: hidden;
	background: var(--aishop-soft);
}

.aishop-media-frame img {
	width: 100%;
	min-height: 520px;
	object-fit: cover;
}

.aishop-check-list {
	margin: 30px 0;
	padding: 0;
	list-style: none;
}

.aishop-check-list li {
	border-top: 1px solid var(--aishop-line);
	padding: 13px 0;
	font-size: 14px;
	font-weight: 700;
}

.aishop-check-list li:last-child {
	border-bottom: 1px solid var(--aishop-line);
}

.aishop-text-link {
	display: inline-block;
	border-bottom: 1px solid var(--aishop-ink);
	padding-bottom: 5px;
	font-size: 13px;
	font-weight: 700;
}

.aishop-cta-band {
	padding: 76px 0;
	color: #ffffff;
	background: var(--aishop-ink);
}

.aishop-cta-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 64px;
}

.aishop-cta-inner > div {
	max-width: 760px;
}

.aishop-cta-inner h2 {
	font-size: 40px;
}

.aishop-cta-inner p:last-child {
	margin: 16px 0 0;
	color: #c9cac5;
}

.aishop-cta-inner > .aishop-button-row {
	justify-content: flex-end;
	margin-top: 0;
}

.aishop-consult-band {
	padding: 34px 0;
	background: var(--aishop-warm-light);
}

.aishop-consult-band .aishop-container {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 28px;
}

.aishop-consult-band p {
	margin: 0;
	font-family: Georgia, 'Times New Roman', serif;
	font-size: 24px;
}

.aishop-page-intro {
	border-bottom: 1px solid var(--aishop-line);
	padding: 92px 0 64px;
	background: var(--aishop-soft);
}

.aishop-page-intro h1 {
	max-width: 900px;
	margin: 12px 0 0;
	font-family: Georgia, 'Times New Roman', serif;
	font-size: 54px;
	font-weight: 500;
	line-height: 1.1;
	letter-spacing: 0;
}

.aishop-contact-layout {
	display: grid;
	grid-template-columns: minmax(300px, 0.75fr) minmax(0, 1.25fr);
	gap: 68px;
	align-items: start;
}

.aishop-contact-layout .aishop-section-heading {
	position: sticky;
	top: 130px;
	margin: 0;
}

.aishop-contact-layout .aishop-button {
	margin-top: 28px;
}

.aishop-shortcode-area {
	min-width: 0;
}

.aishop-questionnaire-area {
	margin-top: 42px;
}

.aishop-inquiry-intro {
	max-width: 850px;
	margin-bottom: 42px;
}

.aishop-about-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	border-top: 1px solid var(--aishop-line);
	border-left: 1px solid var(--aishop-line);
}

.aishop-about-grid article {
	min-height: 340px;
	border-right: 1px solid var(--aishop-line);
	border-bottom: 1px solid var(--aishop-line);
	padding: 42px;
}

.aishop-about-grid h2 {
	margin: 74px 0 0;
	font-family: Georgia, 'Times New Roman', serif;
	font-size: 30px;
	font-weight: 500;
	line-height: 1.2;
	letter-spacing: 0;
}

.aishop-about-grid p {
	margin: 18px 0 0;
	color: var(--aishop-stone);
}

.aishop-post-list {
	max-width: 880px;
}

.aishop-post-row {
	border-top: 1px solid var(--aishop-line);
	padding: 32px 0;
}

.aishop-post-row > p:first-child {
	margin: 0;
	color: var(--aishop-warm);
	font-size: 12px;
	font-weight: 700;
}

.aishop-post-row h2 {
	margin: 8px 0 0;
	font-family: Georgia, 'Times New Roman', serif;
	font-size: 30px;
	font-weight: 500;
	letter-spacing: 0;
}

.aishop-post-row > p:last-child {
	color: var(--aishop-stone);
}

.aishop-search-page .search-form {
	display: flex;
	max-width: 680px;
	margin-top: 30px;
}

.aishop-search-page .search-field {
	min-width: 0;
	flex: 1;
	border: 1px solid var(--aishop-line);
	border-radius: 4px 0 0 4px;
	padding: 12px 14px;
}

.aishop-search-page .search-submit {
	border: 1px solid var(--aishop-ink);
	border-radius: 0 4px 4px 0;
	padding: 12px 18px;
	color: #ffffff;
	background: var(--aishop-ink);
	cursor: pointer;
}

.aishop-entry-content {
	max-width: 880px;
}

.aishop-entry-content > *:first-child {
	margin-top: 0;
}

.aishop-home-projects,
.aishop-project-gallery-section,
.aishop-project-scope-section {
	background: var(--aishop-soft);
}

.aishop-estimator-section {
	background: var(--aishop-soft);
}

.aishop-project-theme-empty {
	margin: 0;
	border-left: 3px solid var(--aishop-warm);
	padding: 18px 20px;
	color: var(--aishop-stone);
	background: #ffffff;
}

.aishop-project-theme-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 24px;
}

.aishop-project-single-hero {
	position: relative;
	display: flex;
	align-items: flex-end;
	height: 680px;
	overflow: hidden;
	color: #ffffff;
	background: var(--aishop-charcoal);
}

.aishop-project-single-hero > img,
.aishop-project-single-overlay {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
}

.aishop-project-single-hero > img {
	object-fit: cover;
}

.aishop-project-single-overlay {
	background: linear-gradient(to top, rgba(18, 19, 17, 0.72), rgba(18, 19, 17, 0.08) 68%);
}

.aishop-project-single-heading {
	position: relative;
	z-index: 1;
	padding-bottom: 72px;
}

.aishop-project-single-heading .aishop-eyebrow {
	color: var(--aishop-warm-light);
}

.aishop-project-single-heading h1 {
	max-width: 960px;
	margin: 14px 0 0;
	font-family: Georgia, 'Times New Roman', serif;
	font-size: 64px;
	font-weight: 500;
	line-height: 1.05;
}

.aishop-project-facts {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	margin: 0;
	border-top: 1px solid var(--aishop-line);
	border-left: 1px solid var(--aishop-line);
}

.aishop-project-facts > div {
	min-height: 122px;
	border-right: 1px solid var(--aishop-line);
	border-bottom: 1px solid var(--aishop-line);
	padding: 24px;
}

.aishop-project-facts dt {
	color: var(--aishop-stone);
	font-size: 11px;
	font-weight: 700;
	text-transform: uppercase;
}

.aishop-project-facts dd {
	margin: 12px 0 0;
	font-size: 16px;
	font-weight: 700;
}

.aishop-project-story {
	display: grid;
	grid-template-columns: minmax(0, 1.3fr) minmax(280px, 0.7fr);
	gap: 72px;
	align-items: start;
	margin-top: 72px;
}

.aishop-project-story .aishop-entry-content {
	max-width: none;
	font-family: Georgia, 'Times New Roman', serif;
	font-size: 21px;
	line-height: 1.8;
}

.aishop-project-consult {
	position: sticky;
	top: 148px;
	border-top: 2px solid var(--aishop-ink);
	padding-top: 24px;
}

.aishop-project-consult h2 {
	margin: 12px 0 24px;
	font-family: Georgia, 'Times New Roman', serif;
	font-size: 30px;
	font-weight: 500;
	line-height: 1.2;
}

.aishop-project-gallery {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 24px;
}

.aishop-project-gallery a {
	display: block;
	overflow: hidden;
	background: #e3e3dd;
}

.aishop-project-gallery img {
	width: 100%;
	aspect-ratio: 4 / 3;
	height: auto;
	object-fit: cover;
	transition: transform 500ms ease;
}

.aishop-project-gallery a:hover img,
.aishop-project-gallery a:focus img {
	transform: scale(1.02);
}

.aishop-project-media-narrow {
	max-width: 1040px;
}

.aishop-project-video {
	overflow: hidden;
	background: #10110f;
}

.aishop-project-video iframe,
.aishop-project-video video {
	display: block;
	width: 100%;
	aspect-ratio: 16 / 9;
	height: auto;
	border: 0;
}

.aishop-project-scope-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	border-top: 1px solid var(--aishop-line);
	border-left: 1px solid var(--aishop-line);
}

.aishop-project-scope-grid article {
	min-height: 330px;
	border-right: 1px solid var(--aishop-line);
	border-bottom: 1px solid var(--aishop-line);
	padding: 34px;
	background: rgba(255, 255, 255, 0.62);
}

.aishop-project-scope-grid article > span {
	color: var(--aishop-warm);
	font-size: 12px;
	font-weight: 700;
}

.aishop-project-scope-grid h3 {
	margin: 54px 0 0;
	font-size: 20px;
}

.aishop-project-scope-grid p {
	margin: 18px 0 0;
	color: var(--aishop-stone);
}

.aishop-project-cta {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 48px;
}

.aishop-project-cta h2 {
	margin: 12px 0 0;
	font-family: Georgia, 'Times New Roman', serif;
	font-size: 42px;
	font-weight: 500;
}

.aishop-project-cta .aishop-button-row {
	margin-top: 0;
}

.aishop-project-product-section {
	padding-top: 56px;
	background: #ffffff;
}

.aishop-project-product-layout {
	display: grid;
	grid-template-columns: minmax(0, 3fr) minmax(340px, 2fr);
	gap: clamp(40px, 5vw, 82px);
	align-items: start;
}

.aishop-project-media-gallery {
	min-width: 0;
}

.aishop-project-media-stage {
	position: relative;
	aspect-ratio: 16 / 9;
	overflow: hidden;
	border: 1px solid rgba(31, 32, 30, 0.14);
	border-radius: 6px;
	background: #171816;
	box-shadow: 0 26px 70px rgba(26, 27, 24, 0.12);
}

.aishop-project-media-slide,
.aishop-project-media-canvas,
.aishop-project-image-open {
	width: 100%;
	height: 100%;
}

.aishop-project-media-slide[hidden],
.aishop-project-lightbox[hidden] {
	display: none !important;
}

.aishop-project-image-open {
	display: block;
	border: 0;
	padding: 0;
	background: transparent;
	cursor: zoom-in;
}

.aishop-project-media-canvas img,
.aishop-project-media-canvas video,
.aishop-project-media-canvas iframe {
	display: block;
	width: 100%;
	height: 100%;
	border: 0;
	object-fit: contain;
	background: #171816;
}

.aishop-project-expand {
	position: absolute;
	top: 16px;
	right: 16px;
	z-index: 2;
	border: 1px solid rgba(255, 255, 255, 0.46);
	border-radius: 4px;
	padding: 9px 12px;
	color: #ffffff;
	font-size: 12px;
	font-weight: 700;
	background: rgba(20, 21, 19, 0.72);
	backdrop-filter: blur(12px);
	cursor: zoom-in;
}

.aishop-project-media-nav {
	position: absolute;
	top: 50%;
	z-index: 3;
	border: 1px solid rgba(255, 255, 255, 0.42);
	border-radius: 4px;
	padding: 10px 13px;
	color: #ffffff;
	font-size: 11px;
	font-weight: 700;
	background: rgba(20, 21, 19, 0.68);
	transform: translateY(-50%);
	cursor: pointer;
}

.aishop-project-media-prev {
	left: 16px;
}

.aishop-project-media-next {
	right: 16px;
}

.aishop-project-media-thumbnails {
	display: flex;
	gap: 12px;
	margin-top: 14px;
	padding: 2px 2px 8px;
	overflow-x: auto;
	scrollbar-width: thin;
}

.aishop-project-media-thumb {
	position: relative;
	flex: 0 0 104px;
	width: 104px;
	height: 72px;
	overflow: hidden;
	border: 1px solid var(--aishop-line);
	border-radius: 4px;
	padding: 0;
	color: #ffffff;
	background: #242520;
	cursor: pointer;
	opacity: 0.66;
	transition: opacity 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.aishop-project-media-thumb:hover,
.aishop-project-media-thumb:focus-visible,
.aishop-project-media-thumb.is-active {
	border-color: var(--aishop-warm);
	opacity: 1;
	transform: translateY(-2px);
}

.aishop-project-media-thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.aishop-project-media-thumb span {
	position: absolute;
	inset: auto 7px 7px;
	border-radius: 3px;
	padding: 4px 7px;
	font-size: 10px;
	font-weight: 800;
	background: rgba(18, 19, 17, 0.82);
}

.aishop-project-media-empty {
	display: grid;
	align-content: center;
	justify-items: center;
	width: 100%;
	height: 100%;
	padding: 36px;
	text-align: center;
	background: linear-gradient(145deg, #20211e, #373832);
}

.aishop-project-media-empty span {
	color: var(--aishop-warm-light);
	font-size: 12px;
	font-weight: 800;
	text-transform: uppercase;
}

.aishop-project-media-empty p {
	margin: 14px 0 0;
	color: rgba(255, 255, 255, 0.78);
}

.aishop-project-product-info {
	position: sticky;
	top: 138px;
	min-width: 0;
}

.aishop-project-product-info h1 {
	margin: 14px 0 30px;
	font-family: Georgia, 'Times New Roman', serif;
	font-size: clamp(38px, 4vw, 58px);
	font-weight: 500;
	line-height: 1.04;
}

.aishop-project-product-facts {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	margin: 0;
	border-top: 1px solid var(--aishop-line);
}

.aishop-project-product-facts > div {
	border-bottom: 1px solid var(--aishop-line);
	padding: 15px 14px 15px 0;
}

.aishop-project-product-facts dt {
	color: var(--aishop-stone);
	font-size: 10px;
	font-weight: 800;
	text-transform: uppercase;
}

.aishop-project-product-facts dd {
	margin: 7px 0 0;
	font-size: 14px;
	font-weight: 700;
	line-height: 1.4;
}

.aishop-project-contact-panel {
	margin-top: 34px;
	border-top: 2px solid var(--aishop-ink);
	padding-top: 24px;
}

.aishop-project-contact-panel h2 {
	margin: 0;
	font-family: Georgia, 'Times New Roman', serif;
	font-size: 28px;
	font-weight: 500;
	line-height: 1.2;
}

.aishop-project-contact-actions {
	display: grid;
	gap: 10px;
	margin-top: 22px;
}

.aishop-project-contact-actions .aishop-button {
	justify-content: center;
	width: 100%;
}

.aishop-project-contact-actions .aishop-button-outline {
	border-color: var(--aishop-ink);
	color: var(--aishop-ink);
	background: transparent;
}

.aishop-project-contact-actions .aishop-button-outline:hover,
.aishop-project-contact-actions .aishop-button-outline:focus {
	border-color: var(--aishop-warm);
	color: #ffffff;
	background: var(--aishop-warm);
}

.aishop-project-details-section {
	background: var(--aishop-soft);
}

.aishop-project-details-layout {
	display: grid;
	grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
	gap: clamp(48px, 7vw, 100px);
	align-items: start;
}

.aishop-project-overview-copy .aishop-entry-content {
	max-width: 760px;
	font-family: Georgia, 'Times New Roman', serif;
	font-size: 20px;
	line-height: 1.8;
}

.aishop-project-scope-list {
	border-top: 1px solid var(--aishop-line);
}

.aishop-project-scope-list article {
	border-bottom: 1px solid var(--aishop-line);
	padding: 26px 0;
}

.aishop-project-scope-list h2 {
	margin: 0;
	font-size: 18px;
}

.aishop-project-scope-list p {
	margin: 12px 0 0;
	color: var(--aishop-stone);
}

body.project-lightbox-open {
	overflow: hidden;
}

.aishop-project-lightbox {
	position: fixed;
	inset: 0;
	z-index: 100000;
	display: grid;
	place-items: center;
	padding: 30px;
}

.aishop-project-lightbox-backdrop {
	position: absolute;
	inset: 0;
	background: rgba(10, 11, 10, 0.94);
}

.aishop-project-lightbox-dialog {
	position: relative;
	z-index: 1;
	display: grid;
	place-items: center;
	width: min(94vw, 1500px);
	height: min(90vh, 940px);
}

.aishop-project-lightbox-content {
	display: grid;
	place-items: center;
	width: 100%;
	height: 100%;
}

.aishop-project-lightbox-content img,
.aishop-project-lightbox-content video,
.aishop-project-lightbox-content iframe {
	display: block;
	max-width: 100%;
	max-height: 82vh;
	width: auto;
	height: auto;
	border: 0;
	object-fit: contain;
}

.aishop-project-lightbox-content video,
.aishop-project-lightbox-content iframe {
	width: min(90vw, 1400px);
	aspect-ratio: 16 / 9;
}

.aishop-project-lightbox-close,
.aishop-project-lightbox-nav {
	position: absolute;
	z-index: 2;
	border: 1px solid rgba(255, 255, 255, 0.46);
	border-radius: 4px;
	padding: 10px 13px;
	color: #ffffff;
	font-size: 12px;
	font-weight: 700;
	background: rgba(26, 27, 24, 0.74);
	cursor: pointer;
}

.aishop-project-lightbox-close {
	top: 0;
	right: 0;
}

.aishop-project-lightbox-nav {
	top: 50%;
	transform: translateY(-50%);
}

.aishop-project-lightbox-prev {
	left: 0;
}

.aishop-project-lightbox-next {
	right: 0;
}

.aishop-site-footer {
	padding: 76px 0 24px;
	color: #ffffff;
	background: #171816;
}

.aishop-footer-grid {
	display: grid;
	grid-template-columns: minmax(0, 1.25fr) repeat(3, minmax(180px, 0.65fr));
	gap: 52px;
}

.aishop-footer-brand strong {
	font-family: Georgia, 'Times New Roman', serif;
	font-size: 28px;
	font-weight: 500;
}

.aishop-footer-brand p {
	max-width: 480px;
	margin: 18px 0 0;
	color: #bfc0bb;
}

.aishop-site-footer h2 {
	margin: 0 0 18px;
	font-size: 13px;
	text-transform: uppercase;
	letter-spacing: 0;
}

.aishop-site-footer ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

.aishop-site-footer li {
	margin: 9px 0;
	color: #bfc0bb;
	font-size: 13px;
}

.aishop-footer-contact-list li {
	line-height: 1.55;
}

.aishop-footer-social {
	flex-wrap: wrap;
	margin-top: 22px;
}

.aishop-footer-social a {
	border-color: rgba(255, 255, 255, 0.16);
	color: #d8d9d4;
}

.aishop-footer-social a:hover,
.aishop-footer-social a:focus {
	color: #ffffff;
	background: rgba(255, 255, 255, 0.1);
}

.aishop-footer-bottom {
	display: flex;
	justify-content: space-between;
	gap: 24px;
	margin-top: 62px;
	border-top: 1px solid rgba(255, 255, 255, 0.14);
	padding-top: 22px;
	color: #92948e;
	font-size: 12px;
}

.aishop-footer-bottom p {
	margin: 0;
}

.aishop-footer-bottom-links {
	display: flex;
	flex-wrap: wrap;
	gap: 18px;
}

.aishop-footer-bottom-links a {
	color: #bfc0bb;
}

.aishop-footer-bottom-links a:hover,
.aishop-footer-bottom-links a:focus {
	color: #ffffff;
}

.aishop-js [data-aishop-reveal] {
	opacity: 0;
	transform: translateY(18px);
	transition: opacity 500ms ease, transform 500ms ease;
}

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

@media (max-width: 1120px) {
	.aishop-primary-menu,
	.aishop-primary-navigation {
		gap: 15px;
	}

	.aishop-primary-menu a {
		font-size: 12px;
	}

	.aishop-header-tools {
		gap: 4px;
		padding-left: 12px;
	}

	.aishop-header-social {
		gap: 2px;
	}

	.aishop-header-social a {
		width: 32px;
		height: 32px;
	}

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

	.aishop-value-grid article:nth-child(even) {
		border-right: 0;
	}

	.aishop-value-grid article:nth-child(n + 3) {
		border-top: 1px solid rgba(255, 255, 255, 0.18);
	}

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

	.aishop-project-theme-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 960px) {
	:root {
		--aishop-header-height: 74px;
	}

	.aishop-header-utility {
		display: none;
	}

	.aishop-menu-toggle {
		display: block;
	}

	.aishop-primary-navigation {
		position: fixed;
		top: var(--aishop-header-height);
		right: 0;
		bottom: 0;
		left: 0;
		display: block;
		padding: 24px 32px 48px;
		overflow: auto;
		background: #ffffff;
		opacity: 0;
		visibility: hidden;
		transform: translateY(-10px);
		transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
	}

	.admin-bar .aishop-primary-navigation {
		top: calc(var(--aishop-header-height) + 32px);
	}

	.aishop-primary-navigation.is-open {
		opacity: 1;
		visibility: visible;
		transform: translateY(0);
	}

	.aishop-project-story,
	.aishop-project-scope-grid {
		grid-template-columns: 1fr;
	}

	.aishop-project-consult {
		position: static;
	}

	.aishop-project-scope-grid article {
		min-height: 0;
	}

	.aishop-project-cta .aishop-container {
		align-items: flex-start;
		flex-direction: column;
	}

	.aishop-primary-menu {
		display: block;
	}

	.aishop-primary-menu a {
		border-bottom: 1px solid var(--aishop-line);
		padding: 15px 0;
		font-size: 16px;
	}

	.aishop-header-tools {
		justify-content: flex-start;
		flex-wrap: wrap;
		gap: 10px;
		margin-top: 24px;
		border-top: 1px solid var(--aishop-line);
		border-left: 0;
		padding: 20px 0 0;
	}

	.aishop-header-social {
		margin-right: auto;
	}

	.aishop-language-menu {
		right: 0;
		width: min(250px, calc(100vw - 64px));
	}

	.aishop-search-panel {
		position: fixed;
		top: calc(var(--aishop-header-height) + 12px);
		right: 18px;
		left: 18px;
		width: auto;
	}

	.admin-bar .aishop-search-panel {
		top: calc(var(--aishop-header-height) + 44px);
	}

	.aishop-primary-menu .sub-menu {
		position: static;
		min-width: 0;
		border: 0;
		padding: 0 0 0 18px;
		box-shadow: none;
		opacity: 1;
		visibility: visible;
		transform: none;
	}

	.aishop-hero-inner h1 {
		font-size: 50px;
	}

	.aishop-hero-compact .aishop-hero-inner h1 {
		font-size: 44px;
	}

	.aishop-service-card img {
		height: 280px;
	}

	.aishop-split-heading,
	.aishop-media-split,
	.aishop-contact-layout {
		grid-template-columns: 1fr;
		gap: 48px;
	}

	.aishop-contact-layout .aishop-section-heading {
		position: static;
	}

	.aishop-media-frame img {
		min-height: 440px;
	}

	.aishop-footer-grid {
		grid-template-columns: 1fr 1fr;
	}

	.aishop-footer-brand {
		grid-column: 1 / -1;
	}
}

@media (max-width: 782px) {
	.admin-bar .aishop-site-header {
		top: 46px;
	}

	.admin-bar .aishop-primary-navigation {
		top: calc(var(--aishop-header-height) + 46px);
	}

	.admin-bar .aishop-search-panel {
		top: calc(var(--aishop-header-height) + 58px);
	}
}

@media (max-width: 720px) {
	.page-template-page-inquiry .aishop-inquiry-section {
		padding-bottom: 140px;
	}

	.aishop-container {
		width: min(calc(100% - 36px), var(--aishop-container));
	}

	.aishop-brand-link strong {
		font-size: 24px;
	}

	.aishop-brand-link span {
		font-size: 9px;
	}

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

	.aishop-search-form input {
		grid-column: 1 / -1;
	}

	.aishop-search-submit {
		width: 100%;
	}

	.aishop-hero,
	.aishop-hero-compact {
		height: 590px;
		min-height: 590px;
		max-height: 590px;
	}

	.aishop-hero-inner {
		padding-bottom: 48px;
	}

	.aishop-hero-inner h1,
	.aishop-hero-compact .aishop-hero-inner h1 {
		font-size: 38px;
		line-height: 1.08;
	}

	.aishop-hero-description {
		font-size: 16px;
	}

	.aishop-button-row {
		align-items: stretch;
		flex-direction: column;
	}

	.aishop-section {
		padding: 72px 0;
	}

	.aishop-section-heading h2,
	.aishop-split-heading h2,
	.aishop-media-copy h2,
	.aishop-inquiry-intro h2 {
		font-size: 34px;
	}

	.aishop-section-heading {
		margin-bottom: 34px;
	}

	.aishop-service-grid,
	.aishop-value-grid,
	.aishop-process-grid,
	.aishop-about-grid,
	.aishop-project-theme-grid,
	.aishop-project-gallery,
	.aishop-project-facts {
		grid-template-columns: 1fr;
	}

	.aishop-project-single-hero {
		height: 560px;
	}

	.aishop-project-single-heading {
		bottom: 48px;
	}

	.aishop-project-single-heading h1 {
		font-size: 40px;
	}

	.aishop-project-story {
		margin: 48px auto;
	}

	.aishop-project-story .aishop-entry-content {
		font-size: 18px;
	}

	.aishop-project-cta h2 {
		font-size: 34px;
	}

	.aishop-project-cta .aishop-button-row,
	.aishop-project-cta .aishop-button {
		width: 100%;
	}

	.aishop-service-card img {
		height: 240px;
	}

	.aishop-service-content {
		grid-template-columns: 34px minmax(0, 1fr);
	}

	.aishop-value-grid article,
	.aishop-value-grid article + article {
		min-height: 0;
		border-top: 1px solid rgba(255, 255, 255, 0.18);
		border-right: 0;
		padding: 28px 0 34px;
	}

	.aishop-value-grid h3,
	.aishop-process-step h3 {
		margin-top: 28px;
	}

	.aishop-process-step {
		min-height: 0;
	}

	.aishop-media-frame img {
		min-height: 300px;
	}

	.aishop-cta-inner,
	.aishop-consult-band .aishop-container,
	.aishop-footer-bottom {
		align-items: flex-start;
		flex-direction: column;
	}

	.aishop-cta-inner h2 {
		font-size: 34px;
	}

	.aishop-cta-inner > .aishop-button-row {
		width: 100%;
	}

	.aishop-cta-inner .aishop-button {
		width: 100%;
	}

	.aishop-consult-band .aishop-button {
		width: 100%;
	}

	.aishop-about-grid article {
		min-height: 0;
		padding: 30px;
	}

	.aishop-about-grid h2 {
		margin-top: 42px;
		font-size: 26px;
	}

	.aishop-page-intro {
		padding: 70px 0 48px;
	}

	.aishop-page-intro h1 {
		font-size: 40px;
	}

	.aishop-footer-grid {
		grid-template-columns: 1fr;
		gap: 38px;
	}

	.aishop-site-footer,
	.aishop-footer-grid,
	.aishop-footer-bottom {
		max-width: 100%;
		overflow-wrap: anywhere;
	}

	.aishop-footer-brand {
		grid-column: auto;
	}
}

/* Stage 9 content pages and editorial system. */
.homesee-service-detail-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	border-top: 1px solid var(--aishop-line);
	border-left: 1px solid var(--aishop-line);
}

.homesee-service-detail {
	display: flex;
	flex-direction: column;
	min-height: 520px;
	border-right: 1px solid var(--aishop-line);
	border-bottom: 1px solid var(--aishop-line);
	padding: 42px;
	background: #fff;
}

.homesee-service-number,
.homesee-service-detail dt {
	color: var(--aishop-warm);
	font-size: 12px;
	font-weight: 700;
	text-transform: uppercase;
}

.homesee-service-detail h2 { margin: 26px 0 18px; font-size: clamp(25px, 2.2vw, 38px); line-height: 1.12; }
.homesee-service-summary { color: var(--aishop-stone); font-size: 17px; }
.homesee-service-detail dl { margin: 18px 0 30px; }
.homesee-service-detail dl div { border-top: 1px solid var(--aishop-line); padding: 16px 0; }
.homesee-service-detail dd { margin: 7px 0 0; color: var(--aishop-stone); }
.homesee-service-detail .aishop-button { align-self: flex-start; margin-top: auto; }

.homesee-about-company-section { background: var(--aishop-soft); }
.homesee-about-company-lead { display: grid; grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr); gap: 50px; align-items: end; margin-bottom: 50px; }
.homesee-about-company-lead .aishop-eyebrow { grid-column: 1 / -1; margin-bottom: -30px; }
.homesee-about-company-lead h2 { margin: 0; }
.homesee-about-company-lead p:last-child { margin: 0; color: var(--aishop-stone); font-size: 18px; }
.homesee-about-company-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); margin-bottom: 32px; border-top: 1px solid var(--aishop-line); border-left: 1px solid var(--aishop-line); }
.homesee-about-company-grid article { border-right: 1px solid var(--aishop-line); border-bottom: 1px solid var(--aishop-line); padding: 34px; background: rgba(255,255,255,.68); }
.homesee-about-company-grid h3 { margin-top: 0; }
.homesee-about-company-grid ul,
.homesee-about-company-grid ol { margin: 0; padding-left: 20px; color: var(--aishop-stone); }
.homesee-about-company-grid li + li { margin-top: 8px; }

.homesee-contact-guidance .aishop-button-row { margin: 30px 0; }
.homesee-contact-channels { display: flex; flex-wrap: wrap; align-items: center; gap: 14px; border-top: 1px solid var(--aishop-line); padding-top: 24px; }
.homesee-contact-channels > a:not([aria-label]) { margin-right: 10px; color: var(--aishop-ink); font-weight: 700; }
.homesee-contact-channels a[aria-label] { display: inline-grid; width: 36px; height: 36px; place-items: center; border: 1px solid var(--aishop-line); color: var(--aishop-ink); }
.homesee-contact-channels svg { width: 17px; height: 17px; fill: none; stroke: currentColor; stroke-width: 1.7; }

.homesee-inquiry-preparation { background: var(--aishop-soft); }
.homesee-inquiry-preparation-grid { display: grid; grid-template-columns: minmax(0, 1.2fr) minmax(320px, .8fr); gap: 70px; align-items: center; }
.homesee-inquiry-preparation h2 { margin: 10px 0 18px; }
.homesee-inquiry-preparation p { color: var(--aishop-stone); }
.homesee-inquiry-preparation ul { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); margin: 0; padding: 0; list-style: none; border-top: 1px solid var(--aishop-line); border-left: 1px solid var(--aishop-line); }
.homesee-inquiry-preparation li { border-right: 1px solid var(--aishop-line); border-bottom: 1px solid var(--aishop-line); padding: 16px; background: rgba(255,255,255,.72); }

.homesee-articles-intro p:last-child { max-width: 720px; color: var(--aishop-stone); font-size: 18px; }
.homesee-article-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 30px; }
.homesee-article-card { display: flex; min-width: 0; flex-direction: column; border: 1px solid var(--aishop-line); background: #fff; }
.homesee-article-card-media { display: block; aspect-ratio: 16 / 10; overflow: hidden; background: var(--aishop-soft); }
.homesee-article-card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s ease; }
.homesee-article-card:hover .homesee-article-card-media img { transform: scale(1.025); }
.homesee-article-card-body { display: flex; flex: 1; flex-direction: column; padding: 28px; }
.homesee-article-card-meta { display: flex; justify-content: space-between; gap: 16px; color: var(--aishop-stone); font-size: 12px; text-transform: uppercase; }
.homesee-article-card-meta span { color: var(--aishop-warm); font-weight: 700; }
.homesee-article-card h2 { margin: 18px 0 12px; font-size: 27px; line-height: 1.18; }
.homesee-article-card h2 a { color: inherit; text-decoration: none; }
.homesee-article-card-excerpt { color: var(--aishop-stone); }
.homesee-article-read-more { display: flex; justify-content: space-between; margin-top: auto; border-top: 1px solid var(--aishop-line); padding-top: 18px; color: var(--aishop-ink); font-weight: 700; text-decoration: none; }
.homesee-article-pagination { margin-top: 48px; }
.homesee-article-pagination .nav-links { display: flex; flex-wrap: wrap; gap: 8px; }
.homesee-article-pagination .page-numbers { min-width: 42px; border: 1px solid var(--aishop-line); padding: 9px 12px; color: var(--aishop-ink); text-align: center; text-decoration: none; }
.homesee-article-pagination .current { border-color: var(--aishop-ink); color: #fff; background: var(--aishop-ink); }
.homesee-article-empty { max-width: 760px; border-left: 4px solid var(--aishop-warm); padding: 34px; background: var(--aishop-soft); }

.homesee-single-article-header { padding: 90px 0 54px; background: var(--aishop-soft); }
.homesee-single-article-header h1 { max-width: 980px; margin: 10px 0 22px; font-size: clamp(42px, 5.5vw, 76px); line-height: 1.04; }
.homesee-single-article-header time { color: var(--aishop-stone); }
.homesee-single-article-image { margin-top: 54px; }
.homesee-single-article-image img { display: block; width: 100%; max-height: 680px; object-fit: cover; }
.homesee-single-article-layout { display: grid; grid-template-columns: minmax(0, 760px) minmax(260px, 360px); gap: 80px; padding-top: 64px; padding-bottom: 90px; }
.homesee-single-article-content { font-size: 18px; line-height: 1.8; }
.homesee-single-article-content h2 { margin-top: 52px; line-height: 1.15; }
.homesee-single-article-content h3 { margin-top: 32px; }
.homesee-single-article-aside { align-self: start; position: sticky; top: 130px; border-top: 3px solid var(--aishop-ink); padding-top: 28px; }
.homesee-single-article-aside h2 { font-size: 31px; }
.homesee-single-article-aside p:not(.aishop-eyebrow) { color: var(--aishop-stone); }

@media (max-width: 980px) {
	.homesee-article-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
	.homesee-about-company-grid { grid-template-columns: 1fr; }
	.homesee-about-company-lead,
	.homesee-inquiry-preparation-grid,
	.homesee-single-article-layout { grid-template-columns: 1fr; gap: 38px; }
	.homesee-about-company-lead .aishop-eyebrow { margin-bottom: -18px; }
	.homesee-single-article-aside { position: static; }
}

@media (max-width: 720px) {
	.homesee-service-detail-grid,
	.homesee-article-grid { grid-template-columns: 1fr; }
	.homesee-service-detail { min-height: 0; padding: 30px 24px; }
	.homesee-about-company-grid article { padding: 28px 24px; }
	.homesee-inquiry-preparation ul { grid-template-columns: 1fr; }
	.homesee-article-card-body { padding: 24px; }
	.homesee-single-article-header { padding: 62px 0 38px; }
	.homesee-single-article-layout { padding-top: 42px; padding-bottom: 110px; }
}

/* Portfolio-led About page */
.aishop-about-introduction {
	background: #ffffff;
}

.aishop-about-introduction-grid {
	display: grid;
	grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
	gap: clamp(56px, 8vw, 130px);
	align-items: start;
}

.aishop-about-introduction h2,
.aishop-about-portfolio-heading h2,
.aishop-about-standards-heading h2 {
	max-width: 850px;
	margin: 12px 0 0;
	font-family: Georgia, 'Times New Roman', serif;
	font-size: clamp(38px, 4.6vw, 68px);
	font-weight: 500;
	line-height: 1.04;
}

.aishop-about-introduction-copy {
	border-top: 1px solid var(--aishop-line);
	padding-top: 24px;
}

.aishop-about-introduction-copy p {
	margin: 0 0 20px;
	color: var(--aishop-stone);
	font-size: 18px;
	line-height: 1.75;
}

.aishop-about-portfolio-section {
	background: var(--aishop-soft);
}

.aishop-about-portfolio-heading {
	display: grid;
	grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
	column-gap: clamp(48px, 8vw, 130px);
	align-items: end;
	margin-bottom: 54px;
}

.aishop-about-portfolio-heading .aishop-eyebrow {
	grid-column: 1 / -1;
}

.aishop-about-portfolio-heading > p:last-child {
	margin: 0;
	color: var(--aishop-stone);
	font-size: 17px;
	line-height: 1.7;
}

.aishop-about-portfolio-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 42px 28px;
}

.aishop-about-portfolio-grid article {
	overflow: hidden;
	border: 1px solid var(--aishop-line);
	border-radius: 6px;
	background: #ffffff;
}

.aishop-about-portfolio-grid img {
	display: block;
	width: 100%;
	aspect-ratio: 16 / 8.8;
	object-fit: cover;
}

.aishop-about-portfolio-grid article > div {
	position: relative;
	padding: 30px 32px 34px 78px;
}

.aishop-about-portfolio-grid span {
	position: absolute;
	top: 34px;
	left: 30px;
	color: var(--aishop-warm);
	font-size: 11px;
	font-weight: 800;
}

.aishop-about-portfolio-grid h3 {
	margin: 0;
	font-size: 24px;
	line-height: 1.2;
}

.aishop-about-portfolio-grid p {
	margin: 13px 0 0;
	color: var(--aishop-stone);
	line-height: 1.65;
}

.aishop-about-standards-section {
	color: #ffffff;
	background: #20211f;
}

.aishop-about-standards-heading {
	display: grid;
	grid-template-columns: minmax(220px, 0.35fr) minmax(0, 1fr);
	gap: 48px;
	align-items: start;
	margin-bottom: 50px;
}

.aishop-about-standards-heading h2 {
	max-width: 920px;
	font-size: clamp(36px, 4vw, 58px);
}

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

.aishop-about-standards-grid article {
	display: grid;
	grid-template-columns: minmax(0, 1.2fr) minmax(220px, 0.8fr);
	min-height: 310px;
	overflow: hidden;
	border: 1px solid rgba(255, 255, 255, 0.18);
	border-radius: 6px;
	background: rgba(255, 255, 255, 0.04);
}

.aishop-about-standards-grid img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.aishop-about-standards-grid article > div {
	padding: 32px 28px;
}

.aishop-about-standards-grid strong {
	display: block;
	color: var(--aishop-warm-light);
	font-family: Georgia, 'Times New Roman', serif;
	font-size: 58px;
	font-weight: 500;
	line-height: 1;
}

.aishop-about-standards-grid h3 {
	margin: 24px 0 0;
	font-size: 21px;
}

.aishop-about-standards-grid p {
	margin: 14px 0 0;
	color: rgba(255, 255, 255, 0.7);
	line-height: 1.65;
}

.aishop-about-service-section {
	background: #ffffff;
}

/* Project case hierarchy and complete image story */
.aishop-project-product-layout {
	grid-template-columns: minmax(0, 1.28fr) minmax(340px, 0.72fr);
}

.aishop-project-product-layout > *,
.aishop-project-media-heading > *,
.aishop-project-product-facts,
.aishop-project-contact-panel {
	min-width: 0;
}

.aishop-project-media-heading {
	display: grid;
	grid-template-columns: minmax(110px, auto) minmax(0, 1fr);
	gap: 28px;
	align-items: start;
	margin-bottom: 24px;
}

.aishop-project-media-heading .aishop-eyebrow {
	margin-top: 9px;
}

.aishop-project-media-heading h1 {
	max-width: 760px;
	margin: 0;
	font-family: Georgia, 'Times New Roman', serif;
	font-size: clamp(38px, 4.4vw, 64px);
	font-weight: 500;
	line-height: 1.02;
}

.aishop-project-summary {
	margin: 18px 0 30px;
	font-family: Georgia, 'Times New Roman', serif;
	font-size: clamp(24px, 2.2vw, 34px);
	line-height: 1.28;
}

.aishop-project-product-info {
	top: 124px;
	padding-top: 9px;
}

.aishop-project-detail-gallery-wrap {
	margin-top: clamp(62px, 8vw, 112px);
}

.aishop-project-details-layout.is-single-column {
	grid-template-columns: minmax(0, 880px);
}

.aishop-project-detail-gallery-heading {
	display: grid;
	grid-template-columns: minmax(160px, 0.35fr) minmax(0, 1fr);
	gap: 40px;
	align-items: start;
	margin-bottom: 34px;
}

.aishop-project-detail-gallery-heading h2 {
	max-width: 760px;
	margin: 0;
	font-family: Georgia, 'Times New Roman', serif;
	font-size: clamp(34px, 4vw, 54px);
	font-weight: 500;
	line-height: 1.05;
}

.aishop-project-detail-gallery {
	columns: 3 280px;
	column-gap: 12px;
}

.aishop-project-detail-gallery button {
	display: block;
	width: 100%;
	margin: 0 0 12px;
	break-inside: avoid;
	border: 0;
	border-radius: 4px;
	padding: 0;
	overflow: hidden;
	background: #deded8;
	cursor: zoom-in;
}

.aishop-project-detail-gallery img {
	display: block;
	width: 100%;
	height: auto;
	transition: transform 260ms ease, filter 260ms ease;
}

.aishop-project-detail-gallery button:hover img,
.aishop-project-detail-gallery button:focus-visible img {
	transform: scale(1.018);
	filter: brightness(0.93);
}

/* Project Consultation full-section background */
.aishop-stage6-inquiry-background,
.aishop-stage6-inquiry-shade {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
}

.aishop-stage6-inquiry-background {
	z-index: 0;
	object-fit: cover;
	filter: saturate(0.72) brightness(0.38);
	transform: scale(1.025);
}

.aishop-stage6-inquiry-shade {
	z-index: 1;
	background: rgba(17, 18, 16, 0.58);
	backdrop-filter: blur(2px);
}

.aishop-stage6-inquiry-layout {
	position: relative;
	z-index: 2;
}

.aishop-stage6-inquiry-image img {
	border: 1px solid rgba(255, 255, 255, 0.16);
}

.aishop-stage6-inquiry-copy {
	padding: clamp(26px, 3vw, 44px);
	border: 1px solid rgba(255, 255, 255, 0.15);
	border-radius: 6px;
	background: rgba(20, 21, 19, 0.58);
	backdrop-filter: blur(16px);
}

@media (max-width: 1100px) {
	.aishop-about-standards-grid article {
		grid-template-columns: minmax(0, 1fr);
	}

	.aishop-about-standards-grid img {
		aspect-ratio: 16 / 9;
	}

	.aishop-project-product-layout {
		grid-template-columns: minmax(0, 1.12fr) minmax(320px, 0.88fr);
	}
}

@media (max-width: 960px) {
	.aishop-about-introduction-grid,
	.aishop-about-portfolio-heading,
	.aishop-about-standards-heading,
	.aishop-project-product-layout,
	.aishop-project-detail-gallery-heading {
		grid-template-columns: minmax(0, 1fr);
	}

	.aishop-about-portfolio-grid,
	.aishop-about-standards-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.aishop-project-product-info {
		position: static;
	}
}

@media (max-width: 720px) {
	.aishop-project-single,
	.aishop-project-product-section,
	.aishop-project-details-section {
		max-width: 100%;
		overflow-x: clip;
	}

	.aishop-project-single .aishop-container {
		width: calc(100% - 32px);
	}

	.aishop-about-portfolio-grid,
	.aishop-about-standards-grid {
		grid-template-columns: minmax(0, 1fr);
	}

	.aishop-about-portfolio-grid article > div {
		padding: 24px 22px 28px 62px;
	}

	.aishop-about-portfolio-grid span {
		top: 28px;
		left: 22px;
	}

	.aishop-about-standards-grid article {
		min-height: 0;
	}

	.aishop-project-media-heading {
		grid-template-columns: minmax(0, 1fr);
		gap: 8px;
	}

	.aishop-project-media-heading h1 {
		font-size: 38px;
		overflow-wrap: anywhere;
	}

	.aishop-project-summary,
	.aishop-project-contact-panel h2 {
		font-size: 25px;
		overflow-wrap: anywhere;
	}

	.aishop-project-media-stage,
	.aishop-project-media-canvas,
	.aishop-project-media-canvas img,
	.aishop-project-media-canvas video,
	.aishop-project-media-canvas iframe {
		max-width: 100%;
	}

	.aishop-project-detail-gallery {
		columns: 1;
	}

	.aishop-stage6-inquiry-copy {
		padding: 24px 20px;
	}
}

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

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

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

/* Stage 6 immersive homepage */
.aishop-stage6-home {
	position: relative;
	background: #181917;
	overflow: hidden;
}

.aishop-stage6-track {
	position: relative;
	width: 100%;
}

.aishop-stage6-section {
	position: relative;
	display: flex;
	align-items: center;
	min-height: 760px;
	padding: 72px 0;
	overflow: hidden;
	isolation: isolate;
}

.aishop-stage6-background {
	position: absolute;
	inset: -20px;
	z-index: -3;
	width: calc(100% + 40px);
	height: calc(100% + 40px);
	max-width: none;
	object-fit: cover;
	transform: translate3d(var(--aishop-layer-x, 0), var(--aishop-layer-y, 0), 0) scale(1.045);
	transition: transform 160ms linear;
}

.aishop-stage6-shade {
	position: absolute;
	inset: 0;
	z-index: -2;
	background: rgba(15, 16, 14, 0.64);
}

.aishop-stage6-content {
	position: relative;
	z-index: 2;
}

.aishop-stage6-heading {
	max-width: 760px;
	margin-bottom: 34px;
	color: #ffffff;
}

.aishop-stage6-heading-row {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 40px;
	max-width: none;
}

.aishop-stage6-heading-row > div {
	max-width: 760px;
}

.aishop-stage6-heading h2,
.aishop-stage6-inquiry h2 {
	margin: 8px 0 0;
	font-family: Georgia, 'Times New Roman', serif;
	font-size: 46px;
	font-weight: 400;
	line-height: 1.08;
}

.aishop-stage6-heading p,
.aishop-stage6-inquiry p {
	color: rgba(255, 255, 255, 0.78);
}

.aishop-stage6-heading .aishop-eyebrow,
.aishop-stage6-inquiry .aishop-eyebrow {
	color: #e0c188;
}

.aishop-stage6-hero {
	padding: 0;
}

.aishop-stage6-hero .aishop-hero-overlay {
	background: rgba(12, 13, 12, 0.56);
}

.aishop-stage6-hero .aishop-hero-image {
	inset: -20px;
	width: calc(100% + 40px);
	height: calc(100% + 40px);
	max-width: none;
	transform: translate3d(var(--aishop-layer-x, 0), var(--aishop-layer-y, 0), 0) scale(1.045);
	transition: transform 160ms linear;
}

.aishop-stage6-hero .aishop-hero-inner {
	display: grid;
	grid-template-columns: minmax(0, 1.08fr) minmax(420px, 0.92fr);
	align-items: center;
	gap: 60px;
	width: min(calc(100% - 64px), var(--aishop-container));
}

.aishop-stage6-hero .aishop-hero-copy {
	max-width: 760px;
}

.aishop-stage6-hero .aishop-hero-inner h1 {
	max-width: 760px;
	font-size: 62px;
	line-height: 1.02;
}

.aishop-stage6-hero .aishop-hero-description {
	max-width: 690px;
}

.aishop-stage6-material-orbit {
	position: relative;
	height: 520px;
	perspective: 1100px;
	transform: translate3d(var(--aishop-layer-x, 0), var(--aishop-layer-y, 0), 0);
}

.aishop-stage6-material-card {
	--aishop-base-transform: translate3d(0, 0, 0);
	position: absolute;
	display: grid;
	grid-template-columns: 78px 1fr;
	align-items: center;
	gap: 12px;
	width: 210px;
	min-height: 92px;
	border: 1px solid rgba(255, 255, 255, 0.3);
	border-radius: 4px;
	padding: 10px;
	color: #ffffff;
	background: rgba(24, 25, 23, 0.72);
	box-shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
	backdrop-filter: blur(16px);
	transform: var(--aishop-base-transform) rotateX(var(--aishop-tilt-x, 0deg)) rotateY(var(--aishop-tilt-y, 0deg));
	transform-style: preserve-3d;
	transition: transform 260ms ease, border-color 260ms ease, box-shadow 260ms ease;
}

.aishop-stage6-material-card:hover {
	border-color: rgba(224, 193, 136, 0.8);
	box-shadow: 0 30px 70px rgba(0, 0, 0, 0.38);
}

.aishop-stage6-material-card img {
	width: 78px;
	height: 70px;
	border-radius: 2px;
	object-fit: cover;
}

.aishop-stage6-material-card span {
	font-size: 12px;
	font-weight: 700;
	text-transform: uppercase;
}

.aishop-stage6-material-card-1 {
	--aishop-base-transform: translateZ(58px);
	top: 36px;
	right: 30px;
}

.aishop-stage6-material-card-2 {
	--aishop-base-transform: translateZ(30px);
	top: 154px;
	left: 10px;
}

.aishop-stage6-material-card-3 {
	--aishop-base-transform: translateZ(76px);
	top: 228px;
	right: 0;
}

.aishop-stage6-material-card-4 {
	--aishop-base-transform: translateZ(18px);
	bottom: 38px;
	left: 44px;
}

.aishop-stage6-material-card-5 {
	--aishop-base-transform: translateZ(48px);
	right: 54px;
	bottom: 0;
}

.aishop-stage6-service-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 18px;
	perspective: 1200px;
}

.aishop-stage6-service-card {
	--aishop-card-entry: translateY(0);
	border: 1px solid rgba(255, 255, 255, 0.24);
	border-radius: 4px;
	padding: 10px;
	color: #ffffff;
	background: rgba(24, 25, 23, 0.76);
	box-shadow: 0 26px 64px rgba(0, 0, 0, 0.22);
	backdrop-filter: blur(14px);
	transform: var(--aishop-card-entry) rotateX(var(--aishop-tilt-x, 0deg)) rotateY(var(--aishop-tilt-y, 0deg));
	transform-style: preserve-3d;
	transition: opacity 620ms ease, transform 620ms ease, box-shadow 240ms ease, border-color 240ms ease;
}

.aishop-stage6-service-card:hover {
	border-color: rgba(224, 193, 136, 0.72);
	box-shadow: 0 34px 74px rgba(0, 0, 0, 0.34);
}

.aishop-stage6-service-card .aishop-service-image-link,
.aishop-stage6-service-card img {
	height: 142px;
}

.aishop-stage6-service-card .aishop-service-image-link {
	border-radius: 2px;
	overflow: hidden;
}

.aishop-stage6-service-card .aishop-service-content {
	display: block;
	padding: 18px 8px 12px;
}

.aishop-stage6-service-card .aishop-service-content > span {
	display: block;
	margin-bottom: 10px;
	color: #e0c188;
}

.aishop-stage6-service-card .aishop-service-content h3 {
	margin: 0;
	color: #ffffff;
	font-size: 17px;
	line-height: 1.3;
}

.aishop-stage6-service-card .aishop-service-content p {
	margin: 12px 0 0;
	color: rgba(255, 255, 255, 0.7);
	font-size: 13px;
	line-height: 1.55;
}

.aishop-stage6-featured .aishop-featured-projects {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 20px;
}

.aishop-stage6-featured .aishop-project-card {
	border: 1px solid rgba(255, 255, 255, 0.22);
	border-radius: 4px;
	background: rgba(255, 255, 255, 0.94);
	box-shadow: 0 28px 70px rgba(0, 0, 0, 0.3);
	transition: transform 260ms ease, box-shadow 260ms ease;
}

.aishop-stage6-featured .aishop-project-card:nth-child(n+4) {
	display: none;
}

.aishop-stage6-featured .aishop-project-card:hover {
	transform: translateY(-8px) rotateX(1deg);
	box-shadow: 0 36px 78px rgba(0, 0, 0, 0.4);
}

.aishop-stage6-featured .aishop-project-card-image {
	height: 190px;
}

.aishop-stage6-featured .aishop-project-card-body {
	padding: 18px;
}

.aishop-stage6-featured .aishop-project-card-excerpt,
.aishop-stage6-featured .aishop-project-card-meta {
	display: none;
}

.aishop-stage6-empty,
.aishop-stage6-featured .aishop-project-empty {
	max-width: 680px;
	border: 1px solid rgba(255, 255, 255, 0.24);
	border-radius: 4px;
	padding: 28px;
	color: #ffffff;
	background: rgba(24, 25, 23, 0.72);
	backdrop-filter: blur(14px);
}

.aishop-stage6-workflow .aishop-process-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	border: 0;
	gap: 14px;
	perspective: 1200px;
}

.aishop-stage6-workflow .aishop-stage6-shade {
	background: rgba(39, 35, 29, 0.5);
}

.aishop-stage6-workflow .aishop-process-step {
	--aishop-card-entry: translateY(0);
	min-height: 188px;
	border: 1px solid rgba(255, 255, 255, 0.3);
	border-radius: 4px;
	padding: 18px;
	color: #ffffff;
	background: rgba(255, 255, 255, 0.13);
	box-shadow: 0 14px 34px rgba(18, 17, 15, 0.14);
	backdrop-filter: blur(18px);
	transform: var(--aishop-card-entry) rotateX(var(--aishop-tilt-x, 0deg)) rotateY(var(--aishop-tilt-y, 0deg));
	transform-style: preserve-3d;
	transition: opacity 600ms ease, transform 600ms ease, border-color 220ms ease, background-color 220ms ease, box-shadow 220ms ease;
}

.aishop-stage6-workflow .aishop-process-step:hover {
	--aishop-card-entry: translate3d(0, -5px, 0);
	border-color: rgba(230, 202, 151, 0.85);
	background: rgba(255, 255, 255, 0.18);
	box-shadow: 0 18px 42px rgba(18, 17, 15, 0.18);
}

.aishop-stage6-workflow .aishop-process-number {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 34px;
	height: 34px;
	border: 1px solid rgba(230, 202, 151, 0.82);
	border-radius: 50%;
	color: #f2d9aa;
	background: rgba(154, 122, 71, 0.24);
	font-size: 11px;
	font-weight: 800;
}

.aishop-stage6-workflow .aishop-process-step h3 {
	margin-top: 18px;
	color: #ffffff;
	font-size: 16px;
	line-height: 1.3;
}

.aishop-stage6-workflow .aishop-process-step p {
	color: rgba(255, 255, 255, 0.82);
	font-size: 12px;
	line-height: 1.55;
}

.aishop-stage6-workflow .aishop-process-step:nth-child(n+5) {
	margin-top: 6px;
}

.aishop-stage6-material-layout {
	display: grid;
	grid-template-columns: minmax(0, 0.9fr) minmax(520px, 1.1fr);
	align-items: center;
	gap: 80px;
}

.aishop-stage6-material-layout .aishop-stage6-heading {
	margin: 0;
}

.aishop-stage6-material-layout .aishop-stage6-heading > p:not(.aishop-eyebrow) {
	max-width: 610px;
	margin: 22px 0 30px;
}

.aishop-stage6-capability-stack {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 14px;
	perspective: 1100px;
	transform: translate3d(var(--aishop-layer-x, 0), var(--aishop-layer-y, 0), 0);
}

.aishop-stage6-capability-stack article {
	--aishop-card-entry: translateY(0);
	min-height: 190px;
	border: 1px solid rgba(255, 255, 255, 0.24);
	border-radius: 4px;
	padding: 24px;
	color: #ffffff;
	background: rgba(24, 25, 23, 0.78);
	box-shadow: 0 24px 64px rgba(0, 0, 0, 0.24);
	backdrop-filter: blur(16px);
	transform: var(--aishop-card-entry) rotateX(var(--aishop-tilt-x, 0deg)) rotateY(var(--aishop-tilt-y, 0deg));
	transform-style: preserve-3d;
	transition: opacity 620ms ease, transform 620ms ease, border-color 220ms ease;
}

.aishop-stage6-capability-stack article:nth-child(2),
.aishop-stage6-capability-stack article:nth-child(4) {
	transform: translateY(22px) rotateX(var(--aishop-tilt-x, 0deg)) rotateY(var(--aishop-tilt-y, 0deg));
}

.aishop-stage6-capability-stack article:hover {
	border-color: rgba(224, 193, 136, 0.72);
}

.aishop-stage6-capability-stack span {
	color: #e0c188;
	font-size: 12px;
}

.aishop-stage6-capability-stack h3 {
	margin: 34px 0 8px;
	font-size: 18px;
	line-height: 1.25;
}

.aishop-stage6-capability-stack p {
	margin: 0;
	color: rgba(255, 255, 255, 0.68);
	font-size: 13px;
	line-height: 1.55;
}

.aishop-stage6-inquiry {
	color: #ffffff;
	background: #1c1d1b;
}

.aishop-stage6-inquiry::before {
	position: absolute;
	inset: 0;
	z-index: -1;
	background: rgba(255, 255, 255, 0.025);
	content: '';
}

.aishop-stage6-inquiry-layout {
	display: grid;
	grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
	align-items: center;
	gap: 80px;
}

.aishop-stage6-inquiry-image {
	position: relative;
	transform: translate3d(var(--aishop-layer-x, 0), var(--aishop-layer-y, 0), 0) perspective(1000px) rotateY(4deg);
}

.aishop-stage6-inquiry-image::after {
	position: absolute;
	top: 24px;
	right: -24px;
	bottom: -24px;
	left: 24px;
	z-index: -1;
	border: 1px solid rgba(224, 193, 136, 0.45);
	content: '';
}

.aishop-stage6-inquiry-image img {
	width: 100%;
	height: 450px;
	object-fit: cover;
	box-shadow: 0 34px 90px rgba(0, 0, 0, 0.38);
}

.aishop-stage6-inquiry-copy h2 {
	font-size: 54px;
}

.aishop-stage6-inquiry-copy > p:not(.aishop-eyebrow) {
	max-width: 600px;
	margin: 22px 0 30px;
	font-size: 18px;
}

.homesee-service-flow,
.homesee-visual-grid,
.homesee-product-grid {
	display: grid;
	gap: 18px;
	perspective: 1200px;
}

.homesee-service-flow {
	grid-template-columns: repeat(4, minmax(0, 1fr));
}

.homesee-flow-card,
.homesee-visual-card,
.homesee-product-card,
.homesee-simple-quote-form {
	--aishop-card-entry: translateY(0);
	border: 1px solid rgba(255, 255, 255, 0.24);
	border-radius: 4px;
	color: #ffffff;
	background: rgba(24, 25, 23, 0.76);
	box-shadow: 0 26px 64px rgba(0, 0, 0, 0.22);
	backdrop-filter: blur(14px);
}

.homesee-flow-card,
.homesee-visual-card,
.homesee-product-card {
	transform: var(--aishop-card-entry) rotateX(var(--aishop-tilt-x, 0deg)) rotateY(var(--aishop-tilt-y, 0deg));
	transform-style: preserve-3d;
	transition: opacity 620ms ease, transform 620ms ease, box-shadow 240ms ease, border-color 240ms ease;
}

.homesee-flow-card:hover,
.homesee-visual-card:hover,
.homesee-product-card:hover {
	--aishop-card-entry: translate3d(0, -6px, 0);
	border-color: rgba(224, 193, 136, 0.72);
	box-shadow: 0 34px 74px rgba(0, 0, 0, 0.34);
}

.homesee-flow-card {
	position: relative;
	min-height: 250px;
	padding: 28px 22px;
}

.homesee-flow-card:not(:last-child)::after {
	position: absolute;
	top: 50%;
	right: -19px;
	z-index: 2;
	width: 38px;
	height: 1px;
	background: rgba(224, 193, 136, 0.72);
	content: '';
}

.homesee-flow-card span,
.homesee-product-card span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 40px;
	height: 32px;
	border: 1px solid rgba(224, 193, 136, 0.62);
	padding: 0 12px;
	color: #f2d9aa;
	font-size: 11px;
	font-weight: 800;
	text-transform: uppercase;
}

.homesee-flow-card h3 {
	margin: 54px 0 12px;
	color: #ffffff;
	font-size: 22px;
	line-height: 1.18;
}

.homesee-flow-card p,
.homesee-visual-card p,
.homesee-product-card p {
	margin: 0;
	color: rgba(255, 255, 255, 0.72);
	font-size: 13px;
	line-height: 1.55;
}

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

.homesee-visual-card {
	overflow: hidden;
}

.homesee-visual-card img {
	width: 100%;
	height: 220px;
	object-fit: cover;
}

.homesee-visual-card div,
.homesee-product-card div {
	padding: 20px;
}

.homesee-visual-card h3,
.homesee-product-card h3 {
	margin: 0 0 10px;
	color: #ffffff;
	font-size: 18px;
	line-height: 1.25;
}

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

.homesee-product-card {
	overflow: hidden;
	background: rgba(255, 255, 255, 0.12);
}

.homesee-product-card img {
	width: 100%;
	height: 235px;
	object-fit: cover;
	background: #ffffff;
}

.homesee-product-card span {
	margin-bottom: 14px;
	border-color: rgba(31, 32, 30, 0.16);
	color: var(--aishop-warm);
	background: rgba(255, 255, 255, 0.92);
}

.homesee-factory-qc-section .aishop-stage6-capability-stack {
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

.homesee-factory-qc-section .aishop-stage6-capability-stack article {
	min-height: 175px;
}

.homesee-simple-quote-form {
	display: grid;
	gap: 14px;
	max-width: 620px;
	padding: 22px;
}

.homesee-simple-quote-form.is-success {
	border-color: rgba(169, 219, 184, 0.55);
}

.homesee-simple-quote-message {
	margin: 0;
	border: 1px solid rgba(255, 255, 255, 0.22);
	border-radius: 4px;
	padding: 12px 14px;
	color: #ffffff;
	background: rgba(255, 255, 255, 0.12);
	font-size: 14px;
}

.homesee-simple-quote-row {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 12px;
}

.homesee-simple-quote-form label {
	display: grid;
	gap: 6px;
	color: rgba(255, 255, 255, 0.82);
	font-size: 12px;
	font-weight: 700;
	text-transform: uppercase;
}

.homesee-simple-quote-form input,
.homesee-simple-quote-form textarea {
	width: 100%;
	border: 1px solid rgba(255, 255, 255, 0.26);
	border-radius: 4px;
	padding: 11px 12px;
	color: #ffffff;
	background: rgba(255, 255, 255, 0.1);
	outline: none;
}

.homesee-simple-quote-form textarea {
	min-height: 94px;
	resize: vertical;
}

.homesee-simple-quote-form input:focus,
.homesee-simple-quote-form textarea:focus {
	border-color: rgba(224, 193, 136, 0.8);
	box-shadow: 0 0 0 3px rgba(224, 193, 136, 0.14);
}

.homesee-simple-quote-form .aishop-button {
	width: 100%;
	justify-content: center;
}

.aishop-stage6-dots {
	display: none;
}

@media (min-width: 961px) and (min-height: 680px) {
	.home .aishop-site-header {
		background: rgba(255, 255, 255, 0.9);
		backdrop-filter: blur(18px);
	}

	.aishop-stage6-home.is-immersive {
		height: calc(100svh - 120px);
		min-height: 560px;
		overflow: hidden;
	}

	.admin-bar .aishop-stage6-home.is-immersive {
		height: calc(100svh - 152px);
	}

	.aishop-stage6-home.is-immersive .aishop-stage6-track {
		height: 100%;
		transform: translate3d(0, calc(var(--aishop-home-index, 0) * -100%), 0);
		transition: transform 780ms cubic-bezier(0.76, 0, 0.24, 1);
		will-change: transform;
	}

	.aishop-stage6-home.is-immersive .aishop-stage6-section {
		height: 100%;
		min-height: 100%;
		padding-top: 42px;
		padding-bottom: 42px;
	}

	.aishop-stage6-home.is-immersive .aishop-stage6-hero {
		padding: 0;
	}

	.aishop-stage6-home.is-immersive [data-aishop-stage6-content],
	.aishop-stage6-home.is-immersive [data-aishop-stage6-sequence] > * {
		opacity: 0;
		transform: translate3d(0, 34px, 0);
		transition: opacity 620ms ease, transform 720ms cubic-bezier(0.22, 1, 0.36, 1);
	}

	.aishop-stage6-home.is-immersive .is-active [data-aishop-stage6-content],
	.aishop-stage6-home.is-immersive .is-active [data-aishop-stage6-sequence] > * {
		opacity: 1;
		transform: translate3d(0, 0, 0);
	}

	.aishop-stage6-home.is-immersive [data-aishop-stage6-sequence] > [data-aishop-tilt] {
		--aishop-card-entry: translate3d(0, 34px, 0);
		transform: var(--aishop-card-entry) rotateX(var(--aishop-tilt-x, 0deg)) rotateY(var(--aishop-tilt-y, 0deg));
	}

	.aishop-stage6-home.is-immersive .is-active [data-aishop-stage6-sequence] > [data-aishop-tilt] {
		--aishop-card-entry: translate3d(0, 0, 0);
	}

	.aishop-stage6-home.is-immersive .aishop-stage6-workflow.is-active .aishop-process-step:hover {
		--aishop-card-entry: translate3d(0, -5px, 0);
	}

	.aishop-stage6-home.is-immersive .is-active [data-aishop-stage6-sequence] > *:nth-child(2) {
		transition-delay: 80ms;
	}

	.aishop-stage6-home.is-immersive .is-active [data-aishop-stage6-sequence] > *:nth-child(3) {
		transition-delay: 160ms;
	}

	.aishop-stage6-home.is-immersive .is-active [data-aishop-stage6-sequence] > *:nth-child(4) {
		transition-delay: 240ms;
	}

	.aishop-stage6-home.is-immersive .is-active [data-aishop-stage6-sequence] > *:nth-child(5) {
		transition-delay: 320ms;
	}

	.aishop-stage6-home.is-immersive .is-active [data-aishop-stage6-sequence] > *:nth-child(6) {
		transition-delay: 400ms;
	}

	.aishop-stage6-home.is-immersive .is-active [data-aishop-stage6-sequence] > *:nth-child(7) {
		transition-delay: 480ms;
	}

	.aishop-stage6-home.is-immersive .aishop-stage6-dots {
		position: fixed;
		top: 50%;
		right: 22px;
		z-index: 900;
		display: flex;
		flex-direction: column;
		gap: 3px;
		transform: translateY(-50%);
		transition: opacity 180ms ease;
	}

	.aishop-stage6-home.is-footer-view .aishop-stage6-dots {
		opacity: 0;
		pointer-events: none;
	}

	.aishop-stage6-dots button {
		position: relative;
		display: flex;
		align-items: center;
		justify-content: flex-end;
		width: 46px;
		height: 34px;
		border: 0;
		padding: 0;
		color: rgba(255, 255, 255, 0.66);
		background: transparent;
		cursor: pointer;
	}

	.aishop-stage6-dots button::after {
		width: 8px;
		height: 8px;
		border: 1px solid rgba(255, 255, 255, 0.7);
		border-radius: 50%;
		background: rgba(24, 25, 23, 0.7);
		box-shadow: 0 2px 10px rgba(0, 0, 0, 0.25);
		content: '';
		transition: width 220ms ease, height 220ms ease, background-color 220ms ease;
	}

	.aishop-stage6-dots button span {
		position: absolute;
		right: 18px;
		font-size: 10px;
		opacity: 0;
		transform: translateX(5px);
		transition: opacity 180ms ease, transform 180ms ease;
	}

	.aishop-stage6-dots button:hover span,
	.aishop-stage6-dots button:focus-visible span,
	.aishop-stage6-dots button.is-active span {
		opacity: 1;
		transform: translateX(0);
	}

	.aishop-stage6-dots button.is-active::after {
		width: 11px;
		height: 11px;
		border-color: #e0c188;
		background: #e0c188;
	}
}

@media (min-width: 961px) and (max-width: 1180px) {
	.aishop-stage6-hero .aishop-hero-inner {
		grid-template-columns: minmax(0, 1fr) 400px;
		gap: 34px;
	}

	.aishop-stage6-hero .aishop-hero-inner h1 {
		font-size: 50px;
	}

	.aishop-stage6-service-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.homesee-service-flow,
	.homesee-visual-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

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

	.homesee-flow-card:not(:last-child)::after {
		display: none;
	}

	.aishop-stage6-service-card {
		display: grid;
		grid-template-columns: 150px 1fr;
	}

	.aishop-stage6-service-card .aishop-service-image-link,
	.aishop-stage6-service-card img {
		height: 100%;
		min-height: 150px;
	}

	.aishop-stage6-workflow .aishop-process-grid {
		grid-template-columns: repeat(4, minmax(0, 1fr));
	}

	.aishop-stage6-workflow .aishop-process-step {
		min-height: 150px;
	}

	.aishop-stage6-workflow .aishop-process-step h3 {
		margin-top: 18px;
	}

	.aishop-stage6-workflow .aishop-process-step p {
		display: block;
	}

	.aishop-stage6-material-layout {
		grid-template-columns: minmax(0, 0.9fr) minmax(460px, 1.1fr);
		gap: 44px;
	}
}

@media (max-width: 960px), (max-height: 679px) {
	.aishop-project-product-layout,
	.aishop-project-details-layout {
		grid-template-columns: minmax(0, 1fr);
	}

	.aishop-project-product-info {
		position: static;
	}

	.aishop-project-details-layout {
		gap: 48px;
	}

	.aishop-stage6-home {
		height: auto;
		overflow: visible;
	}

	.aishop-stage6-track {
		transform: none !important;
	}

	.aishop-stage6-section {
		min-height: auto;
		padding: 88px 0;
	}

	.aishop-stage6-hero {
		min-height: 760px;
		padding: 70px 0;
	}

	.aishop-stage6-hero .aishop-hero-inner {
		display: block;
	}

	.aishop-stage6-hero .aishop-hero-copy {
		max-width: 700px;
	}

	.aishop-stage6-material-orbit {
		display: none;
	}

	.aishop-stage6-service-grid,
	.aishop-stage6-featured .aishop-featured-projects,
	.aishop-stage6-workflow .aishop-process-grid,
	.aishop-stage6-material-layout,
	.aishop-stage6-inquiry-layout,
	.homesee-service-flow,
	.homesee-visual-grid,
	.homesee-product-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.homesee-flow-card:not(:last-child)::after {
		display: none;
	}

	.aishop-stage6-heading-row {
		align-items: flex-start;
	}

	.aishop-stage6-workflow .aishop-process-step {
		min-height: 230px;
	}

	.aishop-stage6-material-layout,
	.aishop-stage6-inquiry-layout {
		gap: 44px;
	}

	.aishop-stage6-inquiry-image {
		transform: none;
	}
}

@media (max-width: 720px) {
	.aishop-brand-logo {
		max-width: 150px;
		height: 44px;
	}

	.aishop-brand-link-footer .aishop-brand-logo {
		height: 72px;
	}

	.aishop-project-product-section {
		padding-top: 28px;
	}

	.aishop-project-product-layout {
		gap: 32px;
	}

	.aishop-project-media-stage {
		border-radius: 4px;
	}

	.aishop-project-media-nav {
		top: auto;
		bottom: 12px;
		transform: none;
	}

	.aishop-project-media-thumb {
		flex-basis: 88px;
		width: 88px;
		height: 62px;
	}

	.aishop-project-product-info h1 {
		font-size: 38px;
	}

	.aishop-project-product-facts {
		grid-template-columns: minmax(0, 1fr);
	}

	.aishop-project-contact-panel h2 {
		font-size: 25px;
	}

	.aishop-project-overview-copy .aishop-entry-content {
		font-size: 18px;
	}

	.aishop-project-lightbox {
		padding: 12px;
	}

	.aishop-project-lightbox-dialog {
		width: 100%;
		height: 88vh;
	}

	.aishop-project-lightbox-content img,
	.aishop-project-lightbox-content video,
	.aishop-project-lightbox-content iframe {
		max-height: 76vh;
	}

	.aishop-project-lightbox-nav {
		top: auto;
		bottom: 0;
		transform: none;
	}

	.aishop-stage6-section {
		padding: 72px 0;
	}

	.aishop-stage6-hero {
		min-height: 700px;
		padding: 56px 0;
	}

	.aishop-stage6-hero .aishop-hero-inner h1,
	.aishop-stage6-heading h2,
	.aishop-stage6-inquiry-copy h2 {
		font-size: 38px;
	}

	.aishop-stage6-heading-row {
		display: block;
	}

	.aishop-stage6-heading-row .aishop-button {
		margin-top: 18px;
	}

	.aishop-stage6-service-grid,
	.aishop-stage6-featured .aishop-featured-projects,
	.aishop-stage6-workflow .aishop-process-grid,
	.aishop-stage6-material-layout,
	.aishop-stage6-capability-stack,
	.aishop-stage6-inquiry-layout,
	.homesee-service-flow,
	.homesee-visual-grid,
	.homesee-product-grid,
	.homesee-simple-quote-row {
		grid-template-columns: minmax(0, 1fr);
	}

	.homesee-visual-card img,
	.homesee-product-card img {
		height: 210px;
	}

	.homesee-simple-quote-form {
		padding: 18px;
	}

	.aishop-stage6-service-card {
		display: block;
	}

	.aishop-stage6-featured .aishop-project-card:nth-child(n+3) {
		display: none;
	}

	.aishop-stage6-workflow .aishop-process-step,
	.aishop-stage6-capability-stack article {
		min-height: auto;
	}

	.aishop-stage6-workflow .aishop-process-grid {
		position: relative;
		gap: 16px;
		border-left: 1px solid rgba(230, 202, 151, 0.48);
		padding-left: 28px;
	}

	.aishop-stage6-workflow .aishop-process-step {
		position: relative;
		margin-top: 0;
		padding: 20px;
	}

	.aishop-stage6-workflow .aishop-process-number {
		position: absolute;
		top: 18px;
		left: -46px;
		background: #4c4334;
	}

	.aishop-stage6-workflow .aishop-process-step h3,
	.aishop-stage6-capability-stack h3 {
		margin-top: 18px;
	}

	.aishop-stage6-capability-stack article:nth-child(2),
	.aishop-stage6-capability-stack article:nth-child(4) {
		transform: none;
	}

	.aishop-stage6-inquiry-image::after {
		display: none;
	}

	.aishop-stage6-inquiry-image img {
		height: 320px;
	}

	.aishop-stage6-inquiry-copy > p:not(.aishop-eyebrow) {
		font-size: 16px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.aishop-stage6-home,
	.aishop-stage6-home.is-immersive {
		height: auto;
		overflow: visible;
	}

	.aishop-stage6-track,
	.aishop-stage6-background,
	.aishop-stage6-hero .aishop-hero-image,
	[data-aishop-parallax-layer],
	[data-aishop-tilt] {
		transform: none !important;
		transition: none !important;
	}

	.aishop-stage6-section {
		height: auto;
		min-height: 760px;
	}

	.aishop-stage6-dots {
		display: none !important;
	}
}

/* Video-first homepage variant. */
.homesee-video-hero {
	position: relative;
	isolation: isolate;
	min-height: calc(100vh - 120px);
	min-height: calc(100svh - 120px);
	overflow: hidden;
	background: #1d1c19;
}

.homesee-video-hero-poster,
.homesee-video-hero-media,
.homesee-video-hero-overlay {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
}

.homesee-video-hero-poster,
.homesee-video-hero-media {
	z-index: 0;
	display: block;
	object-fit: cover;
	object-position: center;
}

.homesee-video-hero-media {
	z-index: 1;
	opacity: 0;
	transition: opacity 360ms ease;
}

.homesee-video-hero-media.is-ready {
	opacity: 1;
}

.homesee-video-hero-media.has-video-error {
	display: none;
}

.homesee-video-hero-overlay {
	z-index: 2;
	background: linear-gradient(90deg, rgba(17, 16, 14, 0.86) 0%, rgba(17, 16, 14, 0.62) 55%, rgba(17, 16, 14, 0.3) 100%);
	opacity: var(--homesee-video-overlay, 0.48);
}

.homesee-video-hero .aishop-hero-inner {
	position: relative;
	z-index: 3;
	display: flex;
	align-items: center;
	min-height: inherit;
}

.homesee-video-hero .aishop-hero-copy {
	width: min(760px, 72vw);
	max-width: 760px;
	color: #fff;
}

.homesee-video-hero .aishop-hero-copy h1 {
	max-width: 760px;
	font-size: clamp(48px, 5vw, 82px);
	line-height: 1.02;
	letter-spacing: 0;
}

.homesee-video-hero .aishop-hero-description {
	max-width: 680px;
	color: rgba(255, 255, 255, 0.88);
}

.homesee-video-hero .aishop-eyebrow {
	color: #e7c991;
}

.aishop-stage6-home.is-immersive .homesee-video-hero.is-active .aishop-hero-copy {
	animation: homesee-video-copy-in 700ms ease-out both;
}

@keyframes homesee-video-copy-in {
	from {
		opacity: 0;
		transform: translateY(24px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@media (max-width: 960px), (max-height: 679px) {
	.homesee-video-hero {
		min-height: max(660px, calc(100svh - var(--aishop-header-height, 74px)));
		padding: 72px 0 88px;
	}

	.homesee-video-hero .aishop-hero-inner {
		min-height: 0;
	}

	.homesee-video-hero .aishop-hero-copy {
		width: 100%;
		max-width: 680px;
	}

	.homesee-video-hero .aishop-hero-copy h1 {
		font-size: clamp(38px, 10vw, 58px);
	}

	.homesee-video-hero.is-mobile-video-disabled .homesee-video-hero-media {
		display: none;
	}

	.aishop-stage6-home,
	.aishop-stage6-track,
	.aishop-stage6-section {
		max-width: 100%;
	}
}

@media (max-width: 560px) {
	.homesee-video-hero {
		min-height: max(680px, calc(100svh - var(--aishop-header-height, 74px)));
		padding-bottom: 108px;
	}

	.homesee-video-hero-overlay {
		background: linear-gradient(180deg, rgba(17, 16, 14, 0.42) 0%, rgba(17, 16, 14, 0.78) 48%, rgba(17, 16, 14, 0.96) 100%);
	}

	.homesee-video-hero .aishop-button-row {
		align-items: stretch;
	}

	.homesee-video-hero .aishop-button {
		width: 100%;
		justify-content: center;
	}
}

@media (prefers-reduced-motion: reduce) {
	.homesee-video-hero-media {
		display: none !important;
	}

	.aishop-stage6-home.is-immersive .homesee-video-hero.is-active .aishop-hero-copy {
		animation: none;
	}
}

/* Stage 9.1 project gallery, portfolio, and homepage refinements. */
.aishop-project-product-heading {
	margin-bottom: clamp(24px, 3.6vw, 42px);
}

.aishop-project-product-heading .aishop-eyebrow {
	color: #9a7a47;
}

.aishop-project-product-heading h1 {
	max-width: 1160px;
	margin: 12px 0 0;
	font-family: Georgia, 'Times New Roman', serif;
	font-size: clamp(36px, 4.5vw, 68px);
	font-weight: 500;
	line-height: 1.04;
}

.aishop-project-product-heading .aishop-project-summary {
	max-width: 900px;
	margin: 18px 0 0;
}

.aishop-project-single .aishop-project-product-layout {
	grid-template-columns: minmax(0, 1.18fr) minmax(340px, 0.82fr);
	gap: clamp(38px, 5vw, 78px);
}

.aishop-project-media-viewer {
	display: grid;
	grid-template-columns: minmax(0, 1fr);
	gap: 12px;
	align-items: stretch;
}

.aishop-project-media-viewer.is-single-media {
	grid-template-columns: minmax(0, 1fr);
}

.aishop-project-media-viewer .aishop-project-media-thumbnails {
	display: flex;
	flex-direction: row;
	gap: 10px;
	order: 2;
	max-height: none;
	margin: 12px 0 0;
	padding: 4px 2px 10px;
	overflow-y: hidden;
	overflow-x: auto;
	scrollbar-width: thin;
}

.aishop-project-media-viewer .aishop-project-media-thumb {
	flex: 0 0 86px;
	width: 86px;
	height: 68px;
	border: 2px solid transparent;
	border-radius: 7px;
	background: #f4f1ea;
	opacity: 1;
}

.aishop-project-media-viewer .aishop-project-media-thumb:hover,
.aishop-project-media-viewer .aishop-project-media-thumb:focus-visible,
.aishop-project-media-viewer .aishop-project-media-thumb.is-active {
	border-color: #9a7a47;
	transform: none;
}

.aishop-project-media-stage {
	order: 1;
	border-radius: 10px;
	background: #f6f4ef;
	box-shadow: 0 28px 90px rgba(31, 32, 30, 0.1);
}

.aishop-project-media-canvas img,
.aishop-project-media-canvas video,
.aishop-project-media-canvas iframe {
	background: #f6f4ef;
	object-fit: contain;
}

.aishop-project-media-type-tabs {
	display: inline-flex;
	gap: 4px;
	margin: 10px 0 0;
	border: 1px solid #e3ded4;
	border-radius: 999px;
	padding: 4px;
	background: #ffffff;
	box-shadow: 0 10px 28px rgba(31, 32, 30, 0.08);
}

.aishop-project-media-type-tabs button {
	border: 0;
	border-radius: 999px;
	padding: 8px 15px;
	color: #343632;
	background: transparent;
	font-size: 13px;
	font-weight: 700;
	cursor: pointer;
}

.aishop-project-media-type-tabs button:hover,
.aishop-project-media-type-tabs button:focus-visible,
.aishop-project-media-type-tabs button.is-active {
	color: #ffffff;
	background: #1f201e;
	outline: 0;
}

.aishop-project-product-info .aishop-eyebrow {
	color: #9a7a47;
}

.aishop-project-product-info .aishop-project-contact-panel {
	margin-top: 0;
	border-top: 0;
	border-left: 3px solid #9a7a47;
	padding: 0 0 0 20px;
}

.aishop-project-product-info .aishop-project-contact-panel h2 {
	font-size: clamp(28px, 3vw, 42px);
	line-height: 1.14;
}

.aishop-project-product-info .aishop-project-product-facts {
	margin-top: 32px;
}

.aishop-project-product-info > .aishop-eyebrow,
.aishop-project-product-info > h1,
.aishop-project-product-info > .aishop-project-summary {
	display: none;
}

.aishop-project-summary {
	max-width: 560px;
	font-size: clamp(19px, 1.6vw, 26px);
	line-height: 1.38;
	color: #343632;
}

.homesee-video-hero.has-video-ready .homesee-video-hero-poster {
	opacity: 0;
}

.homesee-video-hero.has-video-error .homesee-video-hero-poster,
.homesee-video-hero.is-mobile-video-disabled .homesee-video-hero-poster {
	opacity: 1;
}

.aishop-stage6-inquiry-background {
	filter: saturate(0.86) brightness(0.34);
	transform: scale(1.04);
}

.aishop-stage6-inquiry-shade {
	background: linear-gradient(90deg, rgba(14, 15, 13, 0.86), rgba(14, 15, 13, 0.56));
	backdrop-filter: blur(1px);
}

.aishop-stage6-inquiry-copy {
	background: rgba(20, 21, 19, 0.66);
	box-shadow: 0 28px 80px rgba(0, 0, 0, 0.22);
}

.homesee-about-page {
	background: #f5f3ee;
}

.homesee-about-nav {
	position: sticky;
	top: var(--aishop-header-height, 96px);
	z-index: 20;
	border-bottom: 1px solid rgba(31, 32, 30, 0.1);
	background: rgba(255, 255, 255, 0.88);
	backdrop-filter: blur(18px);
}

.homesee-about-nav .aishop-container {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	padding-top: 14px;
	padding-bottom: 14px;
}

.homesee-about-nav a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 40px;
	border: 1px solid #ded8cc;
	border-radius: 999px;
	padding: 9px 18px;
	color: #343632;
	background: #ffffff;
	font-size: 13px;
	font-weight: 800;
	text-decoration: none;
}

.homesee-about-nav a:hover,
.homesee-about-nav a:focus-visible {
	border-color: #1f201e;
	color: #ffffff;
	background: #1f201e;
	outline: 0;
}

.homesee-about-company-layout,
.homesee-about-faq-layout {
	display: grid;
	grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
	gap: clamp(44px, 7vw, 110px);
	align-items: start;
}

.homesee-about-editable-copy {
	color: #555851;
	font-size: 18px;
	line-height: 1.8;
}

.homesee-about-editable-copy p:first-child {
	margin-top: 0;
}

.homesee-about-section-heading h2,
.homesee-about-company-lead h2 {
	margin: 12px 0 0;
	font-family: Georgia, 'Times New Roman', serif;
	font-size: clamp(34px, 4.5vw, 62px);
	font-weight: 500;
	line-height: 1.06;
}

.homesee-about-section-heading > p:last-child {
	max-width: 720px;
	color: #686a64;
	font-size: 17px;
	line-height: 1.7;
}

.homesee-about-portfolio-pages {
	background: #ffffff;
}

.homesee-portfolio-page-stack {
	display: grid;
	gap: clamp(24px, 4vw, 54px);
	margin-top: 46px;
}

.homesee-portfolio-page {
	margin: 0;
	border: 1px solid rgba(31, 32, 30, 0.1);
	border-radius: 10px;
	padding: clamp(8px, 1.3vw, 18px);
	background: #ffffff;
	box-shadow: 0 24px 70px rgba(31, 32, 30, 0.08);
}

.homesee-portfolio-page img {
	display: block;
	width: 100%;
	height: auto;
	border-radius: 6px;
}

.homesee-about-faq-section {
	background: #f5f3ee;
}

.homesee-about-faq-list {
	display: grid;
	gap: 14px;
}

.homesee-about-faq-list article {
	border: 1px solid #ded8cc;
	border-radius: 8px;
	padding: 24px;
	background: rgba(255, 255, 255, 0.78);
}

.homesee-about-faq-list h3 {
	margin: 0;
	font-size: 19px;
	line-height: 1.35;
}

.homesee-about-faq-list p {
	margin: 12px 0 0;
	color: #686a64;
	line-height: 1.7;
}

.aishop-project-single .aishop-project-media-gallery {
	min-height: auto;
}

.aishop-project-single .aishop-project-media-viewer {
	grid-template-columns: minmax(0, 1fr);
	min-height: auto;
}

.aishop-project-single .aishop-project-media-viewer.is-single-media {
	grid-template-columns: minmax(0, 1fr);
}

.aishop-project-single .aishop-project-media-stage {
	display: flex;
	min-height: clamp(520px, 48vw, 700px);
	overflow: hidden;
}

.aishop-project-single .aishop-project-media-slide,
.aishop-project-single .aishop-project-media-canvas,
.aishop-project-single .aishop-project-image-open {
	width: 100%;
	height: 100%;
}

.aishop-project-single .aishop-project-media-slide.is-active,
.aishop-project-single .aishop-project-media-canvas {
	display: flex;
}

.aishop-project-single .aishop-project-media-canvas img,
.aishop-project-single .aishop-project-media-canvas video,
.aishop-project-single .aishop-project-media-canvas iframe {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.homesee-about-page .homesee-about-company-layout-stacked,
.homesee-about-page .homesee-about-faq-layout-stacked {
	grid-template-columns: minmax(0, 1fr);
	gap: clamp(28px, 4vw, 54px);
}

.homesee-about-page .homesee-about-company-layout-stacked .homesee-about-company-lead {
	display: block;
	max-width: 1040px;
	margin-bottom: 0;
}

.homesee-about-page .homesee-about-company-layout-stacked .homesee-about-company-lead h2,
.homesee-about-page .homesee-about-faq-layout-stacked .homesee-about-section-heading h2 {
	max-width: 980px;
}

.homesee-about-page .homesee-about-company-layout-stacked .homesee-about-editable-copy,
.homesee-about-page .homesee-about-faq-layout-stacked .homesee-about-faq-list {
	max-width: 1040px;
}

.homesee-about-page .homesee-about-faq-layout-stacked .homesee-about-faq-list article {
	display: grid;
	grid-template-columns: minmax(240px, 0.42fr) minmax(0, 0.58fr);
	gap: clamp(18px, 3vw, 40px);
	align-items: start;
}

.homesee-about-page .homesee-about-faq-layout-stacked .homesee-about-faq-list h3,
.homesee-about-page .homesee-about-faq-layout-stacked .homesee-about-faq-list p {
	margin: 0;
}

/* Stage 9.2 locked project detail product layout. */
.aishop-project-single .aishop-project-product-section {
	overflow: hidden;
}

.aishop-project-single .aishop-project-product-layout {
	isolation: isolate;
	grid-template-columns: minmax(0, 0.62fr) minmax(360px, 0.38fr);
	gap: clamp(28px, 3.8vw, 54px);
	align-items: start;
}

.aishop-project-single .aishop-project-media-gallery {
	position: relative;
	z-index: 1;
	max-width: 100%;
	overflow: hidden;
}

.aishop-project-single .aishop-project-media-viewer {
	display: grid;
	grid-template-columns: minmax(0, 1fr);
	gap: 0;
	width: 100%;
	max-width: 100%;
}

.aishop-project-single .aishop-project-media-stage {
	width: 100%;
	min-height: 0;
	aspect-ratio: 4 / 3;
	border-color: #ded8cc;
	background: #f6f4ef;
	box-shadow: 0 24px 70px rgba(31, 32, 30, 0.1);
}

.aishop-project-single .aishop-project-media-canvas,
.aishop-project-single .aishop-project-image-open {
	min-width: 0;
	max-width: 100%;
}

.aishop-project-single .aishop-project-media-canvas img,
.aishop-project-single .aishop-project-media-canvas video,
.aishop-project-single .aishop-project-media-canvas iframe {
	max-width: 100%;
	object-fit: contain;
}

.aishop-project-single .aishop-project-media-viewer .aishop-project-media-thumbnails {
	display: flex;
	flex-direction: row;
	order: 2;
	width: 100%;
	max-width: 100%;
	margin: 14px 0 0;
	padding: 4px 2px 12px;
	overflow-x: auto;
	overflow-y: hidden;
}

.aishop-project-single .aishop-project-media-viewer .aishop-project-media-thumb {
	flex: 0 0 88px;
	width: 88px;
	height: 66px;
}

.aishop-project-single .aishop-project-product-info {
	position: sticky;
	top: 138px;
	z-index: 2;
	min-width: 0;
	border: 1px solid #e1dbd0;
	border-radius: 10px;
	padding: clamp(24px, 3vw, 38px);
	background: rgba(255, 255, 255, 0.94);
	box-shadow: 0 24px 70px rgba(31, 32, 30, 0.08);
	backdrop-filter: blur(10px);
}

.aishop-project-single .aishop-project-product-info .aishop-project-contact-panel {
	border-left: 0;
	padding: 0;
}

.aishop-project-single .aishop-project-product-info .aishop-project-contact-panel .aishop-eyebrow {
	margin-top: 0;
}

.aishop-project-single .aishop-project-product-info .aishop-project-contact-panel h2 {
	font-size: clamp(32px, 3.4vw, 48px);
}

.aishop-project-single .aishop-project-product-info .aishop-project-product-facts {
	grid-template-columns: minmax(0, 1fr);
	margin-top: 28px;
}

@media (max-width: 960px) {
	.aishop-project-media-viewer,
	.homesee-about-company-layout,
	.homesee-about-faq-layout {
		grid-template-columns: minmax(0, 1fr);
	}

	.aishop-project-media-viewer .aishop-project-media-thumbnails {
		order: 2;
		flex-direction: row;
		max-height: none;
		padding: 10px 0 0;
		overflow-x: auto;
		overflow-y: hidden;
	}

	.aishop-project-media-type-tabs {
		margin-left: 0;
	}

	.aishop-project-single .aishop-project-product-layout,
	.aishop-project-single .aishop-project-media-viewer,
	.homesee-about-page .homesee-about-faq-layout-stacked .homesee-about-faq-list article {
		grid-template-columns: minmax(0, 1fr);
	}

	.aishop-project-single .aishop-project-media-gallery,
	.aishop-project-single .aishop-project-media-viewer,
	.aishop-project-single .aishop-project-media-stage {
		min-height: auto;
	}

	.aishop-project-single .aishop-project-media-stage {
		aspect-ratio: 4 / 3;
	}

	.aishop-project-product-heading h1 {
		font-size: clamp(32px, 9vw, 46px);
	}

	.aishop-project-product-info {
		position: static;
	}

	.aishop-project-single .aishop-project-product-info {
		padding: 24px;
	}
}

@media (max-width: 640px) {
	.homesee-about-nav {
		position: static;
	}

	.homesee-about-nav .aishop-container {
		display: grid;
		grid-template-columns: 1fr;
	}

	.homesee-about-company-grid {
		grid-template-columns: minmax(0, 1fr);
	}

	.homesee-portfolio-page {
		border-radius: 6px;
		padding: 6px;
	}
}

@media (min-width: 961px) and (min-height: 680px) {
	.aishop-stage6-home.is-immersive .homesee-video-hero {
		height: 100%;
		min-height: 100%;
	}
}

/* Multilingual entry pages created by HOMESEE-Decor Business Core. */
.homesee-language-page {
	max-width: 1120px;
	margin: 0 auto;
}

.aishop-entry-content.homesee-language-entry {
	max-width: none;
}

.homesee-language-lead {
	max-width: 900px;
	margin: 0 0 54px;
	color: var(--aishop-stone);
	font-family: Georgia, 'Times New Roman', serif;
	font-size: clamp(24px, 3vw, 38px);
	line-height: 1.35;
}

.homesee-language-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	border-top: 1px solid var(--aishop-line);
	border-left: 1px solid var(--aishop-line);
}

.homesee-language-grid section {
	min-width: 0;
	min-height: 290px;
	border-right: 1px solid var(--aishop-line);
	border-bottom: 1px solid var(--aishop-line);
	padding: 38px;
	background: #fff;
}

.homesee-language-grid section > span {
	display: block;
	margin-bottom: 34px;
	color: var(--aishop-warm);
	font-size: 12px;
	font-weight: 700;
}

.homesee-language-grid h2,
.homesee-language-cta h2 {
	margin: 0 0 18px;
	font-family: Georgia, 'Times New Roman', serif;
	font-size: clamp(26px, 2.5vw, 38px);
	line-height: 1.15;
}

.homesee-language-grid p {
	margin: 0;
	color: var(--aishop-stone);
}

.homesee-language-cta {
	margin-top: 56px;
	padding: 52px;
	color: #fff;
	background: var(--aishop-ink);
}

.homesee-language-cta > p:not(.aishop-eyebrow) {
	max-width: 760px;
	color: rgba(255, 255, 255, 0.78);
}

.homesee-language-cta .aishop-button-row {
	margin-top: 28px;
}

.homesee-language-cta .aishop-button-dark {
	color: var(--aishop-ink);
	background: #fff;
}

.homesee-language-cta .aishop-button-outline {
	border-color: rgba(255, 255, 255, 0.48);
	color: #fff;
}

.homesee-article-cta {
	margin: 48px 0 0;
	border-left: 4px solid var(--aishop-warm);
	padding: 30px 34px;
	background: var(--aishop-soft);
}

.homesee-article-cta h2 {
	margin-top: 0;
}

.homesee-article-cta a {
	font-weight: 700;
	text-decoration: underline;
	text-underline-offset: 4px;
}

@media (max-width: 720px) {
	.homesee-language-lead {
		margin-bottom: 38px;
		font-size: 25px;
	}

	.homesee-language-grid {
		grid-template-columns: minmax(0, 1fr);
	}

	.homesee-language-grid section {
		min-height: 0;
		padding: 28px 24px;
	}

	.homesee-language-grid section > span {
		margin-bottom: 20px;
	}

	.homesee-language-cta {
		margin-top: 38px;
		padding: 34px 24px 110px;
	}

	.homesee-language-cta .aishop-button-row,
	.homesee-language-cta .aishop-button {
		width: 100%;
	}
}

/* Stage 9.2 navigation and inquiry spacing refinements. */
.aishop-primary-menu .menu-item-has-children > a::after {
	content: "";
	display: inline-block;
	width: 6px;
	height: 6px;
	margin-left: 7px;
	border-right: 1px solid currentColor;
	border-bottom: 1px solid currentColor;
	transform: translateY(-2px) rotate(45deg);
	opacity: .68;
}

.aishop-primary-menu .sub-menu a {
	padding: 9px 0;
	font-size: 13px;
	white-space: nowrap;
}

.homesee-inquiry-preparation {
	padding-bottom: clamp(24px, 3.5vw, 46px);
}

.homesee-inquiry-preparation + .aishop-estimator-section {
	padding-top: clamp(24px, 3.5vw, 46px);
}

.aishop-estimator-section {
	padding-bottom: clamp(42px, 5vw, 72px);
}

@media (max-width: 960px) {
	.aishop-primary-menu .menu-item-has-children > a::after {
		float: right;
		margin-top: 8px;
	}

	.aishop-primary-menu .sub-menu a {
		padding-left: 16px;
		font-size: 14px;
		white-space: normal;
	}

	.homesee-inquiry-preparation,
	.homesee-inquiry-preparation + .aishop-estimator-section {
		padding-top: 34px;
		padding-bottom: 34px;
	}
}

/* Stage 9.3 estimator modal and managed inner-page hero height. */
.aishop-hero-compact {
	align-items: center;
	height: 320px;
	min-height: 320px;
	max-height: 320px;
}

.aishop-hero-compact .aishop-hero-inner {
	padding-top: 36px;
	padding-bottom: 36px;
}

.homesee-estimator-launch-section {
	padding-top: clamp(28px, 4vw, 56px);
	padding-bottom: clamp(32px, 5vw, 68px);
}

.homesee-estimator-launch {
	display: grid;
	gap: 18px;
	max-width: 860px;
	border: 1px solid rgba(32, 33, 31, 0.12);
	border-radius: 10px;
	padding: clamp(28px, 4vw, 48px);
	background: rgba(255, 255, 255, 0.78);
	box-shadow: 0 22px 70px rgba(20, 21, 19, 0.08);
}

.homesee-estimator-launch h2 {
	margin: 0;
	font-family: Georgia, 'Times New Roman', serif;
	font-size: clamp(34px, 4vw, 54px);
	font-weight: 500;
	line-height: 1.08;
}

.homesee-estimator-launch p:not(.aishop-eyebrow) {
	max-width: 720px;
	margin: 0;
	color: var(--aishop-muted);
	font-size: 17px;
	line-height: 1.65;
}

.homesee-estimator-modal[hidden] {
	display: none;
}

.homesee-estimator-modal {
	position: fixed;
	z-index: 9999;
	inset: 0;
	display: grid;
	place-items: center;
	padding: 28px;
}

.homesee-estimator-modal-backdrop {
	position: absolute;
	inset: 0;
	background: rgba(20, 21, 19, 0.66);
	backdrop-filter: blur(8px);
}

.homesee-estimator-modal-dialog {
	position: relative;
	z-index: 1;
	width: min(1120px, 100%);
	max-height: min(88vh, 920px);
	overflow: auto;
	border-radius: 12px;
	background: var(--aishop-paper);
	box-shadow: 0 34px 100px rgba(0, 0, 0, 0.34);
}

.homesee-estimator-modal-close {
	position: sticky;
	top: 14px;
	z-index: 5;
	display: block;
	margin: 14px 14px -46px auto;
	border: 1px solid rgba(32, 33, 31, 0.16);
	border-radius: 999px;
	padding: 9px 14px;
	color: var(--aishop-ink);
	background: rgba(255, 255, 255, 0.92);
	font-weight: 800;
	cursor: pointer;
}

.homesee-estimator-modal .aishop-estimator {
	box-shadow: none;
}

body.estimator-modal-open {
	overflow: hidden;
}

@media (max-width: 720px) {
	.aishop-hero-compact {
		height: 320px;
		min-height: 320px;
		max-height: 320px;
	}

	.aishop-hero-compact .aishop-hero-inner {
		padding-top: 32px;
		padding-bottom: 32px;
	}

	.homesee-estimator-modal {
		padding: 12px;
	}

	.homesee-estimator-modal-dialog {
		max-height: 92vh;
		border-radius: 8px;
	}

.homesee-estimator-modal-close {
	top: 10px;
	margin: 10px 10px -38px auto;
	}
}

/* Stage 9.4 inquiry layout and compact hero framing refinements. */
.homesee-inquiry-preparation-grid {
	grid-template-columns: minmax(0, 1.1fr) minmax(360px, 0.9fr);
	align-items: start;
	gap: clamp(36px, 6vw, 88px);
}

.homesee-inquiry-preparation .homesee-estimator-launch {
	max-width: none;
	margin-top: clamp(28px, 4vw, 48px);
	padding: clamp(24px, 3vw, 36px);
	box-shadow: 0 18px 54px rgba(20, 21, 19, 0.07);
}

.homesee-inquiry-preparation .homesee-estimator-launch h2 {
	font-size: clamp(34px, 4vw, 52px);
}

.homesee-inquiry-preparation .homesee-estimator-launch .aishop-button {
	width: min(100%, 520px);
}

.aishop-hero[data-aishop-hero-key="contact"] .aishop-hero-image,
.aishop-hero[data-aishop-hero-key="about"] .aishop-hero-image {
	object-position: center 26%;
}

.aishop-hero[data-aishop-hero-key="articles"] .aishop-hero-image {
	object-position: center 52%;
}

.homesee-about-page .homesee-about-company-layout-stacked .homesee-about-company-lead h2 {
	max-width: 980px;
	font-size: clamp(38px, 4.1vw, 58px);
	line-height: 1.14;
}

@media (max-width: 960px) {
	.homesee-inquiry-preparation-grid {
		grid-template-columns: minmax(0, 1fr);
	}

	.homesee-inquiry-preparation .homesee-estimator-launch .aishop-button {
		width: 100%;
	}
}

/* Stage 9.5 residential inquiry form, fullscreen estimator, and 360px inner-page heroes. */
.aishop-hero-compact {
	height: 360px;
	min-height: 360px;
	max-height: 360px;
}

.aishop-hero-compact .aishop-hero-inner {
	display: grid;
	align-content: center;
	min-height: 360px;
	padding-top: clamp(34px, 5vw, 56px);
	padding-bottom: clamp(34px, 5vw, 56px);
}

.homesee-estimator-modal {
	padding: 0;
	place-items: stretch;
}

.homesee-estimator-modal-dialog {
	width: 100%;
	height: 100vh;
	max-height: none;
	border-radius: 0;
	overflow: auto;
}

@supports (height: 100dvh) {
	.homesee-estimator-modal-dialog {
		height: 100dvh;
	}
}

.homesee-estimator-modal-close {
	top: 18px;
	margin: 18px 22px -58px auto;
}

.homesee-estimator-modal .aishop-estimator {
	min-height: 100%;
	border-radius: 0;
}

.homesee-inquiry-paths {
	padding-top: clamp(28px, 4vw, 56px);
	padding-bottom: clamp(28px, 4vw, 56px);
	background: #ffffff;
}

.homesee-inquiry-path-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: clamp(18px, 3vw, 32px);
}

.homesee-inquiry-path-card,
.homesee-inquiry-path-grid article {
	display: grid;
	gap: 16px;
	border: 1px solid rgba(32, 33, 31, 0.12);
	border-radius: 12px;
	padding: clamp(24px, 3vw, 38px);
	background: rgba(246, 245, 241, 0.72);
	box-shadow: 0 22px 70px rgba(20, 21, 19, 0.06);
}

.homesee-inquiry-path-card h2,
.homesee-inquiry-path-grid h3 {
	margin: 0;
	font-family: Georgia, 'Times New Roman', serif;
	font-size: clamp(28px, 3vw, 42px);
	font-weight: 500;
	line-height: 1.12;
}

.homesee-inquiry-path-card p,
.homesee-inquiry-path-grid p {
	margin: 0;
	color: var(--aishop-muted);
	line-height: 1.7;
}

.homesee-inquiry-path-grid span {
	color: var(--aishop-gold);
	font-size: 12px;
	font-weight: 900;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.aishop-button-outline {
	border: 1px solid currentColor;
	color: var(--aishop-ink);
	background: transparent;
}

.aishop-button-outline:hover,
.aishop-button-outline:focus-visible {
	color: #ffffff;
	background: var(--aishop-ink);
}

.homesee-lifestyle-intro-grid {
	display: grid;
	grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
	gap: clamp(28px, 5vw, 72px);
	align-items: start;
}

.homesee-lifestyle-intro h2,
.homesee-lifestyle-form-header h2 {
	margin: 0 0 18px;
	font-family: Georgia, 'Times New Roman', serif;
	font-size: clamp(34px, 4vw, 58px);
	font-weight: 500;
	line-height: 1.12;
}

.homesee-lifestyle-intro p,
.homesee-lifestyle-form-header p {
	max-width: 780px;
	color: var(--aishop-muted);
	font-size: 17px;
	line-height: 1.75;
}

.homesee-lifestyle-file-table {
	border: 1px solid rgba(32, 33, 31, 0.12);
	background: rgba(255, 255, 255, 0.78);
}

.homesee-lifestyle-file-table span {
	display: block;
	padding: 18px 22px;
	border-bottom: 1px solid rgba(32, 33, 31, 0.12);
	font-weight: 800;
}

.homesee-lifestyle-file-table ul {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	margin: 0;
	padding: 0;
	list-style: none;
}

.homesee-lifestyle-file-table li {
	padding: 18px 22px;
	border-right: 1px solid rgba(32, 33, 31, 0.12);
	border-bottom: 1px solid rgba(32, 33, 31, 0.12);
}

.homesee-lifestyle-form {
	display: grid;
	gap: clamp(18px, 3vw, 28px);
}

.homesee-lifestyle-form-header,
.homesee-lifestyle-card {
	border: 1px solid rgba(32, 33, 31, 0.12);
	border-radius: 12px;
	padding: clamp(24px, 4vw, 46px);
	background: #ffffff;
	box-shadow: 0 24px 80px rgba(20, 21, 19, 0.06);
}

.homesee-lifestyle-card h3 {
	margin: 0 0 22px;
	font-size: clamp(22px, 2vw, 30px);
	line-height: 1.25;
}

.homesee-lifestyle-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 20px 22px;
}

.homesee-lifestyle-grid label,
.homesee-lifestyle-room-list label {
	display: grid;
	gap: 8px;
	font-weight: 800;
}

.homesee-lifestyle-grid input,
.homesee-lifestyle-grid select,
.homesee-lifestyle-grid textarea,
.homesee-lifestyle-room-list textarea {
	width: 100%;
	border: 1px solid rgba(32, 33, 31, 0.18);
	border-radius: 6px;
	padding: 13px 14px;
	background: #fff;
	color: var(--aishop-ink);
	font: inherit;
	font-weight: 400;
}

.homesee-lifestyle-wide {
	grid-column: 1 / -1;
}

.homesee-lifestyle-options,
.homesee-lifestyle-checkset {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 14px 18px;
	margin-top: 22px;
}

.homesee-lifestyle-options label,
.homesee-lifestyle-checkset label {
	display: flex;
	gap: 8px;
	align-items: flex-start;
	font-weight: 600;
	line-height: 1.5;
}

.homesee-lifestyle-checkset fieldset {
	margin: 0;
	border: 1px solid rgba(32, 33, 31, 0.12);
	border-radius: 8px;
	padding: 18px;
}

.homesee-lifestyle-checkset legend {
	padding: 0 8px;
	font-weight: 900;
}

.homesee-lifestyle-room-list {
	display: grid;
	gap: 20px;
}

.homesee-lifestyle-room-list small {
	color: var(--aishop-muted);
	font-weight: 400;
	line-height: 1.6;
}

.homesee-lifestyle-upload {
	margin-top: 24px;
	border: 1px dashed rgba(32, 33, 31, 0.24);
	border-radius: 10px;
	padding: 22px;
	background: rgba(246, 245, 241, 0.7);
}

.homesee-lifestyle-upload label {
	display: block;
	margin-bottom: 12px;
	font-weight: 900;
}

.homesee-lifestyle-upload p {
	margin-bottom: 0;
	color: var(--aishop-muted);
}

.homesee-lifestyle-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
	align-items: center;
}

.homesee-lifestyle-reference-grid {
	display: grid;
	gap: clamp(18px, 3vw, 32px);
}

.homesee-lifestyle-reference-grid figure {
	margin: 0;
	border: 1px solid rgba(32, 33, 31, 0.12);
	border-radius: 12px;
	padding: clamp(12px, 2vw, 20px);
	background: #ffffff;
	box-shadow: 0 22px 70px rgba(20, 21, 19, 0.06);
}

.homesee-lifestyle-reference-grid img {
	display: block;
	width: 100%;
	height: auto;
	border-radius: 8px;
}

@media (max-width: 960px) {
	.homesee-inquiry-path-grid,
	.homesee-lifestyle-intro-grid,
	.homesee-lifestyle-grid,
	.homesee-lifestyle-options,
	.homesee-lifestyle-checkset {
		grid-template-columns: minmax(0, 1fr);
	}
}

@media (max-width: 720px) {
	.aishop-hero-compact {
		height: 360px;
		min-height: 360px;
		max-height: 360px;
	}

	.aishop-hero-compact .aishop-hero-inner {
		min-height: 360px;
	}

	.homesee-estimator-modal-close {
		top: 12px;
		margin: 12px 12px -50px auto;
	}

	.homesee-lifestyle-file-table ul {
		grid-template-columns: minmax(0, 1fr);
	}

	.homesee-lifestyle-actions .aishop-button {
		width: 100%;
	}
}

/* Stage 9.6 language removal, inquiry estimator focus, article hero fallback, and inline lifestyle references. */
.homesee-inquiry-estimator-only {
	padding-top: clamp(42px, 6vw, 78px);
	padding-bottom: clamp(42px, 6vw, 78px);
}

.homesee-inquiry-estimator-only .homesee-estimator-launch {
	width: 100%;
	max-width: 860px;
	margin: 0 auto;
	text-align: center;
	justify-items: center;
}

.homesee-inquiry-estimator-only .homesee-estimator-launch .aishop-button {
	width: min(100%, 620px);
}

.aishop-hero[data-aishop-hero-key="articles"] {
	background: #181a17;
}

.aishop-hero[data-aishop-hero-key="articles"] .aishop-hero-image {
	opacity: 1;
	object-position: center;
}

.aishop-hero[data-aishop-hero-key="articles"] .aishop-hero-overlay {
	background: linear-gradient(90deg, rgba(20, 21, 19, 0.68), rgba(20, 21, 19, 0.35));
}

.homesee-lifestyle-reference-strip {
	border: 1px solid rgba(32, 33, 31, 0.12);
	border-radius: 12px;
	padding: clamp(18px, 3vw, 28px);
	background: rgba(255, 255, 255, 0.78);
	box-shadow: 0 18px 54px rgba(20, 21, 19, 0.05);
	overflow: hidden;
}

.homesee-lifestyle-reference-strip .aishop-eyebrow {
	margin-bottom: 14px;
}

.homesee-lifestyle-reference-strip-scroll {
	display: grid;
	grid-auto-flow: column;
	grid-auto-columns: minmax(180px, 260px);
	gap: 16px;
	overflow-x: auto;
	overscroll-behavior-inline: contain;
	padding-bottom: 8px;
	scrollbar-width: thin;
}

.homesee-lifestyle-reference-strip figure {
	margin: 0;
	border: 1px solid rgba(32, 33, 31, 0.1);
	border-radius: 10px;
	padding: 8px;
	background: #ffffff;
}

.homesee-lifestyle-reference-strip img {
	display: block;
	width: 100%;
	height: 180px;
	border-radius: 8px;
	object-fit: cover;
	object-position: top center;
}

.homesee-residential-questionnaire-page .homesee-lifestyle-intro-grid {
	grid-template-columns: minmax(0, 1fr);
}

.homesee-lifestyle-grid input[type="text"][name="aishop_expected_start_date"]::placeholder {
	color: rgba(32, 33, 31, 0.52);
}

#general-requirement-form,
.homesee-lifestyle-intro {
	scroll-margin-top: 120px;
}

.homesee-residential-questionnaire-page .homesee-lifestyle-intro {
	display: block;
	opacity: 1;
	visibility: visible;
	transform: none;
}

.homesee-residential-questionnaire-page .homesee-lifestyle-intro * {
	opacity: 1;
	visibility: visible;
}

@media (max-width: 720px) {
	.homesee-inquiry-estimator-only .homesee-estimator-launch .aishop-button {
		width: 100%;
	}

	.homesee-lifestyle-reference-strip-scroll {
		grid-auto-columns: minmax(150px, 72vw);
	}

	.homesee-lifestyle-reference-strip img {
		height: 160px;
	}
}
