:root {
	--noble-ink: #171411;
	--noble-ink-strong: #120f0c;
	--noble-ink-soft: #2b241f;
	--noble-ink-muted: #5e554e;
	--noble-ink-muted-strong: #4c433c;
	--noble-ivory: #f5efe5;
	--noble-ivory-strong: #efe4d1;
	--noble-charcoal: #15120f;
	--noble-charcoal-soft: #201b17;
	--noble-charcoal-alt: #28211b;
	--noble-gold: #b68a4d;
	--noble-gold-strong: #8f672d;
	--noble-gold-soft: #d8c09b;
	--noble-white: #fffdfa;
	--noble-border: rgba(182, 138, 77, 0.26);
	--noble-focus-ring: #d9b57c;
	--noble-surface: rgba(249, 243, 234, 0.96);
	--noble-surface-strong: rgba(255, 252, 247, 0.9);
	--noble-surface-card: rgba(255, 252, 247, 0.94);
	--noble-shadow: 0 24px 60px rgba(20, 14, 9, 0.18);
	--noble-shadow-strong: 0 30px 70px rgba(14, 10, 7, 0.3);
	--noble-radius: 28px;
	--noble-radius-sm: 18px;
	--noble-width: min(1240px, calc(100vw - 48px));
	--noble-font-display: "SVN-Servetica", "Inter", "Segoe UI", Helvetica, Arial, sans-serif;
	--noble-font-heading: "SVN-Gilroy", "Inter", "Segoe UI", Helvetica, Arial, sans-serif;
	--noble-font-body: "Inter", "Segoe UI", Helvetica, Arial, sans-serif;
}

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

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	background:
		radial-gradient(circle at top left, rgba(182, 138, 77, 0.18), transparent 28%),
		radial-gradient(circle at right 10%, rgba(255, 255, 255, 0.08), transparent 22%),
		linear-gradient(180deg, #f8f1e8 0%, #efe4d4 100%);
	color: var(--noble-ink);
	font-family: var(--noble-font-body);
	line-height: 1.65;
	-webkit-font-smoothing: antialiased;
	text-rendering: optimizeLegibility;
	overflow-x: hidden;
}

body::before,
body::after {
	content: "";
	position: fixed;
	inset: 0;
	pointer-events: none;
	z-index: -1;
}

body::before {
	background:
		repeating-linear-gradient(
			90deg,
			rgba(182, 138, 77, 0.06) 0,
			rgba(182, 138, 77, 0.06) 1px,
			transparent 1px,
			transparent 120px
		);
	opacity: 0.45;
}

body::after {
	background:
		radial-gradient(circle at 15% 20%, rgba(182, 138, 77, 0.12), transparent 18%),
		radial-gradient(circle at 85% 8%, rgba(255, 255, 255, 0.08), transparent 12%),
		radial-gradient(circle at 70% 75%, rgba(182, 138, 77, 0.08), transparent 16%);
}

::selection {
	background: rgba(182, 138, 77, 0.24);
	color: var(--noble-ink-strong);
}

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

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

a:focus-visible,
button:focus-visible,
summary:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
	outline: 3px solid var(--noble-focus-ring);
	outline-offset: 3px;
	box-shadow: 0 0 0 4px rgba(21, 18, 15, 0.12);
}

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

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

.noble-container {
	width: var(--noble-width);
	margin: 0 auto;
}

.noble-skip-link {
	position: absolute;
	left: 18px;
	top: -64px;
	z-index: 100;
	padding: 12px 18px;
	border-radius: 999px;
	background: var(--noble-charcoal);
	color: var(--noble-white);
	font-size: 14px;
	font-weight: 700;
	letter-spacing: 0.04em;
	box-shadow: var(--noble-shadow-strong);
	transition: top 180ms ease;
}

.noble-skip-link:focus {
	top: 18px;
}

.noble-topbar {
	padding: 12px 0;
	background: rgba(18, 14, 11, 0.92);
	color: rgba(255, 253, 250, 0.96);
	border-bottom: 1px solid rgba(216, 192, 155, 0.2);
}

.noble-topbar-inner,
.noble-header-inner,
.noble-topbar-actions,
.noble-topbar-copy {
	display: flex;
	align-items: center;
}

.noble-topbar-inner {
	justify-content: space-between;
	gap: 18px;
}

