/* =========================================================================
   HJ9 Interiors - main stylesheet
   Design language recreated from the original site.
   Website design & development by Dulakshi RB (https://dulakshi.com)
   ========================================================================= */

:root {
	--hj9-background: #f9f6f0;
	--hj9-foreground: #1a1715;
	--hj9-primary: #9c7c5c;
	--hj9-secondary: #f0ebe1;
	--hj9-accent: #6b7c66;
	--hj9-taupe: #b8a898;
	--hj9-muted-foreground: #5a534c;
	--hj9-border: #ddd5c8;
	--hj9-gold: #b8965a;
	--hj9-heading-font: "Cormorant Garamond", Georgia, serif;
	--hj9-body-font: "Karla", ui-sans-serif, system-ui, sans-serif;
	--hj9-radius: 2px;
	--hj9-container: 1320px;
	--hj9-gutter: 20px;
	--hj9-section-y: 96px;
	--hj9-shadow-soft: 0 20px 50px -20px rgba(26, 23, 21, 0.28);
	--hj9-shadow-elevated: 0 30px 60px -24px rgba(26, 23, 21, 0.22), 0 0 0 1px rgba(188, 150, 90, 0.06);
	--hj9-error: #b5654d;
	--hj9-error-foreground: #7a3a2a;
}

@media (min-width: 1024px) {
	:root {
		--hj9-gutter: 48px;
		--hj9-section-y: 128px;
	}
}

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

html { -webkit-text-size-adjust: 100%; scroll-behavior: auto; }

body {
	margin: 0;
	background: var(--hj9-background);
	color: var(--hj9-foreground);
	font-family: var(--hj9-body-font);
	font-size: 1rem;
	line-height: 1.65;
	letter-spacing: 0.01em;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
	font-family: var(--hj9-heading-font);
	font-weight: 500;
	color: var(--hj9-foreground);
	line-height: 1.12;
	margin: 0 0 0.4em;
	letter-spacing: 0.02em;
}

h1 { font-size: 2.5rem; line-height: 1.06; letter-spacing: 0.01em; }
h2 { font-size: 2.125rem; }
h3 { font-size: 1.5rem; letter-spacing: 0.03em; }

@media (min-width: 640px) {
	h1 { font-size: 3.25rem; }
	h2 { font-size: 2.375rem; }
}

@media (min-width: 1024px) {
	h1 { font-size: 4.5rem; }
	h2 { font-size: 2.75rem; }
}

p { margin: 0 0 1em; }
p:last-child { margin-bottom: 0; }

a { color: var(--hj9-primary); text-decoration: none; transition: color 0.3s ease; }
a:hover { color: var(--hj9-gold); text-decoration: none; }

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

ul, ol { margin: 0; padding: 0; list-style: none; }

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

/* =========================================================================
   Layout
   ========================================================================= */
.hj9-container {
	max-width: var(--hj9-container);
	margin-inline: auto;
	padding-inline: var(--hj9-gutter);
	width: 100%;
}

.hj9-main { padding-bottom: 64px; }
@media (min-width: 1024px) { .hj9-main { padding-bottom: 0; } }

.hj9-section { padding: var(--hj9-section-y) var(--hj9-gutter); }
.hj9-section--cream { background: var(--hj9-secondary); }
.hj9-section--center { text-align: center; }

.hj9-eyebrow {
	font-family: var(--hj9-body-font);
	font-size: 0.6875rem;
	letter-spacing: 0.26em;
	text-transform: uppercase;
	color: var(--hj9-gold);
	margin: 0;
	font-weight: 500;
}

.hj9-section-head { max-width: 50rem; }
.hj9-section-head--center { margin-inline: auto; text-align: center; }
.hj9-section-head .hj9-eyebrow { margin-bottom: 1.25rem; }
.hj9-section-head h2 { margin-bottom: 0; }

/* Homepage section headings */
body.home .hj9-section-head h2 { font-size: 2.5rem; line-height: 1.08; }
@media (min-width: 1024px) { body.home .hj9-section-head h2 { font-size: 3.25rem; } }
body.home .hj9-instagram .hj9-section-head h2 { font-size: 2rem; line-height: 1.15; }
@media (min-width: 1024px) { body.home .hj9-instagram .hj9-section-head h2 { font-size: 2.5rem; } }

.hj9-section-sub {
	margin-top: 1.5rem;
	color: var(--hj9-muted-foreground);
	max-width: 44rem;
	line-height: 1.75;
}

/* =========================================================================
   Buttons
   ========================================================================= */
.hj9-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 18px 32px;
	font-family: var(--hj9-body-font);
	font-size: 0.68rem;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	font-weight: 500;
	border-radius: var(--hj9-radius);
	border: 1px solid transparent;
	transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
	cursor: pointer;
	text-align: center;
	position: relative;
	overflow: hidden;
}

.hj9-btn--primary {
	background: var(--hj9-primary);
	color: #fff;
	border-color: var(--hj9-primary);
}
.hj9-btn--primary:hover {
	background: var(--hj9-gold);
	border-color: var(--hj9-gold);
	color: #fff;
	box-shadow: 0 8px 24px -8px rgba(184, 150, 90, 0.35);
}
.hj9-btn--primary:active { transform: scale(0.98); }
.hj9-btn--primary:focus-visible { outline: 2px solid var(--hj9-gold); outline-offset: 2px; }

.hj9-btn--outline {
	border-color: rgba(26, 23, 21, 0.2);
	color: var(--hj9-foreground);
	background: transparent;
}
.hj9-btn--outline:hover {
	border-color: var(--hj9-gold);
	color: var(--hj9-gold);
}
.hj9-btn--outline:active { transform: scale(0.98); }
.hj9-btn--outline:focus-visible { outline: 2px solid var(--hj9-gold); outline-offset: 2px; }

.hj9-btn--light {
	background: rgba(249, 246, 240, 0.92);
	color: var(--hj9-foreground);
	border-color: rgba(249, 246, 240, 0.3);
	backdrop-filter: blur(8px);
}
.hj9-btn--light:hover {
	background: rgba(249, 246, 240, 1);
	border-color: var(--hj9-gold);
	color: var(--hj9-gold);
}
.hj9-btn--light:active { transform: scale(0.98); }
.hj9-btn--light:focus-visible { outline: 2px solid var(--hj9-gold); outline-offset: 2px; }

.hj9-btn-row { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 2.5rem; }

/* =========================================================================
   Header — editorial masthead
   ========================================================================= */
.hj9-header {
	position: sticky;
	top: 0;
	z-index: 50;
	border-bottom: 1px solid color-mix(in srgb, var(--hj9-border) 50%, transparent);
	background: color-mix(in srgb, var(--hj9-background) 92%, transparent);
	backdrop-filter: blur(12px);
	transition: box-shadow 0.4s ease;
}
.hj9-header.is-scrolled { box-shadow: 0 12px 40px -20px rgba(26, 23, 21, 0.3); }

/* Scroll progress line */

/* Utility strip */
.hj9-header__utility {
	display: none;
	background: var(--hj9-secondary);
	border-bottom: 1px solid color-mix(in srgb, var(--hj9-gold) 15%, var(--hj9-border) 35%, transparent);
}
@media (min-width: 1024px) {
	.hj9-header__utility { display: block; }
}
.hj9-header__utility-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	min-height: 36px;
}
.hj9-header__utility-tag {
	margin: 0;
	font-size: 0.6rem;
	letter-spacing: 0.24em;
	text-transform: uppercase;
	color: var(--hj9-muted-foreground);
}
.hj9-header__utility-list { display: flex; gap: 28px; }
.hj9-header__utility-list li {
	display: flex;
	align-items: center;
	gap: 6px;
	font-size: 0.6rem;
	letter-spacing: 0.22em;
	text-transform: uppercase;
}
.hj9-header__utility-list svg { color: var(--hj9-gold); flex-shrink: 0; }
.hj9-header__utility-list a { color: var(--hj9-muted-foreground); transition: color 0.3s ease; }
.hj9-header__utility-list a:hover { color: var(--hj9-gold); }

/* Main bar */
.hj9-header__inner {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	align-items: center;
	gap: 16px;
	padding-top: 14px;
	padding-bottom: 14px;
	transition: padding 0.3s ease;
}
.hj9-header.is-scrolled .hj9-header__inner { padding-top: 8px; padding-bottom: 8px; }
@media (min-width: 1024px) {
	.hj9-header__inner { grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr); }
}

/* Brand */
.hj9-brand {
	display: inline-flex;
	align-items: center;
	gap: 14px;
	min-width: 0;
	justify-self: start;
}
.hj9-brand__logo {
	width: 64px;
	height: 64px;
	object-fit: contain;
	flex-shrink: 0;
}
@media (min-width: 1024px) {
	.hj9-brand__logo { width: 96px; height: 96px; }
}
.hj9-brand__text { display: flex; flex-direction: column; min-width: 0; }
.hj9-brand__title {
	font-family: var(--hj9-heading-font);
	font-size: 1.375rem;
	line-height: 1;
	letter-spacing: 0.04em;
	color: var(--hj9-foreground);
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}
.hj9-brand__sub {
	font-size: 0.56rem;
	letter-spacing: 0.32em;
	text-transform: uppercase;
	color: var(--hj9-gold);
	margin-top: 4px;
	white-space: nowrap;
	font-weight: 500;
}

