:root {
				--bg: #fffdf9;
				--bg-cream: #fbf7f2;
				--bg-blush: #f4e8e8;
				--bg-soft: #f2eee8;
				--card: rgba(255, 255, 255, 0.84);
				--card-strong: rgba(255, 255, 255, 0.94);
				--gold: #c8a977;
				--gold-soft: rgba(200, 169, 119, 0.2);
				--ink: #4b4744;
				--muted: #827971;
				--line: rgba(75, 71, 68, 0.12);
				--shadow-soft: 0 24px 70px rgba(86, 72, 64, 0.08);
				--shadow-card: 0 18px 45px rgba(94, 80, 72, 0.1);
				--shadow-lift: 0 26px 58px rgba(88, 72, 63, 0.12);
				--header-h: 78px;
				--container: min(1280px, calc(100% - 96px));
				--header-container: min(1540px, calc(100% - 72px));
				--ease: 380ms cubic-bezier(.22, .61, .36, 1);
			}

			* {
				box-sizing: border-box;
			}

			html {
				scroll-behavior: smooth;
			}

			body {
				margin: 0;
				font-family: "Inter", sans-serif;
				color: var(--ink);
				background:
					radial-gradient(circle at 12% 8%, rgba(244, 232, 232, 0.72), transparent 28%),
					radial-gradient(circle at 88% 14%, rgba(200, 169, 119, 0.13), transparent 18%),
					linear-gradient(180deg, #fffefc 0%, #fbf7f2 38%, #ffffff 100%);
				text-rendering: optimizeLegibility;
				-webkit-font-smoothing: antialiased;
				overflow-x: hidden;
			}

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

			a {
				color: inherit;
			}

			button {
				font: inherit;
			}

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

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

			.eyebrow {
				margin: 0 0 18px;
				font-size: 12px;
				line-height: 1.1;
				letter-spacing: 0.22em;
				text-transform: uppercase;
				color: rgba(75, 71, 68, 0.62);
			}

			h1,
			h2,
			h3,
			h4 {
				margin: 0;
				font-family: "Cormorant Garamond", serif;
				font-weight: 600;
				letter-spacing: 0;
				color: var(--ink);
			}

			h1 {
				max-width: 660px;
				font-size: 78px;
				line-height: 0.96;
			}

			h2 {
				font-size: 58px;
				line-height: 1;
			}

			h3 {
				font-size: 34px;
				line-height: 1.08;
			}

			h4 {
				font-size: 25px;
				line-height: 1.12;
			}

			p {
				margin: 0;
				color: var(--muted);
				font-size: 16px;
				line-height: 1.82;
			}

			.btn-primary,
			.btn-secondary,
			.btn-ghost {
				display: inline-flex;
				align-items: center;
				justify-content: center;
				gap: 10px;
				min-height: 52px;
				padding: 0 24px;
				border: 1px solid transparent;
				border-radius: 999px;
				text-decoration: none;
				font-size: 14px;
				font-weight: 500;
				letter-spacing: 0.14em;
				text-transform: uppercase;
				white-space: nowrap;
				cursor: pointer;
				transition: transform var(--ease), box-shadow var(--ease), background var(--ease), color var(--ease), border-color var(--ease);
			}

			.btn-primary {
				color: #fffaf5;
				background: linear-gradient(135deg, #4b4744, #6f655e);
				box-shadow: 0 16px 35px rgba(75, 71, 68, 0.18);
			}

			.btn-primary:hover,
			.btn-primary:focus-visible {
				transform: translateY(-2px);
				box-shadow: 0 24px 42px rgba(75, 71, 68, 0.22);
				outline: none;
			}

			.btn-secondary,
			.btn-ghost {
				color: var(--ink);
				border-color: rgba(75, 71, 68, 0.18);
				background: rgba(255, 255, 255, 0.58);
				backdrop-filter: blur(12px);
			}

			.btn-secondary:hover,
			.btn-secondary:focus-visible,
			.btn-ghost:hover,
			.btn-ghost:focus-visible {
				transform: translateY(-2px);
				border-color: rgba(200, 169, 119, 0.5);
				background: rgba(255, 255, 255, 0.92);
				outline: none;
			}

			.btn-ghost {
				min-height: 46px;
				padding-inline: 18px;
				letter-spacing: 0.12em;
			}

			.site-header {
				position: fixed;
				inset: 0 0 auto;
				z-index: 120;
				height: var(--header-h);
				border-bottom: 1px solid transparent;
				background: transparent;
				transition: background var(--ease), border-color var(--ease), box-shadow var(--ease);
			}

			.site-header::after {
				content: "";
				position: absolute;
				left: 50%;
				top: 10px;
				width: min(var(--header-container), calc(100% - 16px));
				height: calc(100% - 20px);
				border: 1px solid rgba(255, 255, 255, 0.52);
				border-radius: 999px;
				background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(251, 247, 242, 0.88));
				box-shadow: 0 12px 28px rgba(87, 71, 64, 0.06);
				opacity: 0;
				pointer-events: none;
				transform: translateX(-50%);
				transition: opacity var(--ease), transform var(--ease), box-shadow var(--ease);
			}

			.site-header.scrolled {
				background: rgba(251, 247, 242, 0.94);
				border-bottom-color: rgba(75, 71, 68, 0.09);
				box-shadow: 0 12px 34px rgba(72, 60, 54, 0.08);
			}

			.site-header.scrolled::after {
				opacity: 1;
				box-shadow: var(--shadow-lift);
			}

			.header-inner {
				position: relative;
				z-index: 1;
				display: flex;
				align-items: center;
				justify-content: space-between;
				gap: 22px;
				height: 100%;
				padding-inline: 14px;
			}

			.brand-mark {
				display: inline-flex;
				align-items: center;
				flex: 0 0 auto;
				max-width: 90px;
				color: var(--ink);
				text-decoration: none;
			}

			.brand-logo {
				width: 68px;
				height: 68px;
				object-fit: contain;
				filter: drop-shadow(0 10px 20px rgba(97, 82, 73, 0.1));
			}

			.desktop-nav {
				display: flex;
				align-items: center;
				justify-content: center;
				flex: 1 1 auto;
				min-width: 0;
				gap: 48px;
			}

			.nav-link {
				position: relative;
				color: rgba(75, 71, 68, 0.78);
				font-size: 14px;
				font-weight: 500;
				letter-spacing: 0.01em;
				text-decoration: none;
				white-space: nowrap;
				transition: color var(--ease);
			}

			.nav-link::after {
				content: "";
				position: absolute;
				left: 0;
				right: 0;
				bottom: -8px;
				height: 1px;
				background: linear-gradient(90deg, transparent, var(--gold), transparent);
				transform: scaleX(0);
				transform-origin: center;
				transition: transform var(--ease);
			}

			.nav-link:hover,
			.nav-link:focus-visible,
			.nav-link[aria-current="page"] {
				color: var(--ink);
				outline: none;
			}

			.nav-link:hover::after,
			.nav-link:focus-visible::after,
			.nav-link[aria-current="page"]::after {
				transform: scaleX(1);
			}

			.header-actions {
				display: flex;
				align-items: center;
				flex: 0 0 auto;
				gap: 12px;
			}

			.header-actions .btn-primary {
				min-height: 46px;
				padding-inline: 20px;
				font-size: 12px;
				letter-spacing: 0.12em;
			}

			.icon-btn,
			.language-trigger {
				display: grid;
				place-items: center;
				width: 44px;
				height: 44px;
				border: 1px solid rgba(75, 71, 68, 0.14);
				border-radius: 50%;
				background: rgba(255, 255, 255, 0.56);
				color: var(--ink);
				cursor: pointer;
				transition: transform var(--ease), background var(--ease), border-color var(--ease);
			}

			.icon-btn:hover,
			.icon-btn:focus-visible,
			.language-trigger:hover,
			.language-trigger:focus-visible {
				transform: translateY(-2px);
				background: rgba(255, 255, 255, 0.9);
				border-color: rgba(200, 169, 119, 0.42);
				outline: none;
			}

			.menu-lines,
			.menu-lines::before,
			.menu-lines::after {
				display: block;
				width: 18px;
				height: 2px;
				border-radius: 999px;
				background: currentColor;
			}

			.menu-lines {
				position: relative;
			}

			.menu-lines::before,
			.menu-lines::after {
				content: "";
				position: absolute;
				left: 0;
			}

			.menu-lines::before {
				top: -6px;
			}

			.menu-lines::after {
				top: 6px;
			}

			.close-lines {
				position: relative;
				display: block;
				width: 18px;
				height: 18px;
			}

			.close-lines::before,
			.close-lines::after {
				content: "";
				position: absolute;
				top: 8px;
				left: 0;
				width: 18px;
				height: 2px;
				border-radius: 999px;
				background: currentColor;
			}

			.close-lines::before {
				transform: rotate(45deg);
			}

			.close-lines::after {
				transform: rotate(-45deg);
			}

			.language-glyph {
				position: relative;
				display: grid;
				place-items: center;
				width: 24px;
				height: 24px;
				font-size: 10px;
				font-weight: 700;
			}

			.language-glyph::before {
				content: "";
				position: absolute;
				inset: 1px;
				border: 1.6px solid currentColor;
				border-radius: 50%;
				opacity: 0.72;
			}

			.language-glyph span {
				position: relative;
				z-index: 1;
			}

			.language-modal {
				position: fixed;
				inset: 0;
				z-index: 220;
				display: grid;
				place-items: center;
				padding: 34px;
				background: rgba(58, 49, 44, 0.36);
				backdrop-filter: blur(10px);
				opacity: 0;
				pointer-events: none;
				transition: opacity var(--ease);
			}

			.language-modal.open {
				opacity: 1;
				pointer-events: auto;
			}

			.language-dialog {
				display: grid;
				grid-template-rows: auto minmax(0, 1fr);
				width: min(760px, 92vw);
				max-height: min(780px, 88dvh);
				overflow: hidden;
				border: 1px solid rgba(200, 169, 119, 0.18);
				border-radius: 34px;
				background: linear-gradient(145deg, rgba(255, 255, 255, 0.97), rgba(251, 247, 242, 0.95));
				box-shadow: 0 30px 80px rgba(61, 49, 43, 0.18);
			}

			.language-modal-head {
				display: flex;
				align-items: flex-start;
				justify-content: space-between;
				gap: 18px;
				padding: 34px 34px 0;
			}

			.language-modal-head p:not(.eyebrow) {
				margin-top: 10px;
				max-width: 560px;
				font-size: 14px;
				line-height: 1.7;
			}

			.language-grid {
				display: grid;
				grid-template-columns: repeat(4, minmax(0, 1fr));
				gap: 10px;
				overflow-y: auto;
				padding: 24px 34px 34px;
			}

			.language-option {
				min-height: 44px;
				padding: 0 12px;
				border: 1px solid rgba(75, 71, 68, 0.1);
				border-radius: 999px;
				background: rgba(255, 255, 255, 0.7);
				color: rgba(75, 71, 68, 0.76);
				cursor: pointer;
				font-size: 13px;
				line-height: 1.25;
				text-align: center;
				transition: transform var(--ease), background var(--ease), border-color var(--ease), color var(--ease);
			}

			.language-option:hover,
			.language-option:focus-visible {
				transform: translateY(-2px);
				background: rgba(255, 255, 255, 0.96);
				border-color: rgba(200, 169, 119, 0.38);
				color: var(--ink);
				outline: none;
			}

			.mobile-trigger,
			.mobile-panel,
			.mobile-backdrop {
				display: none;
			}

			.mobile-nav-list {
				display: grid;
				gap: 12px;
			}

			.mobile-nav-list > a,
			.mobile-product-menu > .nav-link {
				padding: 12px 0;
				border-bottom: 1px solid rgba(75, 71, 68, 0.1);
				font-family: "Cormorant Garamond", serif;
				font-size: 30px;
				font-weight: 600;
				line-height: 1;
				text-decoration: none;
			}

			.solution-page {
				padding-top: var(--header-h);
			}

			.solution-hero {
				position: relative;
				overflow: hidden;
				padding: 80px 0 74px;
				background: linear-gradient(115deg, rgba(255, 253, 249, 0.98), rgba(244, 232, 232, 0.5) 56%, rgba(242, 238, 232, 0.88));
			}

			.solution-hero-grid {
				display: grid;
				grid-template-columns: minmax(0, 0.72fr) minmax(520px, 1.28fr);
				gap: 52px;
				align-items: center;
			}

			.solution-hero-copy {
				position: relative;
				z-index: 2;
			}

			.solution-hero-copy p:not(.eyebrow) {
				max-width: 520px;
				margin-top: 26px;
			}

			.solution-hero-visual {
				position: relative;
				min-height: 640px;
				overflow: hidden;
				border: 1px solid rgba(255, 255, 255, 0.72);
				border-radius: 8px;
				background: rgba(255, 255, 255, 0.48);
				box-shadow: var(--shadow-soft);
			}

			.solution-hero-visual img {
				width: 100%;
				height: 100%;
				position: absolute;
				inset: 0;
				object-fit: cover;
				object-position: center;
			}

			.section-block {
				padding: 92px 0;
			}

			.section-block + .section-block {
				border-top: 1px solid rgba(75, 71, 68, 0.08);
			}

			.section-head {
				display: grid;
				grid-template-columns: minmax(0, 0.82fr) minmax(280px, 1fr);
				gap: 56px;
				align-items: end;
				margin-bottom: 44px;
			}

			.section-head-simple {
				display: block;
				max-width: 760px;
			}

			.section-head p {
				max-width: 760px;
			}

			.process-track {
				display: grid;
				grid-template-columns: repeat(6, minmax(0, 1fr));
				border-top: 1px solid rgba(200, 169, 119, 0.34);
				border-bottom: 1px solid rgba(75, 71, 68, 0.08);
				background: rgba(255, 255, 255, 0.46);
			}

			.process-step {
				position: relative;
				min-height: 156px;
				padding: 28px 18px 24px;
				border-right: 1px solid rgba(75, 71, 68, 0.08);
			}

			.process-step:last-child {
				border-right: 0;
			}

			.process-index {
				display: grid;
				place-items: center;
				width: 44px;
				height: 44px;
				margin-bottom: 34px;
				border: 1px solid rgba(200, 169, 119, 0.5);
				border-radius: 50%;
				color: var(--gold);
				background: rgba(255, 253, 249, 0.9);
				font-family: "Cormorant Garamond", serif;
				font-size: 22px;
			}

			.process-step strong {
				display: block;
				font-family: "Cormorant Garamond", serif;
				font-size: 24px;
				line-height: 1;
			}

			.capability-section {
				padding-block: 0;
				background: #fffdf9;
			}

			.capability-intro {
				padding: 92px 0 44px;
			}

			.capability-row {
				display: grid;
				grid-template-columns: minmax(320px, 0.72fr) minmax(0, 1.28fr);
				gap: 34px;
				align-items: center;
				min-height: 260px;
				margin-inline: calc((100vw - min(1280px, calc(100vw - 96px))) / -2);
				padding: 44px max(48px, calc((100vw - 1280px) / 2));
				border-top: 1px solid rgba(75, 71, 68, 0.08);
			}

			.capability-row:nth-of-type(2) {
				background: rgba(255, 253, 249, 0.88);
			}

			.capability-row:nth-of-type(3) {
				background: #fbefef;
			}

			.capability-row:nth-of-type(4) {
				background: #f5ede5;
			}

			.capability-label {
				display: block;
				margin-bottom: 14px;
				color: var(--gold);
				font-size: 12px;
				font-weight: 600;
				letter-spacing: 0.14em;
				text-transform: uppercase;
			}

			.capability-copy h3 {
				font-size: clamp(34px, 3.4vw, 54px);
			}

			.capability-strip {
				position: relative;
				display: grid;
				grid-template-columns: repeat(4, minmax(0, 1fr));
				align-items: end;
				min-height: 190px;
				overflow: hidden;
			}

			.capability-strip > img {
				position: absolute;
				inset: 0;
				width: 100%;
				height: 100%;
				object-fit: cover;
			}

			.capability-strip span {
				position: relative;
				z-index: 1;
				padding-bottom: 4px;
				text-align: center;
				color: var(--ink);
				font-size: 10px;
				font-weight: 600;
				letter-spacing: 0.09em;
				text-transform: uppercase;
			}

			.decoration-grid {
				display: grid;
				grid-template-columns: repeat(5, minmax(0, 1fr));
				gap: 18px;
			}

			.decoration-grid figure {
				margin: 0;
				text-align: center;
			}

			.decoration-grid img {
				width: 100%;
				aspect-ratio: 1 / 1;
				object-fit: cover;
				background: rgba(255, 255, 255, 0.42);
			}

			.decoration-grid figcaption {
				margin-top: 12px;
				font-size: 10px;
				font-weight: 600;
				letter-spacing: 0.09em;
				text-transform: uppercase;
			}

			.launch-showcase {
				display: grid;
				gap: 34px;
			}

			.launch-board {
				display: grid;
				grid-template-columns: minmax(360px, 0.9fr) minmax(0, 1.1fr);
				min-height: 440px;
				overflow: hidden;
				border: 1px solid rgba(75, 71, 68, 0.08);
				background: linear-gradient(120deg, rgba(255, 253, 249, 0.96), rgba(245, 235, 230, 0.72));
				box-shadow: 0 26px 70px rgba(74, 61, 55, 0.08);
			}

			.launch-visual {
				position: relative;
				min-height: 440px;
				overflow: hidden;
				background: #efe7df;
			}

			.launch-visual img {
				width: 100%;
				height: 100%;
				object-fit: cover;
			}

			.launch-visual::after {
				content: "";
				position: absolute;
				inset: 0;
				background: linear-gradient(90deg, rgba(58, 50, 45, 0.12), rgba(255, 253, 249, 0));
				pointer-events: none;
			}

			.launch-panel {
				display: grid;
				align-content: center;
				gap: 38px;
				padding: clamp(34px, 4vw, 64px);
			}

			.launch-list {
				display: grid;
				border-top: 1px solid rgba(75, 71, 68, 0.1);
			}

			.launch-list-item {
				display: grid;
				grid-template-columns: 72px 1fr;
				gap: 22px;
				align-items: center;
				min-height: 82px;
				border-bottom: 1px solid rgba(75, 71, 68, 0.1);
			}

			.launch-list-item span {
				color: var(--gold);
				font-family: "Cormorant Garamond", serif;
				font-size: 28px;
			}

			.launch-list-item strong {
				font-family: "Cormorant Garamond", serif;
				font-size: clamp(30px, 3vw, 44px);
				font-weight: 600;
				line-height: 1;
			}

			.launch-kit {
				display: grid;
				grid-template-columns: repeat(4, minmax(0, 1fr));
				gap: 10px;
			}

			.launch-kit span {
				display: grid;
				place-items: center;
				min-height: 84px;
				padding: 14px;
				border: 1px solid rgba(200, 169, 119, 0.28);
				background: rgba(255, 253, 249, 0.76);
				color: var(--ink);
				font-size: 11px;
				font-weight: 600;
				letter-spacing: 0.1em;
				text-align: center;
				text-transform: uppercase;
			}

			.management-point i {
				display: grid;
				place-items: center;
				width: 46px;
				height: 46px;
				border: 1px solid rgba(200, 169, 119, 0.42);
				border-radius: 50%;
				color: var(--gold);
				background: rgba(255, 255, 255, 0.54);
			}

			.management-point strong {
				display: block;
				margin-bottom: 5px;
				font-family: "Cormorant Garamond", serif;
				font-size: 25px;
				font-weight: 600;
			}

			.category-grid {
				display: grid;
				grid-template-columns: repeat(4, minmax(0, 1fr));
				gap: 16px;
			}

			.category-card {
				position: relative;
				display: grid;
				min-height: 410px;
				overflow: hidden;
				color: #fff;
				text-decoration: none;
				background: #3f3935;
			}

			.category-card img {
				position: absolute;
				inset: 0;
				width: 100%;
				height: 100%;
				object-fit: cover;
				transition: transform var(--ease);
			}

			.category-card::after {
				content: "";
				position: absolute;
				inset: 30% 0 0;
				background: linear-gradient(transparent, rgba(34, 29, 26, 0.78));
			}

			.category-card:hover img,
			.category-card:focus-visible img {
				transform: scale(1.04);
			}

			.category-card:focus-visible {
				outline: 2px solid var(--gold);
				outline-offset: 4px;
			}

			.category-copy {
				position: relative;
				z-index: 1;
				align-self: end;
				padding: 24px;
			}

			.category-copy h3 {
				color: #fff;
				font-size: 32px;
			}

			.category-copy p {
				margin-top: 10px;
				color: rgba(255, 255, 255, 0.76);
				font-size: 13px;
				line-height: 1.55;
			}

			.management-grid {
				display: grid;
				grid-template-columns: minmax(0, 0.86fr) minmax(420px, 1.14fr);
				gap: 58px;
				align-items: center;
			}

			.management-points {
				display: grid;
				grid-template-columns: repeat(2, minmax(0, 1fr));
				border-top: 1px solid rgba(75, 71, 68, 0.1);
				border-left: 1px solid rgba(75, 71, 68, 0.1);
				background: rgba(255, 255, 255, 0.42);
			}

			.management-point {
				min-height: 190px;
				padding: 28px;
				border-right: 1px solid rgba(75, 71, 68, 0.1);
				border-bottom: 1px solid rgba(75, 71, 68, 0.1);
			}

			.management-point i {
				margin-bottom: 28px;
			}

			.solution-cta {
				padding: 84px 0;
				background: #332f2c;
				color: #fffaf5;
			}

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

			.solution-cta h2 {
				max-width: 780px;
				color: #fffaf5;
			}

			.solution-cta p {
				max-width: 620px;
				margin-top: 16px;
				color: rgba(255, 255, 255, 0.68);
			}

			.solution-cta .btn-primary {
				flex: 0 0 auto;
				color: var(--ink);
				background: #fffdf9;
			}

			.site-footer {
				padding: 18px 0 32px;
			}

			.footer-shell {
				position: relative;
				overflow: hidden;
				padding: 42px 38px 0;
				border-top: 1px solid rgba(75, 71, 68, 0.08);
				border-radius: 36px 36px 0 0;
				background: linear-gradient(180deg, rgba(255, 255, 255, 0.7), rgba(244, 232, 232, 0.3));
				box-shadow: 0 -12px 28px rgba(88, 72, 63, 0.04);
			}

			.footer-shell::after {
				content: "";
				position: absolute;
				inset: -120px -80px auto auto;
				width: 220px;
				height: 220px;
				border-radius: 50%;
				background: radial-gradient(circle, rgba(200, 169, 119, 0.14), rgba(200, 169, 119, 0));
				pointer-events: none;
			}

			.footer-grid {
				display: grid;
				grid-template-columns: 1.2fr 0.8fr 0.8fr 0.7fr;
				gap: 26px;
				padding-bottom: 30px;
			}

			.footer-title {
				margin-bottom: 16px;
				color: rgba(75, 71, 68, 0.46);
				font-size: 12px;
				font-weight: 600;
				letter-spacing: 0.18em;
				text-transform: uppercase;
			}

			.footer-copy,
			.footer-links a,
			.footer-bottom {
				color: rgba(75, 71, 68, 0.72);
				font-size: 14px;
				line-height: 1.9;
				text-decoration: none;
			}

			.footer-links {
				display: grid;
				gap: 6px;
			}

			.footer-links a:hover,
			.footer-links a:focus-visible {
				color: var(--ink);
				outline: none;
			}

			.footer-bottom {
				display: flex;
				align-items: center;
				justify-content: space-between;
				gap: 16px;
				padding-top: 18px;
				border-top: 1px solid rgba(75, 71, 68, 0.08);
			}

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

			.reveal {
				opacity: 0;
				transform: translateY(24px);
				transition: opacity 700ms ease, transform 700ms ease;
			}

			.reveal.show {
				opacity: 1;
				transform: translateY(0);
			}

			@media (max-width: 1439px) {
				:root {
					--container: min(1180px, calc(100% - 72px));
					--header-container: calc(100% - 44px);
				}

				.desktop-nav {
					gap: 34px;
				}

				.nav-link {
					font-size: 13px;
				}

				h1 {
					font-size: 68px;
				}
			}

			@media (max-width: 1199px) {
				:root {
					--header-h: 74px;
					--container: calc(100% - 40px);
					--header-container: calc(100% - 32px);
				}

				.desktop-nav,
				.header-actions .btn-primary,
				.header-actions .btn-secondary,
				.header-actions .icon-btn {
					display: none;
				}

				.mobile-backdrop {
					display: block;
					position: fixed;
					inset: 0;
					z-index: 125;
					background: rgba(61, 50, 45, 0.34);
					opacity: 0;
					pointer-events: none;
					transition: opacity var(--ease);
				}

				.mobile-backdrop.open {
					opacity: 1;
					pointer-events: auto;
				}

				.mobile-trigger {
					display: grid;
					place-items: center;
					width: 44px;
					height: 44px;
					border: 1px solid rgba(75, 71, 68, 0.14);
					border-radius: 50%;
					background: rgba(255, 255, 255, 0.56);
					color: var(--ink);
				}

				.mobile-panel {
					display: none;
					position: fixed;
					inset: 0 auto 0 0;
					z-index: 130;
					width: min(420px, 88vw);
					padding: 28px 24px;
					border-left: 1px solid rgba(75, 71, 68, 0.08);
					background: linear-gradient(180deg, rgba(255, 253, 249, 0.98), rgba(251, 247, 242, 0.98));
					box-shadow: -20px 0 44px rgba(63, 52, 47, 0.12);
				}

				.mobile-panel.open {
					display: block;
				}

				.solution-hero-grid,
				.section-head,
				.launch-board,
				.management-grid {
					grid-template-columns: 1fr;
				}

				.solution-hero {
					padding-top: 56px;
				}

				.solution-hero-visual {
					min-height: 560px;
				}

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

				.launch-visual {
					min-height: 360px;
				}

				.capability-row {
					grid-template-columns: 1fr;
					margin-inline: -20px;
					padding: 50px 20px;
				}

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

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

			@media (max-width: 720px) {
				h1 {
					font-size: 48px;
					line-height: 1;
				}

				h2 {
					font-size: 40px;
				}

				h3 {
					font-size: 29px;
				}

				.solution-hero {
					padding: 46px 0 58px;
				}

				.solution-hero-copy p:not(.eyebrow) {
					font-size: 15px;
				}

				.solution-cta .btn-primary {
					width: 100%;
				}

				.solution-hero-visual {
					min-height: 430px;
				}

				.section-block,
				.capability-intro {
					padding: 68px 0;
				}

				.process-track,
				.category-grid,
				.management-points,
				.launch-kit,
				.decoration-grid {
					grid-template-columns: 1fr;
				}

				.process-step {
					min-height: auto;
					border-right: 0;
				}

				.process-index {
					margin-bottom: 24px;
				}

				.capability-strip {
					grid-template-columns: repeat(2, minmax(0, 1fr));
					min-height: 260px;
				}

				.capability-strip span {
					padding-bottom: 8px;
				}

				.decoration-grid {
					gap: 14px;
				}

				.category-card {
					min-height: 340px;
				}

				.solution-cta-inner {
					align-items: flex-start;
					flex-direction: column;
				}

				.footer-shell {
					padding-inline: 22px;
				}

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

				.footer-bottom {
					align-items: flex-start;
					flex-direction: column;
				}
			}

			@media (max-width: 359px) {
				h1 {
					font-size: 40px;
				}

				.btn-primary,
				.btn-secondary,
				.btn-ghost {
					width: 100%;
				}
			}

			.solution-redesign {
				background:
					radial-gradient(circle at 0% 7%, rgba(248, 206, 197, 0.26), transparent 34%),
					linear-gradient(180deg, #fffdf9 0%, #faf4ee 42%, #fffdf9 100%);
				overflow-x: hidden;
			}

			.solution-redesign .reveal {
				opacity: 1;
				transform: none;
			}

			.sr-section {
				position: relative;
				padding: clamp(76px, 8vw, 118px) 0;
			}

			.sr-section + .sr-section {
				border-top: 1px solid rgba(75, 71, 68, 0.08);
			}

			.sr-kicker {
				color: var(--gold);
				font-size: 12px;
				font-weight: 600;
				letter-spacing: 0.18em;
				text-transform: uppercase;
			}

			.sr-title-row {
				display: grid;
				grid-template-columns: minmax(0, 0.82fr) minmax(320px, 1fr);
				gap: clamp(34px, 5vw, 80px);
				align-items: end;
				margin-bottom: clamp(36px, 5vw, 64px);
			}

			.sr-title-row p:not(.sr-kicker) {
				max-width: 720px;
			}

			.sr-hero {
				position: relative;
				isolation: isolate;
				min-height: min(860px, calc(100vh - var(--header-h)));
				padding: 0;
				background:
					linear-gradient(90deg, rgba(255, 253, 249, 0.96) 0%, rgba(255, 253, 249, 0.9) 30%, rgba(255, 253, 249, 0.48) 55%, rgba(255, 253, 249, 0.08) 100%),
					url("/assets/image/solutions/solution-atelier-hero-v2.png") center right / cover no-repeat;
			}

			.sr-hero-shell {
				display: flex;
				align-items: center;
				min-height: min(860px, calc(100vh - var(--header-h)));
			}

			.sr-hero-copy {
				display: grid;
				align-content: center;
				width: min(560px, 100%);
				min-height: 0;
				padding: clamp(54px, 7vw, 92px) 0;
				color: var(--ink);
			}

			.sr-hero-copy h1 {
				max-width: 620px;
				margin-top: 22px;
				color: var(--ink);
				font-size: clamp(58px, 6.2vw, 96px);
				line-height: 0.92;
			}

			.sr-hero-copy p:not(.sr-kicker) {
				max-width: 520px;
				margin-top: 24px;
				color: var(--muted);
			}

			.sr-hero-copy .sr-kicker {
				color: var(--gold);
			}

			.sr-roadmap {
				position: relative;
				isolation: isolate;
				display: grid;
				gap: clamp(34px, 5vw, 62px);
				overflow: hidden;
				padding: clamp(36px, 5vw, 72px);
				border: 1px solid rgba(75, 71, 68, 0.08);
				border-radius: 46px;
				background:
					radial-gradient(circle at 82% 12%, rgba(216, 178, 118, 0.2), transparent 30%),
					linear-gradient(135deg, rgba(255, 253, 249, 0.96), rgba(248, 239, 232, 0.88));
				box-shadow: 0 32px 90px rgba(72, 58, 49, 0.07);
			}

			.sr-roadmap::before {
				content: "";
				position: absolute;
				inset: 0;
				z-index: -1;
				background: url("/assets/image/solutions/solution-development.png") right -120px center / min(48vw, 680px) auto no-repeat;
				opacity: 0.1;
				mix-blend-mode: multiply;
			}

			.sr-roadmap-copy {
				display: grid;
				grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1fr);
				gap: clamp(28px, 5vw, 80px);
				align-items: end;
			}

			.sr-roadmap-copy h2 {
				grid-column: 1;
				max-width: 660px;
				margin-top: 16px;
			}

			.sr-roadmap-copy .sr-kicker {
				grid-column: 1;
			}

			.sr-roadmap-copy p:not(.sr-kicker) {
				grid-column: 2;
				grid-row: 1 / span 2;
				align-self: end;
				max-width: 650px;
				margin-top: 0;
				padding-left: clamp(24px, 4vw, 70px);
				border-left: 1px solid rgba(201, 155, 86, 0.28);
			}

			.sr-step-stack {
				position: relative;
				display: grid;
				grid-template-columns: repeat(6, minmax(0, 1fr));
				gap: 0;
				overflow: hidden;
				border: 1px solid rgba(75, 71, 68, 0.08);
				border-radius: 34px;
				background: rgba(255, 253, 249, 0.74);
				box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.74);
			}

			.sr-step-stack::before {
				content: "";
				position: absolute;
				top: 58px;
				left: calc(100% / 12);
				right: calc(100% / 12);
				height: 1px;
				background: linear-gradient(90deg, rgba(201, 155, 86, 0.16), rgba(201, 155, 86, 0.62), rgba(201, 155, 86, 0.16));
			}

			.sr-road-step {
				position: relative;
				display: grid;
				align-content: start;
				min-height: 232px;
				padding: 28px clamp(14px, 1.35vw, 22px) 30px;
				border-right: 1px solid rgba(75, 71, 68, 0.08);
				background: transparent;
			}

			.sr-road-step:last-child {
				border-right: 0;
			}

			.sr-road-step:nth-child(even) {
				background: linear-gradient(180deg, rgba(252, 239, 239, 0.56), rgba(255, 253, 249, 0.58));
			}

			.sr-road-step span {
				position: relative;
				z-index: 1;
				display: grid;
				width: 58px;
				height: 58px;
				margin-bottom: 44px;
				place-items: center;
				border: 1px solid rgba(201, 155, 86, 0.34);
				border-radius: 999px;
				background: #fffdf9;
				color: var(--gold);
				font-family: "Cormorant Garamond", serif;
				font-size: 23px;
				box-shadow: 0 12px 28px rgba(72, 58, 49, 0.08);
			}

			.sr-road-step strong {
				display: block;
				max-width: 100%;
				font-family: "Cormorant Garamond", serif;
				font-size: clamp(22px, 1.45vw, 28px);
				font-weight: 600;
				line-height: 1.08;
				overflow-wrap: break-word;
				word-break: normal;
			}

			.sr-road-step::after {
				content: "";
				position: absolute;
				left: clamp(14px, 1.35vw, 22px);
				bottom: 26px;
				width: 34px;
				height: 2px;
				background: rgba(201, 155, 86, 0.48);
			}

			.sr-capability {
				background: linear-gradient(180deg, #fffdf9, #f7eee8);
			}

			.sr-capability-deck {
				display: grid;
				grid-template-columns: repeat(3, minmax(0, 1fr));
				gap: 18px;
				align-items: stretch;
			}

			.sr-cap-card {
				display: grid;
				grid-template-rows: 280px auto;
				min-height: 560px;
				overflow: hidden;
				border: 0;
				border-radius: 28px;
				background: rgba(255, 253, 249, 0.82);
				box-shadow: 0 20px 54px rgba(72, 58, 49, 0.06);
			}

			.sr-cap-card:nth-child(2) {
				margin-top: 0;
				background: #fbefef;
			}

			.sr-cap-media,
			.sr-cap-decoration {
				position: relative;
				overflow: hidden;
				background: #f1e9e1;
			}

			.sr-cap-media img {
				width: 100%;
				height: 100%;
				object-fit: cover;
			}

			.sr-cap-decoration {
				display: block;
			}

			.sr-cap-decoration img {
				display: block;
				width: 100%;
				height: 100%;
				object-fit: cover;
			}

			.sr-cap-body {
				display: grid;
				align-content: start;
				gap: 28px;
				padding: 30px;
			}

			.sr-cap-body h3 {
				font-size: clamp(34px, 3.2vw, 48px);
			}

			.sr-chip-list {
				display: grid;
				gap: 12px;
			}

			.sr-chip-list span {
				display: flex;
				align-items: center;
				min-height: 20px;
				padding: 0;
				border: 0;
				background: transparent;
				color: var(--ink);
				font-size: 11px;
				font-weight: 600;
				letter-spacing: 0.09em;
				text-transform: uppercase;
			}

			.sr-chip-list span::before {
				content: "";
				display: inline-block;
				width: 7px;
				height: 7px;
				margin-right: 11px;
				border-radius: 50%;
				background: var(--gold);
				box-shadow: 0 0 0 4px rgba(201, 155, 86, 0.1);
				flex: 0 0 auto;
			}

			.sr-launch-mosaic {
				display: grid;
				grid-template-columns: minmax(320px, 0.9fr) minmax(0, 1.1fr);
				grid-template-areas:
					"title title"
					"photo needs"
					"kit kit";
				gap: 18px;
			}

			.sr-launch-title,
			.sr-launch-needs,
			.sr-launch-kit {
				border: 1px solid rgba(75, 71, 68, 0.08);
				border-radius: 28px;
				background: rgba(255, 253, 249, 0.74);
				overflow: hidden;
			}

			.sr-launch-title {
				grid-area: title;
				display: grid;
				grid-template-columns: 1fr;
				gap: 36px;
				align-items: end;
				padding: clamp(30px, 3.5vw, 48px);
				border: 0;
				background: transparent;
			}

			.sr-launch-title h2 {
				margin-top: 0;
				max-width: none;
			}

			@media (min-width: 1025px) {
				.sr-launch-title h2 {
					white-space: nowrap;
				}
			}

			.sr-launch-photo {
				grid-area: photo;
				min-height: 430px;
				overflow: hidden;
				border-radius: 220px 220px 28px 28px;
				box-shadow: 0 24px 70px rgba(64, 51, 44, 0.12);
			}

			.sr-launch-photo img {
				width: 100%;
				height: 100%;
				object-fit: cover;
			}

			.sr-launch-needs {
				grid-area: needs;
				display: grid;
				align-content: center;
				gap: 28px;
				padding: clamp(30px, 4vw, 52px);
				border: 0;
				background: transparent;
				color: var(--ink);
				box-shadow: none;
			}

			.sr-control .sr-kicker,
			.sr-cta .sr-kicker {
				color: #d6b277;
			}

			.sr-launch-needs .sr-kicker {
				color: #b98445;
			}

			.sr-need-list {
				display: grid;
				gap: 18px;
			}

			.sr-need-list div {
				display: grid;
				grid-template-columns: 48px 1fr;
				gap: 18px;
				align-items: center;
				padding-bottom: 18px;
				border-bottom: 1px solid rgba(75, 71, 68, 0.12);
			}

			.sr-need-list div:last-child {
				padding-bottom: 0;
				border-bottom: 0;
			}

			.sr-need-list span {
				color: #d6b277;
				font-family: "Cormorant Garamond", serif;
				font-size: 28px;
			}

			.sr-need-list strong {
				color: var(--ink);
				font-family: "Cormorant Garamond", serif;
				font-size: clamp(28px, 3vw, 42px);
				font-weight: 600;
				line-height: 1;
			}

			.sr-launch-kit {
				grid-area: kit;
				display: grid;
				grid-template-columns: repeat(4, minmax(0, 1fr));
				gap: 0;
				padding: 0;
			}

			.sr-launch-kit span {
				display: grid;
				place-items: center;
				min-height: 118px;
				padding: 18px;
				background: rgba(255, 253, 249, 0.94);
				border-right: 1px solid rgba(75, 71, 68, 0.08);
				color: var(--ink);
				font-size: 11px;
				font-weight: 700;
				letter-spacing: 0.11em;
				text-align: center;
				text-transform: uppercase;
			}

			.sr-launch-kit span:last-child {
				border-right: 0;
			}

			.sr-category-lanes {
				display: grid;
				gap: 14px;
			}

			.sr-category-lane {
				display: grid;
				grid-template-columns: 90px 210px minmax(0, 1fr) 132px;
				gap: 26px;
				align-items: center;
				min-height: 160px;
				padding: 16px 24px 16px 16px;
				border: 1px solid rgba(75, 71, 68, 0.08);
				background: rgba(255, 253, 249, 0.78);
				color: var(--ink);
				text-decoration: none;
				transition: transform var(--ease), box-shadow var(--ease), background var(--ease);
			}

			.sr-category-lane:hover,
			.sr-category-lane:focus-visible {
				transform: translateX(10px);
				background: #fffdf9;
				box-shadow: 0 20px 55px rgba(72, 58, 49, 0.08);
				outline: 0;
			}

			.sr-category-number {
				color: var(--gold);
				font-family: "Cormorant Garamond", serif;
				font-size: 42px;
				text-align: center;
			}

			.sr-category-lane img {
				width: 100%;
				height: 126px;
				object-fit: cover;
			}

			.sr-category-lane h3 {
				font-size: clamp(30px, 3vw, 42px);
			}

			.sr-category-lane p {
				max-width: 620px;
				margin-top: 8px;
				font-size: 14px;
				line-height: 1.65;
			}

			.sr-category-action {
				display: inline-grid;
				place-items: center;
				min-height: 48px;
				padding: 0 18px;
				border: 1px solid rgba(75, 71, 68, 0.12);
				border-radius: 999px;
				color: var(--gold);
				font-size: 11px;
				font-weight: 700;
				letter-spacing: 0.1em;
				text-align: center;
				text-transform: uppercase;
			}

			.sr-control {
				background: #332f2c;
				color: #fffaf5;
			}

			.sr-control h2,
			.sr-control p {
				color: #fffaf5;
			}

			.sr-control-shell {
				display: grid;
				grid-template-columns: 1fr;
				gap: clamp(40px, 5vw, 64px);
			}

			.sr-control-copy {
				max-width: 820px;
			}

			.sr-control-copy h2 {
				margin-top: 16px;
			}

			.sr-control-copy p:not(.sr-kicker) {
				max-width: 760px;
				margin-top: 22px;
				color: rgba(255, 250, 245, 0.7);
			}

			.sr-control-strip {
				display: grid;
				grid-template-columns: repeat(4, minmax(0, 1fr));
				border-left: 1px solid rgba(255, 250, 245, 0.14);
			}

			.sr-control-item {
				display: grid;
				align-content: space-between;
				min-height: 230px;
				padding: 26px 22px;
				border-top: 1px solid rgba(255, 250, 245, 0.14);
				border-right: 1px solid rgba(255, 250, 245, 0.14);
				border-bottom: 1px solid rgba(255, 250, 245, 0.14);
			}

			.sr-control-number {
				display: grid;
				place-items: center;
				width: 48px;
				height: 48px;
				border: 1px solid rgba(214, 178, 119, 0.48);
				border-radius: 50%;
				color: #d6b277;
				font-family: "Cormorant Garamond", serif;
				font-size: 24px;
			}

			.sr-control-item strong {
				color: #fffaf5;
				font-family: "Cormorant Garamond", serif;
				font-size: clamp(28px, 2.6vw, 40px);
				font-weight: 600;
				line-height: 1;
			}

			.sr-cta {
				padding: clamp(72px, 8vw, 116px) 0;
				background:
					linear-gradient(105deg, rgba(51, 47, 44, 0.92), rgba(51, 47, 44, 0.78)),
					url("/assets/image/solutions/service-design.jpg") center/cover;
				color: #fffaf5;
			}

			.sr-cta-card {
				display: grid;
				grid-template-columns: minmax(0, 1fr) auto;
				gap: 32px;
				align-items: center;
				padding: clamp(34px, 5vw, 68px);
				border: 1px solid rgba(255, 250, 245, 0.18);
				background: rgba(255, 250, 245, 0.08);
				backdrop-filter: blur(10px);
			}

			.sr-cta h2 {
				max-width: 780px;
				margin-top: 14px;
				color: #fffaf5;
			}

			.sr-cta p {
				max-width: 620px;
				margin-top: 18px;
				color: rgba(255, 250, 245, 0.72);
			}

			.sr-cta .btn-primary {
				background: #fffaf5;
				color: #332f2c;
				box-shadow: none;
			}

			@media (max-width: 1024px) {
				.sr-title-row,
				.sr-control-shell,
				.sr-cta-card {
					grid-template-columns: 1fr;
				}

				.sr-hero {
					min-height: 700px;
					background-position: center right;
				}

				.sr-hero-shell {
					min-height: 700px;
				}

				.sr-roadmap-copy {
					grid-template-columns: 1fr;
				}

				.sr-roadmap-copy p:not(.sr-kicker) {
					grid-column: auto;
					grid-row: auto;
					margin-top: 18px;
					padding-left: 0;
					border-left: 0;
				}

				.sr-step-stack {
					grid-template-columns: repeat(3, minmax(0, 1fr));
				}

				.sr-step-stack::before {
					display: none;
				}

				.sr-road-step {
					min-height: 190px;
					border-bottom: 1px solid rgba(75, 71, 68, 0.08);
				}

				.sr-road-step:nth-child(3n) {
					border-right: 0;
				}

				.sr-road-step:nth-last-child(-n+3) {
					border-bottom: 0;
				}

				.sr-capability-deck {
					grid-template-columns: 1fr;
				}

				.sr-cap-card,
				.sr-cap-card:nth-child(2) {
					margin-top: 0;
					min-height: auto;
				}

				.sr-launch-mosaic {
					grid-template-columns: 1fr;
					grid-template-areas:
						"title"
						"photo"
						"needs"
						"kit";
				}

				.sr-launch-photo {
					min-height: 460px;
					border-radius: 44px;
				}

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

			@media (max-width: 720px) {
				.sr-section {
					padding: 68px 0;
				}

				.sr-hero {
					min-height: 620px;
					padding: 0;
					background:
						linear-gradient(90deg, rgba(255, 253, 249, 0.98) 0%, rgba(255, 253, 249, 0.92) 44%, rgba(255, 253, 249, 0.58) 72%, rgba(255, 253, 249, 0.28) 100%),
						url("/assets/image/solutions/solution-atelier-hero-v2.png") 63% center / cover no-repeat;
				}

				.sr-hero-shell {
					min-height: 620px;
				}

				.sr-hero-copy {
					width: min(440px, 100%);
					padding: 72px 0;
				}

				.sr-roadmap {
					padding: 28px 18px;
					border-radius: 28px;
				}

				.sr-step-stack {
					grid-template-columns: 1fr;
					border-radius: 24px;
				}

				.sr-road-step {
					grid-template-columns: 58px 1fr;
					gap: 18px;
					align-items: center;
					min-height: auto;
					padding: 20px;
					border-right: 0;
					border-bottom: 1px solid rgba(75, 71, 68, 0.08);
				}

				.sr-road-step:nth-last-child(-n+3) {
					border-bottom: 1px solid rgba(75, 71, 68, 0.08);
				}

				.sr-road-step:last-child {
					border-bottom: 0;
				}

				.sr-road-step span {
					margin-bottom: 0;
				}

				.sr-road-step strong {
					max-width: none;
				}

				.sr-road-step::after {
					display: none;
				}

				.sr-cap-card {
					grid-template-rows: 230px auto;
				}

				.sr-launch-title {
					grid-template-columns: 1fr;
					gap: 14px;
					border-radius: 24px;
				}

				.sr-launch-needs,
				.sr-launch-kit {
					border-radius: 24px;
				}

				.sr-launch-photo {
					border-radius: 160px 160px 24px 24px;
				}

				.sr-launch-kit,
				.sr-control-strip {
					grid-template-columns: 1fr;
				}

				.sr-launch-kit span {
					min-height: 76px;
					border-right: 0;
					border-bottom: 1px solid rgba(75, 71, 68, 0.08);
				}

				.sr-launch-kit span:last-child {
					border-bottom: 0;
				}

				.sr-category-lane {
					grid-template-columns: 1fr;
					gap: 16px;
					padding: 18px;
				}

				.sr-category-number {
					text-align: left;
				}

				.sr-category-lane img {
					height: 220px;
				}

				.sr-category-action {
					justify-self: start;
				}

				.sr-cta .btn-primary {
					width: 100%;
				}
			}

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

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

				.reveal {
					opacity: 1;
					transform: none;
				}
			}
