:root {
	--nt-bg: #f4f2ec;
	--nt-bg-soft: #fbfaf7;
	--nt-ink: #1b1f1d;
	--nt-muted: #5b655f;
	--nt-line: rgba(27, 31, 29, 0.14);
	--nt-green: #1f5f4a;
	--nt-red: #c73f2e;
	--nt-card: rgba(255, 255, 255, 0.58);
	--nt-shadow: 0 22px 55px rgba(24, 28, 25, 0.12);
	--nt-serif: "Fraunces", Georgia, serif;
	--nt-sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
	box-sizing: border-box;
}

html {
	background: var(--nt-bg);
}

body.nt-modern {
	margin: 0;
	background:
		linear-gradient(90deg, rgba(31, 95, 74, 0.055) 1px, transparent 1px),
		linear-gradient(0deg, rgba(31, 95, 74, 0.04) 1px, transparent 1px),
		var(--nt-bg);
	background-size: 48px 48px;
	color: var(--nt-ink);
	font-family: var(--nt-sans);
	line-height: 1.55;
}

.nt-shell {
	width: min(1180px, calc(100% - 32px));
	margin: 0 auto;
}

.nt-nav {
	position: sticky;
	top: 0;
	z-index: 50;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	padding: 14px clamp(16px, 4vw, 42px);
	border-bottom: 1px solid var(--nt-line);
	background: rgba(244, 242, 236, 0.84);
	backdrop-filter: blur(16px);
}

.nt-nav__brand img {
	display: block;
	width: min(320px, 48vw);
	height: auto;
}