/* Desktop nav — centred */
.hj9-nav { display: none; justify-content: center; }
@media (min-width: 1024px) {
	.hj9-nav { display: flex; align-items: center; }
}
.hj9-nav__list { display: flex; align-items: center; gap: 38px; }
.hj9-nav__list a {
	position: relative;
	padding: 6px 0;
	font-size: 0.7rem;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: var(--hj9-foreground);
	transition: color 0.3s ease;
	font-weight: 500;
}
.hj9-nav__list a::after {
	content: "";
	position: absolute;
	left: 0;
	right: 100%;
	bottom: 0;
	height: 1px;
	background: var(--hj9-gold);
	transition: right 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.hj9-nav__list a:hover, .hj9-nav__list a:focus-visible { color: var(--hj9-gold); }
.hj9-nav__list a:hover::after, .hj9-nav__list a:focus-visible::after { right: 0; }
.hj9-nav__list .current-menu-item > a,
.hj9-nav__list .current_page_item > a {
	color: var(--hj9-gold);
}
.hj9-nav__list .current-menu-item > a::after,
.hj9-nav__list .current_page_item > a::after { right: 0; }
.hj9-nav__list li { list-style: none; }

/* Actions (CTA + toggle) */
.hj9-header__actions {
	display: flex;
	align-items: center;
	gap: 10px;
	justify-self: end;
}
.hj9-header__cta { padding: 12px 22px; }
@media (max-width: 1023.98px) {
	.hj9-header__cta { display: none; }
}

/* Hamburger → X */
.hj9-nav-toggle {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 5px;
	width: 44px;
	height: 44px;
	background: none;
	border: 0;
	padding: 0;
	color: var(--hj9-foreground);
	cursor: pointer;
	border-radius: var(--hj9-radius);
	transition: background 0.2s ease;
}
.hj9-nav-toggle:hover { background: color-mix(in srgb, var(--hj9-foreground) 6%, transparent); }
.hj9-nav-toggle:focus-visible { outline: 2px solid var(--hj9-gold); outline-offset: 2px; }
.hj9-nav-toggle span {
	display: block;
	width: 24px;
	height: 2px;
	border-radius: 2px;
	background: currentColor;
	transition: transform 0.3s ease, opacity 0.2s ease;
}
.hj9-nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hj9-nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.hj9-nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
@media (min-width: 1024px) {
	.hj9-nav-toggle { display: none; }
}

/* =========================================================================
   Mobile menu — full-screen overlay
   ========================================================================= */
.hj9-mobile-menu {
	position: fixed;
	inset: 0;
	z-index: 40;
	background: var(--hj9-secondary);
	overflow-y: auto;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.4s ease, visibility 0.4s ease;
}
.hj9-mobile-menu.is-open { opacity: 1; visibility: visible; }
.hj9-mobile-menu__inner {
	min-height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding-top: calc(96px + 1rem);
	padding-bottom: 48px;
}
.hj9-mobile-menu__list { display: flex; flex-direction: column; }
.hj9-mobile-menu__list a {
	display: block;
	font-family: var(--hj9-heading-font);
	font-size: clamp(1.5rem, 5vw, 2.5rem);
	line-height: 1.15;
	padding: 10px 0;
	color: var(--hj9-foreground);
	border-bottom: 1px solid color-mix(in srgb, var(--hj9-gold) 12%, var(--hj9-border) 50%, transparent);
	opacity: 0;
	transform: translateY(20px);
	transition: opacity 0.6s ease, transform 0.6s ease, color 0.3s ease;
	letter-spacing: 0.02em;
	font-weight: 400;
}
.hj9-mobile-menu__list li { list-style: none; }
.hj9-mobile-menu__list a:hover { color: var(--hj9-gold); }
.hj9-mobile-menu__list li:nth-child(1) a { transition-delay: 70ms; }
.hj9-mobile-menu__list li:nth-child(2) a { transition-delay: 140ms; }
.hj9-mobile-menu__list li:nth-child(3) a { transition-delay: 210ms; }
.hj9-mobile-menu__list li:nth-child(4) a { transition-delay: 280ms; }
.hj9-mobile-menu__list li:nth-child(5) a { transition-delay: 350ms; }
.hj9-mobile-menu__list li:nth-child(6) a { transition-delay: 420ms; }
.hj9-mobile-menu__list li:nth-child(7) a { transition-delay: 490ms; }
.hj9-mobile-menu.is-open .hj9-mobile-menu__list a {
	opacity: 1;
	transform: none;
}
.hj9-mobile-menu__foot {
	margin-top: 48px;
	display: grid;
	gap: 24px;
	justify-items: start;
	opacity: 0;
	transform: translateY(20px);
	transition: opacity 0.6s ease 0.5s, transform 0.6s ease 0.5s;
}
.hj9-mobile-menu.is-open .hj9-mobile-menu__foot { opacity: 1; transform: none; }
.hj9-mobile-menu__cta { min-width: 220px; }
.hj9-mobile-menu__contact { display: grid; gap: 10px; font-size: 0.9375rem; color: var(--hj9-muted-foreground); }
.hj9-mobile-menu__contact a { color: var(--hj9-foreground); }
.hj9-mobile-menu__contact a:hover { color: var(--hj9-gold); }
@media (min-width: 1024px) {
	.hj9-mobile-menu { display: none; }
}
body.hj9-menu-open { overflow: hidden; }
@media (prefers-reduced-motion: reduce) {
	.hj9-mobile-menu,
	.hj9-mobile-menu__list a,
	.hj9-mobile-menu__foot { opacity: 1 !important; transform: none !important; transition: none; }
	.hj9-nav-toggle span { transition: none; }
}

/* =========================================================================
   Hero
   ========================================================================= */
.hj9-hero { position: relative; overflow: hidden; }
.hj9-hero__media {
	width: 100%;
	height: 80vh;
	min-height: 560px;
	object-fit: cover;
	will-change: transform;
}
@media (min-width: 1024px) {
	.hj9-hero__media { height: 92vh; }
}
.hj9-hero__overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(
		180deg,
		rgba(26, 23, 21, 0.45) 0%,
		rgba(26, 23, 21, 0.25) 50%,
		rgba(26, 23, 21, 0.4) 100%
	);
}
.hj9-hero__content {
	position: absolute;
	inset: 0;
	display: flex;
	align-items: center;
	padding-inline: var(--hj9-gutter);
}
.hj9-hero__inner { max-width: var(--hj9-container); margin-inline: auto; width: 100%; }
.hj9-hero__text { max-width: 44rem; }
.hj9-hero__text h1 { color: var(--hj9-background); font-weight: 400; letter-spacing: 0.01em; }
.hj9-hero__text p {
	margin-top: 1.75rem;
	max-width: 38rem;
	color: color-mix(in srgb, var(--hj9-background) 88%, transparent);
	font-size: 1.0625rem;
	line-height: 1.75;
	letter-spacing: 0.015em;
}
.hj9-hero__cta { margin-top: 2.75rem; display: flex; flex-wrap: wrap; gap: 16px; }

/* Film grain texture overlay for editorial depth */
.hj9-hero__grain {
	position: absolute;
	inset: 0;
	opacity: 0.035;
	pointer-events: none;
	background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
	background-repeat: repeat;
	background-size: 200px 200px;
	mix-blend-mode: overlay;
}

/* =========================================================================
   Page header (interior pages)
   ========================================================================= */
.hj9-page-head {
	padding: var(--hj9-section-y) var(--hj9-gutter);
	background: var(--hj9-secondary);
	position: relative;
}
.hj9-page-head::after {
	content: "";
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 48px;
	height: 1px;
	background: var(--hj9-gold);
}
.hj9-page-head--cream { background: var(--hj9-secondary); }
.hj9-page-head h1 { margin: 1.25rem 0 0; max-width: 48rem; font-size: 2.5rem; line-height: 1.08; font-weight: 400; }
@media (min-width: 1024px) { .hj9-page-head h1 { font-size: 3.5rem; } }
.hj9-page-head__intro { margin-top: 1.5rem; max-width: 48rem; color: var(--hj9-muted-foreground); line-height: 1.75; }

/* =========================================================================
   Intro (two-column image + text)
   ========================================================================= */
.hj9-two-col {
	display: grid;
	align-items: center;
	gap: 64px;
}
@media (min-width: 1024px) { .hj9-two-col { grid-template-columns: 1fr 1fr; } }
.hj9-two-col__media { overflow: hidden; border-radius: var(--hj9-radius); box-shadow: var(--hj9-shadow-elevated); }
.hj9-two-col__media img { width: 100%; object-fit: cover; transition: transform 1.2s cubic-bezier(0.22, 1, 0.36, 1); }
.hj9-two-col__media img.hj9-zoom { will-change: transform; }
.hj9-two-col__text .hj9-eyebrow { margin-bottom: 1.25rem; }
.hj9-two-col__text h2 { margin-bottom: 1.75rem; }
.hj9-two-col__text h2 { font-size: 2.5rem; line-height: 1.08; }
@media (min-width: 1024px) { .hj9-two-col__text h2 { font-size: 3.25rem; } }
.hj9-intro .hj9-two-col__text h2 { font-size: 2rem; line-height: 1.12; }
@media (min-width: 1024px) { .hj9-intro .hj9-two-col__text h2 { font-size: 2.5rem; } }

