/**
 * Novomed Beauty case — editorial beauty lookbook.
 *
 * @package SunnyAgency
 */

:root {
	--nb-ink: #2e2a28;
	--nb-soft: rgba(46, 42, 40, 0.62);
	--nb-taupe: #80584a;
	--nb-coral: #e96651;
	--nb-blush: #f3e4de;
	--nb-cream: #fbf6f2;
	--nb-paper: #fff9f5;
	--nb-serif: "Playfair Display", Georgia, "Times New Roman", serif;
	--nb-sans: "Montserrat", "Segoe UI", Arial, Helvetica, sans-serif;
	--nb-ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body.nb-book {
	margin: 0;
	color: var(--nb-ink);
	background: var(--nb-cream);
	font-family: var(--nb-sans);
	font-size: 17px;
	line-height: 1.65;
	-webkit-font-smoothing: antialiased;
}

.nb-book img { display: block; max-width: 100%; height: auto; }
.nb-book a { color: inherit; }

.nb-book a:focus-visible,
.nb-book .all-cases:focus-visible,
.nb-book .nb-mark:focus-visible {
	outline: 3px solid var(--nb-coral);
	outline-offset: 3px;
}

.nb-book h1,
.nb-book h2 {
	margin: 0;
	font-family: var(--nb-serif);
	font-weight: 500;
	line-height: 1.12;
}

.nb-book h1 { font-size: clamp(2.4rem, 5.2vw, 4.2rem); letter-spacing: -0.02em; }
.nb-book h2 { font-size: clamp(1.9rem, 4vw, 3rem); }

.nb-label {
	margin: 0 0 12px;
	color: var(--nb-taupe);
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.28em;
	text-transform: uppercase;
}

.nb-pg {
	position: absolute;
	right: clamp(16px, 3vw, 40px);
	bottom: clamp(16px, 3vw, 28px);
	color: rgba(46, 42, 40, 0.28);
	font-family: var(--nb-serif);
	font-size: 13px;
	letter-spacing: 0.12em;
}

section, .nb-cover { position: relative; }

.all-cases {
	display: flex;
	align-items: center;
	position: fixed;
	z-index: 120;
	top: 20px;
	right: -300px;
	height: 52px;
	color: #fff !important;
	font-size: 14px;
	text-decoration: none !important;
	box-shadow: 0 0 40px rgba(0, 0, 0, 0.18);
	transition: right 0.5s ease-in-out;
}

.all-cases:hover,
.all-cases:focus,
.all-cases span { color: #fff !important; text-decoration: none !important; }

.all-cases.active { right: 20px; }

/* COVER */
.nb-cover {
	min-height: 100vh;
	min-height: 100dvh;
	padding: clamp(40px, 6vw, 72px) clamp(20px, 4vw, 56px) clamp(48px, 7vw, 80px);
	overflow: hidden;
	color: var(--nb-ink);
	background: var(--nb-cream);
}

.nb-cover__wash {
	position: absolute;
	inset: -10% -5% auto auto;
	width: min(55vw, 640px);
	height: min(55vw, 640px);
	border-radius: 50%;
	background: radial-gradient(circle, rgba(243, 228, 222, 0.95) 0%, rgba(243, 228, 222, 0) 70%);
	pointer-events: none;
}

.nb-cover__grid {
	position: relative;
	z-index: 1;
	display: grid;
	gap: clamp(32px, 5vw, 56px);
	align-items: center;
	width: min(100%, 1180px);
	margin-inline: auto;
	min-height: calc(100vh - 140px);
	min-height: calc(100dvh - 140px);
}

@media (min-width: 980px) {
	.nb-cover__grid { grid-template-columns: 0.92fr 1.08fr; }
}

.nb-cover__logo { width: min(200px, 55vw); margin-bottom: 22px; }

.nb-cover__issue {
	margin: 0 0 14px;
	color: var(--nb-taupe);
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.2em;
	text-transform: uppercase;
}

.nb-cover__deck {
	max-width: 34rem;
	margin: 18px 0 0;
	color: var(--nb-soft);
	font-size: 1.05rem;
	line-height: 1.55;
}

.nb-cover__meta {
	display: flex;
	flex-wrap: wrap;
	gap: 12px 20px;
	align-items: center;
	margin-top: 28px;
}

.nb-cover__meta a {
	display: inline-flex;
	padding: 12px 20px;
	background: var(--nb-taupe);
	color: #fff !important;
	font-size: 14px;
	font-weight: 600;
	text-decoration: none !important;
	transition: background 0.25s var(--nb-ease), transform 0.25s var(--nb-ease);
}

.nb-cover__meta a:hover { background: #6a463a; transform: translateY(-1px); }
.nb-cover__meta span { color: var(--nb-soft); font-size: 13px; }

.nb-cover__stage {
	position: relative;
	isolation: isolate;
	padding: 0 0 clamp(48px, 7vw, 80px) clamp(48px, 7vw, 80px);
}

.nb-cover__portrait {
	display: none;
	position: absolute;
	z-index: 2;
	left: -9%;
	bottom: -11%;
	margin: 0;
	width: 34%;
	overflow: hidden;
	border: 6px solid var(--nb-cream);
	border-radius: 50%;
	box-shadow: 0 20px 44px rgba(128, 88, 74, 0.22);
}

@media (min-width: 980px) {
	.nb-cover__portrait { display: block; }
}

.nb-cover__portrait img {
	width: 100%;
	aspect-ratio: 1 / 1;
	object-fit: cover;
	object-position: 60% 30%;
}

.nb-cover__device {
	position: relative;
	z-index: 1;
	width: min(100%, 640px);
	margin-left: auto;
}

.nb-cover__pg {
	position: absolute;
	z-index: 1;
	right: clamp(16px, 3vw, 40px);
	bottom: clamp(16px, 3vw, 28px);
	color: rgba(46, 42, 40, 0.28);
	font-family: var(--nb-serif);
	font-size: 13px;
	letter-spacing: 0.12em;
}

/* ESSAY */
.nb-essay {
	display: grid;
	gap: 0;
	padding: clamp(56px, 10vw, 120px) clamp(20px, 5vw, 72px);
	background: var(--nb-paper);
}

@media (min-width: 900px) {
	.nb-essay { grid-template-columns: 88px 1fr; gap: 48px; }
}

.nb-essay__rail {
	display: none;
	flex-direction: column;
	gap: 18px;
	padding-top: 8px;
	color: var(--nb-taupe);
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.28em;
	text-transform: uppercase;
}

@media (min-width: 900px) {
	.nb-essay__rail {
		display: flex;
		writing-mode: vertical-rl;
		transform: rotate(180deg);
		align-items: center;
	}
}

.nb-essay__sheet { max-width: 720px; }

.nb-drop {
	margin: 0 0 22px;
	font-family: var(--nb-serif);
	font-size: clamp(1.25rem, 2.2vw, 1.55rem);
	line-height: 1.55;
}

.nb-drop > span {
	float: left;
	margin: 0 10px 0 0;
	color: var(--nb-coral);
	font-size: 4.2rem;
	line-height: 0.8;
	font-weight: 500;
}

.nb-essay__sheet > p:nth-of-type(2) { margin: 0 0 28px; color: var(--nb-soft); }

.nb-essay__aside {
	max-width: 28rem;
	padding: 22px 24px;
	border-left: 3px solid var(--nb-taupe);
	background: var(--nb-blush);
}

.nb-essay__aside p {
	margin: 0;
	font-family: var(--nb-serif);
	font-size: 1.2rem;
	line-height: 1.45;
	font-style: italic;
}

/* LIGHT CHROME */
.nb-shot {
	margin: 0;
	overflow: hidden;
	border: 1px solid rgba(128, 88, 74, 0.16);
	border-radius: 12px;
	background: #fff;
	box-shadow: 0 16px 40px rgba(128, 88, 74, 0.12);
}

.nb-shot__chrome {
	display: flex;
	gap: 6px;
	align-items: center;
	height: 38px;
	padding: 0 14px;
	border-bottom: 1px solid rgba(128, 88, 74, 0.1);
	background: linear-gradient(180deg, #fff9f5 0%, #f3e4de 100%);
}

.nb-shot__chrome span {
	width: 9px;
	height: 9px;
	border-radius: 50%;
	background: #d4b8ad;
}

.nb-shot__chrome span:nth-child(2) { background: #e96651; }
.nb-shot__chrome span:nth-child(3) { background: #c4a99c; }

.nb-shot__chrome small {
	margin-left: 10px;
	overflow: hidden;
	color: rgba(46, 42, 40, 0.48);
	font-size: 11px;
	letter-spacing: 0.03em;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.nb-shot img {
	width: 100%;
	height: auto;
	background: #fff;
	object-fit: contain;
}

.nb-shot--cover { box-shadow: 0 28px 60px rgba(128, 88, 74, 0.2); }
.nb-annotate .nb-shot { box-shadow: 0 24px 56px rgba(0, 0, 0, 0.35); }

/* TILT — no white underlay */
.nb-tilt {
	display: grid;
	gap: 36px;
	padding: clamp(48px, 8vw, 100px) clamp(20px, 5vw, 72px);
	background:
		radial-gradient(ellipse 60% 50% at 80% 20%, rgba(233, 102, 81, 0.1), transparent 60%),
		var(--nb-cream);
	overflow: hidden;
}

@media (min-width: 960px) {
	.nb-tilt { grid-template-columns: 1.1fr 0.9fr; align-items: center; }
}

.nb-tilt__visual {
	width: min(100%, 640px);
	transform: rotate(-2deg);
	transition: transform 0.45s var(--nb-ease);
}

.nb-tilt__visual:hover { transform: rotate(-0.5deg) translateY(-4px); }

.nb-tilt__visual > p {
	margin: 16px 4px 0;
	color: var(--nb-soft);
	font-size: 0.95rem;
	transform: rotate(2deg);
}

.nb-tilt__quote { margin: 0; padding: 0; border: 0; max-width: 22rem; }

.nb-tilt__quote p {
	margin: 0;
	font-family: var(--nb-serif);
	font-size: clamp(1.8rem, 3.5vw, 2.6rem);
	line-height: 1.25;
	font-style: italic;
}

.nb-tilt__quote cite {
	display: block;
	margin-top: 18px;
	color: var(--nb-taupe);
	font-family: var(--nb-sans);
	font-size: 12px;
	font-style: normal;
	font-weight: 700;
	letter-spacing: 0.2em;
	text-transform: uppercase;
}

/* ANNOTATE */
.nb-annotate {
	padding: clamp(48px, 8vw, 100px) clamp(20px, 4vw, 56px);
	background: #1f1b19;
	color: #f7f0ea;
}

.nb-annotate__intro { margin-bottom: 32px; }
.nb-annotate h2 { max-width: 18ch; }
.nb-annotate__lead {
	max-width: 36rem;
	margin: 16px 0 0;
	color: rgba(247, 240, 234, 0.7);
}

.nb-annotate__stage { display: grid; gap: 28px; }

@media (min-width: 1000px) {
	.nb-annotate__stage { grid-template-columns: 1.35fr 0.65fr; align-items: start; }
}

.nb-pins { margin: 0; padding: 0; list-style: none; display: grid; }

.nb-pins li {
	display: grid;
	grid-template-columns: 42px 1fr;
	gap: 14px;
	align-items: start;
	padding: 18px 0;
	border-top: 1px solid rgba(247, 240, 234, 0.14);
	color: rgba(247, 240, 234, 0.78);
	font-size: 0.95rem;
}

.nb-pins li:last-child { border-bottom: 1px solid rgba(247, 240, 234, 0.14); }

.nb-pins b {
	display: grid;
	place-items: center;
	width: 36px;
	height: 36px;
	border-radius: 50%;
	background: var(--nb-coral);
	color: #fff;
	font-size: 14px;
	font-weight: 700;
}

.nb-annotate .nb-pg { color: rgba(247, 240, 234, 0.35); }

/* STRIP */
.nb-strip {
	padding: clamp(48px, 8vw, 96px) 0;
	background: var(--nb-blush);
}

.nb-strip__head {
	width: min(100% - 48px, 720px);
	margin: 0 0 28px clamp(20px, 5vw, 72px);
}

.nb-strip__head p { margin: 14px 0 0; color: var(--nb-soft); }

.nb-strip__track {
	display: flex;
	gap: 22px;
	padding: 8px clamp(20px, 5vw, 72px) 28px;
	overflow-x: auto;
	scroll-snap-type: x mandatory;
	-webkit-overflow-scrolling: touch;
}

.nb-strip__track:focus-visible {
	outline: 3px solid var(--nb-coral);
	outline-offset: -6px;
}

.nb-strip__item {
	flex: 0 0 min(82vw, 680px);
	scroll-snap-align: start;
}

.nb-strip__item > p {
	margin: 12px 4px 0;
	color: var(--nb-soft);
	font-size: 13px;
	letter-spacing: 0.06em;
	text-transform: uppercase;
}

/* FACES mosaic */
.nb-faces {
	display: grid;
	gap: 40px;
	padding: clamp(56px, 9vw, 110px) clamp(20px, 5vw, 72px);
	background: var(--nb-paper);
}

@media (min-width: 960px) {
	.nb-faces { grid-template-columns: 0.85fr 1.15fr; align-items: start; }
}

.nb-faces__copy p {
	margin: 16px 0 0;
	color: var(--nb-soft);
	max-width: 32rem;
}

.nb-faces__copy ul {
	margin: 24px 0 0;
	padding: 0;
	list-style: none;
	display: grid;
	gap: 12px;
}

.nb-faces__copy li {
	padding-left: 16px;
	border-left: 2px solid var(--nb-coral);
	color: var(--nb-ink);
	font-size: 0.98rem;
}

.nb-faces__shots { display: grid; gap: 16px; }
.nb-faces__pair { display: grid; gap: 16px; }

@media (min-width: 640px) {
	.nb-faces__pair { grid-template-columns: 1fr 1fr; }
}

/* ——— BOOKED ——— */
.nb-booked {
	padding: clamp(56px, 9vw, 110px) clamp(20px, 5vw, 72px);
	background: var(--nb-cream);
	overflow: hidden;
}

.nb-booked__smear {
	position: absolute;
	left: -8%;
	top: 10%;
	width: min(42vw, 420px);
	height: min(42vw, 420px);
	border-radius: 42% 58% 62% 38% / 48% 42% 58% 52%;
	background:
		radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.95), transparent 55%),
		radial-gradient(circle at 70% 60%, rgba(243, 228, 222, 0.9), rgba(128, 88, 74, 0.12));
	filter: blur(2px);
	opacity: 0.9;
	pointer-events: none;
	animation: nb-blob 12s ease-in-out infinite alternate;
}

@keyframes nb-blob {
	from {
		transform: translate(0, 0) rotate(0deg);
	}
	to {
		transform: translate(4%, 6%) rotate(8deg);
	}
}

.nb-booked__inner {
	position: relative;
	z-index: 1;
	display: grid;
	gap: 32px;
	align-items: center;
}

@media (min-width: 900px) {
	.nb-booked__inner {
		grid-template-columns: 0.9fr 1.1fr;
	}
}

.nb-booked__inner > div > p {
	margin: 14px 0 0;
	color: var(--nb-soft);
	max-width: 34rem;
}

/* ——— HAND ——— */
.nb-hand {
	display: grid;
	gap: 36px;
	justify-items: center;
	padding: clamp(64px, 10vw, 120px) clamp(20px, 5vw, 72px);
	background: #241f1d;
	color: #f7f0ea;
	overflow: hidden;
	text-align: center;
}

@media (min-width: 880px) {
	.nb-hand {
		grid-template-columns: auto 1fr;
		text-align: left;
		justify-items: start;
		align-items: center;
		gap: 72px;
	}
}

.nb-hand__glow {
	position: absolute;
	inset: 20% 30% auto 10%;
	height: 50%;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(233, 102, 81, 0.22), transparent 70%);
	pointer-events: none;
}

.nb-hand__device {
	position: relative;
	z-index: 1;
	margin: 0;
	width: min(260px, 68vw);
	padding: 14px;
	border-radius: 40px;
	background: linear-gradient(160deg, #3a342f, #120f0e);
	box-shadow:
		0 40px 80px rgba(0, 0, 0, 0.45),
		0 0 0 1px rgba(255, 255, 255, 0.06);
	animation: nb-float 5.5s ease-in-out infinite;
}

@keyframes nb-float {
	0%,
	100% {
		transform: translateY(0);
	}
	50% {
		transform: translateY(-10px);
	}
}

.nb-hand__device img {
	border-radius: 28px;
}

.nb-hand__txt {
	position: relative;
	z-index: 1;
	max-width: 28rem;
}

.nb-hand__txt .nb-label {
	color: #f0b3a6;
}

.nb-hand__txt p:last-child {
	margin: 16px 0 0;
	color: rgba(247, 240, 234, 0.7);
}

.nb-hand .nb-pg {
	color: rgba(247, 240, 234, 0.3);
}

/* ——— INKS spilled ——— */
.nb-inks {
	padding: clamp(56px, 9vw, 100px) clamp(20px, 5vw, 72px);
	background: var(--nb-paper);
}

.nb-inks__spill {
	display: flex;
	flex-wrap: wrap;
	gap: 18px 22px;
	align-items: center;
	margin: 36px 0 28px;
}

.nb-blob {
	display: inline-flex;
	flex-direction: column;
	justify-content: center;
	gap: 6px;
	min-width: 120px;
	min-height: 120px;
	padding: 18px;
	border-radius: 48% 52% 45% 55% / 55% 42% 58% 45%;
	color: #fff;
	font-size: 13px;
	font-weight: 600;
	box-shadow: 0 14px 30px rgba(46, 42, 40, 0.12);
	animation: nb-wobble 7s ease-in-out infinite alternate;
}

.nb-blob:nth-child(2) {
	animation-delay: -1.5s;
	border-radius: 58% 42% 52% 48% / 42% 58% 42% 58%;
}

.nb-blob:nth-child(3) {
	animation-delay: -3s;
}

.nb-blob:nth-child(4) {
	animation-delay: -4.5s;
	color: var(--nb-ink);
}

.nb-blob i {
	font-style: normal;
	font-size: 12px;
	opacity: 0.85;
	letter-spacing: 0.04em;
}

.nb-blob--taupe {
	background: var(--nb-taupe);
}

.nb-blob--coral {
	background: var(--nb-coral);
}

.nb-blob--ink {
	background: var(--nb-ink);
}

.nb-blob--blush {
	background: var(--nb-blush);
	box-shadow: inset 0 0 0 1px rgba(46, 42, 40, 0.08);
}

@keyframes nb-wobble {
	from {
		transform: translateY(0) rotate(-2deg);
	}
	to {
		transform: translateY(8px) rotate(3deg);
	}
}

.nb-inks__type {
	max-width: 40rem;
	margin: 0;
	color: var(--nb-soft);
	font-family: var(--nb-serif);
	font-size: 1.2rem;
	line-height: 1.5;
}

.nb-inks__type b {
	color: var(--nb-ink);
	font-weight: 500;
}

/* ——— COLOPHON ——— */
.nb-colo {
	padding: clamp(56px, 9vw, 110px) clamp(20px, 5vw, 72px) clamp(72px, 10vw, 120px);
	background:
		linear-gradient(180deg, var(--nb-blush) 0%, var(--nb-cream) 100%);
}

.nb-colo__label {
	max-width: 34rem;
	padding: 32px 28px;
	border: 1px dashed rgba(128, 88, 74, 0.35);
	background: rgba(255, 249, 245, 0.85);
}

.nb-colo__label img {
	width: 150px;
	margin-bottom: 20px;
}

.nb-colo__label p {
	margin: 0 0 20px;
	color: var(--nb-soft);
}

.nb-colo__label a {
	color: var(--nb-taupe) !important;
	font-weight: 700;
	text-decoration: underline;
	text-underline-offset: 3px;
}

.nb-colo__foot {
	display: flex;
	flex-wrap: wrap;
	gap: 22px 36px;
	align-items: center;
	margin-top: 48px;
	padding-top: 28px;
	border-top: 1px solid rgba(46, 42, 40, 0.12);
}

.nb-colo__foot > p {
	margin: 0;
	flex: 1 1 220px;
	font-family: var(--nb-serif);
	font-size: 1.35rem;
}

.nb-mark {
	display: inline-flex;
	padding: 14px 22px;
	background: var(--nb-taupe);
	color: #fff !important;
	font-size: 14px;
	font-weight: 600;
	text-decoration: none !important;
	transition: background 0.25s var(--nb-ease), transform 0.25s var(--nb-ease);
}

.nb-mark:hover {
	background: #6a463a;
	transform: translateY(-1px);
}

.nb-colo .sa-logo {
	max-width: 200px;
}

@media (max-width: 700px) {
	.nb-tilt__visual {
		transform: rotate(-1deg);
	}
}

@media (prefers-reduced-motion: reduce) {
	.nb-hand__device,
	.nb-blob,
	.nb-booked__smear {
		animation: none;
	}
}

/* REDESIGNED CASE LAYOUT */
.nb-wrap {
	width: min(100% - 40px, 1180px);
	margin-inline: auto;
}

.nb-section {
	position: relative;
	padding: clamp(64px, 10vw, 132px) 0;
	overflow: hidden;
}

.nb-section__head {
	max-width: 31rem;
}

.nb-section__head--split,
.nb-identity__head {
	display: grid;
	gap: 20px;
	align-items: end;
	max-width: none;
}

.nb-section__head--split > p,
.nb-identity__head > p {
	max-width: 32rem;
	margin: 0;
	color: var(--nb-soft);
}

.nb-story {
	background:
		linear-gradient(90deg, rgba(243, 228, 222, 0.68) 0 32%, transparent 32%),
		var(--nb-paper);
}

.nb-story__grid {
	display: grid;
	gap: 36px;
}

.nb-story__quote {
	margin: 24px 0 0;
	color: var(--nb-taupe);
	font-family: var(--nb-serif);
	font-size: clamp(1.35rem, 2vw, 1.8rem);
	font-style: italic;
	line-height: 1.3;
}

.nb-story__copy > p:nth-of-type(2) {
	margin: 22px 0 0;
	color: var(--nb-soft);
}

.nb-pillars {
	display: grid;
	gap: 0;
	margin: 32px 0 0;
	padding: 0;
	list-style: none;
	border-top: 1px solid rgba(128, 88, 74, 0.2);
}

.nb-pillars li {
	display: grid;
	gap: 4px;
	padding: 14px 0;
	border-bottom: 1px solid rgba(128, 88, 74, 0.2);
}

.nb-pillars b {
	color: var(--nb-taupe);
	font-size: 12px;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.nb-pillars span {
	color: var(--nb-soft);
	font-size: 0.9rem;
	line-height: 1.45;
}

.nb-story__visual {
	align-self: center;
	max-width: 540px;
}

.nb-story__visual > p {
	margin: 14px 16px 0;
	color: var(--nb-soft);
	font-size: 0.85rem;
	line-height: 1.5;
}

.nb-shot--angle {
	transform: rotate(-1.5deg);
	transform-origin: bottom left;
}

.nb-identity {
	background: #282320;
	color: #f7f0ea;
}

.nb-identity__head > p {
	color: rgba(247, 240, 234, 0.7);
}

.nb-identity__board {
	display: grid;
	gap: 20px;
	margin-top: 40px;
	padding: clamp(20px, 4vw, 44px);
	border: 1px solid rgba(247, 240, 234, 0.18);
	background: rgba(255, 255, 255, 0.04);
}

.nb-swatches {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 10px;
}

.nb-swatch {
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	min-height: 118px;
	padding: 14px;
	color: #fff;
	font-size: 12px;
	font-weight: 600;
	line-height: 1.2;
}

.nb-swatch i {
	margin-bottom: 6px;
	font-style: normal;
	font-size: 11px;
	font-weight: 400;
	opacity: 0.75;
}

.nb-swatch--taupe { background: var(--nb-taupe); }
.nb-swatch--coral { background: var(--nb-coral); }
.nb-swatch--ink { background: var(--nb-ink); }
.nb-swatch--blush { background: var(--nb-blush); color: var(--nb-ink); }

.nb-typeboard {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	min-height: 256px;
	padding: 24px;
	background: var(--nb-cream);
	color: var(--nb-ink);
}

.nb-typeboard__serif {
	margin: 0;
	font-family: var(--nb-serif);
	font-size: clamp(2.2rem, 5vw, 4.5rem);
	line-height: 0.92;
}

.nb-typeboard__sans {
	margin: 28px 0 0;
	color: var(--nb-taupe);
	font-size: 10px;
	font-weight: 700;
	letter-spacing: 0.15em;
}

.nb-typeboard small {
	display: block;
	max-width: 26rem;
	margin-top: 24px;
	color: var(--nb-soft);
	line-height: 1.5;
}

.nb-journey {
	background: var(--nb-blush);
}

.nb-journey__services {
	display: grid;
	gap: 26px;
	margin-top: 40px;
}

.nb-captioned > p {
	display: flex;
	gap: 9px;
	align-items: center;
	margin: 12px 4px 0;
	color: var(--nb-soft);
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.1em;
	text-transform: uppercase;
}

.nb-captioned > p b {
	display: grid;
	place-items: center;
	width: 25px;
	height: 25px;
	border: 1px solid rgba(128, 88, 74, 0.4);
	border-radius: 50%;
	color: var(--nb-taupe);
	font-size: 10px;
}

.nb-captioned--banner .nb-shot {
	max-width: 700px;
}

.nb-journey__people {
	display: grid;
	gap: 32px;
	margin-top: clamp(72px, 12vw, 150px);
	padding-top: clamp(52px, 8vw, 90px);
	border-top: 1px solid rgba(128, 88, 74, 0.25);
}

.nb-journey__people-copy h3 {
	margin: 0;
	font-family: var(--nb-serif);
	font-size: clamp(1.8rem, 3.4vw, 2.8rem);
	font-weight: 500;
	line-height: 1.08;
}

.nb-journey__people-copy > p:last-child {
	max-width: 29rem;
	margin: 16px 0 0;
	color: var(--nb-soft);
}

.nb-journey__people-shots {
	display: grid;
	gap: 24px;
}

.nb-booking {
	background:
		radial-gradient(circle at 10% 80%, rgba(233, 102, 81, 0.2), transparent 28%),
		var(--nb-cream);
}

.nb-booking__grid {
	display: grid;
	gap: 42px;
	align-items: center;
}

.nb-booking__copy {
	max-width: 30rem;
}

.nb-booking__copy > p:last-of-type {
	margin: 18px 0 0;
	color: var(--nb-soft);
}

.nb-booking__copy > a {
	display: inline-flex;
	margin-top: 28px;
	padding: 13px 20px;
	background: var(--nb-taupe);
	color: #fff !important;
	font-size: 13px;
	font-weight: 600;
	text-decoration: none !important;
}

.nb-booking__stage {
	display: grid;
	gap: 20px;
	align-items: end;
}

.nb-shot--booking {
	max-width: 680px;
}

.nb-phone {
	display: grid;
	gap: 10px;
	width: min(186px, 48vw);
	margin: 0 0 0 auto;
	padding: 8px;
	border: 1px solid rgba(247, 240, 234, 0.12);
	border-radius: 30px;
	background: #2c2724;
	box-shadow: 0 24px 50px rgba(46, 42, 40, 0.23);
	transform: rotate(3deg);
}

.nb-phone img {
	border-radius: 23px;
}

.nb-phone figcaption {
	padding: 0 5px 3px;
	color: rgba(247, 240, 234, 0.75);
	font-size: 9px;
	font-weight: 600;
	letter-spacing: 0.08em;
	text-align: center;
	text-transform: uppercase;
}

.nb-outro {
	background: #e7d4cc;
}

.nb-outro__grid {
	display: grid;
	gap: 38px;
	align-items: end;
}

.nb-outro__label {
	max-width: 34rem;
	padding: clamp(24px, 4vw, 40px);
	border: 1px solid rgba(128, 88, 74, 0.3);
	background: rgba(255, 249, 245, 0.72);
}

.nb-outro__label img {
	width: min(160px, 46vw);
	margin-bottom: 20px;
}

.nb-outro__label p {
	margin: 0 0 20px;
	color: var(--nb-soft);
}

.nb-outro__label a {
	color: var(--nb-taupe) !important;
	font-weight: 700;
	text-decoration: underline;
	text-underline-offset: 3px;
}

.nb-outro__foot {
	display: flex;
	flex-wrap: wrap;
	gap: 20px 30px;
	align-items: center;
	padding-top: 28px;
	border-top: 1px solid rgba(46, 42, 40, 0.16);
}

.nb-outro__foot > p {
	flex: 1 1 250px;
	margin: 0;
	font-family: var(--nb-serif);
	font-size: 1.45rem;
	line-height: 1.2;
}

.nb-outro .sa-logo {
	max-width: 170px;
}

@media (min-width: 700px) {
	.nb-section__head--split,
	.nb-identity__head {
		grid-template-columns: minmax(0, 1fr) minmax(240px, 0.7fr);
	}

	.nb-story__grid {
		grid-template-columns: 0.75fr 1fr;
	}

	.nb-story__visual {
		grid-column: 2;
	}

	.nb-identity__board {
		grid-template-columns: 0.9fr 1.1fr;
	}

	.nb-swatches {
		grid-template-columns: repeat(2, 1fr);
	}

	.nb-journey__services {
		grid-template-columns: 1fr 0.88fr;
		align-items: start;
	}

	.nb-captioned--raised {
		margin-top: 48px;
	}

	.nb-captioned--banner {
		grid-column: 1 / -1;
		width: min(78%, 720px);
		margin-left: auto;
	}

	.nb-journey__people-shots {
		grid-template-columns: repeat(2, 1fr);
	}

	.nb-captioned--wide {
		grid-column: 1 / -1;
		width: min(88%, 780px);
	}

	.nb-booking__stage {
		grid-template-columns: minmax(0, 1fr) 176px;
	}

	.nb-phone {
		width: 176px;
		margin: 0 0 -48px -56px;
	}
}

@media (min-width: 980px) {
	.nb-story__grid {
		grid-template-columns: 0.7fr 1.05fr 0.95fr;
		gap: 48px;
	}

	.nb-story__visual {
		grid-column: auto;
	}

	.nb-journey__people {
		grid-template-columns: 0.64fr 1.36fr;
	}

	.nb-booking__grid {
		grid-template-columns: 0.76fr 1.24fr;
	}

	.nb-outro__grid {
		grid-template-columns: 0.9fr 1.1fr;
	}

	.nb-outro__foot {
		border-top: 0;
		border-left: 1px solid rgba(46, 42, 40, 0.16);
		padding: 0 0 0 42px;
	}
}

@media (max-width: 699px) {
	.nb-cover__stage {
		padding: 0 0 28px 18px;
	}

	.nb-story {
		background: var(--nb-paper);
	}

	.nb-swatch {
		min-height: 100px;
	}

	.nb-phone {
		margin-top: -68px;
	}
}
