.newsmile-standalone {
	margin: 0;
	background: #f7f2e9;
}

.newsmile-standalone #page,
.newsmile-standalone .site,
.newsmile-standalone .site-content,
.newsmile-standalone .content-area,
.newsmile-standalone .site-main {
	width: 100%;
	max-width: none;
	margin: 0;
	padding: 0;
}

.ns-site {
	--ns-ink: #17201c;
	--ns-forest: #173d30;
	--ns-deep: #0b241d;
	--ns-leaf: #3e7a57;
	--ns-gold: #c9923f;
	--ns-gold-soft: #f2d49c;
	--ns-rust: #9e5233;
	--ns-steel: #466675;
	--ns-paper: #f7f2e9;
	--ns-cream: #fffaf0;
	--ns-mist: #e8eee8;
	--ns-line: rgba(23, 61, 48, 0.16);
	--ns-shadow: 0 28px 70px rgba(12, 35, 29, 0.16);
	background:
		linear-gradient(90deg, rgba(23, 61, 48, 0.05) 1px, transparent 1px),
		linear-gradient(180deg, rgba(23, 61, 48, 0.05) 1px, transparent 1px),
		var(--ns-paper);
	background-size: 34px 34px;
	color: var(--ns-ink);
	font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	line-height: 1.65;
	overflow: hidden;
}

.ns-site,
.ns-site header,
.ns-site nav,
.ns-site main,
.ns-site section,
.ns-site footer,
.ns-site div,
.ns-site article,
.ns-site aside {
	float: none;
	clear: none;
}

.ns-site * {
	box-sizing: border-box;
}

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

.ns-site img,
.ns-site video {
	max-width: 100%;
	height: auto;
}

.ns-container {
	width: min(1200px, calc(100% - 36px));
	margin-inline: auto;
}

.ns-header {
	position: relative;
	z-index: 5;
	border-bottom: 1px solid rgba(255, 255, 255, 0.14);
	background: linear-gradient(135deg, var(--ns-deep), #214d38 58%, #6a4725);
	color: #fff;
	box-shadow: 0 14px 36px rgba(8, 27, 22, 0.2);
}

.ns-topbar {
	border-bottom: 1px solid rgba(255, 255, 255, 0.14);
	background: rgba(0, 0, 0, 0.16);
	font-size: 13px;
	font-weight: 700;
}

.ns-topbar__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	min-height: 40px;
}

.ns-topbar__inner div {
	display: flex;
	flex-wrap: wrap;
	gap: 16px;
	justify-content: flex-end;
	color: rgba(255, 255, 255, 0.82);
}

.ns-nav {
	display: grid;
	grid-template-columns: auto minmax(0, 1fr) auto;
	align-items: center;
	gap: 24px;
	min-height: 94px;
}

.ns-brand {
	display: inline-flex;
	align-items: center;
	gap: 14px;
	min-width: 230px;
}

.ns-brand img {
	width: 68px;
	height: 52px;
	min-width: 68px;
	max-width: 68px;
	padding: 6px;
	border-radius: 8px;
	background: rgba(255, 255, 255, 0.92);
	object-fit: contain;
}

.ns-brand strong,
.ns-brand small {
	display: block;
	letter-spacing: 0;
}

.ns-brand strong {
	font-size: 24px;
	line-height: 1;
}

.ns-brand small {
	margin-top: 4px;
	color: rgba(255, 255, 255, 0.72);
	font-size: 12px;
	font-weight: 800;
	text-transform: uppercase;
}

.ns-nav__links {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 6px;
}

.ns-nav__links a {
	position: relative;
	padding: 12px 14px;
	border-radius: 8px;
	color: rgba(255, 255, 255, 0.82);
	font-size: 14px;
	font-weight: 900;
	text-transform: uppercase;
}