.noble-topbar-copy,
.noble-topbar-actions {
	gap: 14px;
	flex-wrap: wrap;
}

.noble-topbar-label {
	color: rgba(216, 192, 155, 0.92);
	font-size: 12px;
	letter-spacing: 0.22em;
	text-transform: uppercase;
}

.noble-topbar a {
	color: var(--noble-white);
	font-weight: 600;
}

.noble-topbar-link {
	font-size: 14px;
	text-decoration: underline;
	text-decoration-color: rgba(216, 192, 155, 0.42);
	text-underline-offset: 0.22em;
}

.noble-site-header {
	position: sticky;
	top: 0;
	z-index: 30;
	padding: 18px 0;
	background: rgba(245, 239, 229, 0.9);
	backdrop-filter: blur(18px);
	border-bottom: 1px solid rgba(182, 138, 77, 0.14);
	box-shadow: 0 10px 28px rgba(32, 23, 17, 0.06);
}

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

.noble-header-inner {
	justify-content: space-between;
	gap: 24px;
	position: relative;
}

.noble-brand {
	display: flex;
	align-items: center;
	gap: 16px;
	min-width: 0;
}

.noble-brand-mark {
	display: inline-grid;
	place-items: center;
	width: 54px;
	height: 54px;
	border-radius: 18px;
	background:
		linear-gradient(145deg, rgba(245, 239, 229, 0.95), rgba(218, 194, 158, 0.78)),
		linear-gradient(145deg, #fff, #dcc49c);
	color: var(--noble-charcoal);
	font-family: var(--noble-font-heading);
	font-size: 20px;
	font-weight: 700;
	letter-spacing: 0.08em;
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9), 0 14px 34px rgba(182, 138, 77, 0.16);
}

.noble-brand-copy {
	display: flex;
	flex-direction: column;
	min-width: 0;
}

.noble-brand-name {
	font-family: var(--noble-font-heading);
	font-size: 24px;
	line-height: 1.1;
	color: var(--noble-charcoal);
}

.noble-brand-tagline {
	color: var(--noble-ink-muted);
	font-size: 13px;
	max-width: 38ch;
}

.noble-site-nav {
	display: flex;
	align-items: center;
	gap: 28px;
	flex-wrap: wrap;
	justify-content: flex-end;
}

.noble-site-nav a {
	position: relative;
	font-size: 14px;
	font-weight: 600;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--noble-charcoal-soft);
}

.noble-site-nav a::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: -8px;
	width: 100%;
	height: 1px;
	background: linear-gradient(90deg, transparent, var(--noble-gold), transparent);
	opacity: 0;
	transform: scaleX(0.5);
	transition: opacity 220ms ease, transform 220ms ease;
}

.noble-site-nav a:hover::after,
.noble-site-nav a:focus-visible::after {
	opacity: 1;
	transform: scaleX(1);
}

.noble-menu-toggle {
	display: none;
	flex-direction: column;
	gap: 4px;
	border: 0;
	background: transparent;
	padding: 8px;
	border-radius: 12px;
	cursor: pointer;
}

.noble-menu-toggle span:not(.screen-reader-text) {
	display: block;
	width: 24px;
	height: 2px;
	background: var(--noble-charcoal);
	border-radius: 999px;
}

.noble-main {
	padding-bottom: 40px;
}

body.has-noble-floating-actions .noble-main {
	padding-bottom: 120px;
}

.noble-hero-copy,
.noble-hero-panel,
.noble-about-copy,
.noble-about-visual,
.noble-section-intro,
.noble-project-card,
.noble-feature-card,
.noble-article-card,
.noble-value-card,
.noble-contact-copy,
.noble-contact-card {
	min-width: 0;
}

.noble-hero,
.noble-page-hero {
	padding: 84px 0 72px;
	background: linear-gradient(180deg, rgba(251, 245, 236, 0.98), rgba(241, 231, 216, 0.94));
}

.noble-hero {
	position: relative;
	overflow: hidden;
}

.noble-hero::before {
	content: "";
	position: absolute;
	inset: 0;
	background:
		linear-gradient(135deg, rgba(255, 255, 255, 0.18), transparent 42%),
		linear-gradient(125deg, rgba(182, 138, 77, 0.12), transparent 62%);
	pointer-events: none;
}

