/* MB Creatives — Editorial black & white design system */
:root {
	--black: #080808;
	--ink: #111111;
	--charcoal: #1c1c1c;
	--dim: #2a2a2a;
	--gray: #666666;
	--silver: #999999;
	--ash: #cccccc;
	--smoke: #e8e8e8;
	--white: #f8f8f8;
	--pure: #ffffff;
	--border: rgba(255, 255, 255, 0.08);
	--border-light: rgba(0, 0, 0, 0.1);
}

/* Fonts */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;0,700;1,300;1,400&family=Outfit:wght@300;400;500;600&display=swap');

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

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	font-family: 'Outfit', sans-serif;
	font-weight: 400;
	color: var(--ink);
	background: var(--white);
	-webkit-font-smoothing: antialiased;
}

body.editorial {
	overflow-x: hidden;
}

/* ----- Layout ----- */
.editorial-wrap {
	max-width: 1280px;
	margin: 0 auto;
	padding: 0 24px;
}

@media (min-width: 960px) {
	.editorial-wrap {
		padding: 0 40px;
	}
}

/* ----- 1. Navbar ----- */
.nav-editorial {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 1000;
	height: 56px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 0 24px;
	background: var(--black);
	border-bottom: 1px solid var(--border);
	transition: height 0.25s ease, padding 0.25s ease;
}

.nav-editorial.is-shrunk {
	height: 52px;
}

.nav-editorial .editorial-wrap {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	max-width: 1280px;
	margin: 0 auto;
	padding: 0;
}

.nav-editorial .nav-links {
	margin-right: auto;
	display: none;
	align-items: center;
	gap: 32px;
	list-style: none;
	margin: 0;
	padding: 0;
}

@media (min-width: 960px) {
	.nav-editorial .nav-links {
		display: flex;
	}
}

.nav-editorial .nav-links a {
	font-family: 'Outfit', sans-serif;
	font-size: 0.78rem;
	font-weight: 400;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--silver);
	text-decoration: none;
	position: relative;
	padding-bottom: 2px;
}

.nav-editorial .nav-links a::after {
	content: '';
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 1px;
	background: currentColor;
	transform: scaleX(0);
	transform-origin: right;
	transition: transform 0.25s ease;
}

.nav-editorial .nav-links a:hover {
	color: var(--white);
}

.nav-editorial .nav-links a:hover::after {
	transform: scaleX(1);
	transform-origin: left;
}

.nav-editorial .nav-cta {
	display: none;
	box-sizing: border-box;
	font-family: 'Outfit', sans-serif;
	font-size: 0.78rem;
	font-weight: 500;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	line-height: 1.25;
	color: var(--black);
	background: var(--pure);
	padding: 0 20px;
	min-height: 40px;
	height: 40px;
	align-items: center;
	justify-content: center;
	text-decoration: none;
	border: 1px solid transparent;
	cursor: pointer;
	transition: background 0.2s, color 0.2s;
}

@media (min-width: 960px) {
	.nav-editorial .nav-cta {
		display: inline-flex;
	}
}

.nav-editorial .nav-cta:hover {
	background: var(--ash);
	color: var(--ink);
}

.nav-editorial .hamburger {
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 6px;
	width: 28px;
	height: 28px;
	padding: 0;
	background: none;
	border: none;
	cursor: pointer;
	color: var(--pure);
	margin-left: auto;
}

@media (min-width: 960px) {
	.nav-editorial .hamburger {
		display: none;
	}
}

.nav-editorial .hamburger span {
	display: block;
	width: 100%;
	height: 2px;
	background: currentColor;
	transition: transform 0.3s, opacity 0.3s;
}

.nav-editorial .hamburger.is-open span:nth-child(1) {
	transform: translateY(8px) rotate(45deg);
}

.nav-editorial .hamburger.is-open span:nth-child(2) {
	opacity: 0;
}

.nav-editorial .hamburger.is-open span:nth-child(3) {
	transform: translateY(-8px) rotate(-45deg);
}

/* Mobile drawer */
.nav-drawer {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 999;
	background: var(--black);
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 24px;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.3s, visibility 0.3s;
}

.nav-drawer.is-open {
	opacity: 1;
	visibility: visible;
}