.ns-nav__links a::after {
	position: absolute;
	right: 14px;
	bottom: 7px;
	left: 14px;
	height: 2px;
	background: var(--ns-gold);
	content: "";
	transform: scaleX(0);
	transform-origin: left;
	transition: transform 160ms ease;
}

.ns-nav__links a:hover {
	background: rgba(255, 255, 255, 0.1);
	color: #fff;
}

.ns-nav__links a:hover::after {
	transform: scaleX(1);
}

.ns-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 52px;
	padding: 14px 22px;
	border: 1px solid transparent;
	border-radius: 8px;
	font-size: 15px;
	font-weight: 950;
	line-height: 1.1;
	text-align: center;
	transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.ns-button:hover {
	transform: translateY(-2px);
}

.ns-button--gold {
	background: linear-gradient(135deg, #f0c16f, var(--ns-gold));
	color: #24170b;
	box-shadow: 0 16px 34px rgba(201, 146, 63, 0.26);
}

.ns-button--gold:hover {
	color: #24170b;
	box-shadow: 0 20px 42px rgba(201, 146, 63, 0.35);
}

.ns-button--line {
	border-color: rgba(255, 255, 255, 0.52);
	background: rgba(255, 255, 255, 0.08);
	color: #fff;
}

.ns-button--line:hover {
	background: rgba(255, 255, 255, 0.16);
	color: #fff;
}

.ns-button--dark {
	background: var(--ns-deep);
	color: #fff;
}

.ns-button--small {
	min-height: 42px;
	padding: 11px 16px;
}

.ns-eyebrow {
	margin: 0 0 14px;
	color: var(--ns-gold);
	font-size: 12px;
	font-weight: 950;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.ns-hero {
	position: relative;
	padding: 76px 0 98px;
	background:
		linear-gradient(135deg, rgba(11, 36, 29, 0.94), rgba(23, 61, 48, 0.86) 56%, rgba(158, 82, 51, 0.78)),
		url("../../media/products/natural-wood-veneer.jpg") center / cover;
	color: #fff;
}

.ns-hero::before {
	position: absolute;
	inset: auto 0 0;
	height: 110px;
	background: linear-gradient(180deg, transparent, var(--ns-paper));
	content: "";
}

.ns-hero__grid {
	position: relative;
	display: grid;
	grid-template-columns: minmax(0, 0.95fr) minmax(390px, 1.05fr);
	gap: 54px;
	align-items: center;
}

.ns-hero__copy h1,
.ns-page-hero h1,
.ns-product-hero h1 {
	max-width: 820px;
	margin: 0 0 22px;
	font-size: clamp(44px, 7vw, 86px);
	line-height: 0.94;
	letter-spacing: 0;
}

.ns-hero__copy p,
.ns-page-hero p,
.ns-product-hero p {
	max-width: 740px;
	margin: 0;
	color: rgba(255, 255, 255, 0.8);
	font-size: 19px;
}

.ns-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 13px;
	margin-top: 30px;
}

.ns-metrics {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 12px;
	margin-top: 42px;
}

.ns-metrics div {
	min-height: 112px;
	padding: 18px;
	border: 1px solid rgba(255, 255, 255, 0.18);
	border-radius: 8px;
	background: rgba(255, 255, 255, 0.1);
	backdrop-filter: blur(12px);
}

.ns-metrics strong,
.ns-metrics span {
	display: block;
}

.ns-metrics strong {
	color: #fff;
	font-size: 34px;
	line-height: 1;
}

.ns-metrics span {
	margin-top: 8px;
	color: rgba(255, 255, 255, 0.76);
	font-size: 13px;
	font-weight: 800;
}

.ns-hero__showcase {
	position: relative;
	min-height: 620px;
}

.ns-hero__main,
.ns-hero__thumb {
	position: absolute;
	display: block;
	border: 8px solid rgba(255, 255, 255, 0.86);
	border-radius: 8px;
	box-shadow: 0 34px 80px rgba(0, 0, 0, 0.34);
	object-fit: cover;
}

.ns-hero__main {
	inset: 30px 36px 78px 42px;
	width: calc(100% - 78px);
	height: calc(100% - 108px);
}

.ns-hero__thumb {
	width: 230px;
	height: 170px;
}

.ns-hero__thumb--one {
	top: 0;
	right: 0;
}

.ns-hero__thumb--two {
	bottom: 22px;
	left: 0;
}

.ns-hero__badge {
	position: absolute;
	right: 0;
	bottom: 0;
	width: min(300px, 72%);
	padding: 20px;
	border: 1px solid rgba(255, 255, 255, 0.25);
	border-radius: 8px;
	background: rgba(11, 36, 29, 0.88);
	box-shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
}

.ns-hero__badge strong,
.ns-hero__badge span {
	display: block;
}

.ns-hero__badge strong {
	color: var(--ns-gold-soft);
	font-size: 22px;
}

.ns-hero__badge span {
	color: rgba(255, 255, 255, 0.76);
}

.ns-industrial-strip {
	position: relative;
	z-index: 2;
	margin-top: -34px;
}

.ns-industrial-strip .ns-container {
	display: grid;
	grid-template-columns: repeat(5, minmax(0, 1fr));
	overflow: hidden;
	border: 1px solid var(--ns-line);
	border-radius: 8px;
	background: var(--ns-cream);
	box-shadow: var(--ns-shadow);
}

.ns-industrial-strip span {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 72px;
	padding: 16px;
	border-right: 1px solid var(--ns-line);
	color: var(--ns-forest);
	font-size: 13px;
	font-weight: 950;
	text-align: center;
	text-transform: uppercase;
}

.ns-industrial-strip span:last-child {
	border-right: 0;
}

.ns-section {
	padding: 94px 0;
}

.ns-section--white {
	background: linear-gradient(180deg, #fffdf8, #f8f3e9);
}

.ns-section__intro {
	max-width: 760px;
	margin-bottom: 36px;
}

.ns-section__intro--row {
	display: flex;
	align-items: end;
	justify-content: space-between;
	gap: 28px;
	max-width: none;
}

.ns-section h2,
.ns-final-cta h2,
.ns-footer h2 {
	margin: 0;
	font-size: clamp(32px, 4.4vw, 58px);
	line-height: 1;
	letter-spacing: 0;
}

.ns-section__intro p:not(.ns-eyebrow),
.ns-export p,
.ns-media-story p,
.ns-about-card p,
.ns-contact-card p,
.ns-quote-panel p {
	color: #64706a;
	font-size: 17px;
}

.ns-feature-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 22px;
}

.ns-feature-card {
	position: relative;
	min-height: 270px;
	padding: 30px;
	border: 1px solid var(--ns-line);
	border-radius: 8px;
	background:
		linear-gradient(160deg, rgba(255, 255, 255, 0.94), rgba(232, 238, 232, 0.82)),
		var(--ns-cream);
	box-shadow: 0 18px 46px rgba(23, 61, 48, 0.08);
}

.ns-feature-card span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	margin-bottom: 56px;
	border-radius: 50%;
	background: var(--ns-forest);
	color: var(--ns-gold-soft);
	font-weight: 950;
}