.noble-hero-grid,
.noble-two-column,
.noble-contact-grid,
.noble-content-grid,
.noble-detail-hero-grid {
	display: grid;
	gap: 30px;
}

.noble-hero-grid {
	grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
	align-items: stretch;
}

.noble-hero-panel {
	display: grid;
	gap: 20px;
	align-content: start;
}

.noble-about-grid {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(320px, 0.88fr);
	gap: 30px;
	align-items: start;
}

.noble-eyebrow,
.noble-card-kicker,
.noble-meta-line {
	display: inline-block;
	margin-bottom: 18px;
	color: var(--noble-gold-strong);
	font-size: 12px;
	letter-spacing: 0.24em;
	text-transform: uppercase;
}

.noble-hero-copy h1,
.noble-page-hero h1,
.noble-section-head h2,
.noble-section-intro h2,
.noble-showcase-card h2,
.noble-rich-copy h2,
.noble-contact-copy h2,
.noble-footer-brand h2 {
	margin: 0;
	color: var(--noble-charcoal);
	font-family: var(--noble-font-display);
	font-weight: 600;
	line-height: 1.03;
	letter-spacing: -0.02em;
	overflow-wrap: anywhere;
}

.noble-hero-copy h1 {
	max-width: 11ch;
	font-size: clamp(44px, 6vw, 82px);
}

.noble-hero-summary,
.noble-section-intro p,
.noble-copy-stack p,
.noble-rich-copy p,
.noble-project-card p,
.noble-feature-card p,
.noble-article-card p,
.noble-value-card p,
.noble-contact-copy p,
.noble-showcase-card p {
	margin: 0;
	color: var(--noble-ink-muted-strong);
	font-size: 17px;
}

.noble-hero-summary {
	max-width: 56ch;
	margin-top: 22px;
}

.noble-hero-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
	margin-top: 32px;
}

.noble-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 14px 22px;
	border-radius: 999px;
	border: 1px solid transparent;
	background: linear-gradient(135deg, #d7b57f, #be9357);
	color: var(--noble-charcoal);
	font-size: 14px;
	font-weight: 700;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	box-shadow: 0 14px 30px rgba(182, 138, 77, 0.22);
	transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, color 180ms ease;
}

.noble-button:hover,
.noble-button:focus-visible {
	transform: translateY(-2px);
	background: linear-gradient(135deg, #e2c595, #c8995a);
	box-shadow: 0 20px 34px rgba(182, 138, 77, 0.26);
}

.noble-button-outline {
	background: rgba(255, 252, 247, 0.66);
	border-color: rgba(143, 103, 45, 0.34);
	color: var(--noble-charcoal);
}

.noble-topbar .noble-button-outline {
	color: var(--noble-white);
	background: rgba(255, 255, 255, 0.06);
	border-color: rgba(216, 192, 155, 0.4);
}

.noble-text-link {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	margin-top: 20px;
	font-size: 14px;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--noble-charcoal);
	text-decoration: underline;
	text-decoration-thickness: 1.4px;
	text-underline-offset: 0.22em;
}

.noble-text-link::after {
	content: "→";
	font-size: 18px;
	line-height: 1;
}

.noble-showcase-card,
.noble-hero-media,
.noble-editorial-card,
.noble-project-card,
.noble-feature-card,
.noble-article-card,
.noble-value-card,
.noble-side-card,
.noble-panel-card,
.noble-contact-card,
.noble-stat-card {
	position: relative;
	overflow: hidden;
	border: 1px solid var(--noble-border);
	border-radius: var(--noble-radius);
	box-shadow: var(--noble-shadow);
}

.noble-showcase-card::before,
.noble-hero-media::before,
.noble-editorial-card::before,
.noble-project-card::before,
.noble-feature-card::before,
.noble-article-card::before,
.noble-value-card::before,
.noble-side-card::before,
.noble-panel-card::before,
.noble-contact-card::before {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(145deg, rgba(255, 255, 255, 0.28), transparent 45%);
	pointer-events: none;
}

.noble-showcase-card,
.noble-side-card,
.noble-panel-card {
	background: linear-gradient(155deg, rgba(22, 17, 13, 0.96), rgba(37, 29, 23, 0.92));
	color: var(--noble-white);
}