/* About page: story + personality titles */
body.page-template-page-about .hj9-two-col__text h2 { font-size: 2rem; line-height: 1.12; }
@media (min-width: 1024px) { body.page-template-page-about .hj9-two-col__text h2 { font-size: 2.5rem; } }
@media (min-width: 1024px) { body.page-template-page-about .hj9-two-col { grid-template-columns: 0.9fr 1.1fr; } }
/* About page: philosophy + approach titles */
body.page-template-page-about .hj9-prose--center h2,
body.page-template-page-about .hj9-section-head h2 { font-size: 2.5rem; line-height: 1.08; }
@media (min-width: 1024px) {
	body.page-template-page-about .hj9-prose--center h2,
	body.page-template-page-about .hj9-section-head h2 { font-size: 3.25rem; }
}
/* Interior-page closing section heads */
body.page-template-page-services .hj9-section-head h2,
body.page-template-page-process .hj9-section-head h2,
body.page-template-page-faq .hj9-section-head h2 { font-size: 2rem; line-height: 1.12; }
@media (min-width: 1024px) {
	body.page-template-page-services .hj9-section-head h2,
	body.page-template-page-process .hj9-section-head h2,
	body.page-template-page-faq .hj9-section-head h2 { font-size: 2.5rem; }
}
.hj9-two-col__text .hj9-prose { margin-top: 1.75rem; }
.hj9-prose p { color: var(--hj9-muted-foreground); margin-bottom: 1.375rem; line-height: 1.8; }
.hj9-prose p:last-child { margin-bottom: 0; }

/* Philosophy (full-bleed split, like original) */
.hj9-philosophy-split__grid { display: grid; }
@media (min-width: 1024px) { .hj9-philosophy-split__grid { grid-template-columns: 1fr 1fr; } }
.hj9-philosophy-split__media { overflow: hidden; }
.hj9-philosophy-split__media img { width: 100%; height: 100%; min-height: 280px; object-fit: cover; display: block; }
@media (min-width: 768px) { .hj9-philosophy-split__media img { min-height: 420px; } }
.hj9-philosophy-split__content { display: flex; align-items: center; padding: var(--hj9-section-y) var(--hj9-gutter); background: var(--hj9-secondary); }
@media (min-width: 1024px) { .hj9-philosophy-split__content { padding: var(--hj9-section-y) 72px; } }
.hj9-philosophy-split__inner { max-width: 34rem; }
.hj9-philosophy-split__inner .hj9-eyebrow { margin-bottom: 1.25rem; }
.hj9-philosophy-split__inner h2 { margin-bottom: 1.75rem; font-size: 2.5rem; line-height: 1.08; }
@media (min-width: 1024px) { .hj9-philosophy-split__inner h2 { font-size: 3.25rem; } }
.hj9-philosophy-split__inner .hj9-prose { margin-top: 1.75rem; }

/* =========================================================================
   Pain points
   ========================================================================= */
.hj9-pain__list {
	margin: 4rem auto 0;
	max-width: 56rem;
	display: grid;
	gap: 28px;
}
@media (min-width: 768px) { .hj9-pain__list { grid-template-columns: 1fr 1fr; } }
.hj9-pain__item {
	border-left: 2px solid var(--hj9-gold);
	padding-left: 24px;
	color: var(--hj9-muted-foreground);
	line-height: 1.75;
	font-size: 1.0625rem;
}
.hj9-pain__closing { margin-top: 4rem; text-align: center; }
.hj9-pain__closing p { font-family: var(--hj9-heading-font); font-size: 2rem; color: var(--hj9-foreground); font-style: italic; font-weight: 400; }

/* =========================================================================
   Services
   ========================================================================= */
.hj9-services { display: grid; gap: 40px; margin-top: 4rem; }
@media (min-width: 768px) { .hj9-services { grid-template-columns: repeat(3, 1fr); } }

.hj9-service-card {
	display: flex;
	flex-direction: column;
	border-top: 1px solid var(--hj9-gold);
	padding-top: 28px;
}
.hj9-service-card__num { font-family: var(--hj9-heading-font); font-size: 2.5rem; color: var(--hj9-gold); font-weight: 400; }
.hj9-service-card h3 { margin: 14px 0 0; font-size: 1.625rem; line-height: 1.25; }
.hj9-service-card__desc { margin-top: 18px; color: var(--hj9-muted-foreground); line-height: 1.75; }
.hj9-service-card__list { margin-top: 24px; }
.hj9-service-card__list li {
	display: flex;
	gap: 12px;
	margin-bottom: 10px;
	font-size: 0.9375rem;
	color: var(--hj9-muted-foreground);
}
.hj9-service-card__list li::before { content: "—"; color: var(--hj9-gold); }

/* =========================================================================
   Portfolio
   ========================================================================= */
.hj9-filter { display: flex; flex-wrap: wrap; gap: 24px 24px; margin-top: 36px; }
.hj9-filter__item {
	background: none;
	border: 0;
	padding: 0;
	font-family: var(--hj9-body-font);
	font-size: 0.68rem;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: var(--hj9-muted-foreground);
	cursor: pointer;
	transition: color 0.3s ease;
	font-weight: 500;
}
.hj9-filter__item:hover, .hj9-filter__item.is-active { color: var(--hj9-gold); }
.hj9-filter--legend { gap: 8px 24px; }
.hj9-filter__label {
	font-family: var(--hj9-body-font);
	font-size: 0.68rem;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: var(--hj9-muted-foreground);
}

.hj9-grid { display: grid; gap: 40px; margin-top: 56px; }
@media (min-width: 768px) { .hj9-grid { grid-template-columns: repeat(3, 1fr); } }

.hj9-project-card { display: block; color: inherit; }
.hj9-project-card:hover { color: inherit; }
.hj9-project-card__media { overflow: hidden; border-radius: var(--hj9-radius); position: relative; }
.hj9-project-card__media img {
	width: 100%;
	aspect-ratio: 3 / 2;
	object-fit: cover;
	transition: transform 1s cubic-bezier(0.22, 1, 0.36, 1);
}
.hj9-project-card:hover .hj9-project-card__media img { transform: scale(1.06); }
.hj9-project-card__overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, transparent 30%, rgba(26, 23, 21, 0.65) 100%);
	opacity: 0;
	display: flex;
	align-items: flex-end;
	justify-content: flex-start;
	padding: 24px;
	transition: opacity 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}
.hj9-project-card:hover .hj9-project-card__overlay { opacity: 1; }
.hj9-project-card__view {
	font-size: 0.68rem;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	color: #fff;
	font-weight: 500;
}
.hj9-project-card h3 { margin: 18px 0 0; font-size: 1.5rem; letter-spacing: 0.02em; }
.hj9-project-card__meta { margin-top: 6px; font-size: 0.875rem; color: var(--hj9-muted-foreground); letter-spacing: 0.04em; }

.hj9-projects-empty { margin-top: 48px; color: var(--hj9-muted-foreground); }

/* =========================================================================
   Philosophy / centered prose
   ========================================================================= */
.hj9-prose--lead { margin-top: 1.5rem; max-width: 48rem; }
.hj9-prose--lead p { color: var(--hj9-muted-foreground); }

/* =========================================================================
   Process steps
   ========================================================================= */
.hj9-process-grid { display: grid; gap: 40px; margin-top: 4rem; }
@media (min-width: 640px) { .hj9-process-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .hj9-process-grid { grid-template-columns: repeat(3, 1fr); } }
.hj9-process-step { border-top: 1px solid var(--hj9-gold); padding-top: 24px; }
.hj9-process-step__num { font-family: var(--hj9-heading-font); font-size: 2.125rem; color: var(--hj9-gold); font-weight: 400; }
.hj9-process-step h3 { margin: 10px 0 0; font-size: 1.25rem; letter-spacing: 0.08em; text-transform: uppercase; font-weight: 500; }
.hj9-process-step p { margin-top: 14px; font-size: 0.9375rem; color: var(--hj9-muted-foreground); line-height: 1.75; }

/* Process page: detailed steps */
.hj9-process-detail { max-width: 56rem; }
.hj9-process-detail__item { border-top: 1px solid var(--hj9-border); padding: 48px 0; display: grid; gap: 20px; }
@media (min-width: 768px) { .hj9-process-detail__item { grid-template-columns: 90px 1fr; gap: 48px; } }
.hj9-process-detail__num { font-family: var(--hj9-heading-font); font-size: 2.75rem; color: var(--hj9-gold); font-weight: 400; }
.hj9-process-detail h2 { margin: 4px 0 14px; }
.hj9-process-detail p { color: var(--hj9-muted-foreground); line-height: 1.75; }

/* =========================================================================
   Testimonials
   ========================================================================= */