.ns-feature-card h3,
.ns-product-card h3,
.ns-product-card h2,
.ns-about-card h3,
.ns-contact-card h2,
.ns-quote-panel h2 {
	margin: 0 0 10px;
	font-size: 24px;
	line-height: 1.12;
	letter-spacing: 0;
}

.ns-feature-card p,
.ns-product-card p {
	margin: 0;
	color: #64706a;
}

.ns-catalog {
	background:
		linear-gradient(180deg, rgba(247, 242, 233, 0.94), rgba(232, 238, 232, 0.96)),
		url("../../media/products/anti-slip-plywood.jpg") center / cover;
}

.ns-text-link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 42px;
	padding: 0 16px;
	border-bottom: 2px solid var(--ns-gold);
	color: var(--ns-forest);
	font-weight: 950;
}

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

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

.ns-product-card {
	position: relative;
	overflow: hidden;
	border: 1px solid rgba(23, 61, 48, 0.16);
	border-radius: 8px;
	background: var(--ns-cream);
	box-shadow: 0 24px 62px rgba(20, 44, 36, 0.11);
	transition: transform 170ms ease, box-shadow 170ms ease;
}

.ns-product-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 34px 80px rgba(20, 44, 36, 0.18);
}

.ns-product-card a {
	display: grid;
	height: 100%;
	grid-template-rows: auto 1fr;
}