.nt-nav__links {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-end;
	gap: 8px 16px;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.nt-nav__links a {
	color: var(--nt-muted);
	text-decoration: none;
}

.nt-nav__links a:hover,
.nt-nav__links a:focus-visible,
.nt-nav__links a.is-active {
	color: var(--nt-green);
}

.nt-hero {
	display: grid;
	grid-template-columns: minmax(0, 1.2fr) minmax(260px, 0.8fr);
	gap: clamp(24px, 5vw, 56px);
	align-items: end;
	padding: clamp(54px, 9vw, 110px) 0 clamp(32px, 6vw, 64px);
}

.nt-kicker,
.nt-work-card__meta,
.nt-meta {
	margin: 0 0 12px;
	color: var(--nt-green);
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
}

.nt-hero h1,
.nt-page-title,
.nt-article h1 {
	margin: 0;
	font-family: var(--nt-serif);
	font-weight: 520;
	letter-spacing: 0;
	line-height: 0.98;
}

.nt-hero h1 {
	max-width: 820px;
	font-size: clamp(44px, 8vw, 104px);
}

.nt-hero__body {
	max-width: 620px;
	margin: 24px 0 0;
	color: var(--nt-muted);
	font-size: clamp(17px, 2vw, 22px);
}

.nt-hero__quote {
	border-left: 1px solid var(--nt-red);
	padding: 18px 0 18px 22px;
	color: #303832;
	font-family: var(--nt-serif);
	font-size: clamp(20px, 2.7vw, 31px);
	line-height: 1.22;
}

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

.nt-work-card {
	min-height: 210px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	padding: 22px;
	border: 1px solid var(--nt-line);
	background: var(--nt-card);
	color: var(--nt-ink);
	text-decoration: none;
	box-shadow: none;
	transition: transform 220ms ease, background 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.nt-work-card:hover,
.nt-work-card:focus-visible {
	transform: translateY(-5px);
	border-color: rgba(31, 95, 74, 0.48);
	background: rgba(255, 255, 255, 0.78);
	box-shadow: var(--nt-shadow);
	color: var(--nt-ink);
	text-decoration: none;
}

.nt-work-card strong {
	display: block;
	margin: 22px 0 10px;
	font-family: var(--nt-serif);
	font-size: clamp(28px, 4vw, 44px);
	font-weight: 520;
	line-height: 1;
}

.nt-work-card span:last-child {
	color: var(--nt-muted);
}

.nt-section {
	padding: clamp(34px, 7vw, 82px) 0;
	border-top: 1px solid var(--nt-line);
}

.nt-article-list {
	display: grid;
	gap: 18px;
}

.nt-article-card,
.nt-article,
.nt-media-card,
.nt-empty {
	border: 1px solid var(--nt-line);
	background: rgba(251, 250, 247, 0.82);
	box-shadow: 0 18px 44px rgba(24, 28, 25, 0.08);
}

.nt-article-card {
	display: grid;
	grid-template-columns: 140px minmax(0, 1fr);
	gap: 24px;
	padding: 24px;
	color: var(--nt-ink);
	text-decoration: none;
}

.nt-article-card:hover,
.nt-article-card:focus-visible {
	border-color: rgba(31, 95, 74, 0.48);
	color: var(--nt-ink);
	text-decoration: none;
}

.nt-article-card h2,
.nt-media-card h2 {
	margin: 0;
	font-family: var(--nt-serif);
	font-size: clamp(28px, 4vw, 46px);
	font-weight: 520;
	line-height: 1.05;
}

.nt-article {
	max-width: 820px;
	margin: 0 auto;
	padding: clamp(28px, 6vw, 70px);
}

.nt-article h1 {
	font-size: clamp(40px, 7vw, 80px);
}

.nt-article__body {
	margin-top: 30px;
	font-size: clamp(18px, 2vw, 21px);
	line-height: 1.75;
}

.nt-note-toggle,
.nt-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border: 1px solid var(--nt-green);
	background: transparent;
	color: var(--nt-green);
	padding: 10px 14px;
	font: inherit;
	font-weight: 700;
	text-decoration: none;
	cursor: pointer;
	transition: background 180ms ease, color 180ms ease;
}

.nt-modern a.nt-button:link,
.nt-modern a.nt-button:visited {
	color: var(--nt-green);
}

.nt-note-toggle:hover,
.nt-note-toggle:focus-visible,
.nt-button:hover,
.nt-button:focus-visible {
	background: var(--nt-green);
	color: #fff;
	text-decoration: none;
}

.nt-modern a.nt-button:hover,
.nt-modern a.nt-button:focus-visible {
	color: #fff;
}

.nt-note {
	display: none;
	margin-top: 18px;
	padding: 18px;
	border-left: 1px solid var(--nt-red);
	color: var(--nt-muted);
	font-family: var(--nt-serif);
	font-size: 20px;
}

.nt-note.is-open {
	display: block;
}

.nt-media-grid {
	display: grid;
	gap: 22px;
}

.nt-media-card {
	padding: clamp(18px, 4vw, 34px);
}

.nt-video-frame {
	position: relative;
	width: 100%;
	aspect-ratio: 16 / 9;
	overflow: hidden;
	background: #dfe5df;
}

.nt-video-frame iframe {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	border: 0;
}

.nt-empty {
	max-width: 720px;
	margin: 48px auto;
	padding: 34px;
	text-align: center;
}

.nt-footer {
	display: flex;
	justify-content: space-between;
	gap: 18px;
	margin-top: 80px;
	padding: 26px clamp(16px, 4vw, 42px);
	border-top: 1px solid var(--nt-line);
	color: var(--nt-muted);
	font-size: 13px;
}

body.nt-js [data-reveal] {
	opacity: 0;
	transform: translateY(14px);
	transition: opacity 520ms ease, transform 520ms ease;
}

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

@media (prefers-reduced-motion: reduce) {
	* {
		scroll-behavior: auto !important;
		transition-duration: 0.001ms !important;
		animation-duration: 0.001ms !important;
		animation-iteration-count: 1 !important;
	}

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

@media (max-width: 820px) {
	.nt-nav {
		align-items: flex-start;
		flex-direction: column;
	}

	.nt-nav__links {
		justify-content: flex-start;
	}

	.nt-hero,
	.nt-article-card {
		grid-template-columns: 1fr;
	}

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

.nt-lapper-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	gap: 18px;
}

.nt-lapp-card {
	display: block;
	padding: 10px;
	border: 1px solid var(--nt-line);
	background: rgba(255, 255, 255, 0.62);
	color: var(--nt-ink);
	text-decoration: none;
	transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.nt-lapp-card:hover,
.nt-lapp-card:focus-visible {
	transform: translateY(-5px);
	border-color: rgba(31, 95, 74, 0.48);
	box-shadow: var(--nt-shadow);
	color: var(--nt-ink);
	text-decoration: none;
}

.nt-lapp-card img {
	display: block;
	width: 100%;
	height: auto;
}

.nt-lapp-card__meta {
	display: block;
	margin: 10px 4px 2px;
	color: var(--nt-muted);
	font-size: 13px;
}

.nt-lapp-single {
	max-width: 920px;
	margin: 42px auto;
	text-align: center;
}

.nt-lapp-single img {
	display: block;
	max-width: 100%;
	max-height: 82vh;
	margin: 0 auto;
}

.nt-lapp-caption {
	max-width: 720px;
	margin: 22px auto 0;
	color: var(--nt-muted);
	font-size: 17px;
}

.nt-music-bridge {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
	gap: 22px;
	align-items: start;
}

.nt-embed-stack {
	display: grid;
	gap: 18px;
}

.nt-embed-card {
	padding: 18px;
	border: 1px solid var(--nt-line);
	background: rgba(251, 250, 247, 0.82);
}

.nt-embed-card iframe {
	display: block;
	width: 100%;
	border: 0;
}

@media (max-width: 900px) {
	.nt-music-bridge {
		grid-template-columns: 1fr;
	}
}