.hj9-testimonials { display: grid; gap: 48px; margin-top: 4rem; }
@media (min-width: 768px) { .hj9-testimonials { grid-template-columns: repeat(3, 1fr); } }
.hj9-testimonial { border-top: 1px solid var(--hj9-gold); padding-top: 28px; position: relative; }
.hj9-testimonial blockquote {
	margin: 0;
	font-family: var(--hj9-heading-font);
	font-size: 1.375rem;
	line-height: 1.65;
	color: var(--hj9-foreground);
	font-style: italic;
	font-weight: 400;
	position: relative;
	padding-left: 0;
}
.hj9-testimonial blockquote::before {
	content: "\201C";
	position: absolute;
	top: -0.15em;
	left: -0.15em;
	font-size: 3.5rem;
	color: var(--hj9-gold);
	font-family: var(--hj9-heading-font);
	line-height: 1;
	opacity: 0.5;
}
.hj9-testimonial blockquote::after { content: "\201D"; }
.hj9-testimonial figcaption {
	margin-top: 24px;
	font-size: 0.68rem;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	color: var(--hj9-gold);
	font-weight: 500;
}

/* =========================================================================
   Smash Balloon feed override
   ========================================================================= */
.hj9-instagram-feed { margin-top: 48px; }
.hj9-instagram-feed .sbi { border: none !important; padding: 0 !important; }
.hj9-instagram-feed .sbi_items { gap: 12px !important; display: grid !important; grid-template-columns: 1fr !important; }
.hj9-instagram-feed .sbi_item { border-radius: var(--hj9-radius) !important; overflow: hidden; }
.hj9-instagram-feed .sbi_item img { transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1), filter 0.5s ease !important; }
.hj9-instagram-feed .sbi_item:hover img { transform: scale(1.05); filter: brightness(0.9); }
.hj9-instagram-feed .sbi_username, .hj9-instagram-feed .sbi_follow_btn, .hj9-instagram-feed .sbi_header { display: none !important; }
@media (min-width: 768px) {
	.hj9-instagram-feed .sbi_items { grid-template-columns: repeat(3, 1fr) !important; }
}

/* =========================================================================
   CTA band
   ========================================================================= */
.hj9-cta { position: relative; overflow: hidden; background: var(--hj9-primary); min-height: 360px; display: flex; align-items: center; }
@media (min-width: 768px) { .hj9-cta { min-height: 420px; } }
.hj9-cta__media { width: 100%; height: 50vh; min-height: 320px; object-fit: cover; will-change: transform; }
@media (min-width: 768px) { .hj9-cta__media { height: 65vh; min-height: 460px; } }
.hj9-cta__overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(
		180deg,
		rgba(26, 23, 21, 0.45) 0%,
		rgba(26, 23, 21, 0.3) 50%,
		rgba(26, 23, 21, 0.5) 100%
	);
}
.hj9-cta__content {
	position: absolute;
	inset: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	padding-inline: var(--hj9-gutter);
	text-align: center;
}
.hj9-cta__inner { max-width: 44rem; }
.hj9-cta__inner h2 { color: var(--hj9-background); font-size: 2.5rem; line-height: 1.08; font-weight: 400; }
@media (min-width: 1024px) { .hj9-cta__inner h2 { font-size: 3.5rem; } }
.hj9-cta__inner .hj9-btn-row { justify-content: center; }
.hj9-cta__inner p { margin-top: 1.5rem; color: color-mix(in srgb, var(--hj9-background) 88%, transparent); line-height: 1.75; font-size: 1.0625rem; }
.hj9-cta__btn { margin-top: 2.5rem; }

/* =========================================================================
   FAQ
   ========================================================================= */
.hj9-faq { max-width: 48rem; margin-inline: auto; }
.hj9-faq__item { border-bottom: 1px solid var(--hj9-border); }
.hj9-faq__q {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	gap: 16px;
	background: none;
	border: 0;
	padding: 24px 0;
	cursor: pointer;
	text-align: left;
	font-family: var(--hj9-heading-font);
	font-size: 1.375rem;
	color: var(--hj9-foreground);
	transition: color 0.3s ease;
}
.hj9-faq__q:hover { color: var(--hj9-gold); }
.hj9-faq__icon {
	flex-shrink: 0;
	color: var(--hj9-gold);
	transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.hj9-faq__item.is-open .hj9-faq__icon { transform: rotate(180deg); }
.hj9-faq__a { overflow: hidden; max-height: 0; transition: max-height 0.5s cubic-bezier(0.22, 1, 0.36, 1); }
.hj9-faq__a-inner { padding: 0 0 28px; color: var(--hj9-muted-foreground); font-size: 1rem; line-height: 1.75; }

/* =========================================================================
   Blog
   ========================================================================= */
.hj9-blog-grid { display: grid; gap: 48px; margin-top: 56px; }
@media (min-width: 768px) { .hj9-blog-grid { grid-template-columns: repeat(3, 1fr); } }
.hj9-post-card { display: block; color: inherit; }
.hj9-post-card:hover { color: inherit; }
.hj9-post-card__media { overflow: hidden; border-radius: var(--hj9-radius); }
.hj9-post-card__media img { width: 100%; aspect-ratio: 3 / 2; object-fit: cover; transition: transform 1s cubic-bezier(0.22, 1, 0.36, 1); }
.hj9-post-card:hover .hj9-post-card__media img { transform: scale(1.05); }
.hj9-post-card__meta { margin-top: 18px; font-size: 0.68rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--hj9-gold); font-weight: 500; }
.hj9-post-card h3 { margin: 12px 0 0; font-size: 1.5rem; }
.hj9-post-card__excerpt { margin-top: 10px; color: var(--hj9-muted-foreground); font-size: 1rem; line-height: 1.7; }
.hj9-post-card__more { display: inline-block; margin-top: 14px; font-size: 0.68rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--hj9-gold); font-weight: 500; }

.hj9-post-single__head { padding: var(--hj9-section-y) var(--hj9-gutter) 0; }
.hj9-post-single__meta { margin-top: 24px; font-size: 0.68rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--hj9-muted-foreground); }
.hj9-post-single__head .hj9-eyebrow { margin-bottom: 1.25rem; }
.hj9-post-single__media { margin-top: 48px; }
.hj9-post-single__media img { width: 100%; max-height: 70vh; object-fit: cover; border-radius: var(--hj9-radius); box-shadow: var(--hj9-shadow-elevated); }
.hj9-post-single__body { margin-top: 56px; }
.hj9-post-single__body .hj9-entry-content { max-width: 48rem; margin-inline: auto; }

/* Content prose (shared between blog posts and single content) */
.hj9-entry-content h2, .hj9-entry-content h3,
.hj9-single__content h2, .hj9-single__content h3 { margin-top: 2.25rem; color: var(--hj9-foreground); }
.hj9-entry-content p, .hj9-single__content p { color: var(--hj9-muted-foreground); margin-bottom: 1.375rem; line-height: 1.8; }
.hj9-entry-content a, .hj9-single__content a { text-decoration: underline; text-underline-offset: 3px; }
.hj9-entry-content ul, .hj9-entry-content ol,
.hj9-single__content ul, .hj9-single__content ol { list-style: disc; padding-left: 1.5rem; margin-bottom: 1.375rem; color: var(--hj9-muted-foreground); }
.hj9-entry-content ol, .hj9-single__content ol { list-style: decimal; }
.hj9-entry-content ul li, .hj9-entry-content ol li,
.hj9-single__content ul li, .hj9-single__content ol li { margin-bottom: 0.75rem; line-height: 1.8; }
.hj9-entry-content ol li, .hj9-single__content ol li { padding-left: 0.25rem; }
.hj9-entry-content ul ul, .hj9-entry-content ol ul, .hj9-entry-content ul ol, .hj9-entry-content ol ol,
.hj9-single__content ul ul, .hj9-single__content ol ul, .hj9-single__content ul ol, .hj9-single__content ol ol { margin-top: 0.625rem; margin-bottom: 0.625rem; }
.hj9-entry-content ul ul li, .hj9-entry-content ol ul li, .hj9-entry-content ul ol li, .hj9-entry-content ol ol li,
.hj9-single__content ul ul li, .hj9-single__content ol ul li, .hj9-single__content ul ol li, .hj9-single__content ol ol li { margin-bottom: 0.375rem; }
.hj9-entry-content img, .hj9-single__content img { border-radius: var(--hj9-radius); margin: 1.75rem 0; box-shadow: var(--hj9-shadow-soft); }
.hj9-entry-content blockquote, .hj9-single__content blockquote { border-left: 2px solid var(--hj9-gold); margin: 2.25rem 0; padding-left: 1.5rem; font-family: var(--hj9-heading-font); font-size: 1.625rem; color: var(--hj9-foreground); font-style: italic; font-weight: 400; }
.hj9-entry-content strong, .hj9-single__content strong { color: var(--hj9-foreground); font-weight: 500; }