.ns-product-card img {
	width: 100%;
	aspect-ratio: 16 / 10;
	object-fit: cover;
	display: block;
	filter: saturate(0.94) contrast(1.05);
}

.ns-product-card div {
	display: flex;
	flex-direction: column;
	min-height: 230px;
	padding: 24px;
}

.ns-product-card span {
	margin-top: auto;
	padding-top: 20px;
	color: var(--ns-rust);
	font-weight: 950;
	text-transform: uppercase;
}

.ns-export {
	position: relative;
	background: var(--ns-deep);
	color: #fff;
}

.ns-export::before {
	position: absolute;
	inset: 0;
	background:
		linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px),
		linear-gradient(180deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
	background-size: 46px 46px;
	content: "";
	pointer-events: none;
}

.ns-export__grid,
.ns-two-column,
.ns-media-story__grid,
.ns-product-hero__grid,
.ns-spec-layout,
.ns-contact-layout,
.ns-page-hero__grid {
	position: relative;
	display: grid;
	grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
	gap: 48px;
	align-items: center;
}

.ns-export h2,
.ns-media-story h2 {
	max-width: 680px;
	margin: 0 0 20px;
	font-size: clamp(34px, 4.8vw, 64px);
	line-height: 1;
	letter-spacing: 0;
}

.ns-export p {
	color: rgba(255, 255, 255, 0.72);
}

.ns-alert {
	margin-top: 24px;
	padding: 18px 20px;
	border-left: 4px solid var(--ns-gold);
	background: rgba(255, 255, 255, 0.08);
	color: rgba(255, 255, 255, 0.88) !important;
	font-weight: 800;
}

.ns-process {
	display: grid;
	gap: 14px;
}

.ns-process div {
	display: grid;
	grid-template-columns: 78px 1fr;
	gap: 18px;
	align-items: center;
	min-height: 96px;
	padding: 18px;
	border: 1px solid rgba(255, 255, 255, 0.14);
	border-radius: 8px;
	background: rgba(255, 255, 255, 0.08);
}

.ns-process strong {
	color: var(--ns-gold-soft);
	font-size: 30px;
}

.ns-process span {
	color: rgba(255, 255, 255, 0.84);
	font-weight: 850;
}

.ns-media-story {
	background: var(--ns-cream);
}

.ns-media-story video {
	width: 100%;
	aspect-ratio: 16 / 10;
	border: 10px solid #fff;
	border-radius: 8px;
	background: var(--ns-mist);
	box-shadow: var(--ns-shadow);
	object-fit: cover;
}

.ns-page-hero,
.ns-product-hero {
	padding: 88px 0;
	background:
		linear-gradient(135deg, rgba(11, 36, 29, 0.9), rgba(23, 61, 48, 0.74)),
		url("../../media/products/film-face-plywood.jpg") center / cover;
	color: #fff;
}

.ns-page-hero--about {
	background:
		linear-gradient(135deg, rgba(11, 36, 29, 0.9), rgba(70, 102, 117, 0.68)),
		url("../../media/products/furniture-plywood.jpg") center / cover;
}