.noble-showcase-card h2,
.noble-side-card h2,
.noble-panel-card h2,
.noble-hero-media figcaption strong,
.noble-editorial-card figcaption strong,
.noble-editorial-card-placeholder h3 {
	color: var(--noble-white);
}

.noble-showcase-card {
	padding: 30px;
	min-height: 0;
}

.noble-hero-media,
.noble-editorial-card {
	margin: 0;
	padding: 0;
	background: linear-gradient(155deg, rgba(22, 17, 13, 0.96), rgba(37, 29, 23, 0.92));
	color: var(--noble-white);
}

.noble-media-image {
	display: block;
	width: 100%;
	height: 100%;
	min-height: 320px;
	object-fit: cover;
}

.noble-card-media,
.noble-detail-hero-media {
	position: relative;
	overflow: hidden;
	margin: 0;
	border-radius: calc(var(--noble-radius) - 6px);
	background:
		radial-gradient(circle at top right, rgba(245, 215, 162, 0.24), transparent 34%),
		linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(17, 13, 10, 0.16));
}

.noble-card-media {
	aspect-ratio: 16 / 11;
}

.noble-card-media-showcase {
	aspect-ratio: 16 / 9;
	margin: -30px -30px 22px;
	border-radius: calc(var(--noble-radius) - 2px);
}

.noble-card-media-feature {
	aspect-ratio: 16 / 10;
}

.noble-card-media::after,
.noble-detail-hero-media::after {
	content: "";
	position: absolute;
	inset: 0;
	background:
		linear-gradient(180deg, transparent 0%, rgba(17, 13, 10, 0.12) 100%),
		linear-gradient(145deg, rgba(255, 255, 255, 0.12), transparent 40%);
	pointer-events: none;
}

.noble-card-visual-image {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.noble-hero-media figcaption,
.noble-editorial-card figcaption,
.noble-editorial-card-placeholder {
	position: relative;
	padding: 24px 26px 26px;
}

.noble-hero-media figcaption strong,
.noble-editorial-card figcaption strong,
.noble-editorial-card-placeholder h3 {
	display: block;
	font-family: var(--noble-font-display);
	font-size: clamp(24px, 3vw, 34px);
	font-weight: 600;
	line-height: 1.1;
}

.noble-editorial-card-placeholder h3 {
	margin: 0 0 18px;
}

.noble-editorial-list {
	display: grid;
	gap: 10px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.noble-editorial-list li {
	position: relative;
	padding-left: 18px;
	color: rgba(255, 252, 247, 0.78);
}

.noble-editorial-list li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 10px;
	width: 7px;
	height: 7px;
	border-radius: 999px;
	background: var(--noble-gold);
}

.noble-showcase-card p,
.noble-side-card ul,
.noble-panel-card ul,
.noble-side-card,
.noble-panel-card {
	color: rgba(255, 252, 247, 0.84);
}

.noble-showcase-card .noble-card-kicker,
.noble-hero-media .noble-card-kicker,
.noble-editorial-card .noble-card-kicker,
.noble-editorial-card-placeholder .noble-card-kicker,
.noble-side-card .noble-card-kicker,
.noble-panel-card .noble-card-kicker {
	color: var(--noble-gold-soft);
}

.noble-showcase-card-alt {
	background: linear-gradient(155deg, rgba(182, 138, 77, 0.22), rgba(23, 18, 14, 0.9));
}

.noble-showcase-card h2 {
	font-size: clamp(28px, 3vw, 40px);
	margin-bottom: 14px;
}

.noble-showcase-card .noble-text-link,
.noble-panel-card a,
.noble-section-dark .noble-text-link,
.noble-section-dark .noble-article-card .noble-text-link {
	color: var(--noble-white);
}

.noble-stat-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 14px;
	margin-top: 34px;
}

.noble-stat-card {
	padding: 20px 18px;
	background: rgba(255, 250, 243, 0.84);
	backdrop-filter: blur(10px);
}

.noble-stat-card strong {
	display: block;
	font-family: var(--noble-font-heading);
	font-size: 34px;
	font-weight: 600;
	color: var(--noble-charcoal);
}