.hj9-pagination { display: flex; gap: 12px; margin-top: 64px; justify-content: center; }
.hj9-pagination .page-numbers { padding: 12px 20px; border: 1px solid var(--hj9-border); border-radius: var(--hj9-radius); color: var(--hj9-foreground); font-size: 0.875rem; transition: all 0.3s ease; }
.hj9-pagination .page-numbers:hover { border-color: var(--hj9-gold); color: var(--hj9-gold); }
.hj9-pagination .page-numbers.current { background: var(--hj9-primary); border-color: var(--hj9-primary); color: #fff; }

.hj9-post-nav { display: flex; justify-content: space-between; gap: 24px; margin-top: 64px; border-top: 1px solid var(--hj9-border); padding-top: 32px; }
.hj9-post-nav a { font-size: 0.68rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--hj9-muted-foreground); font-weight: 500; transition: color 0.3s ease; }
.hj9-post-nav a:hover { color: var(--hj9-gold); }

/* =========================================================================
   Single project
   ========================================================================= */
.hj9-project-hero { background: var(--hj9-secondary); padding: calc(var(--hj9-section-y) * 0.6) var(--hj9-gutter) calc(var(--hj9-section-y) * 0.75); }
.hj9-project-hero .hj9-eyebrow { margin-bottom: 1.25rem; }
.hj9-project-hero h1 { margin: 0 0 1.75rem; max-width: 48rem; font-size: 2.75rem; font-weight: 400; }
@media (min-width: 1024px) { .hj9-project-hero h1 { font-size: 4rem; } }
.hj9-project-meta { display: flex; flex-wrap: wrap; gap: 28px 64px; }
.hj9-project-meta dt { font-size: 0.6875rem; letter-spacing: 0.26em; text-transform: uppercase; color: var(--hj9-gold); margin-bottom: 4px; font-weight: 500; }
.hj9-project-meta dd { margin: 0; color: var(--hj9-foreground); font-size: 1rem; }

.hj9-project-hero__media { background: var(--hj9-secondary); padding: 0 var(--hj9-gutter) var(--hj9-section-y); }
.hj9-project-hero__media img { margin-inline: auto; max-width: var(--hj9-container); width: 100%; border-radius: var(--hj9-radius); box-shadow: var(--hj9-shadow-elevated); }

/* =========================================================================
   Contact form
   ========================================================================= */
.hj9-contact-grid { display: grid; gap: 64px; }
@media (min-width: 1024px) { .hj9-contact-grid { grid-template-columns: 1fr 1.1fr; } }
.hj9-contact-info p { color: var(--hj9-muted-foreground); max-width: 24rem; line-height: 1.75; }
.hj9-contact-info__list { margin-top: 36px; display: flex; flex-direction: column; gap: 18px; }
.hj9-contact-info__item { display: flex; align-items: center; gap: 14px; color: var(--hj9-muted-foreground); font-size: 1rem; }
.hj9-contact-info__item svg { color: var(--hj9-gold); flex-shrink: 0; }

.hj9-contact-form { display: grid; gap: 36px; }
.hj9-contact-form .hj9-field { display: flex; flex-direction: column; gap: 10px; }
.hj9-form-grid { display: grid; gap: 28px; }
@media (min-width: 640px) { .hj9-form-grid { grid-template-columns: repeat(2, 1fr); } }
.hj9-contact-form label, .hj9-contact-form legend { font-size: 0.68rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--hj9-foreground); font-weight: 500; }
.hj9-contact-form input[type="text"],
.hj9-contact-form input[type="email"],
.hj9-contact-form input[type="tel"],
.hj9-contact-form input[type="date"],
.hj9-contact-form select,
.hj9-contact-form textarea {
	width: 100%;
	background: #fff;
	border: 1px solid var(--hj9-border);
	border-radius: var(--hj9-radius);
	padding: 16px 18px;
	font-family: var(--hj9-body-font);
	font-size: 1rem;
	color: var(--hj9-foreground);
	transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.hj9-contact-form input:focus, .hj9-contact-form select:focus, .hj9-contact-form textarea:focus {
	outline: none;
	border-color: var(--hj9-gold);
	box-shadow: 0 0 0 3px rgba(184, 150, 90, 0.1);
}
.hj9-contact-form textarea { resize: vertical; }
.hj9-check-grid { display: grid; gap: 12px; margin-top: 18px; }
@media (min-width: 640px) { .hj9-check-grid { grid-template-columns: repeat(2, 1fr); } }
.hj9-check { display: flex; align-items: center; gap: 12px; font-size: 0.9375rem; color: var(--hj9-muted-foreground); cursor: pointer; }
.hj9-check input { accent-color: var(--hj9-gold); }
.hj9-form-actions .hj9-btn { width: 100%; justify-content: center; }
@media (min-width: 640px) { .hj9-form-actions .hj9-btn { width: auto; } }
.hj9-form-actions { margin-top: 8px; }
.hj9-form-note { padding: 18px 24px; border-radius: var(--hj9-radius); margin-bottom: 28px; font-size: 1rem; }
.hj9-form-note--success { background: color-mix(in srgb, var(--hj9-accent) 12%, var(--hj9-background)); color: var(--hj9-foreground); border: 1px solid var(--hj9-accent); }
.hj9-form-note--error { background: color-mix(in srgb, var(--hj9-error) 10%, var(--hj9-background)); color: var(--hj9-error-foreground); border: 1px solid var(--hj9-error); }

/* =========================================================================
   Footer
   ========================================================================= */
.hj9-footer { border-top: 1px solid color-mix(in srgb, var(--hj9-gold) 20%, var(--hj9-border) 60%, transparent); background: #ede8df; }
.hj9-footer__grid { display: grid; gap: 56px; padding-top: 80px; padding-bottom: 80px; }
@media (min-width: 1024px) { .hj9-footer__grid { grid-template-columns: repeat(3, 1fr); } }
.hj9-footer__logo-img { width: 80px; height: 80px; object-fit: contain; }
.hj9-footer__logo-text { font-family: var(--hj9-heading-font); font-size: 1.75rem; color: var(--hj9-foreground); letter-spacing: 0.04em; }
.hj9-footer__tagline { margin-top: 24px; max-width: 24rem; font-size: 1rem; color: var(--hj9-muted-foreground); line-height: 1.75; }
.hj9-footer__menu { margin-top: 24px; display: grid; gap: 14px 28px; }
@media (min-width: 1024px) { .hj9-footer__menu { grid-template-columns: 1fr 1fr; } }
.hj9-footer__menu a { font-size: 0.9375rem; color: var(--hj9-foreground); transition: color 0.3s ease; letter-spacing: 0.02em; }
.hj9-footer__menu a:hover { color: var(--hj9-gold); }
.hj9-footer__contact { margin-top: 24px; display: flex; flex-direction: column; gap: 14px; }
.hj9-footer__contact-item { display: flex; align-items: center; gap: 14px; font-size: 0.9375rem; color: var(--hj9-muted-foreground); }
.hj9-footer__contact-item svg { color: var(--hj9-gold); flex-shrink: 0; }
.hj9-footer__contact-item a { color: var(--hj9-muted-foreground); transition: color 0.3s ease; }
.hj9-footer__contact-item a:hover { color: var(--hj9-gold); }
.hj9-footer__cta { margin-top: 32px; }
.hj9-footer__bottom { border-top: 1px solid color-mix(in srgb, var(--hj9-gold) 12%, var(--hj9-border) 50%, transparent); padding: 24px 0; }
.hj9-footer__bottom p { margin: 0; font-size: 0.8125rem; color: var(--hj9-muted-foreground); letter-spacing: 0.04em; }

/* Footer mobile CTA bar */
.hj9-footer__bar {
	position: fixed;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 40;
	padding: 12px;
	padding-bottom: calc(12px + env(safe-area-inset-bottom, 0px));
	border-top: 1px solid color-mix(in srgb, var(--hj9-gold) 15%, var(--hj9-border) 50%, transparent);
	background: rgba(237, 232, 223, 0.95);
	backdrop-filter: blur(8px);
	display: none;
}
@media (max-width: 1023px) { .hj9-footer__bar { display: block; } }
.hj9-footer__bar .hj9-btn { width: 100%; }
@media (max-width: 1023px) { body { padding-bottom: calc(64px + env(safe-area-inset-bottom, 0px)); } }

/* =========================================================================
   Entry / generic page content
   ========================================================================= */
.hj9-page-body { padding-top: var(--hj9-section-y); }

/* =========================================================================
   Animations (driven by GSAP via .hj9-reveal)
   ========================================================================= */
.hj9-reveal {
	opacity: 0;
	transform: translateY(28px);
}
.hj9-reveal-in {
	opacity: 1;
	transform: none;
}
.hj9-reveal-stagger > * {
	opacity: 0;
	transform: translateY(24px);
}
.hj9-reveal-stagger.hj9-reveal-in > * {
	opacity: 1;
	transform: none;
}
@media (prefers-reduced-motion: reduce) {
	.hj9-reveal, .hj9-reveal-stagger > * {
		opacity: 1 !important;
		transform: none !important;
	}
}

/* =========================================================================
   Media queries for small screens
   ========================================================================= */
@media (max-width: 640px) {
	.hj9-hero__media { height: 72vh; }
}

/* =========================================================================
   Template supplement
   ========================================================================= */

/* Narrow container (FAQ list, single post body) */
.hj9-container--narrow { max-width: 56rem; }

/* Centered prose block used on sub-pages */
.hj9-prose--center { max-width: 48rem; margin-inline: auto; text-align: center; }
.hj9-prose--center h2 { text-align: center; margin-bottom: 1.75rem; }

/* Philosophy list (About) */
.hj9-philosophy { max-width: 56rem; margin: 3.5rem auto 0; }
.hj9-philosophy__item { display: grid; grid-template-columns: 56px 1fr; gap: 24px; align-items: baseline; border-top: 1px solid var(--hj9-border); padding: 28px 0; }
.hj9-philosophy__num { font-family: var(--hj9-heading-font); font-size: 2.125rem; color: var(--hj9-gold); font-weight: 400; }
.hj9-philosophy__item p { margin: 0; color: var(--hj9-foreground); font-size: 1.125rem; line-height: 1.75; }

/* Services page: detailed rows */
.hj9-services-detail { max-width: 60rem; }
.hj9-service-detail { display: grid; gap: 28px; padding: 56px 0; border-top: 1px solid var(--hj9-border); }
.hj9-service-detail:first-child { border-top: 0; padding-top: 0; }
@media (min-width: 768px) { .hj9-service-detail { grid-template-columns: 90px 1fr; gap: 56px; } }
.hj9-service-detail__num { font-family: var(--hj9-heading-font); font-size: 2.75rem; color: var(--hj9-gold); font-weight: 400; }
.hj9-service-detail h2 { margin: 4px 0 18px; }
.hj9-service-detail__best { font-size: 1rem; color: var(--hj9-muted-foreground); }
.hj9-service-detail__best strong { color: var(--hj9-foreground); }
.hj9-service-detail__desc { margin-top: 14px; color: var(--hj9-muted-foreground); line-height: 1.75; }
.hj9-service-detail__list { margin-top: 24px; display: grid; gap: 12px; }
.hj9-service-detail__list li { display: flex; gap: 14px; font-size: 1rem; color: var(--hj9-muted-foreground); }
.hj9-service-detail__list li::before { content: "—"; color: var(--hj9-gold); }
.hj9-service-card__faq { margin-top: 24px; font-size: 0.68rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--hj9-gold); font-weight: 500; }

/* Pain closing CTA centered */
.hj9-pain__cta { justify-content: center; }

/* FAQ list */
.hj9-faq__list { border-top: 1px solid var(--hj9-border); margin-top: 2.25rem; }
.hj9-faq__list--teaser { margin-top: 0; }
.hj9-faq__a p { padding: 0 0 28px; margin: 0; color: var(--hj9-muted-foreground); font-size: 1rem; line-height: 1.75; }
.hj9-faq__list--teaser { max-width: 48rem; margin-inline: auto; }

/* Interactive portfolio filter */
.hj9-filter--interactive { justify-content: center; margin-bottom: 8px; }

/* CTA band media wrapper */
.hj9-cta__media-wrap { height: 50vh; min-height: 320px; }
@media (min-width: 768px) { .hj9-cta__media-wrap { height: 65vh; min-height: 460px; } }
.hj9-cta__media { width: 100%; height: 100%; object-fit: cover; will-change: transform; }

/* Instagram grid (section partial) */
.hj9-instagram { display: grid; grid-template-columns: 1fr; gap: 16px; margin-top: 56px; }
@media (min-width: 768px) { .hj9-instagram { grid-template-columns: repeat(3, 1fr); } }
.hj9-instagram__item { position: relative; display: block; overflow: hidden; border-radius: var(--hj9-radius); }
.hj9-instagram__item img { width: 100%; aspect-ratio: 1; object-fit: cover; transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1), filter 0.5s ease; }
.hj9-instagram__item:hover img { transform: scale(1.05); filter: brightness(0.9); }
.hj9-instagram__item__icon {
	position: absolute;
	inset: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(26, 23, 21, 0.35);
	color: #fff;
	opacity: 0;
	transition: opacity 0.4s ease;
}
.hj9-instagram__item:hover .hj9-instagram__item__icon { opacity: 1; }