.ns-page-hero--contact {
	background:
		linear-gradient(135deg, rgba(11, 36, 29, 0.88), rgba(158, 82, 51, 0.65)),
		url("../../media/products/natural-wood-veneer.jpg") center / cover;
}

.ns-page-hero img,
.ns-product-hero img {
	width: 100%;
	aspect-ratio: 4 / 3;
	border: 10px solid rgba(255, 255, 255, 0.88);
	border-radius: 8px;
	object-fit: cover;
	box-shadow: 0 26px 70px rgba(0, 0, 0, 0.28);
}

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

.ns-about-card {
	min-height: 260px;
	padding: 26px;
	border: 1px solid var(--ns-line);
	border-radius: 8px;
	background: #fff;
	box-shadow: 0 16px 42px rgba(23, 61, 48, 0.08);
}

.ns-about-card--dark {
	grid-column: span 2;
	background: var(--ns-forest);
	color: #fff;
}

.ns-about-card--dark p {
	color: rgba(255, 255, 255, 0.78);
}

.ns-check-list {
	display: grid;
	gap: 12px;
	margin: 22px 0 0;
	padding: 0;
	list-style: none;
}

.ns-check-list li {
	position: relative;
	padding: 12px 0 12px 34px;
	border-bottom: 1px solid rgba(23, 61, 48, 0.13);
	color: inherit;
	font-weight: 750;
}

.ns-check-list li::before {
	position: absolute;
	top: 13px;
	left: 0;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 21px;
	height: 21px;
	border-radius: 50%;
	background: var(--ns-gold);
	color: #24170b;
	content: "✓";
	font-size: 12px;
	font-weight: 950;
}

.ns-contact-layout,
.ns-spec-layout {
	align-items: stretch;
}

.ns-contact-card,
.ns-quote-panel {
	padding: 32px;
	border: 1px solid var(--ns-line);
	border-radius: 8px;
	background: #fff;
	box-shadow: 0 18px 54px rgba(23, 61, 48, 0.09);
}

.ns-contact-card--main {
	background:
		linear-gradient(160deg, rgba(23, 61, 48, 0.92), rgba(70, 102, 117, 0.86)),
		url("../../media/products/lvl-plywood.jpg") center / cover;
	color: #fff;
}

.ns-contact-card--main p {
	color: rgba(255, 255, 255, 0.76);
}

.ns-contact-card a:not(.ns-button),
.ns-footer a {
	display: block;
	padding: 12px 0;
	border-bottom: 1px solid rgba(23, 61, 48, 0.13);
	font-weight: 850;
}

.ns-contact-card--main a:not(.ns-button) {
	border-bottom-color: rgba(255, 255, 255, 0.18);
	color: rgba(255, 255, 255, 0.9);
}

.ns-specs {
	width: 100%;
	overflow: hidden;
	border: 1px solid var(--ns-line);
	border-collapse: collapse;
	border-radius: 8px;
	background: #fff;
	box-shadow: 0 18px 54px rgba(23, 61, 48, 0.08);
}

.ns-specs th,
.ns-specs td {
	padding: 18px 20px;
	border-bottom: 1px solid var(--ns-line);
	text-align: left;
	vertical-align: top;
}

.ns-specs th {
	width: 34%;
	background: rgba(23, 61, 48, 0.05);
	color: var(--ns-forest);
	font-weight: 950;
}