.noble-stat-card span {
	display: block;
	color: var(--noble-ink-muted);
	font-size: 13px;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.noble-inline-list,
.noble-contact-points,
.noble-bullet-panel ul,
.noble-panel-card ul,
.noble-side-card ul,
.noble-rich-copy ul,
.noble-footer-block ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

.noble-inline-list {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-top: 18px;
}

.noble-inline-list li {
	padding: 8px 12px;
	border: 1px solid rgba(182, 138, 77, 0.22);
	border-radius: 999px;
	background: rgba(255, 253, 250, 0.7);
	color: var(--noble-ink-soft);
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
}

.noble-section {
	padding: 88px 0;
	background: linear-gradient(180deg, var(--noble-surface-strong), var(--noble-surface));
	color: var(--noble-charcoal);
}

.noble-section-dark {
	background: linear-gradient(180deg, rgba(17, 13, 10, 0.98), rgba(25, 20, 16, 0.98));
	color: var(--noble-white);
}

.noble-section-dark .noble-section-intro p,
.noble-section-dark .noble-project-card p,
.noble-section-dark .noble-article-card p {
	color: rgba(255, 252, 247, 0.82);
}

.noble-section-dark .noble-section-intro h2,
.noble-section-dark .noble-project-card h3,
.noble-section-dark .noble-article-card h3,
.noble-section-contact .noble-contact-copy h2 {
	color: var(--noble-white);
}

.noble-section-dark .noble-card-kicker,
.noble-section-dark .noble-meta-line,
.noble-section-contact .noble-card-kicker {
	color: var(--noble-gold-soft);
}

.noble-section-dark .noble-inline-list li {
	background: rgba(255, 255, 255, 0.08);
	border-color: rgba(216, 192, 155, 0.24);
	color: var(--noble-white);
}

.noble-section-ivory {
	background:
		linear-gradient(180deg, rgba(255, 251, 246, 0.96), rgba(240, 230, 214, 0.96));
}

.noble-section-contact {
	background: linear-gradient(180deg, rgba(22, 17, 13, 0.98), rgba(29, 22, 17, 0.98));
	color: var(--noble-white);
}

.noble-section-contact .noble-hero-summary,
.noble-section-contact p,
.noble-section-contact li {
	color: rgba(255, 252, 247, 0.84);
}

.noble-two-column {
	grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1.1fr);
	align-items: start;
}

.noble-section-head h2,
.noble-section-intro h2,
.noble-page-hero h1,
.noble-rich-copy h2 {
	font-size: clamp(34px, 4vw, 58px);
}

.noble-section-intro {
	max-width: 72ch;
	margin-bottom: 34px;
}

.noble-copy-stack {
	display: grid;
	gap: 18px;
}

.noble-project-grid,
.noble-feature-grid,
.noble-article-grid,
.noble-value-grid {
	display: grid;
	gap: 20px;
}

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

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

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

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

.noble-project-card,
.noble-feature-card,
.noble-article-card,
.noble-value-card {
	padding: 28px;
	background: var(--noble-surface-card);
}

.noble-project-card,
.noble-feature-card,
.noble-article-card {
	display: flex;
	flex-direction: column;
	padding: 0;
}

.noble-card-body {
	display: grid;
	align-content: start;
	flex: 1;
	padding: 28px;
}

.noble-section-dark .noble-project-card,
.noble-section-dark .noble-article-card {
	background: rgba(255, 255, 255, 0.1);
	border-color: rgba(216, 192, 155, 0.24);
}

.noble-feature-card-light {
	background: rgba(255, 252, 247, 0.92);
}

.noble-project-card h2,
.noble-panel-card h2,
.noble-side-card h2,
.noble-feature-card h2,
.noble-article-card h2,
.noble-project-card h3,
.noble-feature-card h3,
.noble-article-card h3,
.noble-value-card h3 {
	margin: 0 0 12px;
	color: var(--noble-charcoal);
	font-family: var(--noble-font-heading);
	font-size: 30px;
	font-weight: 600;
	line-height: 1.12;
	overflow-wrap: anywhere;
}

.noble-project-card h2 a,
.noble-feature-card h2 a,
.noble-article-card h2 a,
.noble-project-card h3 a,
.noble-feature-card h3 a,
.noble-article-card h3 a,
.noble-value-card h3 a {
	color: inherit;
}

.noble-project-card .noble-text-link,
.noble-feature-card .noble-text-link,
.noble-value-card .noble-text-link {
	color: var(--noble-charcoal);
}