.nav-drawer a {
	font-family: 'Outfit', sans-serif;
	font-size: 1rem;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--silver);
	text-decoration: none;
}

.nav-drawer a:hover {
	color: var(--pure);
}

.nav-drawer .nav-cta {
	display: inline-block;
	margin-top: 16px;
}

/* ----- 2. Hero ----- */
.hero-editorial {
	min-height: 100vh;
	display: grid;
	grid-template-columns: 1fr;
	position: relative;
}

@media (min-width: 960px) {
	.hero-editorial {
		grid-template-columns: 1fr 1fr;
	}
}

.hero-editorial .hero-left {
	background: var(--black);
	padding: 120px 24px 80px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	position: relative;
	z-index: 1;
}

@media (min-width: 960px) {
	.hero-editorial .hero-left {
		padding: 140px 48px 80px;
	}
}

.hero-editorial .hero-tag {
	font-family: 'Outfit', sans-serif;
	font-size: 0.68rem;
	font-weight: 500;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: var(--silver);
	margin-bottom: 24px;
	animation: fadeUp 0.8s ease both;
}

.hero-editorial .hero-title {
	font-family: 'Cormorant Garamond', serif;
	font-size: clamp(3.8rem, 6.5vw, 7rem);
	font-weight: 300;
	line-height: 1.05;
	color: var(--pure);
	margin: 0 0 20px;
}

.hero-editorial .hero-title .line1 {
	font-weight: 700;
	display: block;
}

.hero-editorial .hero-title .line2 {
	font-style: italic;
	color: var(--ash);
	font-weight: 300;
}

.hero-editorial .hero-desc {
	font-family: 'Outfit', sans-serif;
	font-size: 1rem;
	line-height: 1.6;
	color: var(--silver);
	max-width: 420px;
	margin: 0 0 32px;
	animation: fadeUp 0.8s 0.15s ease both;
}

.hero-editorial .hero-buttons {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-bottom: 48px;
	animation: fadeUp 0.8s 0.2s ease both;
}

.hero-editorial .btn-solid {
	font-family: 'Outfit', sans-serif;
	font-size: 0.8rem;
	font-weight: 500;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: var(--black);
	background: var(--pure);
	padding: 14px 28px;
	text-decoration: none;
	border: none;
	cursor: pointer;
	transition: background 0.2s;
}

.hero-editorial .btn-solid:hover {
	background: var(--ash);
}

.hero-editorial .btn-ghost {
	font-family: 'Outfit', sans-serif;
	font-size: 0.8rem;
	font-weight: 500;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: var(--pure);
	background: transparent;
	padding: 14px 28px;
	text-decoration: none;
	border: 1px solid var(--border);
	cursor: pointer;
	transition: border-color 0.2s, background 0.2s;
}

.hero-editorial .btn-ghost:hover {
	border-color: var(--ash);
	background: rgba(255, 255, 255, 0.05);
}

.hero-editorial .hero-founded {
	font-family: 'Cormorant Garamond', serif;
	font-size: 0.9rem;
	font-style: italic;
	color: var(--gray);
	margin-top: auto;
	animation: fadeUp 0.8s 0.35s ease both;
}

.hero-editorial .hero-right {
	position: relative;
	min-height: 50vh;
}

@media (min-width: 960px) {
	.hero-editorial .hero-right {
		min-height: 100vh;
	}
}

.hero-editorial .hero-right::before {
	content: '';
	position: absolute;
	inset: 0;
	background: var(--ink);
	z-index: 0;
}

.hero-editorial .hero-stats {
	position: relative;
	z-index: 1;
	display: flex;
	flex-direction: column;
	height: 100%;
	padding: 120px 24px 80px;
}

@media (min-width: 960px) {
	.hero-editorial .hero-stats {
		padding: 140px 48px 80px;
		justify-content: center;
	}
}

.hero-editorial .hero-stat {
	display: flex;
	align-items: baseline;
	justify-content: space-between;
	gap: 16px;
	padding: 28px 0;
	border-bottom: 1px solid var(--border);
	animation: fadeUp 0.8s ease both;
}

.hero-editorial .hero-stat:nth-child(1) {
	animation-delay: 0.25s;
}

.hero-editorial .hero-stat:nth-child(2) {
	animation-delay: 0.35s;
}