.ns-quote-panel {
	background: linear-gradient(180deg, #ffffff, #f6efe4);
}

.ns-final-cta {
	padding: 62px 0;
	background:
		linear-gradient(135deg, rgba(158, 82, 51, 0.92), rgba(23, 61, 48, 0.96)),
		url("../../media/products/anti-slip-plywood.jpg") center / cover;
	color: #fff;
}

.ns-final-cta__grid {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 28px;
}

.ns-final-cta h2 {
	max-width: 760px;
}

.ns-footer {
	padding: 72px 0 28px;
	background: #071a15;
	color: #fff;
}

.ns-footer__grid {
	display: grid;
	grid-template-columns: minmax(260px, 1.3fr) repeat(3, minmax(150px, 0.7fr));
	gap: 36px;
}

.ns-footer__brand img {
	width: 92px;
	height: auto;
	margin-bottom: 18px;
	padding: 8px;
	border-radius: 8px;
	background: #fff;
}

.ns-footer h2 {
	font-size: 34px;
}

.ns-footer h3 {
	margin: 0 0 14px;
	color: var(--ns-gold-soft);
	font-size: 15px;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.ns-footer p,
.ns-footer a,
.ns-footer__bottom {
	color: rgba(255, 255, 255, 0.68);
}

.ns-footer a {
	border-bottom-color: rgba(255, 255, 255, 0.1);
}

.ns-footer a:hover {
	color: #fff;
}

.ns-footer__bottom {
	display: flex;
	justify-content: space-between;
	gap: 20px;
	margin-top: 54px;
	padding-top: 22px;
	border-top: 1px solid rgba(255, 255, 255, 0.12);
	font-size: 13px;
}

@media (max-width: 980px) {
	.ns-nav,
	.ns-hero__grid,
	.ns-export__grid,
	.ns-two-column,
	.ns-media-story__grid,
	.ns-product-hero__grid,
	.ns-spec-layout,
	.ns-contact-layout,
	.ns-page-hero__grid {
		grid-template-columns: 1fr;
	}

	.ns-nav {
		padding: 20px 0;
	}

	.ns-nav__links {
		justify-content: flex-start;
		overflow-x: auto;
	}

	.ns-hero__showcase {
		min-height: 520px;
	}

	.ns-feature-grid,
	.ns-product-grid,
	.ns-product-grid--catalog,
	.ns-about-grid,
	.ns-footer__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.ns-about-card--dark {
		grid-column: span 2;
	}

	.ns-industrial-strip .ns-container {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.ns-industrial-strip span {
		border-bottom: 1px solid var(--ns-line);
	}
}

@media (max-width: 680px) {
	.ns-container {
		width: min(100% - 24px, 1200px);
	}

	.ns-topbar__inner,
	.ns-section__intro--row,
	.ns-final-cta__grid,
	.ns-footer__bottom {
		align-items: flex-start;
		flex-direction: column;
	}

	.ns-brand {
		min-width: 0;
	}

	.ns-nav__links {
		width: 100%;
	}

	.ns-nav__links a {
		white-space: nowrap;
	}

	.ns-hero {
		padding: 48px 0 78px;
	}

	.ns-hero__copy h1,
	.ns-page-hero h1,
	.ns-product-hero h1 {
		font-size: 42px;
	}

	.ns-hero__copy p,
	.ns-page-hero p,
	.ns-product-hero p {
		font-size: 17px;
	}

	.ns-actions,
	.ns-button {
		width: 100%;
	}

	.ns-metrics,
	.ns-feature-grid,
	.ns-product-grid,
	.ns-product-grid--catalog,
	.ns-about-grid,
	.ns-footer__grid,
	.ns-industrial-strip .ns-container {
		grid-template-columns: 1fr;
	}

	.ns-about-card--dark {
		grid-column: auto;
	}

	.ns-hero__showcase {
		min-height: 450px;
	}

	.ns-hero__main {
		inset: 36px 0 86px 0;
		width: 100%;
		height: 300px;
	}

	.ns-hero__thumb {
		width: 166px;
		height: 124px;
		border-width: 6px;
	}

	.ns-hero__badge {
		width: 92%;
	}

	.ns-section,
	.ns-page-hero,
	.ns-product-hero {
		padding: 62px 0;
	}

	.ns-section h2,
	.ns-final-cta h2,
	.ns-export h2,
	.ns-media-story h2 {
		font-size: 34px;
	}

	.ns-contact-card,
	.ns-quote-panel,
	.ns-feature-card {
		padding: 24px;
	}
}