.noble-faq {
	display: grid;
	gap: 16px;
}

.noble-faq details {
	padding: 24px 28px;
	border: 1px solid rgba(182, 138, 77, 0.24);
	border-radius: var(--noble-radius-sm);
	background: rgba(255, 252, 247, 0.96);
	box-shadow: var(--noble-shadow);
}

.noble-faq summary {
	cursor: pointer;
	list-style: none;
	color: var(--noble-charcoal);
	font-family: var(--noble-font-heading);
	font-size: 24px;
}

.noble-faq summary::-webkit-details-marker {
	display: none;
}

.noble-faq p {
	margin: 16px 0 0;
	color: var(--noble-ink-muted-strong);
}

.noble-faq details[open] {
	border-color: rgba(143, 103, 45, 0.34);
}

.noble-contact-grid {
	grid-template-columns: minmax(0, 1fr) minmax(320px, 480px);
	align-items: start;
}

.noble-contact-copy h2 {
	font-size: clamp(34px, 4vw, 56px);
	margin-bottom: 18px;
	font-family: var(--noble-font-display);
	line-height: 1.04;
}

.noble-contact-points {
	display: grid;
	gap: 10px;
	margin-top: 24px;
}

.noble-contact-card {
	padding: 28px;
	background: rgba(255, 252, 247, 0.14);
	backdrop-filter: blur(16px);
}

.noble-contact-card form {
	display: grid;
	gap: 16px;
}

.noble-contact-card label {
	display: grid;
	gap: 8px;
	font-size: 14px;
	font-weight: 600;
	color: rgba(255, 252, 247, 0.92);
}

.noble-contact-card input,
.noble-contact-card select,
.noble-contact-card textarea {
	width: 100%;
	padding: 14px 16px;
	border: 1px solid rgba(216, 192, 155, 0.42);
	border-radius: 14px;
	background: rgba(255, 255, 255, 0.14);
	color: var(--noble-white);
	appearance: none;
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.noble-contact-card input::placeholder,
.noble-contact-card textarea::placeholder {
	color: rgba(255, 252, 247, 0.76);
}

.noble-contact-card input:focus,
.noble-contact-card select:focus,
.noble-contact-card textarea:focus {
	background: rgba(255, 255, 255, 0.18);
}

.noble-contact-card option {
	color: var(--noble-charcoal);
}

.noble-form-notice {
	margin-bottom: 18px;
	padding: 14px 16px;
	border: 1px solid rgba(216, 192, 155, 0.42);
	border-radius: 16px;
	background: rgba(216, 192, 155, 0.14);
	color: rgba(255, 252, 247, 0.94);
}

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

.noble-page-hero,
.noble-inner-main .noble-page-hero {
	background:
		linear-gradient(135deg, rgba(255, 255, 255, 0.12), transparent 40%),
		linear-gradient(180deg, rgba(245, 239, 229, 0.98), rgba(240, 230, 214, 0.96));
}

.noble-page-hero-detail {
	padding-bottom: 52px;
}

.noble-detail-hero-grid {
	grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.55fr);
	align-items: start;
}

.noble-breadcrumbs {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-bottom: 22px;
	font-size: 14px;
	color: var(--noble-ink-muted);
}

.noble-breadcrumbs a {
	color: var(--noble-ink-soft);
	text-decoration: underline;
	text-decoration-color: rgba(143, 103, 45, 0.28);
	text-underline-offset: 0.2em;
}

.noble-side-card,
.noble-panel-card {
	padding: 28px;
}

.noble-detail-hero-media {
	margin-top: 28px;
	aspect-ratio: 16 / 10;
	box-shadow: var(--noble-shadow-strong);
}

.noble-side-card h2,
.noble-panel-card h2 {
	font-size: 28px;
	margin-bottom: 16px;
}

.noble-mini-stat-list {
	display: grid;
	gap: 14px;
	margin-bottom: 24px;
}

.noble-mini-stat-list span {
	display: block;
	font-size: 12px;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: rgba(216, 192, 155, 0.88);
}

.noble-mini-stat-list strong {
	display: block;
	font-family: var(--noble-font-heading);
	font-size: 24px;
	font-weight: 600;
	color: var(--noble-white);
}