.hero-editorial .hero-stat:nth-child(3) {
	animation-delay: 0.45s;
}

.hero-editorial .hero-stat:nth-child(4) {
	animation-delay: 0.55s;
}

.hero-editorial .hero-stat:first-child {
	border-top: none;
	padding-top: 0;
}

.hero-editorial .hero-stat-num-wrap {
	font-family: 'Cormorant Garamond', serif;
	font-size: 3rem;
	font-weight: 400;
	color: var(--pure);
	line-height: 1;
}

.hero-editorial .hero-stat-num {
	font: inherit;
	color: inherit;
}

.hero-editorial .hero-stat-label {
	font-family: 'Outfit', sans-serif;
	font-size: 0.85rem;
	font-weight: 400;
	color: var(--silver);
	text-align: right;
}

@keyframes fadeUp {
	from {
		opacity: 0;
		transform: translateY(24px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

/* ----- 3. About ----- */
.section-about-ed {
	background: var(--black);
	padding: 50px 0 120px;
}

.section-about-ed .about-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 48px;
	max-width: 1280px;
	margin: 0 auto;
	padding: 0 24px;
}

@media (min-width: 960px) {
	.section-about-ed .about-grid {
		grid-template-columns: 1fr 1.6fr;
		gap: 100px;
		padding: 0 40px;
	}
}

.section-label {
	font-family: 'Outfit', sans-serif;
	font-size: 1rem;
	font-weight: 500;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: var(--silver);
	margin-bottom: 12px;
}

.section-label::before {
	content: '';
	display: block;
	width: 24px;
	height: 1px;
	background: var(--border);
	margin-bottom: 12px;
}

.section-about-ed .about-title {
	font-family: 'Cormorant Garamond', serif;
	font-size: clamp(2rem, 3.5vw, 3rem);
	font-weight: 300;
	line-height: 1.2;
	color: var(--pure);
	margin: 0 0 32px;
}

.section-about-ed .about-title strong {
	font-weight: 700;
}

.section-about-ed .about-title em {
	font-style: italic;
	font-weight: 300;
}

.section-about-ed .about-body p {
	font-family: 'Outfit', sans-serif;
	font-size: 1rem;
	line-height: 1.7;
	color: var(--silver);
	margin: 0 0 20px;
}

.section-about-ed .about-quote {
	margin: 40px 0 24px;
	padding: 24px 0 24px 28px;
	border-left: 2px solid var(--pure);
	background: var(--charcoal);
	font-family: 'Cormorant Garamond', serif;
	font-size: 1.3rem;
	font-style: italic;
	color: var(--ash);
	line-height: 1.5;
}

.section-about-ed .about-meta {
	font-family: 'Outfit', sans-serif;
	font-size: 0.7rem;
	font-weight: 500;
	letter-spacing: 0.15em;
	text-transform: uppercase;
	color: var(--gray);
}

/* ----- 4. Services ----- */
.section-services-ed {
	background: var(--white);
	padding: 50px 0 60px;
}

.section-services-ed .services-header {
	display: flex;
	flex-direction: column;
	gap: 16px;
	padding: 0 24px;
	max-width: 1280px;
	margin: 0 auto 48px;
}

@media (min-width: 960px) {
	.section-services-ed .services-header {
		flex-direction: row;
		align-items: flex-end;
		justify-content: space-between;
		padding: 0 40px;
	}
}

.section-services-ed .services-title {
	font-family: 'Cormorant Garamond', serif;
	font-size: clamp(2.5rem, 4vw, 4rem);
	font-weight: 300;
	color: var(--black);
	margin: 0;
}

.section-services-ed .services-subtitle {
	font-family: 'Outfit', sans-serif;
	font-size: 0.85rem;
	color: var(--gray);
	margin: 0;
}

@media (min-width: 960px) {
	.section-services-ed .services-subtitle {
		max-width: 280px;
		text-align: right;
	}
}

/* Material Symbols base (Google Fonts icons) */
.material-symbols-outlined {
	font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
	user-select: none;
}

.section-services-ed .services-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 24px;
	max-width: 1280px;
	margin: 0 auto;
	padding: 0 24px;
}

@media (min-width: 640px) {
	.section-services-ed .services-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 28px;
	}
}