/* Project cards grid behaviour */
.hj9-project-card__link { display: block; }
.hj9-project-card.is-tall .hj9-project-card__media img { aspect-ratio: 4 / 5; }

/* Single project page */
.hj9-project-title { max-width: 48rem; font-size: 2.5rem; line-height: 1.08; margin-bottom: 0; font-weight: 400; }
@media (min-width: 1024px) { .hj9-project-title { font-size: 3.5rem; } }
.hj9-project-facts { margin: 36px 0 0; display: flex; flex-wrap: wrap; gap: 24px 36px; }
@media (min-width: 768px) { .hj9-project-facts { gap: 36px 64px; } }
.hj9-project-fact dd { margin: 4px 0 0; color: var(--hj9-foreground); font-size: 1rem; }

.hj9-project-hero-wrap { padding-top: 0; padding-bottom: 96px; }
.hj9-project-hero { width: 100%; border-radius: var(--hj9-radius); object-fit: cover; box-shadow: var(--hj9-shadow-elevated); }

.hj9-project-grid { display: grid; gap: 64px; }
@media (min-width: 1024px) { .hj9-project-grid { grid-template-columns: 1.2fr 0.8fr; gap: 64px; } }
.hj9-project-main { min-width: 0; }
.hj9-project-story { margin-top: 56px; }
.hj9-project-story:first-child { margin-top: 0; }
.hj9-project-story h2 { font-size: 2rem; margin-bottom: 18px; }
.hj9-project-story p { color: var(--hj9-muted-foreground); font-size: 1.0625rem; line-height: 1.8; }

.hj9-project-sidebar { border-top: 1px solid var(--hj9-border); padding-top: 36px; }
@media (min-width: 1024px) { .hj9-project-sidebar { border-top: 0; border-left: 1px solid var(--hj9-border); padding-top: 0; padding-left: 56px; } }
.hj9-project-services { margin-top: 28px; }
.hj9-project-services li { padding: 14px 0; border-bottom: 1px solid color-mix(in srgb, var(--hj9-border) 60%, transparent); font-size: 1rem; color: var(--hj9-foreground); }
.hj9-project-services li + li { margin-top: 14px; }
.hj9-project-cta { margin-top: 40px; }
.hj9-more-projects .hj9-section-head h2 { font-size: 2rem; }
.hj9-more-projects .hj9-grid { margin-top: 48px; }

/* Single blog post */
.hj9-single__head { padding: var(--hj9-section-y) var(--hj9-gutter) 0; text-align: center; }
.hj9-single__head h1 { margin: 1.25rem 0 0; }
.hj9-single__meta { margin-top: 24px; display: flex; justify-content: center; gap: 12px; font-size: 0.68rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--hj9-muted-foreground); }
.hj9-single__hero { margin-top: 48px; padding-inline: var(--hj9-gutter); }
.hj9-single__hero img { width: 100%; max-height: 70vh; object-fit: cover; border-radius: var(--hj9-radius); box-shadow: var(--hj9-shadow-elevated); }
.hj9-single__content { max-width: 48rem; margin-inline: auto; }

/* Blog post cards (current markup) */
.hj9-post-card__body { padding-top: 18px; }
.hj9-post-card__body time { font-size: 0.68rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--hj9-gold); font-weight: 500; }
.hj9-post-card__body h3 { margin: 12px 0 0; font-size: 1.5rem; }
.hj9-post-card__body p { margin-top: 10px; color: var(--hj9-muted-foreground); font-size: 1rem; line-height: 1.7; }

/* Contact sidebar card */
.hj9-contact-form-wrap { min-width: 0; }
.hj9-contact-aside { min-width: 0; }
.hj9-contact-form-wrap--center { max-width: 48rem; margin-inline: auto; }
.hj9-contact-card { border: 1px solid color-mix(in srgb, var(--hj9-gold) 12%, var(--hj9-border) 60%, transparent); border-radius: var(--hj9-radius); background: var(--hj9-secondary); padding: 36px; }
.hj9-contact-card__img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; border-radius: var(--hj9-radius); margin-bottom: 28px; }
.hj9-contact-card h2 { font-size: 1.625rem; margin-bottom: 14px; }
.hj9-contact-card > p { color: var(--hj9-muted-foreground); font-size: 1rem; line-height: 1.7; }
.hj9-contact-card__list { margin-top: 28px; display: grid; gap: 18px; }
.hj9-contact-card__list li { display: flex; flex-direction: column; gap: 2px; }
.hj9-contact-card__list span { font-size: 0.68rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--hj9-gold); font-weight: 500; }
.hj9-contact-card__list a, .hj9-contact-card__list li { font-size: 1rem; color: var(--hj9-foreground); }

/* 404 */
.hj9-404 { max-width: 48rem; margin-inline: auto; text-align: center; }
.hj9-404 h1 { margin: 1.25rem 0; }
.hj9-404 p { color: var(--hj9-muted-foreground); line-height: 1.75; }
.hj9-404 .hj9-btn-row { justify-content: center; }