.noble-content-grid {
	grid-template-columns: minmax(0, 1fr) minmax(280px, 0.42fr);
	align-items: start;
}

.noble-rich-copy {
	display: grid;
	gap: 28px;
}

.noble-rich-copy p + p {
	margin-top: 0;
}

.noble-rich-copy ul {
	display: grid;
	gap: 10px;
	margin-top: 12px;
}

.noble-rich-copy ul li,
.noble-panel-card li,
.noble-side-card li,
.noble-footer-block li,
.noble-contact-points li {
	position: relative;
	padding-left: 18px;
}

.noble-rich-copy ul li::before,
.noble-panel-card li::before,
.noble-side-card li::before,
.noble-footer-block li::before,
.noble-contact-points li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 11px;
	width: 7px;
	height: 7px;
	border-radius: 999px;
	background: var(--noble-gold);
}

.noble-quote {
	margin: 0;
	padding: 28px 30px;
	border-left: 4px solid var(--noble-gold);
	border-radius: 0 var(--noble-radius-sm) var(--noble-radius-sm) 0;
	background: rgba(182, 138, 77, 0.12);
	font-family: var(--noble-font-display);
	font-size: 31px;
	line-height: 1.25;
	color: var(--noble-charcoal);
}

.noble-bullet-panel {
	padding: 28px 30px;
	border-radius: var(--noble-radius);
	background: linear-gradient(160deg, rgba(255, 249, 240, 0.98), rgba(240, 230, 214, 0.9));
	border: 1px solid rgba(182, 138, 77, 0.24);
	box-shadow: var(--noble-shadow);
}

.noble-bullet-panel h2,
.noble-rich-section h2 {
	margin-bottom: 16px;
}

.noble-sticky-panel {
	display: grid;
	gap: 18px;
	position: sticky;
	top: 118px;
}

body.admin-bar .noble-sticky-panel {
	top: 150px;
}

.noble-site-footer {
	padding: 72px 0 42px;
	background: #120e0b;
	color: rgba(255, 252, 247, 0.88);
}

.noble-footer-grid {
	display: grid;
	grid-template-columns: 1.2fr 0.8fr 0.8fr 0.8fr;
	gap: 22px;
}

.noble-footer-block h3 {
	margin: 18px 0 12px;
	font-family: var(--noble-font-heading);
	font-size: 28px;
	color: var(--noble-white);
}

.noble-footer-brand h2 {
	margin: 18px 0 12px;
	font-family: var(--noble-font-display);
	font-size: 28px;
	color: var(--noble-white);
}

.noble-footer-block ul {
	display: grid;
	gap: 10px;
}

.noble-site-footer a {
	color: var(--noble-white);
	text-decoration: underline;
	text-decoration-color: rgba(216, 192, 155, 0.28);
	text-underline-offset: 0.2em;
}

.noble-footer-bottom {
	display: flex;
	justify-content: space-between;
	gap: 18px;
	margin-top: 42px;
	padding-top: 26px;
	border-top: 1px solid rgba(216, 192, 155, 0.18);
	font-size: 14px;
	color: rgba(255, 252, 247, 0.76);
}

.noble-floating-actions {
	position: fixed;
	right: 22px;
	bottom: 22px;
	z-index: 40;
	display: grid;
	gap: 12px;
}

.noble-floating-button {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 12px 16px;
	min-height: 52px;
	border-radius: 999px;
	border: 1px solid rgba(255, 255, 255, 0.14);
	box-shadow: var(--noble-shadow-strong);
	font-size: 14px;
	font-weight: 600;
	color: var(--noble-white);
}