@media (min-width: 960px) {
	.section-services-ed .services-grid {
		grid-template-columns: repeat(4, 1fr);
		gap: 32px;
		padding: 0 40px;
	}
}

.section-services-ed .service-card {
	background: var(--black);
	border: 1px solid var(--border);
	padding: 28px 24px;
	transition: border-color 0.25s ease, background 0.25s ease;
}

.section-services-ed .service-card:hover {
	background: var(--charcoal);
	border-color: var(--dim);
}

.section-services-ed .service-card-icon {
	display: block;
	font-size: 2.25rem;
	color: var(--pure);
	margin-bottom: 16px;
	line-height: 1;
}

.section-services-ed .service-card-title {
	font-family: 'Outfit', sans-serif;
	font-size: 1.1rem;
	font-weight: 600;
	color: var(--pure);
	margin: 0 0 10px;
}

.section-services-ed .service-card-desc {
	font-family: 'Outfit', sans-serif;
	font-size: 0.9rem;
	line-height: 1.55;
	color: var(--ash);
	margin: 0;
}

/* ----- 5. Clients ----- */
.section-clients-ed {
	background: var(--white);
	padding: 50px 0 60px;
}

.section-clients-ed .clients-ed-wrap {
	max-width: 100%;
	margin: 0 auto;
	padding: 0 24px;
	text-align: left;
}

@media (min-width: 960px) {
	.section-clients-ed .clients-ed-wrap {
		padding: 0 40px;
	}
}

.section-clients-ed .clients-ed-title {
	display: block;
	width: 100%;
	font-family: 'Cormorant Garamond', serif;
	font-size: clamp(2rem, 3.5vw, 3rem);
	font-weight: 300;
	color: var(--black);
	margin: 0 0 48px;
	text-align: left;
}

.section-clients-ed .clients-ed-slider-wrap {
	position: relative;
	margin: 0 -24px;
	width: calc(100% + 48px);
	max-width: none;
	isolation: isolate;
	padding-top: 48px;
}

@media (min-width: 960px) {
	.section-clients-ed .clients-ed-slider-wrap {
		margin: 0 -40px;
		width: calc(100% + 80px);
		padding-top: 52px;
	}
}

.section-clients-ed .clients-ed-btn {
	position: absolute;
	top: 0;
	z-index: 2;
	transform: none;
	width: 40px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	border: 1px solid var(--black);
	background: var(--black);
	color: var(--pure);
	cursor: pointer;
	transition: background 0.2s, border-color 0.2s, color 0.2s;
}

.section-clients-ed .clients-ed-btn-prev {
	left: 8px;
	right: auto;
}

.section-clients-ed .clients-ed-btn-next {
	left: 52px;
	right: auto;
}

@media (min-width: 640px) {
	.section-clients-ed .clients-ed-btn {
		width: 44px;
		height: 44px;
	}

	.section-clients-ed .clients-ed-btn-prev {
		left: 10px;
	}

	.section-clients-ed .clients-ed-btn-next {
		left: 60px;
	}
}

.section-clients-ed .clients-ed-btn:hover {
	background: var(--charcoal);
	border-color: var(--charcoal);
}

.section-clients-ed .clients-ed-btn:disabled {
	opacity: 0.4;
	cursor: not-allowed;
}

.section-clients-ed .clients-ed-btn:disabled:hover {
	background: var(--black);
	border-color: var(--black);
}

.section-clients-ed .clients-ed-btn .material-symbols-outlined {
	font-size: 26px;
}

.section-clients-ed .clients-ed-viewport {
	overflow: hidden;
	width: 100%;
	min-width: 0;
	padding: 0;
	margin: 0;
	touch-action: pan-y pinch-zoom;
	overscroll-behavior-x: contain;
}

.section-clients-ed .clients-ed-slider-track {
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	align-items: stretch;
	gap: 0;
	margin: 0;
	padding: 0;
	/* width set inline by JS */
	will-change: transform;
	transition: transform 0.35s ease-out;
	transform: translate3d(0, 0, 0);
	backface-visibility: hidden;
}

/*
 * Logos flush in the row. JS sets equal width + height (= square cell) so
 * object-fit: contain can use the whole cell (wide cell + tiny height was
 * shrinking logos to a sliver before).
 */