/* Search */
.hj9-search-form { margin-top: 2.25rem; max-width: 28rem; }
.hj9-search-form input[type="search"] { width: 100%; padding: 16px 18px; border: 1px solid var(--hj9-border); border-radius: var(--hj9-radius); background: #fff; font-family: var(--hj9-body-font); font-size: 1rem; transition: border-color 0.3s ease, box-shadow 0.3s ease; }
.hj9-search-form input[type="search"]:focus { outline: none; border-color: var(--hj9-gold); box-shadow: 0 0 0 3px rgba(184, 150, 90, 0.1); }

/* =========================================================================
   Page template content (About / Services / Process / FAQ / Contact)
   ========================================================================= */
.hj9-page-head .hj9-container { display: flex; flex-direction: column; align-items: center; text-align: center; }
.hj9-page-head__intro { font-size: 1rem; line-height: 1.7; }
.hj9-page-head__intro p + p { margin-top: 0.75rem; }

/* About: approach steps */
.hj9-approach { margin-top: 4rem; display: grid; gap: 28px; }
@media (min-width: 768px) {
	.hj9-approach { grid-template-columns: repeat(3, 1fr); }
}
@media (min-width: 1024px) {
	.hj9-approach { grid-template-columns: repeat(5, 1fr); }
}
.hj9-approach__item { border-top: 1px solid var(--hj9-gold); padding-top: 24px; }
.hj9-approach__num { font-family: var(--hj9-heading-font); font-size: 1.625rem; color: var(--hj9-gold); font-weight: 400; }
.hj9-approach__item h3 { margin: 12px 0 0; font-size: 1.375rem; }
.hj9-approach__item p { margin-top: 12px; font-size: 0.9375rem; line-height: 1.7; color: var(--hj9-muted-foreground); }

/* Services page: alternating rows */
.hj9-service-row { display: grid; gap: 56px; }
@media (min-width: 1024px) { .hj9-service-row { grid-template-columns: 0.9fr 1.1fr; gap: 56px; } }
.hj9-service-row__num { font-family: var(--hj9-heading-font); font-size: 3.25rem; line-height: 1; color: var(--hj9-gold); font-weight: 400; }
.hj9-service-row__main h2 { margin: 18px 0 0; font-size: 2rem; line-height: 1.12; }
@media (min-width: 1024px) { .hj9-service-row__main h2 { font-size: 2.5rem; } }
.hj9-service-row__best-for { margin-top: 28px; }
.hj9-service-row__best-value { margin-top: 8px; font-family: var(--hj9-heading-font); font-size: 1.375rem; color: var(--hj9-gold); font-style: italic; font-weight: 400; }
.hj9-service-row__desc { margin-top: 20px; color: var(--hj9-muted-foreground); line-height: 1.8; }
.hj9-service-row__main .hj9-btn-row { margin-top: 36px; }
.hj9-service-row__includes { border-top: 1px solid var(--hj9-border); padding-top: 36px; }
@media (min-width: 1024px) {
	.hj9-service-row__includes { border-top: 0; border-left: 1px solid var(--hj9-border); padding-top: 0; padding-left: 56px; }
}
.hj9-service-row__list { margin-top: 28px; display: grid; gap: 12px 36px; }
@media (min-width: 640px) { .hj9-service-row__list { grid-template-columns: repeat(2, 1fr); } }
.hj9-service-row__list li { padding-bottom: 14px; border-bottom: 1px solid color-mix(in srgb, var(--hj9-border) 60%, transparent); font-size: 1rem; color: var(--hj9-foreground); }

/* Process page: divider rows */
.hj9-process-list { max-width: 56rem; }
.hj9-process-list__item { display: grid; gap: 24px; border-bottom: 1px solid var(--hj9-border); padding: 56px 0; }
.hj9-process-list__item:first-child { border-top: 1px solid var(--hj9-border); }
@media (min-width: 768px) { .hj9-process-list__item { grid-template-columns: auto 1fr; gap: 56px; } }
.hj9-process-list__num { font-family: var(--hj9-heading-font); font-size: 3.25rem; line-height: 1; color: var(--hj9-gold); font-weight: 400; }
.hj9-process-list__body h2 { font-size: 1.625rem; letter-spacing: 0.08em; text-transform: uppercase; font-weight: 500; }
.hj9-process-list__short { margin-top: 14px; font-family: var(--hj9-heading-font); font-size: 1.375rem; color: var(--hj9-gold); font-style: italic; font-weight: 400; }
.hj9-process-list__long { margin-top: 18px; color: var(--hj9-muted-foreground); line-height: 1.8; }

/* Center buttons inside centered section heads (page closing bands) */
.hj9-section-head--center .hj9-btn-row { justify-content: center; }

/* =========================================================================
   Social share (single blog post)
   ========================================================================= */
.hj9-share {
	margin-top: 56px;
	padding-top: 32px;
	border-top: 1px solid var(--hj9-border);
	display: flex;
	align-items: center;
	gap: 24px;
	flex-wrap: wrap;
}
.hj9-share__label {
	font-size: 0.68rem;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	color: var(--hj9-muted-foreground);
	font-weight: 500;
}
.hj9-share__list { display: flex; gap: 12px; flex-wrap: wrap; }
.hj9-share__link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	border: 1px solid var(--hj9-border);
	border-radius: 50%;
	color: var(--hj9-muted-foreground);
	transition: all 0.3s ease;
}
.hj9-share__link:hover {
	color: #fff;
	background: var(--hj9-gold);
	border-color: var(--hj9-gold);
}
.hj9-share__link:focus-visible {
	outline: 2px solid var(--hj9-gold);
	outline-offset: 2px;
}



/* =========================================================================
   Title line reveal (SplitText)
   ========================================================================= */
.hj9-line { display: block; }
.hj9-hero__text h1,
.hj9-section-head h2,
.hj9-two-col__text h2,
.hj9-philosophy-split__content h2 {
	perspective: 600px;
}
@media (prefers-reduced-motion: reduce) {
	.hj9-hero__text h1,
	.hj9-section-head h2,
	.hj9-two-col__text h2,
	.hj9-philosophy-split__content h2 { perspective: none; }
}

/* =========================================================================
   LUXURY WOW ELEMENTS
   ========================================================================= */

/* -------------------------------------------------------------------------
   1. Marquee — continuous scrolling luxury text band
   ------------------------------------------------------------------------- */