.noble-floating-button__icon {
	display: inline-grid;
	place-items: center;
	min-width: 48px;
	height: 32px;
	padding: 0 10px;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.24);
	font-size: 11px;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.noble-floating-button-call {
	background: linear-gradient(135deg, #15120f, #3b2c1d);
}

.noble-floating-button-zalo {
	background: linear-gradient(135deg, #0b63d7, #1b86ff);
}

@media (prefers-contrast: more) {
	.noble-hero,
	.noble-page-hero,
	.noble-section,
	.noble-section-ivory {
		background: #fff8ef;
	}

	.noble-project-card,
	.noble-feature-card,
	.noble-article-card,
	.noble-value-card,
	.noble-faq details,
	.noble-bullet-panel {
		background: #fffdfa;
	}

	.noble-section-dark .noble-project-card,
	.noble-section-dark .noble-article-card,
	.noble-showcase-card,
	.noble-panel-card,
	.noble-side-card,
	.noble-contact-card {
		border-color: rgba(255, 255, 255, 0.3);
	}
}

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

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

@media (max-width: 1120px) {
	.noble-hero-grid,
	.noble-detail-hero-grid,
	.noble-contact-grid,
	.noble-content-grid,
	.noble-two-column,
	.noble-about-grid,
	.noble-footer-grid,
	.noble-project-grid,
	.noble-feature-grid,
	.noble-article-grid,
	.noble-value-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

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

	.noble-content-grid,
	.noble-detail-hero-grid {
		grid-template-columns: minmax(0, 1fr);
	}

	.noble-sticky-panel {
		position: static;
	}

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

@media (max-width: 820px) {
	:root {
		--noble-width: min(100vw - 32px, 1240px);
	}

	.noble-site-header {
		padding: 14px 0;
	}

	.noble-menu-toggle {
		display: inline-flex;
	}

	.js .noble-site-nav {
		position: absolute;
		top: calc(100% + 8px);
		right: 16px;
		left: 16px;
		display: grid;
		gap: 14px;
		padding: 20px;
		border: 1px solid rgba(182, 138, 77, 0.2);
		border-radius: 20px;
		background: rgba(255, 249, 240, 0.96);
		box-shadow: var(--noble-shadow);
		opacity: 0;
		pointer-events: none;
		transform: translateY(-8px);
		transition: opacity 180ms ease, transform 180ms ease;
	}

	.js .noble-site-nav.is-open {
		opacity: 1;
		pointer-events: auto;
		transform: translateY(0);
	}

	.noble-hero,
	.noble-page-hero,
	.noble-section {
		padding: 72px 0;
	}

	.noble-hero-grid,
	.noble-project-grid,
	.noble-feature-grid,
	.noble-article-grid,
	.noble-value-grid,
	.noble-footer-grid,
	.noble-two-column,
	.noble-about-grid,
	.noble-contact-grid {
		grid-template-columns: minmax(0, 1fr);
	}

	body::before,
	body::after {
		display: none;
	}

	.noble-site-header,
	.noble-contact-card,
	.noble-stat-card {
		backdrop-filter: none;
		-webkit-backdrop-filter: none;
	}

	.noble-brand-tagline {
		display: none;
	}

	.noble-hero-copy h1,
	.noble-section-head h2,
	.noble-section-intro h2,
	.noble-page-hero h1 {
		max-width: none;
	}

	.noble-footer-bottom {
		flex-direction: column;
	}

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

@media (max-width: 560px) {
	.noble-topbar-inner,
	.noble-header-inner,
	.noble-hero-actions {
		align-items: flex-start;
	}

	.noble-topbar-inner,
	.noble-header-inner,
	.noble-footer-bottom {
		gap: 14px;
	}

	.noble-brand {
		gap: 12px;
	}

	.noble-brand-mark {
		width: 46px;
		height: 46px;
		border-radius: 16px;
		font-size: 17px;
	}

	.noble-hero-copy h1 {
		font-size: clamp(38px, 12vw, 54px);
	}

	.noble-showcase-card,
	.noble-project-card,
	.noble-feature-card,
	.noble-article-card,
	.noble-value-card,
	.noble-contact-card,
	.noble-side-card,
	.noble-panel-card,
	.noble-bullet-panel,
	.noble-faq details {
		padding: 22px;
	}

	.noble-project-card,
	.noble-feature-card,
	.noble-article-card {
		padding: 0;
	}

	.noble-card-body {
		padding: 22px;
	}

	.noble-card-media-showcase {
		margin: -22px -22px 18px;
	}

	.noble-quote {
		padding: 24px;
		font-size: 26px;
	}

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

	.noble-floating-actions {
		right: 14px;
		left: 14px;
		bottom: 14px;
	}

	.noble-floating-button {
		justify-content: center;
	}

	body.has-noble-floating-actions .noble-main {
		padding-bottom: 150px;
	}
}

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

	*,
	*::before,
	*::after {
		animation: none !important;
		transition: none !important;
	}
}