.section-clients-ed .clients-ed-slider-track > img.clients-ed-logo {
	display: block;
	flex: 0 0 auto;
	flex-shrink: 0;
	margin: 0;
	padding: 0;
	border: 0;
	object-fit: contain;
	object-position: center;
	pointer-events: none;
	box-sizing: border-box;
}

/* ----- 6. Testimonials ----- */
.section-testimonials-ed {
	background: var(--black);
	padding: 60px 0 80px;
}

@media (min-width: 640px) {
	.section-testimonials-ed {
		padding: 80px 0 100px;
	}
}

@media (min-width: 960px) {
	.section-testimonials-ed {
		padding: 50px 0 120px;
	}
}

.section-testimonials-ed .testimonials-ed-wrap {
	max-width: 1280px;
	margin: 0 auto;
	padding: 0 16px;
}

@media (min-width: 640px) {
	.section-testimonials-ed .testimonials-ed-wrap {
		padding: 0 24px;
	}
}

@media (min-width: 960px) {
	.section-testimonials-ed .testimonials-ed-wrap {
		padding: 0 40px;
	}
}

.section-testimonials-ed .testimonials-ed-headline {
	font-family: 'Cormorant Garamond', serif;
	font-size: clamp(1.5rem, 4vw, 3rem);
	font-weight: 300;
	line-height: 1.2;
	color: var(--pure);
	text-align: left;
	margin: 0 0 32px;
}

@media (min-width: 640px) {
	.section-testimonials-ed .testimonials-ed-headline {
		margin: 0 0 40px;
	}
}

@media (min-width: 960px) {
	.section-testimonials-ed .testimonials-ed-headline {
		margin: 0 0 48px;
	}
}

.section-testimonials-ed .testimonials-slider-wrap {
	position: relative;
	width: 100%;
	display: flex;
	align-items: center;
	gap: 8px;
	margin: 0 -16px;
}

@media (min-width: 640px) {
	.section-testimonials-ed .testimonials-slider-wrap {
		margin: 0 -24px;
		gap: 16px;
	}
}

@media (min-width: 960px) {
	.section-testimonials-ed .testimonials-slider-wrap {
		margin: 0 -40px;
		gap: 24px;
	}
}

.section-testimonials-ed .testimonials-btn {
	flex: 0 0 auto;
	width: 40px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	border: 1px solid var(--gray);
	background: var(--black);
	color: var(--pure);
	cursor: pointer;
	transition: background 0.2s, border-color 0.2s, color 0.2s;
}

@media (min-width: 640px) {
	.section-testimonials-ed .testimonials-btn {
		width: 48px;
		height: 48px;
	}
}

.section-testimonials-ed .testimonials-btn:hover {
	background: var(--charcoal);
	border-color: var(--silver);
}

.section-testimonials-ed .testimonials-btn:disabled {
	opacity: 0.4;
	cursor: not-allowed;
}

.section-testimonials-ed .testimonials-btn:disabled:hover {
	background: var(--black);
	border-color: var(--gray);
}

.section-testimonials-ed .testimonials-btn .material-symbols-outlined {
	font-size: 24px;
}

@media (min-width: 640px) {
	.section-testimonials-ed .testimonials-btn .material-symbols-outlined {
		font-size: 28px;
	}
}

.section-testimonials-ed .testimonials-viewport {
	flex: 1 1 0;
	min-width: 0;
	overflow: hidden;
}

.section-testimonials-ed .testimonials-slider-track {
	display: flex;
	width: max-content;
	will-change: transform;
	transition: transform 0.35s ease-out;
}

.section-testimonials-ed .testimonials-slider-track .testimonial-card {
	flex: 0 0 auto;
	box-sizing: border-box;
	/* width set by JS to match viewport */
}

.section-testimonials-ed .testimonial-card {
	display: flex;
	flex-direction: column;
	background: var(--black);
	padding: 24px 20px;
	transition: background 0.25s ease;
	box-sizing: border-box;
	min-height: 280px;
}

@media (min-width: 640px) {
	.section-testimonials-ed .testimonial-card {
		padding: 28px 24px;
		min-height: 300px;
	}
}