.hj9-marquee {
	overflow: hidden;
	white-space: nowrap;
	padding: 28px 0;
	background: var(--hj9-foreground);
	position: relative;
}
.hj9-marquee::before,
.hj9-marquee::after {
	content: "";
	position: absolute;
	top: 0;
	bottom: 0;
	width: 120px;
	z-index: 2;
	pointer-events: none;
}
.hj9-marquee::before {
	left: 0;
	background: linear-gradient(90deg, var(--hj9-foreground) 0%, transparent 100%);
}
.hj9-marquee::after {
	right: 0;
	background: linear-gradient(-90deg, var(--hj9-foreground) 0%, transparent 100%);
}
.hj9-marquee__track {
	display: inline-flex;
	animation: hj9-marquee-scroll 30s linear infinite;
}
.hj9-marquee__track:hover {
	animation-play-state: paused;
}
.hj9-marquee__item {
	display: inline-flex;
	align-items: center;
	gap: 32px;
	padding: 0 32px;
	font-family: var(--hj9-heading-font);
	font-size: 1.125rem;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: rgba(249, 246, 240, 0.7);
	font-weight: 400;
	white-space: nowrap;
	transition: color 0.3s ease;
}
.hj9-marquee__item:hover {
	color: var(--hj9-gold);
}
.hj9-marquee__dot {
	width: 4px;
	height: 4px;
	border-radius: 50%;
	background: var(--hj9-gold);
	flex-shrink: 0;
	opacity: 0.6;
}
@keyframes hj9-marquee-scroll {
	0% { transform: translateX(0); }
	100% { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
	.hj9-marquee__track { animation: none; }
}

/* -------------------------------------------------------------------------
   2. Decorative ornament divider
   ------------------------------------------------------------------------- */
.hj9-ornament {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 16px;
	padding: 8px 0;
	opacity: 0;
	transform: scaleX(0.6);
	transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}
.hj9-ornament.is-visible {
	opacity: 1;
	transform: scaleX(1);
}
.hj9-ornament__line {
	height: 1px;
	width: 80px;
	background: linear-gradient(90deg, transparent, var(--hj9-gold), transparent);
}
.hj9-ornament__diamond {
	width: 6px;
	height: 6px;
	background: var(--hj9-gold);
	transform: rotate(45deg);
	flex-shrink: 0;
}
.hj9-ornament--large .hj9-ornament__line { width: 140px; }
.hj9-ornament--large .hj9-ornament__diamond { width: 8px; height: 8px; }

/* -------------------------------------------------------------------------
   3. Horizontal scroll portfolio lookbook
   ------------------------------------------------------------------------- */
.hj9-lookbook {
	position: relative;
	overflow: hidden;
	padding: var(--hj9-section-y) 0;
}
.hj9-lookbook__header {
	max-width: var(--hj9-container);
	margin-inline: auto;
	padding-inline: var(--hj9-gutter);
	margin-bottom: 48px;
}
.hj9-lookbook__eyebrow { display: flex; align-items: center; gap: 12px; margin-bottom: 0.75rem; font-size: 0.68rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--hj9-gold); font-weight: 500; }
.hj9-lookbook__eyebrow .hj9-eyebrow__line { display: inline-block; width: 32px; height: 1px; background: var(--hj9-gold); }
.hj9-section-head__title { font-family: var(--hj9-heading-font); font-size: 2.125rem; font-weight: 400; line-height: 1.12; }
.hj9-lookbook__scroll {
	display: flex;
	gap: 32px;
	padding-inline: var(--hj9-gutter);
	overflow-x: auto;
	overflow-y: hidden;
	scroll-snap-type: x mandatory;
	scroll-behavior: smooth;
	-webkit-overflow-scrolling: touch;
	scrollbar-width: none;
	-ms-overflow-style: none;
	padding-bottom: 20px;
}
.hj9-lookbook__scroll::-webkit-scrollbar { display: none; }
.hj9-lookbook__item {
	flex: 0 0 auto;
	width: clamp(300px, 40vw, 480px);
	scroll-snap-align: start;
	position: relative;
	cursor: pointer;
}
.hj9-lookbook__item-media {
	overflow: hidden;
	border-radius: var(--hj9-radius);
	position: relative;
	aspect-ratio: 3 / 4;
}
.hj9-lookbook__item-media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 1.2s cubic-bezier(0.22, 1, 0.36, 1);
}
.hj9-lookbook__item:hover .hj9-lookbook__item-media img {
	transform: scale(1.06);
}
.hj9-lookbook__item-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, transparent 40%, rgba(26, 23, 21, 0.7) 100%);
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	padding: 28px;
	opacity: 0;
	transition: opacity 0.5s ease;
}
.hj9-lookbook__item:hover .hj9-lookbook__item-overlay { opacity: 1; }
.hj9-lookbook__item-cat {
	font-size: 0.6rem;
	letter-spacing: 0.26em;
	text-transform: uppercase;
	color: var(--hj9-gold);
	margin-bottom: 8px;
	font-weight: 500;
}
.hj9-lookbook__item-title {
	font-family: var(--hj9-heading-font);
	font-size: 1.75rem;
	color: #fff;
	font-weight: 400;
	line-height: 1.2;
}
.hj9-lookbook__item-meta {
	margin-top: 8px;
	font-size: 0.8125rem;
	color: rgba(255, 255, 255, 0.7);
}
.hj9-lookbook__footer {
	max-width: var(--hj9-container);
	margin-inline: auto;
	padding-inline: var(--hj9-gutter);
	margin-top: 40px;
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.hj9-lookbook__hint {
	font-size: 0.68rem;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	color: var(--hj9-muted-foreground);
	font-weight: 500;
	display: flex;
	align-items: center;
	gap: 10px;
}
.hj9-lookbook__hint-line {
	width: 40px;
	height: 1px;
	background: var(--hj9-gold);
}
.hj9-lookbook__progress {
	width: 200px;
	height: 2px;
	background: color-mix(in srgb, var(--hj9-border) 50%, transparent);
	border-radius: 1px;
	overflow: hidden;
}
.hj9-lookbook__progress-bar {
	height: 100%;
	width: 0%;
	background: var(--hj9-gold);
	border-radius: 1px;
	transition: width 0.15s ease;
}

/* -------------------------------------------------------------------------
   4. Animated stats counter section
   ------------------------------------------------------------------------- */
.hj9-stats {
	background: var(--hj9-secondary);
	padding: 72px var(--hj9-gutter);
	position: relative;
	overflow: hidden;
}
.hj9-stats::before {
	content: "";
	position: absolute;
	inset: 0;
	background: radial-gradient(ellipse at 30% 50%, rgba(184, 150, 90, 0.06) 0%, transparent 60%);
	pointer-events: none;
}
.hj9-stats__grid {
	max-width: var(--hj9-container);
	margin-inline: auto;
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 48px;
}
@media (min-width: 768px) { .hj9-stats__grid { grid-template-columns: repeat(4, 1fr); } }
.hj9-stats__item { text-align: center; }
.hj9-stats__num {
	font-family: var(--hj9-heading-font);
	font-size: 3.5rem;
	line-height: 1;
	color: var(--hj9-foreground);
	font-weight: 400;
	letter-spacing: 0.02em;
}
@media (min-width: 768px) { .hj9-stats__num { font-size: 4.25rem; } }
.hj9-stats__suffix {
	font-size: 2rem;
	color: var(--hj9-gold);
	vertical-align: super;
	margin-left: 2px;
}
.hj9-stats__label {
	margin-top: 12px;
	font-size: 0.68rem;
	letter-spacing: 0.24em;
	text-transform: uppercase;
	color: var(--hj9-muted-foreground);
	font-weight: 500;
}

/* -------------------------------------------------------------------------
   5. Heading shimmer effect
   ------------------------------------------------------------------------- */
.hj9-shimmer {
	position: relative;
	display: inline-block;
	background: linear-gradient(
		110deg,
		var(--hj9-foreground) 0%,
		var(--hj9-foreground) 40%,
		var(--hj9-gold) 50%,
		var(--hj9-foreground) 60%,
		var(--hj9-foreground) 100%
	);
	background-size: 250% 100%;
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
	animation: hj9-shimmer 6s ease-in-out infinite;
}
@keyframes hj9-shimmer {
	0%, 100% { background-position: 100% 50%; }
	50% { background-position: 0% 50%; }
}
@media (prefers-reduced-motion: reduce) {
	.hj9-shimmer { animation: none; -webkit-text-fill-color: var(--hj9-foreground); }
}

/* -------------------------------------------------------------------------
   6. Sticky image parallax section
   ------------------------------------------------------------------------- */
.hj9-sticky-section {
	position: relative;
	display: grid;
	min-height: 80vh;
}
@media (min-width: 1024px) {
	.hj9-sticky-section { grid-template-columns: 1fr 1fr; }
}
.hj9-sticky-section__media {
	position: relative;
	overflow: hidden;
}
@media (min-width: 1024px) {
	.hj9-sticky-section__media {
		position: sticky;
		top: 0;
		height: 100vh;
	}
}
.hj9-sticky-section__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.hj9-sticky-section__content {
	padding: var(--hj9-section-y) var(--hj9-gutter);
	display: flex;
	flex-direction: column;
	justify-content: center;
}
@media (min-width: 1024px) {
	.hj9-sticky-section__content { padding: var(--hj9-section-y) 72px; }
}
.hj9-sticky-section__inner { max-width: 34rem; }
.hj9-sticky-section__item {
	padding: 48px 0;
	border-bottom: 1px solid color-mix(in srgb, var(--hj9-border) 60%, transparent);
}
.hj9-sticky-section__item:first-child { padding-top: 0; }
.hj9-sticky-section__item-num {
	font-family: var(--hj9-heading-font);
	font-size: 1.5rem;
	color: var(--hj9-gold);
	font-weight: 400;
	margin-bottom: 12px;
}
.hj9-sticky-section__item h3 {
	font-size: 1.5rem;
	margin-bottom: 12px;
	font-weight: 400;
}
.hj9-sticky-section__item p {
	color: var(--hj9-muted-foreground);
	line-height: 1.8;
	font-size: 1rem;
}

/* -------------------------------------------------------------------------
   7. Custom cursor
   ------------------------------------------------------------------------- */
.hj9-cursor {
	position: fixed;
	top: 0;
	left: 0;
	width: 48px;
	height: 48px;
	margin-left: -24px;
	margin-top: -24px;
	border: 1px solid var(--hj9-gold);
	border-radius: 50%;
	pointer-events: none;
	z-index: 9999;
	opacity: 0;
	will-change: left, top;
	transition: opacity 0.3s ease, width 0.3s ease, height 0.3s ease, margin-left 0.3s ease, margin-top 0.3s ease, background 0.3s ease, border-color 0.3s ease;
}
.hj9-cursor.is-visible {
	opacity: 1;
}
.hj9-cursor.is-hover {
	width: 72px;
	height: 72px;
	margin-left: -36px;
	margin-top: -36px;
	background: rgba(184, 150, 90, 0.08);
	border-color: var(--hj9-gold);
}
.hj9-cursor.is-click {
	opacity: 0.7;
}
@media (pointer: coarse) {
	.hj9-cursor { display: none !important; }
}

/* -------------------------------------------------------------------------
   8. Editorial pull quote (large decorative text)
   ------------------------------------------------------------------------- */
.hj9-pullquote {
	max-width: 52rem;
	margin: 5rem auto;
	padding: 0 var(--hj9-gutter);
	text-align: center;
	position: relative;
}
.hj9-pullquote::before {
	content: "\201C";
	position: absolute;
	top: -0.4em;
	left: 50%;
	transform: translateX(-50%);
	font-family: var(--hj9-heading-font);
	font-size: 10rem;
	line-height: 1;
	color: var(--hj9-gold);
	opacity: 0.12;
	pointer-events: none;
}
.hj9-pullquote blockquote {
	font-family: var(--hj9-heading-font);
	font-size: clamp(1.75rem, 3.5vw, 2.75rem);
	line-height: 1.4;
	color: var(--hj9-foreground);
	font-style: italic;
	font-weight: 400;
	margin: 0;
}
.hj9-pullquote cite {
	display: block;
	margin-top: 24px;
	font-family: var(--hj9-body-font);
	font-size: 0.68rem;
	letter-spacing: 0.24em;
	text-transform: uppercase;
	color: var(--hj9-gold);
	font-style: normal;
	font-weight: 500;
}