@media (min-width: 960px) {
	.section-testimonials-ed .testimonial-card {
		padding: 32px 28px;
		min-height: 320px;
	}
}

.section-testimonials-ed .testimonial-card:hover {
	background: var(--charcoal);
}

.section-testimonials-ed .testimonial-quote-mark {
	font-family: 'Cormorant Garamond', serif;
	font-size: 3rem;
	color: var(--dim);
	line-height: 1;
	margin-bottom: 6px;
}

@media (min-width: 640px) {
	.section-testimonials-ed .testimonial-quote-mark {
		font-size: 4rem;
		margin-bottom: 8px;
	}
}

.section-testimonials-ed .testimonial-text {
	flex: 1 1 auto;
	font-family: 'Outfit', sans-serif;
	font-size: 0.875rem;
	line-height: 1.6;
	color: var(--silver);
	margin: 0 0 16px;
	min-height: 0;
}

@media (min-width: 640px) {
	.section-testimonials-ed .testimonial-text {
		font-size: 0.95rem;
		margin: 0 0 20px;
	}
}

.section-testimonials-ed .testimonial-divider {
	width: 24px;
	height: 1px;
	background: var(--gray);
	margin: 16px 0 0 auto;
}

.section-testimonials-ed .testimonial-name {
	font-family: 'Outfit', sans-serif;
	font-size: 0.875rem;
	font-weight: 500;
	color: var(--pure);
	margin: 0 0 4px;
}

@media (min-width: 640px) {
	.section-testimonials-ed .testimonial-name {
		font-size: 0.95rem;
	}
}

.section-testimonials-ed .testimonial-company {
	font-family: 'Outfit', sans-serif;
	font-size: 0.7rem;
	font-weight: 500;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--gray);
	margin: 0;
}

@media (min-width: 640px) {
	.section-testimonials-ed .testimonial-company {
		font-size: 0.75rem;
	}
}

/* ----- 6. Contact ----- */
.section-contact-ed {
	background: var(--white);
	padding: 50px 0 120px;
}

.section-contact-ed .section-label {
	color: var(--gray);
}

.section-contact-ed .section-label::before {
	background: var(--border-light);
}

.section-contact-ed .contact-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 48px;
	max-width: 1280px;
	margin: 0 auto;
	padding: 0 24px;
}

@media (min-width: 960px) {
	.section-contact-ed .contact-grid {
		grid-template-columns: 1fr 1fr;
		gap: 80px;
		padding: 0 40px;
	}
}

.section-contact-ed .contact-title {
	font-family: 'Cormorant Garamond', serif;
	font-size: clamp(2rem, 3.5vw, 3rem);
	font-weight: 300;
	line-height: 1.2;
	color: var(--black);
	margin: 0 0 16px;
}

.section-contact-ed .contact-title em {
	font-style: italic;
	font-weight: 300;
}

.section-contact-ed .contact-title strong {
	font-weight: 700;
}

.section-contact-ed .contact-tagline {
	font-family: 'Outfit', sans-serif;
	font-size: 1rem;
	color: var(--gray);
	margin: 0 0 40px;
}

.section-contact-ed .contact-details {
	display: flex;
	flex-direction: column;
	gap: 0;
}

.section-contact-ed .contact-detail-row {
	display: grid;
	grid-template-columns: 100px 1fr;
	gap: 16px;
	align-items: start;
	padding: 16px 0;
	border-bottom: 1px solid var(--border-light);
}

.section-contact-ed .contact-detail-label {
	font-family: 'Outfit', sans-serif;
	font-size: 0.68rem;
	font-weight: 500;
	letter-spacing: 0.15em;
	text-transform: uppercase;
	color: var(--gray);
	margin: 0;
}

.section-contact-ed .contact-detail-value {
	font-family: 'Outfit', sans-serif;
	font-size: 0.95rem;
	color: var(--ink);
	margin: 0;
}

.section-contact-ed .contact-detail-value a {
	color: inherit;
	text-decoration: none;
}

.section-contact-ed .contact-detail-value a:hover {
	text-decoration: underline;
}

/* Contact form */
.section-contact-ed .contact-form label {
	display: block;
	font-family: 'Outfit', sans-serif;
	font-size: 0.68rem;
	font-weight: 500;
	letter-spacing: 0.15em;
	text-transform: uppercase;
	color: var(--gray);
	margin-bottom: 8px;
}

.section-contact-ed .contact-form input,
.section-contact-ed .contact-form textarea {
	width: 100%;
	font-family: 'Outfit', sans-serif;
	font-size: 1rem;
	line-height: 1.5;
	color: var(--ink);
	background: var(--smoke);
	border: 1px solid var(--border-light);
	padding: 14px 16px;
	margin-bottom: 20px;
	transition: border-color 0.2s, background 0.2s;
}

.section-contact-ed .contact-form input:focus,
.section-contact-ed .contact-form textarea:focus {
	outline: none;
	border-color: var(--black);
	background: var(--pure);
}

.section-contact-ed .contact-form textarea {
	min-height: 140px;
	resize: vertical;
}

.section-contact-ed .contact-form .h-captcha {
	margin: 16px 0 20px;
}

.section-contact-ed .contact-form .btn-submit {
	box-sizing: border-box;
	width: 100%;
	font-family: 'Outfit', sans-serif;
	font-size: 1rem;
	line-height: 1.5;
	font-weight: 600;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: var(--pure);
	background: var(--black);
	border: 1px solid var(--black);
	padding: 14px 16px;
	cursor: pointer;
	transition: background 0.2s, border-color 0.2s;
}

.section-contact-ed .contact-form .btn-submit:hover {
	background: var(--charcoal);
}

.section-contact-ed .form-errors {
	background: var(--smoke);
	border: 1px solid var(--gray);
	padding: 12px 16px;
	margin-bottom: 20px;
	font-size: 0.9rem;
	color: var(--ink);
}

.section-contact-ed .form-errors div {
	margin: 4px 0;
}

/* ----- 7. Work (standalone page) ----- */
.section-work-ed {
	background: var(--white);
	padding: 120px 0 100px;
	min-height: 60vh;
}

.section-work-ed .work-ed-wrap {
	max-width: 1280px;
	margin: 0 auto;
	padding: 0 24px;
}

@media (min-width: 960px) {
	.section-work-ed .work-ed-wrap {
		padding: 0 40px;
	}
}

.section-work-ed .section-label {
	color: var(--gray);
}

.section-work-ed .section-label::before {
	background: var(--border-light);
}

.section-work-ed .work-ed-title {
	font-family: 'Cormorant Garamond', serif;
	font-size: clamp(2.5rem, 4vw, 4rem);
	font-weight: 300;
	color: var(--black);
	margin: 0 0 48px;
}

.section-work-ed .work-ed-category {
	margin-bottom: 56px;
}

.section-work-ed .work-ed-category:last-child {
	margin-bottom: 0;
}

.section-work-ed .work-ed-category-title {
	font-family: 'Outfit', sans-serif;
	font-size: 0.75rem;
	font-weight: 600;
	letter-spacing: 0.15em;
	text-transform: uppercase;
	color: var(--gray);
	margin: 0 0 24px;
	border-bottom: 1px solid var(--border-light);
	padding-bottom: 12px;
}

.section-work-ed .work-ed-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 24px;
}

@media (min-width: 640px) {
	.section-work-ed .work-ed-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 28px;
	}
}

@media (min-width: 960px) {
	.section-work-ed .work-ed-grid {
		grid-template-columns: repeat(3, 1fr);
		gap: 32px;
	}
}

.section-work-ed .work-ed-item {
	background: var(--black);
	overflow: hidden;
}

.section-work-ed .work-ed-item img {
	display: block;
	width: 100%;
	height: auto;
	object-fit: cover;
	transition: opacity 0.3s ease;
}

.section-work-ed .work-ed-item:hover img {
	opacity: 0.92;
}

/* ----- Message sent (standalone page) ----- */
.message-sent-ed {
	min-height: 60vh;
	padding: 120px 24px 80px;
}

.message-sent-ed-wrap {
	max-width: 560px;
	margin: 0 auto;
	text-align: center;
}

.message-sent-ed .flash-editorial {
	margin-bottom: 24px;
	border-radius: 0;
}

.message-sent-ed .message-sent-ed-title {
	font-family: 'Cormorant Garamond', serif;
	font-size: clamp(2rem, 4vw, 3rem);
	font-weight: 300;
	color: var(--black);
	margin: 0 0 16px;
}

.message-sent-ed .message-sent-ed-text {
	font-family: 'Outfit', sans-serif;
	font-size: 1rem;
	color: var(--gray);
	margin: 0 0 32px;
}

.message-sent-ed .message-sent-ed-btn {
	display: inline-block;
	font-family: 'Outfit', sans-serif;
	font-size: 0.8rem;
	font-weight: 600;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: var(--pure);
	background: var(--black);
	padding: 14px 28px;
	text-decoration: none;
	transition: background 0.2s;
}

.message-sent-ed .message-sent-ed-btn:hover {
	background: var(--charcoal);
	color: var(--pure);
}

/* ----- 8. Footer ----- */
.footer-editorial {
	background: var(--black);
	padding: 48px 24px 32px;
}

@media (min-width: 960px) {
	.footer-editorial {
		padding: 56px 40px 40px;
	}
}

.footer-editorial .footer-top {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 24px;
	margin-bottom: 40px;
}

@media (min-width: 960px) {
	.footer-editorial .footer-top {
		flex-direction: row;
		justify-content: space-between;
		align-items: center;
	}
}

.footer-editorial .footer-logo {
	display: block;
	text-decoration: none;
}

.footer-editorial .footer-logo img {
	display: block;
	width: auto;
	height: 100px;
	object-fit: contain;
}

.footer-editorial .footer-nav {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 24px;
}

.footer-editorial .footer-nav a {
	font-family: 'Outfit', sans-serif;
	font-size: 0.8rem;
	letter-spacing: 0.06em;
	color: var(--silver);
	text-decoration: none;
}

.footer-editorial .footer-nav a:hover {
	color: var(--pure);
}

.footer-editorial .footer-social {
	display: flex;
	gap: 12px;
}

.footer-editorial .footer-social a {
	width: 38px;
	height: 38px;
	display: flex;
	align-items: center;
	justify-content: center;
	border: 1px solid var(--border);
	color: var(--silver);
	text-decoration: none;
	font-size: 1rem;
	transition: border-color 0.2s, color 0.2s;
}

.footer-editorial .footer-social a:hover {
	border-color: var(--pure);
	color: var(--pure);
}

.footer-editorial .footer-bottom {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 16px;
	padding-top: 24px;
	border-top: 1px solid var(--border);
}

@media (min-width: 960px) {
	.footer-editorial .footer-bottom {
		flex-direction: row;
		justify-content: space-between;
	}
}

.footer-editorial .footer-copy {
	font-family: 'Outfit', sans-serif;
	font-size: 0.8rem;
	color: var(--gray);
	margin: 0;
}

.footer-editorial .footer-motto {
	font-family: 'Cormorant Garamond', serif;
	font-size: 0.95rem;
	font-style: italic;
	color: var(--silver);
	margin: 0;
}

/* ----- Reveal (IntersectionObserver) ----- */
.reveal,
.reveal-x {
	opacity: 0;
	transform: translateY(36px);
	transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal-x {
	transform: translateX(-30px);
}

.reveal.is-visible,
.reveal-x.is-visible {
	opacity: 1;
	transform: translateY(0) translateX(0);
}

.reveal.d1 {
	transition-delay: 0.1s;
}

.reveal.d2 {
	transition-delay: 0.2s;
}

.reveal.d3 {
	transition-delay: 0.3s;
}

.reveal.d4 {
	transition-delay: 0.4s;
}

.reveal-x.d1 {
	transition-delay: 0.1s;
}

.reveal-x.d2 {
	transition-delay: 0.2s;
}

.reveal-x.d3 {
	transition-delay: 0.3s;
}

.reveal-x.d4 {
	transition-delay: 0.4s;
}

/* ----- Flash message (editorial) ----- */
.flash-editorial {
	max-width: 1280px;
	margin: 0 auto;
	padding: 16px 24px;
	font-family: 'Outfit', sans-serif;
	font-size: 0.9rem;
	background: var(--charcoal);
	color: var(--ash);
	border-bottom: 1px solid var(--border);
}

.flash-editorial.flash-success {
	background: var(--dim);
	color: var(--ash);
}

.flash-editorial.flash-danger {
	background: var(--ink);
	color: var(--ash);
}
